Fix example project name

This commit is contained in:
allegroai
2021-10-03 02:56:42 +03:00
parent 3643446f56
commit 39d8d8f0cb
5 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ from clearml import Task
# Connecting ClearML with the current process,
# from here on everything is logged automatically
task = Task.init(project_name="example", task_name="fastai with tensorboard callback")
task = Task.init(project_name="examples", task_name="fastai with tensorboard callback")
path = untar_data(URLs.MNIST_SAMPLE)

View File

@@ -19,7 +19,7 @@ from clearml import Task, StorageManager
# Connecting ClearML with the current process,
# from here on everything is logged automatically
task = Task.init(project_name='Image Example', task_name='image classification CIFAR10')
task = Task.init(project_name='examples', task_name='image classification CIFAR10')
params = {'number_of_epochs': 20, 'batch_size': 64, 'dropout': 0.25, 'base_lr': 0.001, 'momentum': 0.9, 'loss_report': 100}
params = task.connect(params) # enabling configuration override by clearml
print(params) # printing actual configuration (after override in remote mode)