PirateXX commited on
Commit
fac3f44
·
1 Parent(s): 27c3fda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -51,7 +51,7 @@ def findRealProb(text):
51
  results = []
52
  for chunk in chunksOfText:
53
  output = predict(chunk)
54
- results.append([output, len(p)])
55
 
56
  ans = 0
57
  for prob, length in results:
 
51
  results = []
52
  for chunk in chunksOfText:
53
  output = predict(chunk)
54
+ results.append([output, len(chunk)])
55
 
56
  ans = 0
57
  for prob, length in results: