wasiuddina commited on
Commit
0a4f558
·
verified ·
1 Parent(s): e515163

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -75,7 +75,7 @@ To run inference on coding problems:
75
  import transformers
76
  import torch
77
 
78
- model_id = "nvidia/OpenCodeReasoning-Nemotron-7B"
79
 
80
  pipeline = transformers.pipeline(
81
  "text-generation",
@@ -104,7 +104,7 @@ messages = [
104
 
105
  outputs = pipeline(
106
  messages,
107
- max_new_tokens=32768,
108
  )
109
  print(outputs[0]["generated_text"][-1]['content'])
110
 
 
75
  import transformers
76
  import torch
77
 
78
+ model_id = "nvidia/OpenCodeReasoning-Nemotron-7B-v1.1"
79
 
80
  pipeline = transformers.pipeline(
81
  "text-generation",
 
104
 
105
  outputs = pipeline(
106
  messages,
107
+ max_new_tokens=49152,
108
  )
109
  print(outputs[0]["generated_text"][-1]['content'])
110