Hi @<1597399925723762688:profile|IrritableStork32>
I think that if you have clearml installed an configured on your machine it should just work:
None
My code is as follows:
!pip3 install clearml --quiet
!clearml-init
from clearml import Task
# Connecting ClearML with the current process,
# from here on everything is logged automatically
task = Task.init(project_name='logo_detector', task_name='test', tags=['yolov8x'])
task.mark_started(True)
from clearml import Task, Logger
logger = Logger.current_logger()
!pip3 install ultralytics --quiet
iterations=200
from ultralytics import YOLO
# Load a model
model = YOLO('yolov8x.pt') # load a pretrained model (recommended for training)
# Train the model
model.train(data='../my_data.yaml', epochs=iterations, imgsz=640)
task.close()
Thanks Martin, I saw that post and I thought the same as you, but it’s only recording three epochs:
Are you saying it only records the last 3 epochs or is it the first three epochs ?
Can you see scalars logged from other epochs ?