For computer vision, there are 100k+ open source classification, object detection, and segmentation datasets available on Roboflow Universe: https://universe.roboflow.com
TensorFlow Datasets
11–14 of 14 posts
Re: TensorFlow Datasets
#12Earlier quoted context omitted.
HF datasets have a much better UX for this
UX preferences vary. Imo, hf is too verbose and their pages try to cram in too much information with poor information hierarchy. For example: https://huggingface.co/datasets/glue https://www.tensorflow.org/datasets/catalog/glue
For Glue, HF wins, hands-down, IMO.
Re: TensorFlow Datasets
#13I actually prefer Hugging Face Datasets - there's 16k+ of them today: https://huggingface.co/datasets
Quantity of datasets doesn’t seem like the right metric. The library just needs the datasets you care about and both libraries have the popular ones. What’s more important is integration and if you’re training custom TF models then tfds will generally integrate more smoothly than huggingface.
TFDS performed extremely bad.
First it failed because the official hosting server only allows 5 simultaneous connections, and TFDS totally ignored that and makes up to 50 simultaneous downloads and that breaks. I wonder if anyone actually tested this?
Then you need to have some computer with 30GB to do the preparation, which might fail on your computer. This is where I stopped. https://github.com/tensorflow/datasets/issues/3887. It might be fixed now but it took them 8 months to respond to my issue.
On HF, it just worked. There was a smaller issue in how the dataset was split up but that is fixed now, and their response was very fast and great.
Re: TensorFlow Datasets
#14Earlier quoted context omitted.
UX preferences vary. Imo, hf is too verbose and their pages try to cram in too much information with poor information hierarchy. For example: https://huggingface.co/datasets/glue https://www.tensorflow.org/datasets/catalog/glue
In this case, I don't see UIs, i see HF have a 1GB+ dataset that is curated. TF, in contrast, has 10 glue datasets varying from KBs! to 100s of MBs in size. For Glue, HF wins, hands-down, IMO.