Audio Classification
English
music
art
admin commited on
Commit
7a5c15a
·
1 Parent(s): 7d07e64
Files changed (2) hide show
  1. .gitignore +2 -1
  2. README.md +6 -1
.gitignore CHANGED
@@ -1 +1,2 @@
1
- rename.sh
 
 
1
+ test.*
2
+ *__pycache__*
README.md CHANGED
@@ -21,7 +21,12 @@ The Erhu Performance Technique Recognition Model is an audio analysis tool based
21
  ## Usage
22
  ```python
23
  from huggingface_hub import snapshot_download
24
- model_dir = snapshot_download("ccmusic-database/erhu_playing_tech")
 
 
 
 
 
25
  ```
26
 
27
  ## Maintenance
 
21
  ## Usage
22
  ```python
23
  from huggingface_hub import snapshot_download
24
+
25
+ model_dir = snapshot_download(
26
+ "ccmusic-database/erhu_playing_tech",
27
+ cache_dir="./__pycache__",
28
+ )
29
+ print(model_dir)
30
  ```
31
 
32
  ## Maintenance