Update app.py
Browse files
app.py
CHANGED
@@ -59,11 +59,11 @@ accelerator = Accelerator()
|
|
59 |
|
60 |
model = AutoModelForCausalLM.from_pretrained(model_id, token= token,
|
61 |
# torch_dtype= torch.uint8,
|
62 |
-
torch_dtype=torch.float16,
|
63 |
-
|
64 |
# # # torch_dtype=torch.fl,
|
65 |
-
attn_implementation="flash_attention_2",
|
66 |
-
low_cpu_mem_usage=True,
|
67 |
# device_map='cuda',
|
68 |
# device_map=accelerator.device_map,
|
69 |
|
@@ -102,7 +102,7 @@ def respond(
|
|
102 |
|
103 |
messages= json_obj
|
104 |
|
105 |
-
input_ids = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(
|
106 |
input_ids2 = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True, return_tensors="pt") #.to('cuda')
|
107 |
print(f"Converted input_ids dtype: {input_ids.dtype}")
|
108 |
input_str= str(input_ids2)
|
|
|
59 |
|
60 |
model = AutoModelForCausalLM.from_pretrained(model_id, token= token,
|
61 |
# torch_dtype= torch.uint8,
|
62 |
+
# torch_dtype=torch.float16,
|
63 |
+
# load_in_4bit=True,
|
64 |
# # # torch_dtype=torch.fl,
|
65 |
+
# attn_implementation="flash_attention_2",
|
66 |
+
# low_cpu_mem_usage=True,
|
67 |
# device_map='cuda',
|
68 |
# device_map=accelerator.device_map,
|
69 |
|
|
|
102 |
|
103 |
messages= json_obj
|
104 |
|
105 |
+
input_ids = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(accelerator.device)
|
106 |
input_ids2 = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True, return_tensors="pt") #.to('cuda')
|
107 |
print(f"Converted input_ids dtype: {input_ids.dtype}")
|
108 |
input_str= str(input_ids2)
|