Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -62,6 +62,7 @@ def predict(query):
|
|
| 62 |
def findRealProb(text):
|
| 63 |
print(text);
|
| 64 |
chunksOfText = (chunks_of_900(text))
|
|
|
|
| 65 |
results = []
|
| 66 |
return {"Real": 0, "Fake": 1}
|
| 67 |
for chunk in chunksOfText:
|
|
|
|
| 62 |
def findRealProb(text):
|
| 63 |
print(text);
|
| 64 |
chunksOfText = (chunks_of_900(text))
|
| 65 |
+
print("After chunks")
|
| 66 |
results = []
|
| 67 |
return {"Real": 0, "Fake": 1}
|
| 68 |
for chunk in chunksOfText:
|