mgoin commited on
Commit
1fd6b52
1 Parent(s): 2929313

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -39,7 +39,7 @@ from deepsparse import TextGeneration
39
  model = TextGeneration(model_path="hf:neuralmagic/Llama-2-7b-pruned50-retrained-instruct-quant-ds")
40
 
41
  input_text = "Write me a poem about Machine Learning."
42
- outputs = model(formatted_prompt, max_new_tokens=100)
43
  print(outputs.generations[0].text)
44
  ```
45
 
 
39
  model = TextGeneration(model_path="hf:neuralmagic/Llama-2-7b-pruned50-retrained-instruct-quant-ds")
40
 
41
  input_text = "Write me a poem about Machine Learning."
42
+ outputs = model(input_text, max_new_tokens=100)
43
  print(outputs.generations[0].text)
44
  ```
45