Og2 commited on
Commit
687af39
·
verified ·
1 Parent(s): 16e0072

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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