Felix Ruess
11/03/2022, 2:37 PMKetan (kumare3)
Felix Ruess
11/03/2022, 2:40 PMKetan (kumare3)
Felix Ruess
11/03/2022, 2:45 PMKetan (kumare3)
Felix Ruess
11/03/2022, 3:18 PMtest_input = ContainerTask(
name="test_container_input",
image="<http://registry.roboception.de/tools/blender_scripts:testing|registry.roboception.de/tools/blender_scripts:testing>",
requests=Resources(gpu="1"),
imputs=kwtypes(objectname=str, dataset=str),
command=shlex.split("echo {{.inputs.objectname}} {{.inputs.dataset}}")
)
@workflow
def wf(objectname: str):
test_input(objectname=objectname, dataset="train")
just results in ValueError: Received unexpected keyword argument objectname in function test_container_input
Ketan (kumare3)
Felix Ruess
11/03/2022, 3:59 PMimputs
instead of inputs
Ketan (kumare3)
Eduardo Apolinario (eapolinario)
11/03/2022, 6:07 PM