Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,12 +6,10 @@ mdl = AutoModelForCausalLM.from_pretrained("Salesforce/codegen-350M-mono")
|
|
6 |
|
7 |
def codegen(intent):
|
8 |
# give input as text which reflects intent of the program.
|
9 |
-
text = "
|
10 |
-
and returns the larger of the two"
|
11 |
input_ids = codegen_tkn(intent, return_tensors="pt").input_ids
|
12 |
gen_ids = mdl.generate(input_ids, max_length=128)
|
13 |
-
response = codegen_tkn.decode(gen_ids[0],
|
14 |
-
tokens=True)
|
15 |
return response
|
16 |
|
17 |
output=grad.Textbox(lines=1, label="Generated Python Code",placeholder="")
|
|
|
6 |
|
7 |
def codegen(intent):
|
8 |
# give input as text which reflects intent of the program.
|
9 |
+
text = "write a function which takes 2 numbers as input and returns the larger of the two"
|
|
|
10 |
input_ids = codegen_tkn(intent, return_tensors="pt").input_ids
|
11 |
gen_ids = mdl.generate(input_ids, max_length=128)
|
12 |
+
response = codegen_tkn.decode(gen_ids[0], skip_special_tokens=True)
|
|
|
13 |
return response
|
14 |
|
15 |
output=grad.Textbox(lines=1, label="Generated Python Code",placeholder="")
|