Skip to content
Snippets Groups Projects
Commit 16ae83f8 authored by Brummans, Nick's avatar Brummans, Nick
Browse files

update

parent efc0bb3c
Branches
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ from clearml import Task, Dataset ...@@ -2,7 +2,7 @@ from clearml import Task, Dataset
task = Task.init(project_name="pipeline", task = Task.init(project_name="pipeline",
task_name="pipeline step 1 dataset artifact") task_name="pipeline step 1 dataset artifact")
task.add_requirements("./requirements.txt") task.add_requirements("-r ./requirements.txt")
# only create the task, it will be executed remotely later # only create the task, it will be executed remotely later
task.execute_remotely() task.execute_remotely()
......
...@@ -77,7 +77,7 @@ def validate(model, testloader, criterion): ...@@ -77,7 +77,7 @@ def validate(model, testloader, criterion):
task = Task.init(project_name="pipeline", task = Task.init(project_name="pipeline",
task_name="pipeline step 2 train model") task_name="pipeline step 2 train model")
task.add_requirements("./requirements.txt") task.add_requirements("-r ./requirements.txt")
# only create the task, we will actually execute it later # only create the task, we will actually execute it later
task.execute_remotely() task.execute_remotely()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment