runaksh commited on
Commit
713d2ae
·
1 Parent(s): cd3e64a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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="tf").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,4 +37,4 @@ iface = gradio.Interface(fn=generate_summary,
37
  description=description
38
  )
39
 
40
- iface.launch(debug = True, from_tf=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)