Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,21 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
tags:
|
4 |
+
- audio tagging
|
5 |
+
- audio events
|
6 |
+
- audio embeddings
|
7 |
+
- convnext-audio
|
8 |
+
- audioset
|
9 |
+
inference: false
|
10 |
+
extra_gated_prompt: "The collected information will help acquire a better knowledge of who is using our audio event tools. If relevant, please cite our Interspeech 2023 paper."
|
11 |
+
extra_gated_fields:
|
12 |
+
Company/university: text
|
13 |
+
Website: text
|
14 |
---
|
15 |
+
|
16 |
+
```python
|
17 |
+
from audioset_convnext_inf.pytorch.convnext import ConvNeXt
|
18 |
+
|
19 |
+
model = ConvNeXt.from_pretrained(model_fpath, use_auth_token=None, map_location='cpu', use_auth_token="ACCESS_TOKEN_GOES_HERE")
|
20 |
+
```
|
21 |
+
|