Spaces:
Paused
Paused
File size: 970 Bytes
c4ee290 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | """
ShortSmith v2 - Models Package
AI model wrappers for:
- Visual analysis (Qwen2-VL)
- Audio analysis (Librosa + Wav2Vec 2.0)
- Face recognition (InsightFace)
- Body recognition (OSNet)
- Motion detection (RAFT)
- Object tracking (ByteTrack)
"""
from models.audio_analyzer import AudioAnalyzer, AudioFeatures, AudioSegmentScore
from models.visual_analyzer import VisualAnalyzer, VisualFeatures
from models.face_recognizer import FaceRecognizer, FaceDetection, FaceMatch
from models.body_recognizer import BodyRecognizer, BodyDetection
from models.motion_detector import MotionDetector, MotionScore
from models.tracker import ObjectTracker, TrackedObject
__all__ = [
"AudioAnalyzer",
"AudioFeatures",
"AudioSegmentScore",
"VisualAnalyzer",
"VisualFeatures",
"FaceRecognizer",
"FaceDetection",
"FaceMatch",
"BodyRecognizer",
"BodyDetection",
"MotionDetector",
"MotionScore",
"ObjectTracker",
"TrackedObject",
]
|