@huggingface/tasks 0.3.1 → 0.3.3
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 +126 -179
- package/dist/index.d.ts +26 -13
- package/dist/index.js +125 -179
- package/package.json +1 -1
- package/src/default-widget-inputs.ts +2 -2
- package/src/index.ts +3 -0
- package/src/library-to-tasks.ts +1 -1
- package/src/model-data.ts +2 -0
- package/src/pipelines.ts +16 -12
- package/src/snippets/curl.ts +0 -1
- package/src/snippets/inputs.ts +0 -8
- package/src/snippets/js.ts +0 -1
- package/src/snippets/python.ts +0 -1
- package/src/tasks/index.ts +4 -4
- package/src/tokenizer-data.ts +24 -0
- package/src/tasks/conversational/about.md +0 -50
- package/src/tasks/conversational/data.ts +0 -66
package/dist/index.d.ts
CHANGED
|
@@ -104,15 +104,6 @@ declare const PIPELINE_DATA: {
|
|
|
104
104
|
modality: "nlp";
|
|
105
105
|
color: "indigo";
|
|
106
106
|
};
|
|
107
|
-
conversational: {
|
|
108
|
-
name: string;
|
|
109
|
-
subtasks: {
|
|
110
|
-
type: string;
|
|
111
|
-
name: string;
|
|
112
|
-
}[];
|
|
113
|
-
modality: "nlp";
|
|
114
|
-
color: "green";
|
|
115
|
-
};
|
|
116
107
|
"feature-extraction": {
|
|
117
108
|
name: string;
|
|
118
109
|
modality: "nlp";
|
|
@@ -392,6 +383,11 @@ declare const PIPELINE_DATA: {
|
|
|
392
383
|
modality: "cv";
|
|
393
384
|
color: "green";
|
|
394
385
|
};
|
|
386
|
+
"image-feature-extraction": {
|
|
387
|
+
name: string;
|
|
388
|
+
modality: "cv";
|
|
389
|
+
color: "indigo";
|
|
390
|
+
};
|
|
395
391
|
other: {
|
|
396
392
|
name: string;
|
|
397
393
|
modality: "other";
|
|
@@ -401,9 +397,10 @@ declare const PIPELINE_DATA: {
|
|
|
401
397
|
};
|
|
402
398
|
};
|
|
403
399
|
type PipelineType = keyof typeof PIPELINE_DATA;
|
|
404
|
-
|
|
400
|
+
type WidgetType = PipelineType | "conversational";
|
|
401
|
+
declare const PIPELINE_TYPES: ("other" | "text-classification" | "token-classification" | "table-question-answering" | "question-answering" | "zero-shot-classification" | "translation" | "summarization" | "feature-extraction" | "text-generation" | "text2text-generation" | "fill-mask" | "sentence-similarity" | "text-to-speech" | "text-to-audio" | "automatic-speech-recognition" | "audio-to-audio" | "audio-classification" | "voice-activity-detection" | "depth-estimation" | "image-classification" | "object-detection" | "image-segmentation" | "text-to-image" | "image-to-text" | "image-to-image" | "image-to-video" | "unconditional-image-generation" | "video-classification" | "reinforcement-learning" | "robotics" | "tabular-classification" | "tabular-regression" | "tabular-to-text" | "table-to-text" | "multiple-choice" | "text-retrieval" | "time-series-forecasting" | "text-to-video" | "image-text-to-text" | "visual-question-answering" | "document-question-answering" | "zero-shot-image-classification" | "graph-ml" | "mask-generation" | "zero-shot-object-detection" | "text-to-3d" | "image-to-3d" | "image-feature-extraction")[];
|
|
405
402
|
declare const SUBTASK_TYPES: string[];
|
|
406
|
-
declare const PIPELINE_TYPES_SET: Set<"other" | "text-classification" | "token-classification" | "table-question-answering" | "question-answering" | "zero-shot-classification" | "translation" | "summarization" | "
|
|
403
|
+
declare const PIPELINE_TYPES_SET: Set<"other" | "text-classification" | "token-classification" | "table-question-answering" | "question-answering" | "zero-shot-classification" | "translation" | "summarization" | "feature-extraction" | "text-generation" | "text2text-generation" | "fill-mask" | "sentence-similarity" | "text-to-speech" | "text-to-audio" | "automatic-speech-recognition" | "audio-to-audio" | "audio-classification" | "voice-activity-detection" | "depth-estimation" | "image-classification" | "object-detection" | "image-segmentation" | "text-to-image" | "image-to-text" | "image-to-image" | "image-to-video" | "unconditional-image-generation" | "video-classification" | "reinforcement-learning" | "robotics" | "tabular-classification" | "tabular-regression" | "tabular-to-text" | "table-to-text" | "multiple-choice" | "text-retrieval" | "time-series-forecasting" | "text-to-video" | "image-text-to-text" | "visual-question-answering" | "document-question-answering" | "zero-shot-image-classification" | "graph-ml" | "mask-generation" | "zero-shot-object-detection" | "text-to-3d" | "image-to-3d" | "image-feature-extraction">;
|
|
407
404
|
|
|
408
405
|
/**
|
|
409
406
|
* See default-widget-inputs.ts for the default widget inputs, this files only contains the types
|
|
@@ -483,6 +480,21 @@ type WidgetExample<TOutput = WidgetExampleOutput> = WidgetExampleTextInput<TOutp
|
|
|
483
480
|
type KeysOfUnion<T> = T extends unknown ? keyof T : never;
|
|
484
481
|
type WidgetExampleAttribute = KeysOfUnion<WidgetExample>;
|
|
485
482
|
|
|
483
|
+
declare const SPECIAL_TOKENS_ATTRIBUTES: readonly ["bos_token", "eos_token", "unk_token", "sep_token", "pad_token", "cls_token", "mask_token"];
|
|
484
|
+
/**
|
|
485
|
+
* Public interface for a tokenizer's special tokens mapping
|
|
486
|
+
*/
|
|
487
|
+
type SpecialTokensMap = {
|
|
488
|
+
[key in (typeof SPECIAL_TOKENS_ATTRIBUTES)[number]]?: string;
|
|
489
|
+
};
|
|
490
|
+
/**
|
|
491
|
+
* Public interface for tokenizer config
|
|
492
|
+
*/
|
|
493
|
+
interface TokenizerConfig extends SpecialTokensMap {
|
|
494
|
+
use_default_system_prompt?: boolean;
|
|
495
|
+
chat_template?: string;
|
|
496
|
+
}
|
|
497
|
+
|
|
486
498
|
declare enum InferenceDisplayability {
|
|
487
499
|
/**
|
|
488
500
|
* Yes
|
|
@@ -537,6 +549,7 @@ interface ModelData {
|
|
|
537
549
|
base_model_name?: string;
|
|
538
550
|
task_type?: string;
|
|
539
551
|
};
|
|
552
|
+
tokenizer_config?: TokenizerConfig;
|
|
540
553
|
};
|
|
541
554
|
/**
|
|
542
555
|
* all the model tags
|
|
@@ -1050,7 +1063,7 @@ declare const ALL_DISPLAY_MODEL_LIBRARY_KEYS: ("sklearn" | "adapter-transformers
|
|
|
1050
1063
|
*/
|
|
1051
1064
|
declare const LIBRARY_TASK_MAPPING_EXCLUDING_TRANSFORMERS: Partial<Record<ModelLibraryKey, PipelineType[]>>;
|
|
1052
1065
|
|
|
1053
|
-
type PerLanguageMapping = Map<
|
|
1066
|
+
type PerLanguageMapping = Map<WidgetType, string[] | WidgetExample[]>;
|
|
1054
1067
|
declare const MAPPING_DEFAULT_WIDGET: Map<string, PerLanguageMapping>;
|
|
1055
1068
|
|
|
1056
1069
|
/**
|
|
@@ -1218,4 +1231,4 @@ declare namespace index {
|
|
|
1218
1231
|
};
|
|
1219
1232
|
}
|
|
1220
1233
|
|
|
1221
|
-
export { ALL_DISPLAY_MODEL_LIBRARY_KEYS, ALL_MODEL_LIBRARY_KEYS, ExampleRepo, InferenceDisplayability, LIBRARY_TASK_MAPPING_EXCLUDING_TRANSFORMERS, LibraryUiElement, MAPPING_DEFAULT_WIDGET, MODALITIES, MODALITY_LABELS, MODEL_LIBRARIES_UI_ELEMENTS, Modality, ModelData, ModelLibraryKey, PIPELINE_DATA, PIPELINE_TYPES, PIPELINE_TYPES_SET, PipelineData, PipelineType, SUBTASK_TYPES, TASKS_DATA, TASKS_MODEL_LIBRARIES, TaskData, TaskDataCustom, TaskDemo, TaskDemoEntry, TransformersInfo, WidgetExample, WidgetExampleAssetAndPromptInput, WidgetExampleAssetAndTextInput, WidgetExampleAssetAndZeroShotInput, WidgetExampleAssetInput, WidgetExampleAttribute, WidgetExampleOutput, WidgetExampleOutputAnswerScore, WidgetExampleOutputLabels, WidgetExampleOutputText, WidgetExampleOutputUrl, WidgetExampleSentenceSimilarityInput, WidgetExampleStructuredDataInput, WidgetExampleTableDataInput, WidgetExampleTextAndContextInput, WidgetExampleTextAndTableInput, WidgetExampleTextInput, WidgetExampleZeroShotTextInput, index as snippets };
|
|
1234
|
+
export { ALL_DISPLAY_MODEL_LIBRARY_KEYS, ALL_MODEL_LIBRARY_KEYS, ExampleRepo, InferenceDisplayability, LIBRARY_TASK_MAPPING_EXCLUDING_TRANSFORMERS, LibraryUiElement, MAPPING_DEFAULT_WIDGET, MODALITIES, MODALITY_LABELS, MODEL_LIBRARIES_UI_ELEMENTS, Modality, ModelData, ModelLibraryKey, PIPELINE_DATA, PIPELINE_TYPES, PIPELINE_TYPES_SET, PipelineData, PipelineType, SPECIAL_TOKENS_ATTRIBUTES, SUBTASK_TYPES, SpecialTokensMap, TASKS_DATA, TASKS_MODEL_LIBRARIES, TaskData, TaskDataCustom, TaskDemo, TaskDemoEntry, TokenizerConfig, TransformersInfo, WidgetExample, WidgetExampleAssetAndPromptInput, WidgetExampleAssetAndTextInput, WidgetExampleAssetAndZeroShotInput, WidgetExampleAssetInput, WidgetExampleAttribute, WidgetExampleOutput, WidgetExampleOutputAnswerScore, WidgetExampleOutputLabels, WidgetExampleOutputText, WidgetExampleOutputUrl, WidgetExampleSentenceSimilarityInput, WidgetExampleStructuredDataInput, WidgetExampleTableDataInput, WidgetExampleTextAndContextInput, WidgetExampleTextAndTableInput, WidgetExampleTextInput, WidgetExampleZeroShotTextInput, WidgetType, index as snippets };
|