Spaces:
Sleeping
Sleeping
import gradio as gr | |
from run import get_model, detect_video | |
from FakeVD.code_test import predict | |
import os | |
os.environ['GRADIO_TEMP_DIR'] = "../cache/" | |
model = get_model() | |
FakeVD_model = predict.get_model() | |
def greet(video): | |
print(video, type(video)) | |
generated_pred = detect_video(video_path=video, model=model) | |
context_pred = predict.main(FakeVD_model, video) | |
generated_output = f"Fake: {generated_pred*100:.2f}%" if generated_pred > 0.5 else f"Real: {(1-generated_pred)*100:.2f}%" | |
context_output = f"Fake: {context_pred*100:.2f}%" if context_pred > 0.5 else f"Real: {(1-context_pred)*100:.2f}%" | |
print(generated_output, '\n', context_output) | |
return generated_output, context_output | |
with gr.Blocks() as demo: | |
gr.Markdown("# Fake Video Detector") | |
with gr.Tabs(): | |
with gr.TabItem("Video Detect"): | |
with gr.Column(): | |
video_input = gr.Video(height=330) | |
video_button = gr.Button("detect") | |
detect_output = gr.Textbox(label="AI detect result") | |
context_output = gr.Textbox(label="Context detect result") | |
video_button.click(greet, inputs=video_input, outputs=[detect_output, context_output]) | |
demo.launch() |