I am trying
import fiftyone as fo
dataset = fo.load_dataset("import_test")
the project which exists and have such project name, I've created in CVAT before.
Such call was used in https://githubhelp.com/voxel51/fiftyone/issues/1611
but I am getting
ValueError: Dataset 'import_test' not found
In the documentation: https://voxel51.com/docs/fiftyone/integrations/cvat.html examples and other questions:
- https://colab.research.google.com/github/voxel51/fiftyone-examples/blob/master/examples/pytorch_detection_training.ipynb#scrollTo=5crNDNsRWdPT
- Uploading large dataset from FiftyOne to CVAT
- https://medium.com/voxel51/loading-open-images-v6-and-custom-datasets-with-fiftyone-18b5334851c3
there are only usage of sample fiftyone dataet:
dataset = foz.load_zoo_dataset("...")
which works correctly for me as CVAT server connection check, but don't suit my work needs. In https://towardsdatascience.com/tools-to-annotate-and-improve-computer-vision-datasets-f9b99cdb0e04 using local machine stored dataset
dataset = fo.Dataset.from_dir("...")
Can I load already created project initially created in CVAT from server, what argument is supposed to be used except it's CVAT's name of project? Is it possible or it has to be initially fiftyone dataset?