mgoin commited on
Commit
035d17e
·
1 Parent(s): 2cb3b69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -4
README.md CHANGED
@@ -4,9 +4,6 @@ tags:
4
  ---
5
  ```python
6
  import deepsparse
7
- from huggingface_hub import snapshot_download
8
-
9
- MODEL_PATH = snapshot_download(repo_id="mgoin/mpt-7b-chat-50pruned-quant")
10
- model = deepsparse.Pipeline.create(task="text-generation", model_path=MODEL_PATH)
11
  model(sequences="Tell me a joke.")
12
  ```
 
4
  ---
5
  ```python
6
  import deepsparse
7
+ model = deepsparse.Pipeline.create(task="text-generation", model_path="hf:mgoin/mpt-7b-chat-50pruned-quant")
 
 
 
8
  model(sequences="Tell me a joke.")
9
  ```