Instructions to use hf-internal-testing/tiny-random-UniSpeechSatForSequenceClassification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use hf-internal-testing/tiny-random-UniSpeechSatForSequenceClassification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="hf-internal-testing/tiny-random-UniSpeechSatForSequenceClassification")# Load model directly from transformers import AutoProcessor, AutoModelForAudioClassification processor = AutoProcessor.from_pretrained("hf-internal-testing/tiny-random-UniSpeechSatForSequenceClassification") model = AutoModelForAudioClassification.from_pretrained("hf-internal-testing/tiny-random-UniSpeechSatForSequenceClassification") - Notebooks
- Google Colab
- Kaggle
File size: 647 Bytes
f1c1656 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {
"bos_token": "<s>",
"do_lower_case": false,
"do_normalize": true,
"eos_token": "</s>",
"model_max_length": 1000000000000000019884624838656,
"name_or_path": "microsoft/unispeech-sat-base-100h-libri-ft",
"pad_token": "<pad>",
"replace_word_delimiter_char": " ",
"return_attention_mask": false,
"special_tokens_map_file": "/home/patrick/.cache/huggingface/transformers/6e305f345764752bb3b07ab4eaeebe722f895e6f1286d4821a76801f05282e5c.9d6cd81ef646692fb1c169a880161ea1cb95f49694f220aced9b704b457e51dd",
"tokenizer_class": "Wav2Vec2CTCTokenizer",
"tokenizer_file": null,
"unk_token": "<unk>",
"word_delimiter_token": "|"
}
|