Datasets:
Tasks:
Image Segmentation
Modalities:
Image
Formats:
parquet
Sub-tasks:
semantic-segmentation
Size:
1K - 10K
ArXiv:
License:
How can I open the data?
#1
by
Codemaker
- opened
When download, it gives me a PARQUET file. What is that? How can i normally open it like a just image repository?
When download, it gives me a PARQUET file. What is that? How can i normally open it like a just image repository?
You can use this dataset together with the datasets
library. Basically, pip install datasets
and then you can:
from datasets import load_dataset
ds = load_dataset("EduardoPacheco/FoodSeg103")
...
If you're new to the datasets
library I'd recommend you to take a look at their docs
Hi, thank you so much for your response. Do you know if here in HF exists some python project which uses this data to train a model which a image of food is given and it just predicts the list of ingredients? Thanks!! Regards!!