@huggingface/tasks 0.9.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +9 -0
- package/dist/index.d.ts +13 -2
- package/dist/index.js +9 -0
- package/package.json +1 -1
- package/src/model-libraries.ts +9 -0
package/dist/index.cjs
CHANGED
|
@@ -4635,6 +4635,15 @@ var MODEL_LIBRARIES_UI_ELEMENTS = {
|
|
|
4635
4635
|
repoName: "doctr",
|
|
4636
4636
|
repoUrl: "https://github.com/mindee/doctr"
|
|
4637
4637
|
},
|
|
4638
|
+
elm: {
|
|
4639
|
+
prettyLabel: "ELM",
|
|
4640
|
+
repoName: "elm",
|
|
4641
|
+
repoUrl: "https://github.com/slicex-ai/elm",
|
|
4642
|
+
filter: false,
|
|
4643
|
+
countDownloads: {
|
|
4644
|
+
wildcard: { path: "*/slicex_elm_config.json" }
|
|
4645
|
+
}
|
|
4646
|
+
},
|
|
4638
4647
|
espnet: {
|
|
4639
4648
|
prettyLabel: "ESPnet",
|
|
4640
4649
|
repoName: "ESPnet",
|
package/dist/index.d.ts
CHANGED
|
@@ -799,6 +799,17 @@ declare const MODEL_LIBRARIES_UI_ELEMENTS: {
|
|
|
799
799
|
repoName: string;
|
|
800
800
|
repoUrl: string;
|
|
801
801
|
};
|
|
802
|
+
elm: {
|
|
803
|
+
prettyLabel: string;
|
|
804
|
+
repoName: string;
|
|
805
|
+
repoUrl: string;
|
|
806
|
+
filter: false;
|
|
807
|
+
countDownloads: {
|
|
808
|
+
wildcard: {
|
|
809
|
+
path: string;
|
|
810
|
+
};
|
|
811
|
+
};
|
|
812
|
+
};
|
|
802
813
|
espnet: {
|
|
803
814
|
prettyLabel: string;
|
|
804
815
|
repoName: string;
|
|
@@ -1158,8 +1169,8 @@ declare const MODEL_LIBRARIES_UI_ELEMENTS: {
|
|
|
1158
1169
|
};
|
|
1159
1170
|
};
|
|
1160
1171
|
type ModelLibraryKey = keyof typeof MODEL_LIBRARIES_UI_ELEMENTS;
|
|
1161
|
-
declare const ALL_MODEL_LIBRARY_KEYS: ("sklearn" | "adapter-transformers" | "allennlp" | "asteroid" | "audiocraft" | "bertopic" | "diffusers" | "doctr" | "espnet" | "fairseq" | "fastai" | "fasttext" | "flair" | "gliner" | "grok" | "keras" | "keras-nlp" | "k2" | "mindspore" | "ml-agents" | "mlx" | "mlx-image" | "nemo" | "open_clip" | "paddlenlp" | "peft" | "pyannote-audio" | "pythae" | "sample-factory" | "sentence-transformers" | "setfit" | "spacy" | "span-marker" | "speechbrain" | "stable-baselines3" | "stanza" | "tensorflowtts" | "timm" | "transformers" | "transformers.js" | "unity-sentis" | "voicecraft" | "whisperkit")[];
|
|
1162
|
-
declare const ALL_DISPLAY_MODEL_LIBRARY_KEYS: ("sklearn" | "adapter-transformers" | "allennlp" | "asteroid" | "audiocraft" | "bertopic" | "diffusers" | "doctr" | "espnet" | "fairseq" | "fastai" | "fasttext" | "flair" | "gliner" | "grok" | "keras" | "keras-nlp" | "k2" | "mindspore" | "ml-agents" | "mlx" | "mlx-image" | "nemo" | "open_clip" | "paddlenlp" | "peft" | "pyannote-audio" | "pythae" | "sample-factory" | "sentence-transformers" | "setfit" | "spacy" | "span-marker" | "speechbrain" | "stable-baselines3" | "stanza" | "tensorflowtts" | "timm" | "transformers" | "transformers.js" | "unity-sentis" | "voicecraft" | "whisperkit")[];
|
|
1172
|
+
declare const ALL_MODEL_LIBRARY_KEYS: ("sklearn" | "adapter-transformers" | "allennlp" | "asteroid" | "audiocraft" | "bertopic" | "diffusers" | "doctr" | "elm" | "espnet" | "fairseq" | "fastai" | "fasttext" | "flair" | "gliner" | "grok" | "keras" | "keras-nlp" | "k2" | "mindspore" | "ml-agents" | "mlx" | "mlx-image" | "nemo" | "open_clip" | "paddlenlp" | "peft" | "pyannote-audio" | "pythae" | "sample-factory" | "sentence-transformers" | "setfit" | "spacy" | "span-marker" | "speechbrain" | "stable-baselines3" | "stanza" | "tensorflowtts" | "timm" | "transformers" | "transformers.js" | "unity-sentis" | "voicecraft" | "whisperkit")[];
|
|
1173
|
+
declare const ALL_DISPLAY_MODEL_LIBRARY_KEYS: ("sklearn" | "adapter-transformers" | "allennlp" | "asteroid" | "audiocraft" | "bertopic" | "diffusers" | "doctr" | "elm" | "espnet" | "fairseq" | "fastai" | "fasttext" | "flair" | "gliner" | "grok" | "keras" | "keras-nlp" | "k2" | "mindspore" | "ml-agents" | "mlx" | "mlx-image" | "nemo" | "open_clip" | "paddlenlp" | "peft" | "pyannote-audio" | "pythae" | "sample-factory" | "sentence-transformers" | "setfit" | "spacy" | "span-marker" | "speechbrain" | "stable-baselines3" | "stanza" | "tensorflowtts" | "timm" | "transformers" | "transformers.js" | "unity-sentis" | "voicecraft" | "whisperkit")[];
|
|
1163
1174
|
|
|
1164
1175
|
/**
|
|
1165
1176
|
* Mapping from library name to its supported tasks.
|
package/dist/index.js
CHANGED
|
@@ -4600,6 +4600,15 @@ var MODEL_LIBRARIES_UI_ELEMENTS = {
|
|
|
4600
4600
|
repoName: "doctr",
|
|
4601
4601
|
repoUrl: "https://github.com/mindee/doctr"
|
|
4602
4602
|
},
|
|
4603
|
+
elm: {
|
|
4604
|
+
prettyLabel: "ELM",
|
|
4605
|
+
repoName: "elm",
|
|
4606
|
+
repoUrl: "https://github.com/slicex-ai/elm",
|
|
4607
|
+
filter: false,
|
|
4608
|
+
countDownloads: {
|
|
4609
|
+
wildcard: { path: "*/slicex_elm_config.json" }
|
|
4610
|
+
}
|
|
4611
|
+
},
|
|
4603
4612
|
espnet: {
|
|
4604
4613
|
prettyLabel: "ESPnet",
|
|
4605
4614
|
repoName: "ESPnet",
|
package/package.json
CHANGED
package/src/model-libraries.ts
CHANGED
|
@@ -116,6 +116,15 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = {
|
|
|
116
116
|
repoName: "doctr",
|
|
117
117
|
repoUrl: "https://github.com/mindee/doctr",
|
|
118
118
|
},
|
|
119
|
+
elm: {
|
|
120
|
+
prettyLabel: "ELM",
|
|
121
|
+
repoName: "elm",
|
|
122
|
+
repoUrl: "https://github.com/slicex-ai/elm",
|
|
123
|
+
filter: false,
|
|
124
|
+
countDownloads: {
|
|
125
|
+
wildcard: { path: "*/slicex_elm_config.json" },
|
|
126
|
+
},
|
|
127
|
+
},
|
|
119
128
|
espnet: {
|
|
120
129
|
prettyLabel: "ESPnet",
|
|
121
130
|
repoName: "ESPnet",
|