Skip to content
This repository was archived by the owner on Aug 17, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion kubeflow/fairing/ml_tasks/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ class BaseTask:
when building a new docker image as part of an ML task deployment.
:param docker_registry: Docker registry to store output docker images.
:param input_files: list of files that needs to be packaged along with the entry point.
E.g. local python modules, trained model weigths, etc.
E.g. local python modules, trained model weights, etc. If the list contains a
'requirements.txt', python packages mentioned in the requirements file will be
installed in the built docker image.
"""

def __init__(self, entry_point, base_docker_image=None, docker_registry=None,
Expand Down