Instructions to use mlx-community/sam-audio-small-fp16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use mlx-community/sam-audio-small-fp16 with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir sam-audio-small-fp16 mlx-community/sam-audio-small-fp16
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
Update README.md
Browse fileschanged the HG repo it was pulling a non existent model repo
README.md
CHANGED
|
@@ -28,8 +28,8 @@ from mlx_audio.sts import SAMAudio, SAMAudioProcessor, save_audio
|
|
| 28 |
import mlx.core as mx
|
| 29 |
|
| 30 |
# Load model and processor
|
| 31 |
-
processor = SAMAudioProcessor.from_pretrained("
|
| 32 |
-
model = SAMAudio.from_pretrained("
|
| 33 |
|
| 34 |
# Process inputs
|
| 35 |
batch = processor(
|
|
|
|
| 28 |
import mlx.core as mx
|
| 29 |
|
| 30 |
# Load model and processor
|
| 31 |
+
processor = SAMAudioProcessor.from_pretrained("mlx-community/sam-audio-small-fp16")
|
| 32 |
+
model = SAMAudio.from_pretrained("mlx-community/sam-audio-small-fp16")
|
| 33 |
|
| 34 |
# Process inputs
|
| 35 |
batch = processor(
|