SafeVixAI/SafeVixAI-Dataset-Hub
SafeVixAI Dataset Hub 🛡️ The Intelligence Layer for the SafeVixAI platform — IIT Madras Road Safety Hackathon 2026 This repository hosts all datasets, pre-trained models, notebooks, and reproducible data acquisition scripts that power the SafeVixAI application. It is designed to be cloned directly into Google Colab or any research environment. Main Application Repo: SafeVixAI/SafeVixAI ⚡ Quickstart (Google Colab) # Clone the entire intelligence layer !git… See the full description on the dataset page: https://huggingface.co/datasets/SafeVixAI/SafeVixAI-Dataset-Hub.
1147
1from __future__ import annotations2 3import asyncio4import sys5from pathlib import Path6 7 8ROOT_DIR = Path(__file__).resolve().parents[1]9BACKEND_DIR = ROOT_DIR / 'backend'10 11if str(BACKEND_DIR) not in sys.path:12 sys.path.insert(0, str(BACKEND_DIR))13 14from data.seed_emergency import main as backend_main15 16 17if __name__ == '__main__':18 asyncio.run(backend_main())19 