Spaces:
Runtime error
Runtime error
Update app.py
Browse fileschange tokenizer to one provided directly from meta: meta-llama/Llama-2-7b-hf
app.py
CHANGED
@@ -42,7 +42,8 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
42 |
trust_remote_code=True,
|
43 |
)
|
44 |
tokenizer = AutoTokenizer.from_pretrained(
|
45 |
-
"NousResearch/Llama-2-7b-hf",
|
|
|
46 |
trust_remote_code=True,
|
47 |
tokenizer_class=LlamaTokenizer,
|
48 |
)
|
|
|
42 |
trust_remote_code=True,
|
43 |
)
|
44 |
tokenizer = AutoTokenizer.from_pretrained(
|
45 |
+
# "NousResearch/Llama-2-7b-hf",
|
46 |
+
"meta-llama/Llama-2-7b-hf",
|
47 |
trust_remote_code=True,
|
48 |
tokenizer_class=LlamaTokenizer,
|
49 |
)
|