shouryashashank
commited on
Commit
•
38ee0d8
1
Parent(s):
d4cb3ea
Update README.md
Browse files
README.md
CHANGED
@@ -87,10 +87,10 @@ tokenizer = predacons.load_tokenizer(model_path)
|
|
87 |
chat = [
|
88 |
{"role": "user", "content": "A train travelling at a speed of 60 km/hr is stopped in 15 seconds by applying the brakes. Determine its retardation."},
|
89 |
]
|
90 |
-
res = predacons.chat_generate(model =
|
91 |
sequence = chat,
|
92 |
max_length = 5000,
|
93 |
-
tokenizer =
|
94 |
trust_remote_code = True,
|
95 |
do_sample=True,
|
96 |
|
|
|
87 |
chat = [
|
88 |
{"role": "user", "content": "A train travelling at a speed of 60 km/hr is stopped in 15 seconds by applying the brakes. Determine its retardation."},
|
89 |
]
|
90 |
+
res = predacons.chat_generate(model = model,
|
91 |
sequence = chat,
|
92 |
max_length = 5000,
|
93 |
+
tokenizer = tokenizer,
|
94 |
trust_remote_code = True,
|
95 |
do_sample=True,
|
96 |
|