Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ loaded_tokenizer = AutoTokenizer.from_pretrained("runaksh/financial_summary_T5_b
|
|
13 |
# Function for generating summary
|
14 |
def generate_summary(text,min_length=55,max_length=80):
|
15 |
text = "summarize: "+text
|
16 |
-
input = tokenizer(text,max_length=512,truncation=True,return_tensors=
|
17 |
op=model.generate(input,min_length=min_length,max_length=max_length)
|
18 |
decoded_op = tokenizer.batch_decode(op,skip_special_tokens=True)
|
19 |
return decoded_op
|
@@ -37,4 +37,4 @@ iface = gradio.Interface(fn=generate_summary,
|
|
37 |
description=description
|
38 |
)
|
39 |
|
40 |
-
iface.launch(debug = True
|
|
|
13 |
# Function for generating summary
|
14 |
def generate_summary(text,min_length=55,max_length=80):
|
15 |
text = "summarize: "+text
|
16 |
+
input = tokenizer(text,max_length=512,truncation=True,return_tensors='pt').input_ids
|
17 |
op=model.generate(input,min_length=min_length,max_length=max_length)
|
18 |
decoded_op = tokenizer.batch_decode(op,skip_special_tokens=True)
|
19 |
return decoded_op
|
|
|
37 |
description=description
|
38 |
)
|
39 |
|
40 |
+
iface.launch(debug = True)
|