Labbeti commited on
Commit
f0d7494
1 Parent(s): d314b49

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -15,4 +15,15 @@ task_categories:
15
 
16
  This model generate a short textual description of any audio file.
17
 
18
- This model was created by [@Labbeti](https://hf.co/Labbeti).
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  This model generate a short textual description of any audio file.
17
 
18
+ ```bash
19
+ pip install conette
20
+ ```
21
+
22
+ ```py
23
+ from conette import CoNeTTEConfig, CoNeTTEModel
24
+
25
+ config = CoNeTTEConfig.from_pretrained("Labbeti/conette")
26
+ model = CoNeTTEModel.from_pretrained("Labbeti/conette", config=config)
27
+ ```
28
+
29
+ It was created by [@Labbeti](https://hf.co/Labbeti).