sethuiyer commited on
Commit
fcf96bb
1 Parent(s): 9d21e9e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -5
README.md CHANGED
@@ -83,7 +83,7 @@ prompt = tokenizer.apply_chat_template(message, add_generation_prompt=True, toke
83
 
84
  sequences = pipeline(
85
  prompt,
86
- max_length=512
87
  )
88
  print(sequences[0]['generated_text'])
89
  ```
@@ -102,10 +102,8 @@ In summary, while there is no single individual who can be credited with inventi
102
  ```
103
 
104
  ## Things in Pipeline:
105
- 1. Manual Testing and Evaluation against GPT-4 on text-generation-webui across 45 sample complex prompts.
106
- 2. Nous Benchmark
107
- 3. GGUF Format
108
- 4. Ollama Model (if model benchmarks are good)
109
 
110
  ## Acknowledgements
111
 
 
83
 
84
  sequences = pipeline(
85
  prompt,
86
+ max_new_tokens=512
87
  )
88
  print(sequences[0]['generated_text'])
89
  ```
 
102
  ```
103
 
104
  ## Things in Pipeline:
105
+ 1. GGUF Format
106
+ 2. Ollama Model (if model benchmarks are good)
 
 
107
 
108
  ## Acknowledgements
109