Automatic Speech Recognition
Transformers
Safetensors
English
Italian
conformer_encoder_decoder
speech
speech recognition
speech translation
ASR
ST
custom_code
Instructions to use FBK-MT/fama-medium with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FBK-MT/fama-medium with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="FBK-MT/fama-medium", trust_remote_code=True, device_map="auto")# Load model directly from transformers import AutoModelForSpeechSeq2Seq model = AutoModelForSpeechSeq2Seq.from_pretrained("FBK-MT/fama-medium", trust_remote_code=True, dtype="auto", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Uniform FAMA model cards
Browse files
README.md
CHANGED
|
@@ -45,8 +45,6 @@ All the artifacts used for realizing FAMA models, including codebase, datasets,
|
|
| 45 |
themself are [released under OS-compliant licenses](#license), promoting a more
|
| 46 |
responsible creation of models in our community.
|
| 47 |
|
| 48 |
-
For further details, please refer to the paper [FAMA: The First Large-Scale Open-Science Speech Foundation Model for English and Italian](https://huggingface.co/papers/2505.22759).
|
| 49 |
-
|
| 50 |
It is available in 2 sizes, with 2 variants for ASR only:
|
| 51 |
|
| 52 |
- [FAMA-small](https://huggingface.co/FBK-MT/fama-small) - 475 million parameters
|
|
@@ -54,8 +52,8 @@ It is available in 2 sizes, with 2 variants for ASR only:
|
|
| 54 |
- [FAMA-small-asr](https://huggingface.co/FBK-MT/fama-small-asr) - 475 million parameters
|
| 55 |
- [FAMA-medium-asr](https://huggingface.co/FBK-MT/fama-medium-asr) - 878 million parameters
|
| 56 |
|
| 57 |
-
For
|
| 58 |
-
|
| 59 |
|
| 60 |
## Usage
|
| 61 |
|
|
|
|
| 45 |
themself are [released under OS-compliant licenses](#license), promoting a more
|
| 46 |
responsible creation of models in our community.
|
| 47 |
|
|
|
|
|
|
|
| 48 |
It is available in 2 sizes, with 2 variants for ASR only:
|
| 49 |
|
| 50 |
- [FAMA-small](https://huggingface.co/FBK-MT/fama-small) - 475 million parameters
|
|
|
|
| 52 |
- [FAMA-small-asr](https://huggingface.co/FBK-MT/fama-small-asr) - 475 million parameters
|
| 53 |
- [FAMA-medium-asr](https://huggingface.co/FBK-MT/fama-medium-asr) - 878 million parameters
|
| 54 |
|
| 55 |
+
For further details, please refer to the paper [FAMA: The First Large-Scale Open-Science Speech Foundation Model for English and Italian](https://huggingface.co/papers/2505.22759).
|
| 56 |
+
The code is available in the [Github repository](https://github.com/hlt-mt/FBK-fairseq).
|
| 57 |
|
| 58 |
## Usage
|
| 59 |
|