Spaces:
Runtime error
Runtime error
Commit
·
301f283
1
Parent(s):
0ebec11
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,8 @@ import nltk
|
|
11 |
nltk.download('punkt')
|
12 |
|
13 |
# loads Guanaco 7B model - takes around 2-3 minutes - can do this separately
|
14 |
-
model_name = "llama-7b-hf"
|
15 |
-
adapters_name = 'guanaco-7b'
|
16 |
# print(f"Starting to load the model {model_name} into memory")
|
17 |
m = AutoModelForCausalLM.from_pretrained(
|
18 |
model_name,
|
|
|
11 |
nltk.download('punkt')
|
12 |
|
13 |
# loads Guanaco 7B model - takes around 2-3 minutes - can do this separately
|
14 |
+
model_name = "decapoda-research/llama-7b-hf"
|
15 |
+
adapters_name = 'timdettmers/guanaco-7b'
|
16 |
# print(f"Starting to load the model {model_name} into memory")
|
17 |
m = AutoModelForCausalLM.from_pretrained(
|
18 |
model_name,
|