admin commited on
Commit
3d9a704
·
1 Parent(s): 638b360
Files changed (2) hide show
  1. .gitignore +2 -0
  2. README.md +6 -1
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ test.*
2
+ *__pycache__*
README.md CHANGED
@@ -11,7 +11,12 @@ The Chinese Traditional Instrument Sound Model is a cutting-edge research outcom
11
  ## Usage
12
  ```python
13
  from huggingface_hub import snapshot_download
14
- model_dir = snapshot_download("ccmusic-database/CTIS")
 
 
 
 
 
15
  ```
16
 
17
  ## Maintenance
 
11
  ## Usage
12
  ```python
13
  from huggingface_hub import snapshot_download
14
+
15
+ model_dir = snapshot_download(
16
+ "ccmusic-database/CTIS",
17
+ cache_dir="./__pycache__",
18
+ )
19
+ print(model_dir)
20
  ```
21
 
22
  ## Maintenance