Update app.py
Browse files
app.py
CHANGED
@@ -29,6 +29,7 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
29 |
device_map="cuda",
|
30 |
torch_dtype="auto",
|
31 |
trust_remote_code=True,
|
|
|
32 |
)
|
33 |
tokenizer = AutoTokenizer.from_pretrained("microsoft/Phi-3-mini-4k-instruct")
|
34 |
|
|
|
29 |
device_map="cuda",
|
30 |
torch_dtype="auto",
|
31 |
trust_remote_code=True,
|
32 |
+
attn_implementation='eager',
|
33 |
)
|
34 |
tokenizer = AutoTokenizer.from_pretrained("microsoft/Phi-3-mini-4k-instruct")
|
35 |
|