Skip to content

Commit

Permalink
reuse_last_task_id=False
Browse files Browse the repository at this point in the history
  • Loading branch information
odulcy-mindee committed Jul 20, 2023
1 parent 2f8beb8 commit 59f0943
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion references/classification/train_tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def main(args):
if args.clearml:
from clearml import Task

task = Task.init(project_name="docTR/character-classification", task_name=exp_name)
task = Task.init(project_name="docTR/character-classification", task_name=exp_name, reuse_last_task_id=False)
task.upload_artifact("config", config)

# Create loss queue
Expand Down
2 changes: 1 addition & 1 deletion references/detection/train_tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ def main(args):
if args.clearml:
from clearml import Task

task = Task.init(project_name="docTR/text-detection", task_name=exp_name)
task = Task.init(project_name="docTR/text-detection", task_name=exp_name, reuse_last_task_id=False)
task.upload_artifact("config", config)

if args.freeze_backbone:
Expand Down
2 changes: 1 addition & 1 deletion references/recognition/train_tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def main(args):
if args.clearml:
from clearml import Task

task = Task.init(project_name="docTR/text-recognition", task_name=exp_name)
task = Task.init(project_name="docTR/text-recognition", task_name=exp_name, reuse_last_task_id=False)
task.upload_artifact("config", config)

min_loss = np.inf
Expand Down

0 comments on commit 59f0943

Please sign in to comment.