timpal0l commited on
Commit
c710164
1 Parent(s): 38b2409

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -17,7 +17,11 @@ base_model:
17
  ## How to use:
18
  ```python
19
  from transformers import pipeline
20
- pipe = pipeline(task="text-generation", model="dolphin-2.9-llama3-8b-flashback", device_map="auto")
 
 
 
 
21
 
22
  text = "Vad är meningen med livet?"
23
 
 
17
  ## How to use:
18
  ```python
19
  from transformers import pipeline
20
+ pipe = pipeline(
21
+ task="text-generation",
22
+ model="dolphin-2.9-llama3-8b-flashback",
23
+ device_map="auto"
24
+ )
25
 
26
  text = "Vad är meningen med livet?"
27