Skip to content

Commit

Permalink
add dataset libraries: distilabel, fiftyone, argilla (#797)
Browse files Browse the repository at this point in the history
Co-authored-by: burtenshaw <[email protected]>
  • Loading branch information
severo and burtenshaw authored Jul 15, 2024
1 parent cd2c0f6 commit f153feb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tasks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This package contains the definition files (written in Typescript) for the huggi

- **pipeline types** (a.k.a. **task types**) - used to determine which widget to display on the model page, and which inference API to run.
- **default widget inputs** - when they aren't provided in the model card.
- definitions and UI elements for **model libraries** (and soon for **dataset libraries**).
- definitions and UI elements for **model and dataset libraries**.

Please add any missing ones to these definitions by opening a PR. Thanks 🔥

Expand Down
18 changes: 18 additions & 0 deletions packages/tasks/src/dataset-libraries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,24 @@ export const DATASET_LIBRARIES_UI_ELEMENTS = {
repoUrl: "https://github.com/dask/dask",
docsUrl: "https://huggingface.co/docs/hub/datasets-dask",
},
distilabel: {
prettyLabel: "Distilabel",
repoName: "distilabel",
repoUrl: "https://github.com/argilla-io/distilabel",
docsUrl: "https://distilabel.argilla.io",
},
fiftyone: {
prettyLabel: "FiftyOne",
repoName: "fiftyone",
repoUrl: "https://github.com/voxel51/fiftyone",
docsUrl: "https://docs.voxel51.com",
},
argilla: {
prettyLabel: "Argilla",
repoName: "argilla",
repoUrl: "https://github.com/argilla-io/argilla",
docsUrl: "https://argilla-io.github.io/argilla",
},
} satisfies Record<string, DatasetLibraryUiElement>;

/// List of the dataset libraries supported by the Hub
Expand Down

0 comments on commit f153feb

Please sign in to comment.