Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ def findRealProb(text):
|
|
64 |
chunksOfText = (chunks_of_900(text))
|
65 |
print("After chunks")
|
66 |
results = []
|
67 |
-
return {"Something"};
|
68 |
for chunk in chunksOfText:
|
69 |
output = predict(chunk)
|
70 |
results.append([output, len(chunk)])
|
|
|
64 |
chunksOfText = (chunks_of_900(text))
|
65 |
print("After chunks")
|
66 |
results = []
|
67 |
+
return {"Real":"Something"};
|
68 |
for chunk in chunksOfText:
|
69 |
output = predict(chunk)
|
70 |
results.append([output, len(chunk)])
|