Hey guys! I have a question, I was playing around with an experiment and trying out the features. I have a model which is detecting some false positives, and...
one year ago
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') #...
Thanks Martin, I saw that post and I thought the same as you, but it’s only recording three epochs: