dayannex commited on
Commit
afa872b
·
1 Parent(s): 25bf21a

app modified

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -325,7 +325,7 @@ class ModeloDataset:
325
  tokenized_text=[self.tokenizer.tokenize(sentence) for sentence in _sentences]
326
 
327
  ids = [self.tokenizer.convert_tokens_to_ids(x) for x in tokenized_text]
328
- print('ids',ids)
329
 
330
  MAX_LEN=128
331
  ids=pad_sequences(ids,maxlen=MAX_LEN,dtype="long",truncating="post", padding="post")
 
325
  tokenized_text=[self.tokenizer.tokenize(sentence) for sentence in _sentences]
326
 
327
  ids = [self.tokenizer.convert_tokens_to_ids(x) for x in tokenized_text]
328
+
329
 
330
  MAX_LEN=128
331
  ids=pad_sequences(ids,maxlen=MAX_LEN,dtype="long",truncating="post", padding="post")