Feature Extraction
Transformers
PyTorch
Safetensors
Fairseq
French
pantagruel_uni
data2vec2
JEPA
speech
custom_code
Instructions to use PantagrueLLM/speech-base-1K with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PantagrueLLM/speech-base-1K with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="PantagrueLLM/speech-base-1K", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("PantagrueLLM/speech-base-1K", trust_remote_code=True, device_map="auto") - Fairseq
How to use PantagrueLLM/speech-base-1K with Fairseq:
from fairseq.checkpoint_utils import load_model_ensemble_and_task_from_hf_hub models, cfg, task = load_model_ensemble_and_task_from_hf_hub( "PantagrueLLM/speech-base-1K" ) - Notebooks
- Google Colab
- Kaggle
File size: 1,141 Bytes
3f0e4de ca4a86a 3f0e4de | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | {
"<s>": 0,
"<pad>": 1,
"</s>": 2,
"<unk>": 3,
"|": 4,
"E": 5,
"S": 6,
"A": 7,
"T": 8,
"I": 9,
"N": 10,
"R": 11,
"L": 12,
"U": 13,
"O": 14,
"D": 15,
"C": 16,
"M": 17,
"P": 18,
"É": 19,
"V": 20,
"G": 21,
"'": 22,
"F": 23,
"B": 24,
"H": 25,
"Q": 26,
"È": 27,
"À": 28,
"X": 29,
"J": 30,
"Y": 31,
"K": 32,
"Z": 33,
"Ê": 34,
"W": 35,
"Ç": 36,
"Â": 37,
"Ô": 38,
"Î": 39,
"Ï": 40,
"Û": 41,
"Ù": 42,
"Á": 43,
"Ë": 44,
"Í": 45,
"Ü": 46,
"Ö": 47,
"Ó": 48,
"Ä": 49,
"Ñ": 50,
"Ú": 51,
"Ø": 52,
"Ã": 53,
"Æ": 54,
"Å": 55,
"Ý": 56,
"Ò": 57,
"Ð": 58,
"Ì": 59,
"Õ": 60,
"Þ": 61,
"Г": 62,
"А": 63,
"Е": 64,
"І": 65,
"Ј": 66,
"З": 67,
"И": 68,
"К": 69,
"М": 70,
"Н": 71,
"П": 72,
"Р": 73,
"Э": 74,
"Ҫ": 75,
"madeupword0000": 76,
"madeupword0001": 77,
"madeupword0002": 78,
"madeupword0003": 79
} |