lively-mechanic-92017
07/21/2023, 3:48 PMpyflyte --verbose run workflows/computer_vision/object_detector_training.py object_detector_launchplan
where object_detector_training.py contains my workflow and the launch plan, and object_detector_launchplan
is a variable used like object_detector_launchplan = LaunchPlan.create(...
. When I run the above command I get Error: Missing option '--model_parameters'
, but I'm specifying model_parameters
in the launch plan with default_inputs={
"model_parameters": FasterRCNNParameters(...
faint-activity-87590
07/21/2023, 4:06 PMlively-mechanic-92017
07/21/2023, 4:20 PMpyflyte run
, is there a way to utilize launch plans for something like that? Or is scripting it out either with a Python wrapper or Bash the way to go?glamorous-carpet-83516
07/21/2023, 4:22 PM--copy-all
, which will register all the flyte entities (task, wf, LP) in the file.faint-activity-87590
07/21/2023, 4:36 PMlively-mechanic-92017
07/21/2023, 4:39 PM