Update app.py
Browse files
app.py
CHANGED
@@ -119,6 +119,7 @@ def respond(
|
|
119 |
messages.append({"role": "user", "content": message})
|
120 |
input_ids = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(accelerator.device) #.to('cuda')
|
121 |
input_str= str(input_ids)
|
|
|
122 |
## <BOS_TOKEN><|START_OF_TURN_TOKEN|><|USER_TOKEN|>Hello, how are you?<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>
|
123 |
# with autocast():
|
124 |
gen_tokens = model.generate(
|
|
|
119 |
messages.append({"role": "user", "content": message})
|
120 |
input_ids = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(accelerator.device) #.to('cuda')
|
121 |
input_str= str(input_ids)
|
122 |
+
print('input str = ', input_str)
|
123 |
## <BOS_TOKEN><|START_OF_TURN_TOKEN|><|USER_TOKEN|>Hello, how are you?<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>
|
124 |
# with autocast():
|
125 |
gen_tokens = model.generate(
|