Hi ElatedTurtle20 ,
You can increase it in your configuration file - https://github.com/allegroai/clearml/blob/168074acd97589df58436a3ec122a95a077620c2/docs/clearml.conf#L332.
I added some custom fields to the tasks I am running
where did you add those? as part of the task’s parameters?
The file_history_size is 100 in my configuration, but I get only 3 images saved in the debug sample. I run a for loop on all detections and use Logger.report_image(“Detection images”, “image uint8", image=img) to log every result to the debug samples screen. Any idea?
with report_image
you can use max_image_history
as a negative so you wont have the limit, but you can also use different iteration and it should do the work.
Yes, I add those as part of the task parameters.yes, you can query the tasks according to those and detect them with https://clear.ml/docs/latest/docs/references/sdk/task#taskquery_tasks ,
Hi Alon,
Thanks for the fast reply.
The file_history_size is 100 in my configuration, but I get only 3 images saved in the debug sample. I run a for loop on all detections and use Logger.report_image("Detection images", "image uint8", image=img) to log every result to the debug samples screen. Any idea? Yes, I add those as part of the task parameters.