Merging in a Bottle: Differentiable Adaptive Merging (DAM) and the Path from Averaging to Automation
Paper
•
2410.08371
•
Published
•
1
A new generation of foundation models from first principles.
0.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")