Spaces:
Build error
Build error
Commit
·
74baaee
1
Parent(s):
ff95c56
Update app.py
Browse files
app.py
CHANGED
@@ -84,5 +84,7 @@ inputs = gr.inputs.Video()
|
|
84 |
outputs = gr.outputs.Textbox()
|
85 |
iface = gr.Interface(fn=predict, inputs=inputs, outputs=outputs,
|
86 |
examples=[["sample__real.mp4"],["sample__fake.mp4"],["sample__real2.mp4"],["sample__fake2.mp4"]],
|
87 |
-
theme = "grass"
|
|
|
|
|
88 |
iface.launch()
|
|
|
84 |
outputs = gr.outputs.Textbox()
|
85 |
iface = gr.Interface(fn=predict, inputs=inputs, outputs=outputs,
|
86 |
examples=[["sample__real.mp4"],["sample__fake.mp4"],["sample__real2.mp4"],["sample__fake2.mp4"]],
|
87 |
+
theme = "grass",
|
88 |
+
title = "Face Forgery Detection",
|
89 |
+
description = "input is a video,output is a text which is 'Real' or 'Fake' ." )
|
90 |
iface.launch()
|