venkatram-dev

Results 22 comments of venkatram-dev

By default the default datasets directory is set to 'datasets_dir': str(root / 'datasets'), https://github.com/roboflow/ultralytics-roboflow/blob/main/ultralytics/yolo/utils/__init__.py#L365 Please create this folder datasets like below , navigate to that folder and then download the...

Oh interesting. I used roboflow-1.1.44 and ultralytics==8.0.196 Please try to use the same versions and see if you still get the errors. Also, can you share how was the data...

The tutorial works for me in python 3.10 and 3.11 as well. Please try upgrading your roboflow install. If it still doesn't work, please provide sample images , annotations and...

yeah Interesting. I tried to replicate the error you get and was able to. 1. Removed some ids from images array in the annotation json. But that gave a different...

Hi, I am not from roboflow team. Looks like the api code is not open source, so I did not change anything :) . Not sure if roboflow team changed...

@svekars , Please review. Note : Since the change is in the same file (and is little), I am trying to address both issues together. I am happy to make...

I feel it should rather be like this https://github.com/pytorch/tutorials/pull/3022. This seems more accurate as we need to wait until ``req.wait()`` has been executed

Code to test the changes ``` import torch from torchvision.datasets import PhotoTour def test_phototour_new(): # Define the root directory where datasets will be stored root = "./datasets" # List of...

Pytest for download ``` pytest test/test_datasets_download.py -vvv -k phototour test/test_datasets_download.py::test_url_is_accessible[PhotoTour, https://phototour.cs.washington.edu/patches/halfdome.zip] PASSED [ 33%] test/test_datasets_download.py::test_url_is_accessible[PhotoTour, https://phototour.cs.washington.edu/patches/notredame.zip] PASSED [ 66%] test/test_datasets_download.py::test_url_is_accessible[PhotoTour, https://phototour.cs.washington.edu/patches/trevi.zip] PASSED [100%] ```

pytest for dataset ``` pytest test/test_datasets.py -k PhotoTour test/test_datasets.py ......s [100%] ======================================== 6 passed, 1 skipped, 570 deselected in 0.26s ======================================== ```