arithescientist commited on
Commit
8c2fbce
·
1 Parent(s): ca9fb17

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -63,13 +63,12 @@ def lincoln(content):
63
  print("Summary:")
64
  print(summary)
65
 
66
- summary = bert_legal_model(content, ratio=0.1)
67
 
68
- all_text = str(summary) + "\n\n\n" \
69
  + "-------- The Larger Summary --------\n" + str(summary_text)
70
- output_text = all_text
71
-
72
- return output_text
73
 
74
 
75
  iface = gr.Interface(
 
63
  print("Summary:")
64
  print(summary)
65
 
66
+ summary = bert_legal_model(content, ratio=0.1)
67
 
68
+ all_text = str(summary) + "\n\n\n" \
69
  + "-------- The Larger Summary --------\n" + str(summary_text)
70
+
71
+ return all_text
 
72
 
73
 
74
  iface = gr.Interface(