CoolFace
Datasetpublic

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.

sourceHugging Faceapache-2.0updated 4mo agoView on Hugging Face
1likes147downloads
inspect_zips.py34 linesDownload Raw Back to data
1import zipfile2from pathlib import Path3 4ROOT = Path(".")5 6zips = [7    "backend/datasets/accidents/kaggle/AccidentsBig.csv.zip",8    "chatbot_service/data/legal/indian_kanoon/indian_kanoon_statistics_v1.zip",9    "chatbot_service/data/pothole_training/road_damage_2025/archive.zip",10    "chatbot_service/data/qa_pairs/file-1745432916167-910662924.zip",11    "chatbot_service/data/roads/pmgsy-geosadak-master.zip",12]13 14for zpath in zips:15    p = ROOT / zpath16    if not p.exists():17        print(f"MISSING: {zpath}")18        continue19    size_mb = p.stat().st_size / 1024 / 102420    print(f"\n[{size_mb:.1f}MB] {p.name}")21    try:22        with zipfile.ZipFile(p) as z:23            members = z.namelist()24            print(f"  Total entries: {len(members)}")25            top = sorted(set(m.split("/")[0] for m in members))26            for t in top[:6]:27                print(f"  root-dir: {t}/")28            sample = [m for m in members if not m.endswith("/")][:6]29            for s in sample:30                info = z.getinfo(s)31                print(f"  file: {s}  ({info.file_size:,}B uncompressed)")32    except Exception as e:33        print(f"  Cannot open: {e}")34