Instructions to use DUTAOZHANG/Styele2Code_model2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- pyannote.audio
How to use DUTAOZHANG/Styele2Code_model2 with pyannote.audio:
from pyannote.audio import Model, Inference model = Model.from_pretrained("DUTAOZHANG/Styele2Code_model2") inference = Inference(model) # inference on the whole file inference("file.wav") # inference on an excerpt from pyannote.core import Segment excerpt = Segment(start=2.0, end=5.0) inference.crop("file.wav", excerpt) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,4 +10,7 @@ language:
|
|
| 10 |
- en
|
| 11 |
new_version: google/flan-t5-large
|
| 12 |
pipeline_tag: graph-ml
|
|
|
|
|
|
|
|
|
|
| 13 |
---
|
|
|
|
| 10 |
- en
|
| 11 |
new_version: google/flan-t5-large
|
| 12 |
pipeline_tag: graph-ml
|
| 13 |
+
datasets:
|
| 14 |
+
- none-yet/anime-captions
|
| 15 |
+
library_name: pyannote-audio
|
| 16 |
---
|