Open your terminal in this folder and run:
pip install -r requirements.txtTo start the User Interface (Streamlit):
streamlit run src/app.pyIf you have data in data/train/real and data/train/fake, you can train the model:
python src/train.py --epochs 5src/app.py: The Main Web Interface (for the demo).src/inference.py: The logic that finds the timestamps.src/model.py: The AI (ResNet + LSTM).README_EXPLAINER.md: Explanation for judges.