NeeravS commited on
Commit
37b013a
·
verified ·
1 Parent(s): 4667507

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -69,7 +69,7 @@ clone_repo()
69
  backend = import_backend_script("app.py")
70
  analyzer = backend.DeepfakeAnalyzer()
71
 
72
- @spaces.GPU(duration=300)
73
  def analyze_video(video_file):
74
  try:
75
  truncated_video = truncate_video(video_file)
@@ -92,7 +92,7 @@ interface = gr.Interface(
92
  inputs=gr.Video(label="Upload Video"),
93
  outputs="json",
94
  title="AllMark - Deepfake Analyzer",
95
- description="Upload a video to analyze. N.B. - Only mp4 files. Processing time 1-10 minutes. In case of false negative, please contact publisher for a more accurate response"
96
  )
97
 
98
  if __name__ == "__main__":
 
69
  backend = import_backend_script("app.py")
70
  analyzer = backend.DeepfakeAnalyzer()
71
 
72
+ @spaces.GPU(duration=1000)
73
  def analyze_video(video_file):
74
  try:
75
  truncated_video = truncate_video(video_file)
 
92
  inputs=gr.Video(label="Upload Video"),
93
  outputs="json",
94
  title="AllMark - Deepfake Analyzer",
95
+ description="Upload a video to analyze. N.B. - Only mp4 files. Processing time 1-10 minutes. For any false negatives, please contact the publisher for verification. Incognito Mode Recommended"
96
  )
97
 
98
  if __name__ == "__main__":