Spaces:
Runtime error
Runtime error
Commit
·
3d95d76
1
Parent(s):
6e6ad02
correct spelling...
Browse files
app.py
CHANGED
@@ -12,10 +12,11 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
12 |
)
|
13 |
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
|
14 |
|
|
|
15 |
# Load the Lora model
|
16 |
model = PeftModel.from_pretrained(model, peft_model_id)
|
17 |
|
18 |
-
def make_inference(person, location,
|
19 |
|
20 |
batch = tokenizer(f"""
|
21 |
Below is a set of requirements for a short passage of English. Please write a passage that meets these requirements:
|
|
|
12 |
)
|
13 |
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
|
14 |
|
15 |
+
|
16 |
# Load the Lora model
|
17 |
model = PeftModel.from_pretrained(model, peft_model_id)
|
18 |
|
19 |
+
def make_inference(person, location, grammar, level):
|
20 |
|
21 |
batch = tokenizer(f"""
|
22 |
Below is a set of requirements for a short passage of English. Please write a passage that meets these requirements:
|