Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -315,6 +315,10 @@ async def predict_video(video):
|
|
315 |
with open(output_file_path, "w") as f:
|
316 |
json.dump(results, f)
|
317 |
print(output_file_path)
|
|
|
|
|
|
|
|
|
318 |
|
319 |
|
320 |
return results
|
|
|
315 |
with open(output_file_path, "w") as f:
|
316 |
json.dump(results, f)
|
317 |
print(output_file_path)
|
318 |
+
with open(output_file_path, "r") as file:
|
319 |
+
file_content = file.read()
|
320 |
+
print(file_content)
|
321 |
+
|
322 |
|
323 |
|
324 |
return results
|