VERIDEX.V1 / backend /models /models__init__.py
shadow55gh
fix: remove node_modules and cache from tracking
81f9dfe
# VERIDEX Models Package
from .deepfake_detector import analyze_image, load_all_models
from .synth_id_detector import detect_synth_id
from .audio_forensics import analyze_audio
from .video_model import analyze_video
from .gan_detector import detect_gan_artifacts
__all__ = [
"analyze_image", "load_all_models",
"detect_synth_id",
"analyze_audio",
"analyze_video",
"detect_gan_artifacts",
]