kehanlu commited on
Commit
d08f785
·
verified ·
1 Parent(s): b1698bb

README: code now lives on GitHub

Browse files
Files changed (1) hide show
  1. README.md +8 -3
README.md CHANGED
@@ -46,12 +46,17 @@ book. Is the speaker male or female? Answer with one word." The clean-up is the
46
 
47
  ## Usage
48
 
 
 
 
 
 
 
49
  ```python
50
- from huggingface_hub import hf_hub_download, snapshot_download
51
  import sys, torch
52
 
53
- code = snapshot_download("kehanlu/interspeech-tutorial", allow_patterns="code/*")
54
- sys.path.insert(0, f"{code}/code")
55
  from inference import SpeechLLMForInference
56
 
57
  ckpt = hf_hub_download("kehanlu/interspeech-tutorial", "selfgen/model.ckpt")
 
46
 
47
  ## Usage
48
 
49
+ The model code is in the GitHub repo:
50
+
51
+ ```bash
52
+ git clone https://github.com/kehanlu/interspeech-tutorial
53
+ ```
54
+
55
  ```python
56
+ from huggingface_hub import hf_hub_download
57
  import sys, torch
58
 
59
+ sys.path.insert(0, "interspeech-tutorial")
 
60
  from inference import SpeechLLMForInference
61
 
62
  ckpt = hf_hub_download("kehanlu/interspeech-tutorial", "selfgen/model.ckpt")