roboflow-python
roboflow-python copied to clipboard
The official Roboflow Python package. Manage your datasets, models, and deployments. Roboflow has everything you need to build a computer vision application.
test path set in .yaml file is incorrectly given as '../test/images' instead of '/test/images' when downloading dataset. I attached a zipped example yaml file. [data.zip](https://github.com/roboflow/roboflow-python/files/12099663/data.zip)
Hi I am trying out the api to return the result. The result of the bounding box seem to be off despite when I do the roboflow save action to...
When calling `model.predict('https://example.com/test.jpg)` with a URL the response contains: ``` results.image_dims {'width': 'Undefined', 'height': 'Undefined'} ``` Which is unfortunate since the Roboflow server (or inference library) is calculating the width/height...
Hi, when exporting an image classification dataset from Roboflow as `Folder Structure` format with train/validation splits, the folder which contains validation images is automatically named `valid`. However, YOLOv5-cls training expects...
When a dataset is downloaded via the API, the data.yaml file has inconsistent image paths. For example they look like: ``` test: ../test/images train: project-name/train/images val: project-name/valid/images ``` Oddly enough,...
In Windows 10 environment, when I ran the unit tests using `python -m unittest`, "test_download_returns_dataset" failed as shown in the screenshot below-  As we can see above, the the...
roboflow/core/project.py, line 482, self.check_valid_image(image) should be self.check_valid_image(path) image is only the filename.
Hello. Working on a project that current plugs into roboflow and getting the following exception. ``` File "/home/intellisite/.local/lib/python3.8/site-packages/roboflow/models/classification.py", line 68, in predict return PredictionGroup.create_prediction_group( TypeError: create_prediction_group() missing 1 required positional...
A normal image is composed by red, green, and blue (RGB) channels. Some image format, like .png, allow to have 4, where the 4th usually it's the transparency of the...
Hey there, I train a Multilabel classification on roboflow and then import the model on Spyder. the model works fine but I can not plot the prediction results! 