Skip to content

Commit f153feb

Browse files
severoburtenshaw
andauthored
add dataset libraries: distilabel, fiftyone, argilla (huggingface#797)
Co-authored-by: burtenshaw <[email protected]>
1 parent cd2c0f6 commit f153feb

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

packages/tasks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This package contains the definition files (written in Typescript) for the huggi
44

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

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

packages/tasks/src/dataset-libraries.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,24 @@ export const DATASET_LIBRARIES_UI_ELEMENTS = {
5353
repoUrl: "https://github.com/dask/dask",
5454
docsUrl: "https://huggingface.co/docs/hub/datasets-dask",
5555
},
56+
distilabel: {
57+
prettyLabel: "Distilabel",
58+
repoName: "distilabel",
59+
repoUrl: "https://github.com/argilla-io/distilabel",
60+
docsUrl: "https://distilabel.argilla.io",
61+
},
62+
fiftyone: {
63+
prettyLabel: "FiftyOne",
64+
repoName: "fiftyone",
65+
repoUrl: "https://github.com/voxel51/fiftyone",
66+
docsUrl: "https://docs.voxel51.com",
67+
},
68+
argilla: {
69+
prettyLabel: "Argilla",
70+
repoName: "argilla",
71+
repoUrl: "https://github.com/argilla-io/argilla",
72+
docsUrl: "https://argilla-io.github.io/argilla",
73+
},
5674
} satisfies Record<string, DatasetLibraryUiElement>;
5775

5876
/// List of the dataset libraries supported by the Hub

0 commit comments

Comments
 (0)