Voxel51/getting-started-labeled-validation
Viewer
โข
Updated
โข
143
โข
16
Visual AI, Computer vision, Multimodal AI, Data Centric AI
title
: The title of the paperauthors_list
: The list of authorsabstract
: The abstract of the paperarxiv_link
: Link to the paper on arXivother_link
: Link to the project page, if foundcategory_name
: The primary category this paper according to [arXiv taxonomy](https://arxiv.org/category_taxonomy)all_categories
: All categories this paper falls into, according to arXiv taxonomykeywords
: Extracted using GPT-4o0.23.8
, the FiftyOne open source library for dataset curation and visualization is now integrated with the Hugging Face Hub!pip install -U fiftyone
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
dataset = fouh.load_from_hub(
"mnist",
format="ParquetFilesDataset",
classification_fields="label",
)
session = fo.launch_app(dataset)
import fiftyone as fo
import fiftyone.utils.huggingface as fouh
dataset = fouh.load_from_hub("jamarks/VisDrone2019-DET", max_samples=1000)
# Launch the App
session = fo.launch_app(dataset)
import fiftyone.zoo as foz
import fiftyone.utils.huggingface as fouh
dataset = foz.load_zoo_dataset("quickstart")
fouh.push_to_hub(dataset, "my-dataset")
pip install competitions
, then run competitions create
and create competition by answering a few questions ๐ฅ Checkout the github repo: https://github.com/huggingface/competitions and docs: https://hf.co/docs/competitions