Victor Sonck

Results 36 comments of Victor Sonck
trafficstars

Can you do a pip freeze and make sure you have torchvision installed? Is it the same version as in the requirements.txt?

It seems like the `draw_bounding_boxes` functionality was only added to torchvision starting from v0.9.0. In contrast, the requirements of YOLOv5 specify `torchvision>=0.8.1`, which means if you have 0.8.1 or 0.8.2...

Hi @ChaseDDevelopment, thanks a ton for the detailed write-up and follow-up work! Glad to hear you got to move forward using the normal dataset create commands, but I'd still want...

Update: I can't reproduce the issue, using this code: ```python import os import uuid def generate_dataset(): os.makedirs('datasets', exist_ok=True) os.makedirs('datasets/ChaseDDevelopment', exist_ok=True) for subset in ['test', 'train', 'valid']: for subfolder in ['images',...

@ChaseDDevelopment No worries! If you don't have the datasets in ClearML anymore, there doesn't seem to be much more we can do for now. Thanks for putting in the time...

Hi @mbenami Thank you for your patience! I was able to reproduce your issue and it seems like you really were on the right track! Like you expected, ClearML chokes...

I would indeed try both changes: - The 'new' bash script (remove the first `&&`) like discussed above - `reuse_last_task_id=False` in the clearml init With these 2 changes you should...

@mbenami I'm not completely sure how the evolve functionality actually works, maybe @AyushExel can advise here. So what you're saying is that if you run it without clearml, you get...

@mbenami Yes, you can indeed only directly compare up to 10 experiments. There's another way to get an overview though! Direct comparison is meant to be in-depth, at which point...

@mbenami I proposed your troubles to our devs. But most people ask for more tasks in the view, not less. On the other hand, to make it at least slightly...