curved-lamp-59582
03/01/2023, 9:11 PM❯ pyflyte run --remote example.py training_workflow --hyperparameters '{"C": 0.1}'
Go to <http://localhost:30080/console/projects/flytesnacks/domains/development/executions/fa1c65afdde414c7d961> to see execution in the console.
syntax when you have custom dependencies as specified in requirements.txt
. I got excited that the run command was somehow passing scikit-learn
along, but now I see that scikit-learn
is simply preinstalled in the base image. I am curious if there a way to handle custom dependencies without dropping out of the simple pyflyte run
command and without having to have a "kitchen sink" style base image?curved-lamp-59582
03/01/2023, 9:16 PMglamorous-carpet-83516
03/01/2023, 9:24 PMpyflyte run --image <new_image_name> …
curved-lamp-59582
03/01/2023, 9:44 PM@task(..., container_image=myimage)
but I think that gets ignored when you use pyflyte run
is that accurate? Those get honored when you use pyflyte register
only?glamorous-carpet-83516
03/01/2023, 11:26 PM