LFM2 Technical Report
Paper
•
2511.23404
•
Published
•
40
It's not possible to share a private repo with specific users, an organization is needed for that purpose
0.23.8, the FiftyOne open source library for dataset curation and visualization is now integrated with the Hugging Face Hub!pip install -U fiftyoneimport 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")