Shivam29rathore commited on
Commit
6635471
·
1 Parent(s): 0caa542

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -4,6 +4,7 @@ import torch
4
  from transformers import PegasusTokenizer, PegasusForConditionalGeneration
5
  import tensorflow as tf
6
  from tensorflow.python.lib.io import file_io
 
7
 
8
 
9
  import io
@@ -151,7 +152,7 @@ def pegasus(text):
151
  tokenized_sentences = []
152
  sentences = []
153
  length = 0
154
- for sentence in tokenized_sentences(file):
155
  length += len(sentence)
156
  # 512 is the maximum input length for the Pegasus model
157
  if length < 512:
 
4
  from transformers import PegasusTokenizer, PegasusForConditionalGeneration
5
  import tensorflow as tf
6
  from tensorflow.python.lib.io import file_io
7
+ from nltk.tokenize import sent_tokenize
8
 
9
 
10
  import io
 
152
  tokenized_sentences = []
153
  sentences = []
154
  length = 0
155
+ for sentence in sent_tokenize(file):
156
  length += len(sentence)
157
  # 512 is the maximum input length for the Pegasus model
158
  if length < 512: