Instructions to use mispeech/dasheng-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mispeech/dasheng-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="mispeech/dasheng-base", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mispeech/dasheng-base", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -15,12 +15,6 @@ Dasheng (**D**eep **A**udio-**S**ignal **H**olistic **E**mbeddi**ng**s), or “
|
|
| 15 |
|
| 16 |
## Usage
|
| 17 |
|
| 18 |
-
### Install
|
| 19 |
-
|
| 20 |
-
```bash
|
| 21 |
-
pip install git+https://github.com/jimbozhang/hf_transformers_custom_model_dasheng.git
|
| 22 |
-
```
|
| 23 |
-
|
| 24 |
### Inference
|
| 25 |
|
| 26 |
```python
|
|
|
|
| 15 |
|
| 16 |
## Usage
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
### Inference
|
| 19 |
|
| 20 |
```python
|