Instructions to use Matthijs/encodec_24khz with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Matthijs/encodec_24khz with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Matthijs/encodec_24khz")# Load model directly from transformers import AutoFeatureExtractor, AutoModel extractor = AutoFeatureExtractor.from_pretrained("Matthijs/encodec_24khz") model = AutoModel.from_pretrained("Matthijs/encodec_24khz") - Notebooks
- Google Colab
- Kaggle