diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c5bc3b5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,27 @@ +# Generated results (do not commit) +panns_visual_results/ +*.mp4 +*.avi +*.mov +*.mkv + +# Python cache +__pycache__/ +*.pyc +*.pyo +*.pyd + +# Virtual environment +.venv/ +venv/ +env/ + +# Large model files (optional but recommended) +*.task +*.pth +*.pt + +# Windows system files +desktop.ini +Desktop.ini +Thumbs.db \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..be04396 --- /dev/null +++ b/README.md @@ -0,0 +1,145 @@ +# Intelligent Closed Caption Suggestion Tool + +**PlanetRead – C4GT 2026 DMP** +**Contributor:** Aditi Prabakaran + +--- + +## Overview + +This project generates **high-quality Hindi closed captions** for non-speech audio events in Indian video content such as TV dramas, educational videos, and documentaries. + +Traditional subtitle systems primarily focus on speech transcription. This pipeline is designed specifically for **non-dialog audio events**, including: + +- Music and traditional instruments (tabla, sitar, dhol, shehnai) +- Laughter +- Bird calls and environmental sounds +- Footsteps, rustling, wind, and other ambient sounds + +The system produces clean, professional Hindi captions in the format **`[caption text]`** and burns them directly onto the final video using the **Tiro Devanagari** font. + +--- + +## Current Progress (July 2026) + +| Component | Status | Notes | +|-----------|--------|-------| +| Music + Instrument Detection | Strong | Correctly detects tabla, sitar, dhol with natural phrasing | +| Laughter Detection | Working | Outputs "हल्की हँसी सुनाई दे रही है" | +| Bird & Environmental Sounds | Good | Natural and varied captions | +| Animal Hallucination Control | Significantly Improved | Duck, rodents, and generic animal labels largely suppressed | +| Hindi Matras & Formatting | Stable | Correct Devanagari, square brackets, no punctuation | +| Speech Overlap Prevention | Strong | Hard gating using Silero VAD | +| Video Rendering | Complete | Tiro Devanagari with clean subtitle overlay | +| Observability | Integrated | LangSmith for token usage and cost tracking | + +### Latest Result (Bharat Ek Khoj – Episode 016) + +- Generated **90 high-quality caption segments** +- Strong performance on music, instruments, birds, and laughter +- Major reduction in false animal captions compared to earlier versions + +--- + +## Architecture + +```mermaid +flowchart TD + A[Input Video] --> B[Audio Extraction] + A --> C[Vision Log Extraction] + + B --> D[Silero VAD
Hard Speech Gating] + B --> E[PANNs Cnn14
Audio Event Detection] + + C --> F[Florence-2-large
Scene Understanding] + F --> G[Sentence Transformers
Semantic Palette] + + D --> H[Filtered Non-Speech Windows] + E --> H + G --> H + + H --> I[Burst Grouping + Deduplication] + I --> J[Rule-based Caption Generation] + J --> K[GPT-4o Refinement
LangChain + LangSmith] + K --> L[Post-processing
Matras + Cleanup + Fallbacks] + + L --> M[SRT File] + L --> N[Final Video with Subtitles] + L --> O[Annotated Frames + JSON Report] +``` + +--- + +## Key Components + +| Stage | Technology | Role | +|-------|------------|------| +| Audio Event Detection | PANNs (Cnn14) | Detects non-speech sounds with per-class thresholds | +| Speech Gating | Silero VAD | Hard exclusion of speech segments | +| Scene Understanding | Florence-2-large | Generates detailed scene captions | +| Semantic Boosting | Sentence Transformers | Creates scene-aware sound palette | +| Caption Generation | Rule-based + GPT-4o | Produces natural, short Hindi captions | +| Tracking | LangSmith | Token usage and cost monitoring | +| Rendering | OpenCV + PIL + Tiro Devanagari | Professional subtitle overlay | + +--- + +## Pipeline Flow + +1. Extract audio and generate a vision log using Florence-2. +2. Run Silero VAD to create a hard speech mask. +3. Run PANNs on non-speech windows with class-specific thresholds. +4. Apply scene-aware semantic boosting. +5. Group nearby events into bursts. +6. Generate captions using deterministic rules followed by GPT-4o refinement. +7. Apply post-processing (matra fixes, animal filtering, and varied fallbacks). +8. Export the SRT file and render the final video with burned-in captions. + +--- + +## Key Improvements Made + +- Strict filtering of weak animal labels (duck, rodents, generic "animal") +- Explicit rules for correct Hindi matras (especially **घंटी** and **कौआ**) +- Varied natural ambient fallbacks instead of repetitive **"पर्यावरण की आवाज़"** +- Consistent music and instrument phrasing +- Full LangSmith integration for observability +- Professional video rendering using the Tiro Devanagari font + +--- + +## Output Artifacts + +- `captions.srt` — Final Hindi subtitle file +- `final_output.mp4` — Video with burned-in captions +- `results.json` — Full timeline and metadata +- `annotated_frames/` — Sample captioned frames +--- + +## Tech Stack + +### Audio +- PANNs (Cnn14) +- Silero VAD +- torchaudio +- soundfile + +### Vision +- Florence-2-large +- OpenCV +- Pillow (PIL) + +### Language +- GPT-4o +- LangChain +- LangSmith + +### Utilities +- Sentence Transformers +- NumPy +- FFmpeg + +### Rendering +- OpenCV +- Pillow (PIL) +- Tiro Devanagari Font diff --git a/backend/.env.example b/backend/.env.example new file mode 100644 index 0000000..e22a2cf --- /dev/null +++ b/backend/.env.example @@ -0,0 +1,4 @@ +PLANETREAD_ALLOWED_ORIGINS=http://localhost:5173,http://127.0.0.1:5173 +PLANETREAD_FRONTEND_URL=http://127.0.0.1:5173 +PLANETREAD_DATA_DIR=./backend_data +PLANETREAD_MAX_UPLOAD_BYTES=2147483648 diff --git a/backend/__init__.py b/backend/__init__.py new file mode 100644 index 0000000..55380ad --- /dev/null +++ b/backend/__init__.py @@ -0,0 +1 @@ +"""PlanetRead backend package.""" diff --git a/backend/app.py b/backend/app.py new file mode 100644 index 0000000..55a3bc8 --- /dev/null +++ b/backend/app.py @@ -0,0 +1,267 @@ +from __future__ import annotations + +import json +import os +import re +import shutil +import threading +import traceback +import uuid +from concurrent.futures import ThreadPoolExecutor +from datetime import datetime, timezone +from pathlib import Path + +from fastapi import FastAPI, HTTPException, UploadFile +from fastapi.middleware.cors import CORSMiddleware +from fastapi.responses import FileResponse, RedirectResponse, Response + +PROJECT_ROOT = Path(__file__).resolve().parent.parent +DATA_ROOT = Path(os.getenv("PLANETREAD_DATA_DIR", PROJECT_ROOT / "backend_data")) +if not DATA_ROOT.is_absolute(): + DATA_ROOT = PROJECT_ROOT / DATA_ROOT +JOBS_ROOT = DATA_ROOT / "jobs" +MAX_UPLOAD_BYTES = int(os.getenv("PLANETREAD_MAX_UPLOAD_BYTES", str(2 * 1024**3))) +CHUNK_SIZE = 8 * 1024**2 +ALLOWED_EXTENSIONS = {".mp4", ".mov", ".webm", ".mkv"} +JOBS_ROOT.mkdir(parents=True, exist_ok=True) + +app = FastAPI(title="PlanetRead Processing API", version="1.0.0") +app.add_middleware( + CORSMiddleware, + allow_origins=[origin.strip() for origin in os.getenv( + "PLANETREAD_ALLOWED_ORIGINS", + "http://localhost:5173,http://127.0.0.1:5173", + ).split(",")], + allow_credentials=False, + allow_methods=["GET", "POST"], + allow_headers=["*"], +) + +executor = ThreadPoolExecutor(max_workers=1, thread_name_prefix="planetread-pipeline") +state_lock = threading.Lock() + + +@app.get("/", include_in_schema=False) +def frontend_redirect(): + return RedirectResponse(os.getenv("PLANETREAD_FRONTEND_URL", "http://127.0.0.1:5173")) + + +@app.get("/favicon.ico", include_in_schema=False) +def favicon(): + return Response(status_code=204) + + +def now() -> str: + return datetime.now(timezone.utc).isoformat() + + +def safe_filename(filename: str) -> str: + name = Path(filename or "video.mp4").name + stem = re.sub(r"[^A-Za-z0-9._-]+", "_", Path(name).stem).strip("._") or "video" + return f"{stem}{Path(name).suffix.lower()}" + + +def job_dir(job_id: str) -> Path: + if not re.fullmatch(r"[a-f0-9]{32}", job_id): + raise HTTPException(status_code=404, detail="Job not found") + directory = JOBS_ROOT / job_id + if not directory.exists(): + raise HTTPException(status_code=404, detail="Job not found") + return directory + + +def read_job(job_id: str) -> dict: + metadata = job_dir(job_id) / "job.json" + if not metadata.exists(): + raise HTTPException(status_code=404, detail="Job not found") + return json.loads(metadata.read_text(encoding="utf-8")) + + +def write_job(directory: Path, **changes) -> dict: + with state_lock: + path = directory / "job.json" + data = json.loads(path.read_text(encoding="utf-8")) if path.exists() else {} + data.update(changes, updated_at=now()) + temporary = path.with_suffix(".tmp") + temporary.write_text(json.dumps(data, indent=2), encoding="utf-8") + temporary.replace(path) + return data + + +def public_job(data: dict) -> dict: + job_id = data["id"] + response = {key: data.get(key) for key in ( + "id", "filename", "status", "stage", "progress", "error", + "created_at", "updated_at", + )} + response["status_url"] = f"/api/jobs/{job_id}" + if data.get("status") == "completed": + response["result_url"] = f"/api/jobs/{job_id}/result" + return response + + +def refresh_progress(directory: Path, data: dict) -> dict: + if data.get("status") != "processing": + return data + output = directory / "output" + updates = {} + if (output / "florence_log.jsonl").exists(): + updates = {"stage": "Understanding visual scenes", "progress": 30} + logs = list(output.glob("*.log")) + log_text = logs[0].read_text(encoding="utf-8", errors="ignore")[-12000:] if logs else "" + checkpoints = [ + ("Extracting audio", "Analyzing audio", 42), + ("Raw events:", "Detecting non-speech moments", 58), + ("After dedup:", "Grouping detected sounds", 67), + ("Timeline:", "Generating captions", 76), + ("SRT:", "Creating annotated frames", 86), + ("Generating video", "Rendering captioned video", 92), + ] + for marker, stage, value in checkpoints: + if marker in log_text: + updates = {"stage": stage, "progress": value} + if updates and updates.get("progress", 0) > data.get("progress", 0): + return write_job(directory, **updates) + return data + + +def run_pipeline(job_id: str) -> None: + directory = JOBS_ROOT / job_id + upload_path = next((directory / "input").iterdir()) + output_dir = directory / "output" + output_dir.mkdir(exist_ok=True) + try: + write_job(directory, status="processing", stage="Loading ML models", progress=8, started_at=now()) + os.environ.setdefault("MPLCONFIGDIR", str(DATA_ROOT / ".matplotlib")) + (DATA_ROOT / ".matplotlib").mkdir(exist_ok=True) + from panns_pipeline import process_video + + write_job(directory, stage="Analyzing video, sound and scenes", progress=15) + process_video(str(upload_path), output_dir) + required = [output_dir / "results.json", output_dir / "captions.srt", output_dir / "final_output.mp4"] + if not all(path.exists() for path in required): + missing = ", ".join(path.name for path in required if not path.exists()) + raise RuntimeError(f"Pipeline finished without required output: {missing}") + result_data = json.loads((output_dir / "results.json").read_text(encoding="utf-8")) + write_job( + directory, + status="completed", + stage="Complete", + progress=100, + caption_segments=result_data.get("caption_segments", len(result_data.get("timeline", []))), + completed_at=now(), + error=None, + ) + except Exception as exc: + (directory / "backend-error.log").write_text(traceback.format_exc(), encoding="utf-8") + write_job(directory, status="failed", stage="Processing failed", error=str(exc), completed_at=now()) + + +@app.get("/api/health") +def health() -> dict: + return {"status": "ok", "pipeline": "panns_pipeline.py", "worker_capacity": 1} + + +@app.post("/api/jobs", status_code=202) +def create_job(video: UploadFile) -> dict: + extension = Path(video.filename or "").suffix.lower() + if extension not in ALLOWED_EXTENSIONS: + raise HTTPException(status_code=415, detail="Upload an MP4, MOV, WEBM or MKV video") + job_id = uuid.uuid4().hex + directory = JOBS_ROOT / job_id + input_dir = directory / "input" + input_dir.mkdir(parents=True) + destination = input_dir / safe_filename(video.filename or "video.mp4") + size = 0 + try: + with destination.open("wb") as output: + while chunk := video.file.read(CHUNK_SIZE): + size += len(chunk) + if size > MAX_UPLOAD_BYTES: + raise HTTPException(status_code=413, detail="Video exceeds the 2 GB upload limit") + output.write(chunk) + except Exception: + shutil.rmtree(directory, ignore_errors=True) + raise + finally: + video.file.close() + metadata = write_job( + directory, + id=job_id, + filename=video.filename, + stored_filename=destination.name, + size_bytes=size, + status="queued", + stage="Waiting for pipeline", + progress=3, + error=None, + created_at=now(), + ) + executor.submit(run_pipeline, job_id) + return public_job(metadata) + + +@app.get("/api/jobs/{job_id}") +def get_job(job_id: str) -> dict: + directory = job_dir(job_id) + return public_job(refresh_progress(directory, read_job(job_id))) + + +@app.get("/api/jobs/{job_id}/result") +def get_result(job_id: str) -> dict: + data = read_job(job_id) + if data.get("status") != "completed": + raise HTTPException(status_code=409, detail="Result is not ready") + output_dir = job_dir(job_id) / "output" + result = json.loads((output_dir / "results.json").read_text(encoding="utf-8")) + timeline = [ + {**item, "id": index, "frame_url": f"/api/jobs/{job_id}/frames/{index}"} + for index, item in enumerate(result.get("timeline", []), 1) + ] + return { + "matched": True, + "job_id": job_id, + "caption_segments": result.get("caption_segments", len(timeline)), + "duration_sec": max((item["end_sec"] for item in timeline), default=0), + "video_url": f"/api/jobs/{job_id}/video", + "srt_url": f"/api/jobs/{job_id}/captions", + "timeline": timeline, + } + + +@app.get("/api/jobs/{job_id}/video") +def get_video(job_id: str): + path = job_dir(job_id) / "output" / "final_output.mp4" + if not path.exists(): + raise HTTPException(status_code=404, detail="Video output not found") + return FileResponse(path, media_type="video/mp4", filename=f"planetread-{job_id}.mp4", content_disposition_type="inline") + + +@app.get("/api/jobs/{job_id}/captions") +def get_captions(job_id: str): + path = job_dir(job_id) / "output" / "captions.srt" + if not path.exists(): + raise HTTPException(status_code=404, detail="Captions not found") + return FileResponse(path, media_type="application/x-subrip", filename=f"planetread-{job_id}.srt") + + +@app.get("/api/jobs/{job_id}/frames/{caption_id}") +def get_frame(job_id: str, caption_id: int): + output_dir = job_dir(job_id) / "output" + result_path = output_dir / "results.json" + if not result_path.exists(): + raise HTTPException(status_code=404, detail="Frame not found") + timeline = json.loads(result_path.read_text(encoding="utf-8")).get("timeline", []) + if caption_id < 1 or caption_id > len(timeline): + raise HTTPException(status_code=404, detail="Frame not found") + timestamp = timeline[caption_id - 1]["start_sec"] + frames = list((output_dir / "annotated_frames").glob("frame_*.png")) + if not frames: + raise HTTPException(status_code=404, detail="Frame not found") + + def frame_time(path: Path) -> float: + match = re.search(r"frame_([\d.]+)s", path.name) + return float(match.group(1)) if match else 0 + + selected = min(frames, key=lambda path: abs(frame_time(path) - timestamp)) + return FileResponse(selected, media_type="image/png") diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..8f47b4d --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,3 @@ +fastapi==0.116.1 +uvicorn[standard]==0.35.0 +python-multipart==0.0.20 diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..f06f263 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +dist/ +.media-cache/ diff --git a/frontend/frontend/public/logo.png b/frontend/frontend/public/logo.png new file mode 100644 index 0000000..1890864 Binary files /dev/null and b/frontend/frontend/public/logo.png differ diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..f89919e --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,99 @@ + + + + + + + PlanetRead · Caption Studio + + + + + + + + + + + +
+
+ + PlanetRead + + Caption Studio Beta + +
+ +
+
+
AI-POWERED ACCESSIBILITY
+

Make every sound
visible.

+

Upload a video and turn non-speech moments into clear, accessible captions.

+
+ +
+
+ +
+

Drop your video here

+

or

+
MP4MOVWEBMUp to 2 GB
+
+ + + +
+
1UploadYour video
+
2UnderstandSound + scene
+
3CaptionNatural Hindi
+
4ReviewVideo + frames
+
+ + + +
+ +
+
+
HOW IT WORKS
+

From upload to accessible
in three simple steps.

+

PlanetRead handles the full captioning flow, then gives you everything in one place to review and download.

+
+
+
01

Upload your video

Choose a video from your device or simply drag and drop it into the upload area.

+
02

We understand the scene

The pipeline examines the sound and visual context to identify meaningful non-speech moments.

+
03
CC

Review and download

Watch the captioned result and review each caption with its frame, timestamp and audio moment.

+
+
+ + +
+ + + + diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..dc80e9a --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,14 @@ +{ + "name": "planetread-caption-studio", + "private": true, + "version": "0.1.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "devDependencies": { + "vite": "^7.0.0" + } +} diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml new file mode 100644 index 0000000..dae6b55 --- /dev/null +++ b/frontend/pnpm-lock.yaml @@ -0,0 +1,665 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + devDependencies: + vite: + specifier: ^7.0.0 + version: 7.3.6 + +packages: + + '@esbuild/aix-ppc64@0.28.1': + resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.28.1': + resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.28.1': + resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.28.1': + resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.28.1': + resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.28.1': + resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.28.1': + resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.28.1': + resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.28.1': + resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.28.1': + resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.28.1': + resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.28.1': + resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.28.1': + resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.28.1': + resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.28.1': + resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.28.1': + resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.28.1': + resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.28.1': + resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.28.1': + resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.28.1': + resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.28.1': + resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.28.1': + resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.28.1': + resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.28.1': + resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.28.1': + resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.28.1': + resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@napi-rs/lzma-linux-x64-gnu@1.5.1': + resolution: {integrity: sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==} + engines: {node: ^22.20 || ^24.12 || >=25} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-android-arm-eabi@4.62.4': + resolution: {integrity: sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.62.4': + resolution: {integrity: sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.62.4': + resolution: {integrity: sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.62.4': + resolution: {integrity: sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.62.4': + resolution: {integrity: sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.62.4': + resolution: {integrity: sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.62.4': + resolution: {integrity: sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==} + cpu: [arm] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm-musleabihf@4.62.4': + resolution: {integrity: sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==} + cpu: [arm] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-arm64-gnu@4.62.4': + resolution: {integrity: sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==} + cpu: [arm64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-arm64-musl@4.62.4': + resolution: {integrity: sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==} + cpu: [arm64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-loong64-gnu@4.62.4': + resolution: {integrity: sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==} + cpu: [loong64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-loong64-musl@4.62.4': + resolution: {integrity: sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==} + cpu: [loong64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-ppc64-gnu@4.62.4': + resolution: {integrity: sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==} + cpu: [ppc64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-ppc64-musl@4.62.4': + resolution: {integrity: sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==} + cpu: [ppc64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-riscv64-gnu@4.62.4': + resolution: {integrity: sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==} + cpu: [riscv64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-riscv64-musl@4.62.4': + resolution: {integrity: sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==} + cpu: [riscv64] + os: [linux] + libc: [musl] + + '@rollup/rollup-linux-s390x-gnu@4.62.4': + resolution: {integrity: sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==} + cpu: [s390x] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-gnu@4.62.4': + resolution: {integrity: sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==} + cpu: [x64] + os: [linux] + libc: [glibc] + + '@rollup/rollup-linux-x64-musl@4.62.4': + resolution: {integrity: sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==} + cpu: [x64] + os: [linux] + libc: [musl] + + '@rollup/rollup-openbsd-x64@4.62.4': + resolution: {integrity: sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.62.4': + resolution: {integrity: sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.62.4': + resolution: {integrity: sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.62.4': + resolution: {integrity: sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.62.4': + resolution: {integrity: sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.62.4': + resolution: {integrity: sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==} + cpu: [x64] + os: [win32] + + '@types/estree@1.0.9': + resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==} + + esbuild@0.28.1: + resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==} + engines: {node: '>=18'} + hasBin: true + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + nanoid@3.3.16: + resolution: {integrity: sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@4.0.5: + resolution: {integrity: sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==} + engines: {node: '>=12'} + + postcss@8.5.25: + resolution: {integrity: sha512-DTPx3RWSSnWyzLxQnlH0rJP+EW5ekl16ZU4/psbIhA0e53kJfdgaN5vKM+xP7yJtXVu+nfdVFmlgFDEKAe4Pyw==} + engines: {node: ^10 || ^12 || >=14} + + rollup@4.62.4: + resolution: {integrity: sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + tinyglobby@0.2.17: + resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} + engines: {node: '>=12.0.0'} + + vite@7.3.6: + resolution: {integrity: sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==} + engines: {node: ^20.19.0 || >=22.12.0} + hasBin: true + peerDependencies: + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 + lightningcss: ^1.21.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + +snapshots: + + '@esbuild/aix-ppc64@0.28.1': + optional: true + + '@esbuild/android-arm64@0.28.1': + optional: true + + '@esbuild/android-arm@0.28.1': + optional: true + + '@esbuild/android-x64@0.28.1': + optional: true + + '@esbuild/darwin-arm64@0.28.1': + optional: true + + '@esbuild/darwin-x64@0.28.1': + optional: true + + '@esbuild/freebsd-arm64@0.28.1': + optional: true + + '@esbuild/freebsd-x64@0.28.1': + optional: true + + '@esbuild/linux-arm64@0.28.1': + optional: true + + '@esbuild/linux-arm@0.28.1': + optional: true + + '@esbuild/linux-ia32@0.28.1': + optional: true + + '@esbuild/linux-loong64@0.28.1': + optional: true + + '@esbuild/linux-mips64el@0.28.1': + optional: true + + '@esbuild/linux-ppc64@0.28.1': + optional: true + + '@esbuild/linux-riscv64@0.28.1': + optional: true + + '@esbuild/linux-s390x@0.28.1': + optional: true + + '@esbuild/linux-x64@0.28.1': + optional: true + + '@esbuild/netbsd-arm64@0.28.1': + optional: true + + '@esbuild/netbsd-x64@0.28.1': + optional: true + + '@esbuild/openbsd-arm64@0.28.1': + optional: true + + '@esbuild/openbsd-x64@0.28.1': + optional: true + + '@esbuild/openharmony-arm64@0.28.1': + optional: true + + '@esbuild/sunos-x64@0.28.1': + optional: true + + '@esbuild/win32-arm64@0.28.1': + optional: true + + '@esbuild/win32-ia32@0.28.1': + optional: true + + '@esbuild/win32-x64@0.28.1': + optional: true + + '@napi-rs/lzma-linux-x64-gnu@1.5.1': + optional: true + + '@rollup/rollup-android-arm-eabi@4.62.4': + optional: true + + '@rollup/rollup-android-arm64@4.62.4': + optional: true + + '@rollup/rollup-darwin-arm64@4.62.4': + optional: true + + '@rollup/rollup-darwin-x64@4.62.4': + optional: true + + '@rollup/rollup-freebsd-arm64@4.62.4': + optional: true + + '@rollup/rollup-freebsd-x64@4.62.4': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.62.4': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.62.4': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.62.4': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.62.4': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.62.4': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.62.4': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.62.4': + optional: true + + '@rollup/rollup-linux-x64-musl@4.62.4': + optional: true + + '@rollup/rollup-openbsd-x64@4.62.4': + optional: true + + '@rollup/rollup-openharmony-arm64@4.62.4': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.62.4': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.62.4': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.62.4': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.62.4': + optional: true + + '@types/estree@1.0.9': {} + + esbuild@0.28.1: + optionalDependencies: + '@esbuild/aix-ppc64': 0.28.1 + '@esbuild/android-arm': 0.28.1 + '@esbuild/android-arm64': 0.28.1 + '@esbuild/android-x64': 0.28.1 + '@esbuild/darwin-arm64': 0.28.1 + '@esbuild/darwin-x64': 0.28.1 + '@esbuild/freebsd-arm64': 0.28.1 + '@esbuild/freebsd-x64': 0.28.1 + '@esbuild/linux-arm': 0.28.1 + '@esbuild/linux-arm64': 0.28.1 + '@esbuild/linux-ia32': 0.28.1 + '@esbuild/linux-loong64': 0.28.1 + '@esbuild/linux-mips64el': 0.28.1 + '@esbuild/linux-ppc64': 0.28.1 + '@esbuild/linux-riscv64': 0.28.1 + '@esbuild/linux-s390x': 0.28.1 + '@esbuild/linux-x64': 0.28.1 + '@esbuild/netbsd-arm64': 0.28.1 + '@esbuild/netbsd-x64': 0.28.1 + '@esbuild/openbsd-arm64': 0.28.1 + '@esbuild/openbsd-x64': 0.28.1 + '@esbuild/openharmony-arm64': 0.28.1 + '@esbuild/sunos-x64': 0.28.1 + '@esbuild/win32-arm64': 0.28.1 + '@esbuild/win32-ia32': 0.28.1 + '@esbuild/win32-x64': 0.28.1 + + fdir@6.5.0(picomatch@4.0.5): + optionalDependencies: + picomatch: 4.0.5 + + fsevents@2.3.3: + optional: true + + nanoid@3.3.16: {} + + picocolors@1.1.1: {} + + picomatch@4.0.5: {} + + postcss@8.5.25: + dependencies: + nanoid: 3.3.16 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + rollup@4.62.4: + dependencies: + '@types/estree': 1.0.9 + optionalDependencies: + '@napi-rs/lzma-linux-x64-gnu': 1.5.1 + '@rollup/rollup-android-arm-eabi': 4.62.4 + '@rollup/rollup-android-arm64': 4.62.4 + '@rollup/rollup-darwin-arm64': 4.62.4 + '@rollup/rollup-darwin-x64': 4.62.4 + '@rollup/rollup-freebsd-arm64': 4.62.4 + '@rollup/rollup-freebsd-x64': 4.62.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.62.4 + '@rollup/rollup-linux-arm-musleabihf': 4.62.4 + '@rollup/rollup-linux-arm64-gnu': 4.62.4 + '@rollup/rollup-linux-arm64-musl': 4.62.4 + '@rollup/rollup-linux-loong64-gnu': 4.62.4 + '@rollup/rollup-linux-loong64-musl': 4.62.4 + '@rollup/rollup-linux-ppc64-gnu': 4.62.4 + '@rollup/rollup-linux-ppc64-musl': 4.62.4 + '@rollup/rollup-linux-riscv64-gnu': 4.62.4 + '@rollup/rollup-linux-riscv64-musl': 4.62.4 + '@rollup/rollup-linux-s390x-gnu': 4.62.4 + '@rollup/rollup-linux-x64-gnu': 4.62.4 + '@rollup/rollup-linux-x64-musl': 4.62.4 + '@rollup/rollup-openbsd-x64': 4.62.4 + '@rollup/rollup-openharmony-arm64': 4.62.4 + '@rollup/rollup-win32-arm64-msvc': 4.62.4 + '@rollup/rollup-win32-ia32-msvc': 4.62.4 + '@rollup/rollup-win32-x64-gnu': 4.62.4 + '@rollup/rollup-win32-x64-msvc': 4.62.4 + fsevents: 2.3.3 + + source-map-js@1.2.1: {} + + tinyglobby@0.2.17: + dependencies: + fdir: 6.5.0(picomatch@4.0.5) + picomatch: 4.0.5 + + vite@7.3.6: + dependencies: + esbuild: 0.28.1 + fdir: 6.5.0(picomatch@4.0.5) + picomatch: 4.0.5 + postcss: 8.5.25 + rollup: 4.62.4 + tinyglobby: 0.2.17 + optionalDependencies: + fsevents: 2.3.3 diff --git a/frontend/pnpm-workspace.yaml b/frontend/pnpm-workspace.yaml new file mode 100644 index 0000000..00f6fc4 --- /dev/null +++ b/frontend/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +allowBuilds: + esbuild: set this to true or false diff --git a/frontend/public/TiroDevanagariHindi-Italic.ttf b/frontend/public/TiroDevanagariHindi-Italic.ttf new file mode 100755 index 0000000..99b4a9c Binary files /dev/null and b/frontend/public/TiroDevanagariHindi-Italic.ttf differ diff --git a/frontend/public/frames/frame-41.png b/frontend/public/frames/frame-41.png new file mode 100755 index 0000000..f8f4e16 Binary files /dev/null and b/frontend/public/frames/frame-41.png differ diff --git a/frontend/public/frames/frame-45.png b/frontend/public/frames/frame-45.png new file mode 100755 index 0000000..40dc010 Binary files /dev/null and b/frontend/public/frames/frame-45.png differ diff --git a/frontend/public/frames/frame-49.png b/frontend/public/frames/frame-49.png new file mode 100755 index 0000000..44d2ab3 Binary files /dev/null and b/frontend/public/frames/frame-49.png differ diff --git a/frontend/public/logo.png b/frontend/public/logo.png new file mode 100644 index 0000000..1890864 Binary files /dev/null and b/frontend/public/logo.png differ diff --git a/frontend/src/backend.css b/frontend/src/backend.css new file mode 100644 index 0000000..8173506 --- /dev/null +++ b/frontend/src/backend.css @@ -0,0 +1 @@ +.result-download{display:inline-flex!important;text-decoration:none;align-items:center;justify-content:center} diff --git a/frontend/src/compact.css b/frontend/src/compact.css new file mode 100644 index 0000000..a563de3 --- /dev/null +++ b/frontend/src/compact.css @@ -0,0 +1,22 @@ +/* Tighter vertical rhythm for the single-page workflow. */ +.hero{padding-top:38px;padding-bottom:20px} +.hero>p{margin-top:18px;margin-bottom:8px} +.workspace{margin-top:12px;margin-bottom:72px} +.how-it-works{margin-bottom:82px} +.how-heading{margin-bottom:28px} +.how-heading .eyebrow{margin-bottom:12px} +.how-heading p{margin-top:12px} +.how-card{min-height:225px;padding:24px} +.how-icon{margin-bottom:18px} +.moments-heading{margin-top:58px} +.results{padding-bottom:55px} +footer{height:76px} + +@media(max-width:780px){ + .hero{padding-top:24px;padding-bottom:14px} + .workspace{margin-bottom:54px} + .how-it-works{margin-bottom:62px} + .how-heading{margin-bottom:22px} + .how-card{min-height:auto;padding:22px} + .moments-heading{margin-top:45px} +} diff --git a/frontend/src/how-it-works.css b/frontend/src/how-it-works.css new file mode 100644 index 0000000..07089e7 --- /dev/null +++ b/frontend/src/how-it-works.css @@ -0,0 +1 @@ +.how-it-works{margin:0 auto 130px;max-width:1040px}.how-heading{text-align:center;max-width:660px;margin:0 auto 42px}.how-heading h2{font-size:42px;line-height:1.15;letter-spacing:-.045em;margin:0;color:var(--navy)}.how-heading p{color:var(--muted);font-size:13px;line-height:1.7;margin:18px auto 0;max-width:570px}.how-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;position:relative}.how-steps:before{content:"";position:absolute;top:64px;left:25%;right:25%;height:1px;background:linear-gradient(90deg,transparent,var(--cyan),transparent);opacity:.35}.how-card{position:relative;min-height:255px;border-radius:22px;padding:28px;text-align:left;transition:transform .25s ease,box-shadow .25s ease}.how-card:hover{transform:translateY(-5px);box-shadow:0 28px 65px rgba(34,102,151,.15)}.how-number{position:absolute;right:24px;top:22px;color:rgba(8,124,219,.22);font-size:12px;font-weight:700;letter-spacing:.12em}.how-icon{width:52px;height:52px;border-radius:15px;background:linear-gradient(145deg,#0a7add,#25bce5);color:#fff;display:grid;place-items:center;font-size:24px;box-shadow:0 12px 25px rgba(5,128,205,.2);margin-bottom:26px}.how-icon.caption-icon{font-size:13px;font-weight:700;letter-spacing:.04em}.how-card h3{font-size:16px;margin:0 0 11px;color:var(--navy)}.how-card p{font-size:11px;line-height:1.75;color:var(--muted);margin:0}@media(max-width:780px){.how-it-works{margin-bottom:90px}.how-heading h2{font-size:34px}.how-steps{grid-template-columns:1fr}.how-steps:before{display:none}.how-card{min-height:auto}.how-icon{margin-bottom:18px}} diff --git a/frontend/src/main.js b/frontend/src/main.js new file mode 100644 index 0000000..46a3354 --- /dev/null +++ b/frontend/src/main.js @@ -0,0 +1,12 @@ +const fileInput=document.querySelector('#fileInput'),dropZone=document.querySelector('#dropZone'),fileCard=document.querySelector('#fileCard'),processButton=document.querySelector('#processButton'),preview=document.querySelector('#localPreview'),resultVideo=document.querySelector('#resultVideo'),moments=document.querySelector('#moments'),progress=document.querySelector('#progress');let objectUrl,selectedFile; +const formatTime=seconds=>{const value=Math.max(0,Math.floor(seconds));return`${String(Math.floor(value/60)).padStart(2,'0')}:${String(value%60).padStart(2,'0')}`}; +function setProgress(value,label){progress.classList.remove('hidden');progress.querySelector('.progress-track i').style.width=`${value}%`;document.querySelector('#progressPercent').textContent=`${Math.round(value)}%`;document.querySelector('#progressLabel').textContent=label;const active=value<10?0:value<70?1:value<96?2:3;document.querySelectorAll('.stage').forEach((stage,index)=>stage.classList.toggle('active',index<=active))} +function selectFile(file){if(!file||!file.type.startsWith('video/'))return;selectedFile=file;if(objectUrl)URL.revokeObjectURL(objectUrl);objectUrl=URL.createObjectURL(file);preview.src=objectUrl;document.querySelector('#fileName').textContent=file.name;document.querySelector('#fileMeta').textContent=`${(file.size/1024/1024).toFixed(1)} MB · Ready to process`;dropZone.classList.add('hidden');fileCard.classList.remove('hidden');processButton.classList.remove('hidden');processButton.disabled=false;progress.classList.add('hidden');document.querySelector('#lookupError').classList.add('hidden');document.querySelector('#results').classList.add('hidden')} +function renderMoments(items){moments.innerHTML=items.map(item=>`
Annotated frame at ${formatTime(item.start_sec)}
Pipeline result

${item.caption}

${(item.families||[]).map(f=>`${f}`).join('')}
`).join('')} +function createJob(file){return new Promise((resolve,reject)=>{const request=new XMLHttpRequest(),form=new FormData();form.append('video',file);request.open('POST','/api/jobs');request.upload.addEventListener('progress',event=>{if(event.lengthComputable)setProgress(Math.max(2,event.loaded/event.total*8),'Uploading video…')});request.addEventListener('load',()=>{let body={};try{body=JSON.parse(request.responseText)}catch{}if(request.status>=200&&request.status<300)resolve(body);else reject(new Error(body.detail||'The video could not be uploaded.'))});request.addEventListener('error',()=>reject(new Error('Cannot reach the processing server. Make sure the backend is running.')));request.send(form)})} +const wait=ms=>new Promise(resolve=>setTimeout(resolve,ms));async function waitForJob(url){while(true){const response=await fetch(url,{cache:'no-store'});if(!response.ok)throw new Error('Could not read processing status.');const job=await response.json();setProgress(job.progress||10,job.stage||'Processing video…');if(job.status==='completed')return job;if(job.status==='failed')throw new Error(job.error||'The ML pipeline failed.');await wait(3000)}} +async function loadResult(url){const response=await fetch(url);if(!response.ok)throw new Error('The result was created but could not be loaded.');const data=await response.json();resultVideo.src=data.video_url;resultVideo.muted=false;resultVideo.volume=1;resultVideo.load();document.querySelector('#summaryCount').textContent=`${data.caption_segments} non-speech moments`;document.querySelector('#statCount').textContent=data.caption_segments;document.querySelector('#statDuration').textContent=formatTime(data.duration_sec);document.querySelector('#srtDownload').href=data.srt_url;document.querySelector('#videoDownload').href=data.video_url;renderMoments(data.timeline)} +document.querySelector('#browseButton').addEventListener('click',e=>{e.stopPropagation();fileInput.click()});dropZone.addEventListener('click',()=>fileInput.click());dropZone.addEventListener('keydown',e=>{if(e.key==='Enter'||e.key===' ')fileInput.click()});fileInput.addEventListener('change',()=>selectFile(fileInput.files[0]));['dragenter','dragover'].forEach(n=>dropZone.addEventListener(n,e=>{e.preventDefault();dropZone.classList.add('dragging')}));['dragleave','drop'].forEach(n=>dropZone.addEventListener(n,e=>{e.preventDefault();dropZone.classList.remove('dragging')}));dropZone.addEventListener('drop',e=>selectFile(e.dataTransfer.files[0]));document.querySelector('#removeFile').addEventListener('click',()=>{selectedFile=null;fileInput.value='';fileCard.classList.add('hidden');dropZone.classList.remove('hidden');processButton.disabled=true;progress.classList.add('hidden');document.querySelector('#results').classList.add('hidden')}); +processButton.addEventListener('click',async()=>{processButton.classList.add('hidden');const errorBox=document.querySelector('#lookupError');errorBox.classList.add('hidden');try{setProgress(2,'Uploading video…');const created=await createJob(selectedFile);setProgress(9,'Video uploaded. Starting pipeline…');const completed=await waitForJob(created.status_url);await loadResult(completed.result_url);progress.classList.add('hidden');document.querySelector('#results').classList.remove('hidden');document.querySelector('#results').scrollIntoView({behavior:'smooth'})}catch(error){errorBox.textContent=error.message;errorBox.classList.remove('hidden');progress.classList.add('hidden');processButton.classList.remove('hidden')}}); +document.querySelector('#searchInput').addEventListener('input',e=>{const q=e.target.value.toLowerCase();document.querySelectorAll('.moment').forEach(item=>item.classList.toggle('filtered',!item.dataset.search.toLowerCase().includes(q)&&!item.textContent.toLowerCase().includes(q)))});moments.addEventListener('click',e=>{const target=e.target.closest('[data-start]');if(!target)return;resultVideo.currentTime=Number(target.dataset.start);resultVideo.muted=false;resultVideo.volume=1;resultVideo.play();resultVideo.scrollIntoView({behavior:'smooth',block:'center'})}); +const soundToggle=document.querySelector('#soundToggle');function updateSoundLabel(){const enabled=!resultVideo.muted&&resultVideo.volume>0;soundToggle.textContent=enabled?'◖)) Sound on':'◖× Sound off';soundToggle.classList.toggle('is-muted',!enabled)}soundToggle.addEventListener('click',()=>{resultVideo.muted=!resultVideo.muted;if(!resultVideo.muted&&resultVideo.volume===0)resultVideo.volume=1;updateSoundLabel()});resultVideo.addEventListener('volumechange',updateSoundLabel); diff --git a/frontend/src/moment-accessibility.css b/frontend/src/moment-accessibility.css new file mode 100644 index 0000000..5dd9ada --- /dev/null +++ b/frontend/src/moment-accessibility.css @@ -0,0 +1 @@ +.moment{grid-template-columns:230px minmax(280px,1fr) 210px;gap:24px;padding:16px;min-height:156px}.moment>img{width:230px;height:132px}.moment-copy>div:first-child{gap:12px}.moment time{font-size:12px}.confidence{font-size:10px;padding:5px 8px}.moment h3{font-size:20px;line-height:1.5;margin:13px 0}.tags{gap:7px;flex-wrap:wrap}.tags span{font-size:10px;padding:6px 9px}.moment-actions{align-self:stretch;border-left:1px solid var(--line);padding-left:22px;display:flex;flex-direction:column;justify-content:center;align-items:stretch}.audio-label{font-size:9px;letter-spacing:.14em;color:#8192a0;font-weight:700;margin-bottom:9px}.audio-button{height:52px;width:100%;margin:0;display:flex;align-items:center;justify-content:space-between;border-radius:12px;padding:0 13px;font-size:11px;transition:.2s}.audio-button:hover{background:#dff2fc;transform:translateY(-1px)}.audio-button b{width:28px;height:28px;display:grid;place-items:center;border-radius:50%;background:var(--blue);color:white;font-size:10px}.audio-button.playing b{background:#16a8d9}.audio-button .wave{font-size:13px;letter-spacing:2px;margin:0 8px}.audio-button small{font-size:10px}.jump{align-self:stretch;height:36px;margin:9px 0 0;border:1px solid rgba(8,124,219,.16);border-radius:9px;background:rgba(255,255,255,.55);font-size:10px}.jump:hover{background:white}@media(max-width:900px){.moment{grid-template-columns:180px 1fr}.moment>img{width:180px;height:120px}.moment-actions{grid-column:1/-1;border-left:0;border-top:1px solid var(--line);padding:14px 0 0;display:grid;grid-template-columns:1fr 150px;gap:10px}.audio-label{grid-column:1/-1;margin:0}.jump{margin:0;height:52px}}@media(max-width:580px){.moment{grid-template-columns:1fr}.moment>img{width:100%;height:200px}.moment-actions{grid-column:auto;display:flex}.audio-button{height:58px}.jump{height:44px}.moment h3{font-size:19px}} diff --git a/frontend/src/no-audio.css b/frontend/src/no-audio.css new file mode 100644 index 0000000..0b03aad --- /dev/null +++ b/frontend/src/no-audio.css @@ -0,0 +1 @@ +.moment{grid-template-columns:230px minmax(320px,1fr) 170px}.moment-actions{border-left:1px solid var(--line);padding-left:20px;display:flex;align-items:center}.moment-actions .jump{width:100%;height:50px;margin:0;border:0;background:linear-gradient(100deg,#0874d4,#12aee0);color:#fff;border-radius:12px;font-size:11px;box-shadow:0 9px 20px rgba(5,128,205,.18)}.moment-actions .jump:hover{background:linear-gradient(100deg,#086bc2,#0e9dcb)}@media(max-width:900px){.moment{grid-template-columns:180px 1fr}.moment-actions{grid-column:1/-1;border-left:0;border-top:1px solid var(--line);padding:14px 0 0}.moment-actions .jump{max-width:220px;margin-left:auto}}@media(max-width:580px){.moment{grid-template-columns:1fr}.moment-actions{grid-column:auto}.moment-actions .jump{max-width:none}} diff --git a/frontend/src/sound-control.css b/frontend/src/sound-control.css new file mode 100644 index 0000000..db6283e --- /dev/null +++ b/frontend/src/sound-control.css @@ -0,0 +1 @@ +.sound-toggle{position:absolute;right:14px;top:14px;z-index:3;border:1px solid rgba(255,255,255,.35);border-radius:9px;background:rgba(8,25,40,.78);backdrop-filter:blur(8px);color:#fff;padding:9px 12px;font:600 10px Manrope;cursor:pointer}.sound-toggle:hover{background:rgba(8,124,219,.9)}.sound-toggle.is-muted{background:rgba(174,58,58,.86)} diff --git a/frontend/src/stored-results.css b/frontend/src/stored-results.css new file mode 100644 index 0000000..16a7dae --- /dev/null +++ b/frontend/src/stored-results.css @@ -0,0 +1 @@ +.mock-video>video{width:100%;height:100%;object-fit:contain;background:#08111a}.result-file-label{height:44px;display:flex;align-items:center;padding:0 17px;color:var(--muted);font-size:10px}.download-link{display:block;text-align:center;text-decoration:none}.lookup-error{max-width:650px;margin:16px auto 2px;padding:12px 14px;border-radius:10px;background:#fff1f1;color:#a94a4a;font-size:11px;text-align:center;border:1px solid #ffd8d8}.moments-empty{text-align:center;padding:30px;color:var(--muted);font-size:12px}.download-button{display:none} diff --git a/frontend/src/styles.css b/frontend/src/styles.css new file mode 100644 index 0000000..1c2f61c --- /dev/null +++ b/frontend/src/styles.css @@ -0,0 +1,2 @@ +@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');@font-face{font-family:Tiro;src:url('/TiroDevanagariHindi-Italic.ttf')} +:root{--blue:#087cdb;--cyan:#13b8ed;--navy:#102b4e;--ink:#14283f;--muted:#66798c;--line:rgba(19,76,119,.12);--glass:rgba(255,255,255,.72)}*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:linear-gradient(160deg,#f8fcff 0%,#edf8ff 47%,#f9fcff 100%);color:var(--ink);font-family:Manrope,Arial,sans-serif;min-height:100vh;overflow-x:hidden}.shell{width:min(1160px,calc(100% - 40px));margin:auto}.ambient{position:fixed;border-radius:50%;filter:blur(4px);pointer-events:none;opacity:.55;z-index:-1}.ambient-one{width:560px;height:560px;right:-220px;top:110px;background:radial-gradient(circle,rgba(57,207,242,.22),transparent 67%);animation:float 8s ease-in-out infinite}.ambient-two{width:500px;height:500px;left:-240px;top:620px;background:radial-gradient(circle,rgba(0,112,224,.14),transparent 68%);animation:float 10s ease-in-out infinite reverse}@keyframes float{50%{transform:translate(30px,-28px) scale(1.07)}}.topbar{height:92px;display:flex;align-items:center;justify-content:space-between}.brand{display:flex;align-items:center;gap:14px;text-decoration:none;color:var(--navy);font-weight:700}.brand img{width:112px;height:68px;object-fit:contain;border-radius:8px}.brand-divider{width:1px;height:28px;background:#cbdbe8}.brand small{font-size:9px;letter-spacing:.08em;color:var(--blue);background:#e4f4ff;padding:4px 6px;border-radius:10px;margin-left:5px;vertical-align:2px}.privacy{font-size:12px;color:#688092;display:flex;gap:8px;align-items:center}.privacy span{width:8px;height:8px;border-radius:50%;background:#38c895;box-shadow:0 0 0 5px rgba(56,200,149,.12)}.hero{text-align:center;padding:74px 0 40px;max-width:800px;margin:auto}.eyebrow{font-size:11px;font-weight:700;letter-spacing:.2em;color:var(--blue);margin-bottom:18px}.hero h1{font-size:clamp(50px,7vw,79px);line-height:.98;letter-spacing:-.055em;margin:0;font-weight:600;color:var(--navy)}.hero h1 em{font-family:Tiro,serif;font-weight:400;color:var(--blue);background:linear-gradient(90deg,#0878db,#23bfe3);-webkit-background-clip:text;color:transparent}.hero>p{font-size:17px;line-height:1.7;color:var(--muted);max-width:650px;margin:25px auto}.language-chip{display:inline-flex;align-items:center;text-align:left;gap:11px;background:rgba(255,255,255,.65);border:1px solid rgba(8,124,219,.13);padding:8px 14px 8px 8px;border-radius:14px;box-shadow:0 8px 28px rgba(25,98,149,.06)}.language-chip>span{display:grid;place-items:center;width:34px;height:34px;border-radius:9px;color:white;background:linear-gradient(135deg,var(--blue),var(--cyan));font-family:Tiro}.language-chip strong,.language-chip small{display:block}.language-chip strong{font-size:11px}.language-chip small{font-size:9px;color:#8191a0;margin-top:2px}.glass{background:var(--glass);border:1px solid rgba(255,255,255,.9);box-shadow:0 24px 70px rgba(34,102,151,.11),inset 0 0 0 1px rgba(16,99,159,.05);backdrop-filter:blur(18px)}.workspace{max-width:920px;margin:18px auto 120px;border-radius:30px;padding:22px}.drop-zone{min-height:300px;border:1.5px dashed rgba(8,124,219,.35);border-radius:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;background:linear-gradient(145deg,rgba(239,249,255,.8),rgba(255,255,255,.5));cursor:pointer;transition:.25s}.drop-zone:hover,.drop-zone.dragging{border-color:var(--cyan);transform:translateY(-2px);box-shadow:inset 0 0 50px rgba(25,181,232,.07)}.upload-orbit{width:86px;height:86px;border-radius:50%;display:grid;place-items:center;background:rgba(9,141,218,.06);border:1px solid rgba(9,141,218,.09);margin-bottom:15px;animation:pulse 2.5s infinite}@keyframes pulse{50%{box-shadow:0 0 0 14px rgba(8,124,219,.035)}}.upload-icon{width:54px;height:54px;border-radius:16px;background:linear-gradient(145deg,#0a7add,#25bce5);box-shadow:0 13px 27px rgba(2,133,213,.25);color:white;display:grid;place-items:center;font-size:26px}.drop-zone h2{font-size:20px;margin:5px 0 8px}.drop-zone p{font-size:13px;margin:0;color:#738697}.text-button{border:0;background:none;padding:0;color:var(--blue);font:inherit;font-weight:700;cursor:pointer}.file-hints{display:flex;gap:8px;align-items:center;margin-top:24px}.file-hints span{font-size:9px;font-weight:700;color:#7890a2;background:white;border:1px solid #dce9f2;padding:5px 8px;border-radius:6px}.file-hints i{width:1px;height:17px;background:#d7e3ec;margin:0 4px}.file-card{height:116px;border:1px solid rgba(8,124,219,.15);border-radius:20px;display:flex;align-items:center;padding:12px;background:rgba(240,249,255,.7)}.file-preview{width:150px;height:90px;position:relative;border-radius:12px;overflow:hidden;background:#dceaf3}.file-preview video{width:100%;height:100%;object-fit:cover}.file-preview span{position:absolute;inset:0;margin:auto;width:34px;height:34px;display:grid;place-items:center;border-radius:50%;background:rgba(255,255,255,.85);font-size:11px}.file-copy{margin-left:18px;flex:1}.file-copy strong,.file-copy small{display:block}.file-copy small{font-size:11px;color:var(--muted);margin-top:6px}.file-card>button{border:0;background:white;width:34px;height:34px;border-radius:50%;font-size:20px;color:#8aa0b0;cursor:pointer}.pipeline{display:flex;align-items:center;justify-content:center;margin:25px 0}.pipeline>i{width:42px;height:1px;background:#d7e5ef;margin:0 9px}.stage{display:flex;align-items:center;gap:9px;opacity:.48;transition:.3s}.stage.active{opacity:1}.stage b{width:29px;height:29px;border-radius:50%;display:grid;place-items:center;background:#e6f2f9;color:#63849c;font-size:11px}.stage.active b{background:linear-gradient(135deg,var(--blue),var(--cyan));color:white;box-shadow:0 5px 15px rgba(5,132,211,.2)}.stage strong,.stage small{display:block;white-space:nowrap}.stage strong{font-size:10px}.stage small{font-size:8px;color:#8293a1;margin-top:2px}.primary-button{width:240px;height:52px;border:0;border-radius:14px;display:flex;align-items:center;justify-content:center;gap:18px;background:linear-gradient(100deg,#0874d4,#12aee0);color:white;margin:0 auto 3px;font:600 13px Manrope;box-shadow:0 12px 25px rgba(5,128,205,.24);cursor:pointer;transition:.2s}.primary-button:hover:not(:disabled){transform:translateY(-2px)}.primary-button:disabled{background:#bed1df;box-shadow:none;cursor:not-allowed}.primary-button b{font-size:20px}.progress{max-width:650px;margin:20px auto 5px}.progress-copy{display:flex;justify-content:space-between;font-size:11px;margin-bottom:9px}.progress-copy span{color:var(--blue)}.progress-track{height:7px;border-radius:5px;background:#e2edf4;overflow:hidden}.progress-track i{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--blue),var(--cyan));transition:.1s}.hidden{display:none!important}.results{padding-bottom:80px;animation:appear .7s ease}@keyframes appear{from{opacity:0;transform:translateY(25px)}}.section-heading,.moments-heading{display:flex;align-items:end;justify-content:space-between;margin-bottom:25px}.section-heading h2,.moments-heading h2{font-size:35px;letter-spacing:-.04em;margin:0}.download-button,.outline-button{border:0;border-radius:12px;background:var(--navy);color:white;padding:14px 20px;font:600 11px Manrope;cursor:pointer}.result-grid{display:grid;grid-template-columns:1.65fr .85fr;gap:20px}.video-card,.summary{border-radius:22px;overflow:hidden}.mock-video{height:370px;position:relative;background:#0f1c29}.mock-video>img{width:100%;height:100%;object-fit:cover;opacity:.86}.caption-overlay{position:absolute;bottom:38px;left:50%;transform:translateX(-50%);background:rgba(0,0,0,.72);color:white;font-family:Tiro,serif;font-size:17px;white-space:nowrap;padding:7px 11px}.play-button{position:absolute;inset:0;margin:auto;width:58px;height:58px;border:0;border-radius:50%;background:rgba(255,255,255,.88);color:var(--blue);font-size:18px;cursor:pointer}.video-controls{height:52px;display:flex;align-items:center;gap:12px;padding:0 17px}.video-controls>div{height:3px;background:#d5e3ec;flex:1}.video-controls>div i{display:block;width:12%;height:100%;background:var(--blue)}.video-controls small{font-size:9px;color:#718698}.video-controls button{border:0;background:none}.summary{padding:27px}.success-mark{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#dcf8ee;color:#22a979;font-weight:bold}.summary h3{margin:17px 0 8px}.summary>p{font-size:12px;line-height:1.6;color:var(--muted)}.summary>p strong{color:var(--ink)}.stats{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:18px 0;margin:18px 0}.stats div{text-align:center;border-right:1px solid var(--line)}.stats div:last-child{border:0}.stats strong,.stats small{display:block}.stats strong{font-size:16px}.stats small{font-size:8px;color:#7a8b99;margin-top:4px}.detected>small{font-size:8px;font-weight:700;color:#8192a0;letter-spacing:.12em}.detected div{display:flex;flex-wrap:wrap;gap:6px;margin:10px 0 20px}.detected span,.tags span{font-size:9px;color:#37779c;background:#edf8fd;padding:5px 8px;border-radius:7px}.outline-button{width:100%;background:transparent;color:var(--blue);border:1px solid rgba(8,124,219,.25)}.moments-heading{margin-top:85px}.moments-heading p{font-size:12px;color:var(--muted)}.search{width:230px;height:42px;border:1px solid var(--line);border-radius:11px;background:white;display:flex;align-items:center;padding:0 12px;color:#789}.search input{border:0;outline:0;width:100%;margin-left:8px;font:11px Manrope}.moments{display:grid;gap:12px}.moment{border-radius:17px;padding:12px;display:grid;grid-template-columns:190px 1fr auto;gap:18px;align-items:center;transition:.25s}.moment:hover{transform:translateY(-2px);box-shadow:0 18px 50px rgba(34,102,151,.14)}.moment.filtered{display:none}.moment>img{width:190px;height:112px;object-fit:cover;border-radius:11px}.moment-copy>div:first-child{display:flex;gap:10px;align-items:center}.moment time{font-size:10px;font-weight:700;color:var(--blue)}.confidence{font-size:8px;color:#2fa479;background:#e8f8f2;padding:4px 6px;border-radius:5px}.moment h3{font-family:Tiro,serif;font-size:16px;font-weight:400;margin:11px 0}.tags{display:flex;gap:5px}.audio-button{border:0;background:#edf7fc;color:var(--blue);border-radius:8px;padding:6px 8px;margin-top:10px;font-size:9px;cursor:pointer}.audio-button.playing{background:#d9f2fc}.wave{letter-spacing:1px;margin:0 7px;color:#29aadb}.audio-button small{color:#678}.jump{align-self:start;border:0;background:none;color:var(--blue);font:600 9px Manrope;margin:8px;cursor:pointer}footer{height:100px;border-top:1px solid var(--line);display:flex;align-items:center;gap:13px;color:#728596;font-size:10px}footer img{width:70px}footer small{margin-left:auto}@media(max-width:780px){.shell{width:min(100% - 24px,1160px)}.privacy{display:none}.hero{padding-top:40px}.workspace{padding:12px;margin-bottom:80px}.pipeline{overflow:auto;justify-content:start;padding-bottom:5px}.pipeline>i{min-width:18px}.stage span{display:none}.result-grid{grid-template-columns:1fr}.mock-video{height:260px}.moment{grid-template-columns:110px 1fr}.moment>img{width:110px;height:90px}.jump{display:none}.section-heading,.moments-heading{align-items:start;gap:18px}.search{width:160px}.download-button{padding:12px}.topbar{height:76px}.brand img{width:88px}.brand-divider{display:none}.caption-overlay{font-size:12px;max-width:90%;white-space:normal;text-align:center}footer span{display:none}}@media(max-width:520px){.hero h1{font-size:48px}.hero>p{font-size:14px}.file-hints span:nth-child(-n+3){display:none}.result-grid{display:block}.summary{margin-top:14px}.section-heading h2,.moments-heading h2{font-size:28px}.moment{grid-template-columns:1fr}.moment>img{width:100%;height:180px}.moments-heading{display:block}.search{width:100%;margin-top:15px}.brand>span:last-child{display:none}} diff --git a/frontend/vite.config.js b/frontend/vite.config.js new file mode 100644 index 0000000..ede1acf --- /dev/null +++ b/frontend/vite.config.js @@ -0,0 +1,12 @@ +import { defineConfig } from 'vite'; + +export default defineConfig({ + server: { + proxy: { + '/api': { + target: process.env.PLANETREAD_API_URL || 'http://127.0.0.1:8000', + changeOrigin: true, + }, + }, + }, +}); diff --git a/panns_pipeline.py b/panns_pipeline.py new file mode 100644 index 0000000..3105755 --- /dev/null +++ b/panns_pipeline.py @@ -0,0 +1,1967 @@ +import os, sys, subprocess, tempfile, shutil, json, logging, re, argparse +from pathlib import Path +import random +from datetime import timedelta, datetime +from collections import defaultdict +from venv import logger +import csv +import numpy as np +import soundfile as sf +import cv2 +import torch +import torchaudio +from PIL import Image, ImageDraw, ImageFont +from transformers import AutoProcessor, AutoModelForCausalLM +from sentence_transformers import SentenceTransformer, util +from panns_inference import AudioTagging +from dotenv import load_dotenv +load_dotenv() + +HF_TOKEN = os.environ.get("HF_TOKEN", "") +OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY", "") + +# ====================== GPU ====================== +# Device selection for Mac MPS, CUDA, or CPU. +if torch.backends.mps.is_available(): + DEVICE = "mps" # Apple Silicon GPU + print("\nUsing Apple Silicon GPU (MPS)\n") +elif torch.cuda.is_available(): + DEVICE = "cuda" + print(f"\nGPU: {torch.cuda.get_device_name(0)}\n") +else: + DEVICE = "cpu" + print("\nNo GPU found — running on CPU (will be slow)\n") + +# Shared Florence precision keeps model and vision inference consistent. +MODEL_DTYPE = torch.float16 if DEVICE in ("mps", "cuda") else torch.float32 + +# ====================== CONFIG ====================== +SAMPLE_RATE = 32000 +WINDOW_SEC = 0.96 +HOP_SEC = 0.20 +FRAMES_PER_MINUTE = 10 +SCENE_WINDOW_SEC = 30.0 +# Florence scene gaps are wider than expected, so the pipeline uses a more tolerant window. +DEDUP_GAP_SEC = 1.5 +BURST_GAP_SEC = 2.0 # events closer than this merge into one caption +PALETTE_SIZE = 20 +SEMANTIC_THRESHOLD = 0.24 # short-phrase embeddings +W_AUDIO = 0.65 # trust real audio +W_PALETTE = 0.35 +ACCEPT_THRESHOLD = 0.12 +FRAME_STABILITY_THRESHOLD = 35.0 +USE_NOISE_REDUCTION = True +GENERATE_FINAL_VIDEO = True + + +# ---- Per-class thresholds ---- +CLASS_THRESHOLD_KEYWORDS = [ + (["caw"], 0.28), + (["crow"], 0.32), + (["bird vocalization", "bird call"], 0.35), + (["bird"], 0.40), + (["rustl"], 0.028), + (["creak", "creaking"], 0.028), + (["cricket"], 0.10), + (["insect"], 0.13), + (["wind noise"], 0.045), + (["wind"], 0.038), + (["laughter"], 0.025), + (["giggle"], 0.022), + (["chuckle", "chortle"], 0.025), + (["belly laugh"], 0.028), + (["walk", "footstep"], 0.028), + (["run", "jog"], 0.042), + (["music"], 0.06), + (["musical instrument"], 0.055), + (["tabla", "sitar", "dhol", "shehnai"], 0.030), + (["drum"], 0.048), + (["owl", "hoot"], 0.45), + (["applause", "clapping"], 0.045), + (["wheeze", "groan", "grunt", "pant", "gasp", "sigh", + "battle cry", "whimper", "scream", "shout", "yell", "sob"], 0.05), + (["whistle", "wolf-whistle", "whistling"], 0.05), + (["vehicle", "car", "engine", "motor", "traffic"], 0.16), + (["plucked string"], 0.048), + (["singing"], 0.075), + (["crowd", "cheering", "chatter"], 0.055), + (["thunder"], 0.045), + (["fire", "crackling"], 0.032), + (["cattle", "sheep", "cow"], 0.025), + (["water", "stream", "splash", "rain", "waterfall"], 0.035), + (["white noise", "static"], 0.30), + (["mantra", "chant"], 0.28), + (["wood", "knock", "chop"], 0.10), + (["metal", "clank", "clang", "clash"], 0.032), + (["glass", "clink", "shatter"], 0.030), + (["mridangam", "pakhawaj"], 0.030), + (["sitar"], 0.028), + (["sarangi", "veena", "sarod"], 0.032), + (["santoor", "santur"], 0.032), + (["tanpura", "tambura"], 0.032), + (["flute", "bansuri"], 0.030), + (["shehnai", "nadaswaram"], 0.030), + (["harmonium"], 0.032), + (["organ", "electronic organ", "hammond"], 0.035), + (["violin", "fiddle"], 0.035), + (["guitar"], 0.038), + (["piano", "keyboard"], 0.040), + (["drum kit", "bass drum", "snare"], 0.040), + (["manjira", "percussion", "cymbal"], 0.040), + (["bell", "chime", "wind chime"], 0.035), + (["telephone", "ringtone", "phone"], 0.020), + (["duck", "quack", "goose", "honk"], 0.09), + (["wild animal", "domestic animal"], 0.09), + (["animal", "dog", "cat"], 0.09), + (["turkey", "fowl", "rodent", "rat", "mice", "mouse"], 0.14), +] +DEFAULT_THRESHOLD = 0.052 +_threshold_cache: dict = {} + +# ====================== MULTI SCENE PALETTE ====================== +SCENE_PALETTES = { + "nature": { + "keywords": ["forest", "tree", "trees", "jungle", "woods", "bushes", + "leaves", "branch", "nest", "sky", "outdoor", "nature", + "feather", "wing", "farm", "field", "village"], + "implausible": {"applause", "whistle", "mantra", "chant", "vehicle", + "human_reaction", "ringtone"}, + }, + "circus_performance": { + "keywords": ["circus", "stage", "tent", "arena", "performer", + "acrobat", "trapeze", "net", "ring", "clown", + "rope", "big top", "high wire", "ringmaster", + "tightrope", "juggling", "pole", "aerial"], + "implausible": {"crow", "bird", "cricket", "insect", "mantra", + "chant", "wind", "water", "vehicle", "wood"}, + }, + "crowd_audience": { + "keywords": ["crowd", "audience", "spectator", "spectators", + "cheering", "watching", "bleachers", "seated", + "rows of people", "clapping"], + "implausible": {"crow", "bird", "cricket", "insect", "mantra", + "chant", "wind", "vehicle", "wood"}, + }, + "ritual_temple": { + "keywords": ["temple", "shrine", "idol", "priest", "ritual", + "prayer", "puja"], + "implausible": {"vehicle", "applause", "whistle", "ringtone"}, + }, + "indoor_generic": { + "keywords": ["indoor", "room", "hall", "auditorium", "studio", + "inside"], + "implausible": {"crow", "bird", "cricket", "insect", "wind", + "water", "vehicle"}, + }, + "phone_present": { + "keywords": ["phone", "mobile", "smartphone", "cell phone", + "telephone"], + "implausible": {"crow", "bird", "cricket", "insect", "mantra", + "chant"}, + }, +} + +def _scene_palette(scene_text: str): + """Return (category_name, implausible_family_set) for the given scene + text. Falls back to ('unknown', empty set) when nothing matches or + scene_text is empty — a scene we can't classify applies NO vetoes, + which is the safe default.""" + if not scene_text: + return "unknown", set() + st = scene_text.lower() + for category, cfg in SCENE_PALETTES.items(): + if any(k in st for k in cfg["keywords"]): + return category, cfg["implausible"] + return "unknown", set() + +SCENE_CATEGORY_KEYWORDS = { + "forest": ["forest", "tree", "trees", "jungle", "woods", "bushes", + "leaves", "branch", "greenery", "foliage"], + "path_walking": ["path", "walking", "walk", "trail", "road", "person walking", + "footpath", "dirt road"], +} + +SCENE_PHRASE_BANKS = { + "forest": [ + "पत्तों की सरसराहट सुनाई दे रही है", + "झाड़ियों में हल्की आवाज़ है", + "हवा से पेड़ों की टहनियाँ हिल रही हैं", + "सूखी पत्तियों के चरमराने की आवाज़ है", + "घास में हल्की सी आवाज़ है", + ], + "path_walking": [ + "कदमों की आहट सुनाई दे रही है", + "पैरों तले मिट्टी चलने की आवाज़ है", + "चलने की धीमी आवाज़ आ रही है", + "रास्ते किनारे पत्तों की सरसराहट है", + "घास और झाड़ियों की सरसराहट है", + "चलते हुए सूखी टहनियों की आवाज़ है", + ], +} + +# ====================== EXTENDED SOUND PALETTE ====================== +# These are candidate PANNs labels only; they expand the search space without forcing captions. +# Instrument names are centralized so families and Hindi labels stay consistent. +INSTRUMENT_HINDI = { + "tabla": "तबला", + "dhol": "ढोल", + "mridangam": "मृदंगम", + "manjira": "मंजीरा", + "sitar": "सितार", + "sarangi": "सारंगी", + "santoor": "संतूर", + "tanpura": "तानपुरा", + "flute": "बांसुरी", + "shehnai": "शहनाई", + "harmonium": "हारमोनियम", + "violin": "वायलिन", + "guitar": "गिटार", + "piano": "पियानो", +} +INSTRUMENT_FAMILIES = set(INSTRUMENT_HINDI.keys()) +# Generic drum labels are handled separately from specific Indian drum families. + +def classify_scene_category(scene_text: str) -> str: + """Match the Florence-derived visual scene description to a rough + setting category, so the ambient fallback can be grounded in what's + actually on screen instead of being setting-agnostic filler.""" + if not scene_text: + return None + st = scene_text.lower() + for category, keywords in SCENE_CATEGORY_KEYWORDS.items(): + if any(kw in st for kw in keywords): + return category + return None + +AMBIENT_FALLBACK_NATURE = [ + "प्रकृति की धीमी आवाज़ सुनाई दे रही है", + "बाहर से हल्की प्राकृतिक आवाज़ आ रही है", + "पेड़-पौधों के बीच हल्की आवाज़ है", +] +AMBIENT_FALLBACK_GENERIC = [ + "दूर से हल्की आवाज़ आ रही है", + "हल्की सी आवाज़ सुनाई दे रही है", + "कोई हल्की आवाज़ सुनाई दे रही है", +] +NATURE_FAMILIES = {"animal", "bird", "insect", "cricket", "wind", "rustling", + "creak", "thunder", "crow"} +# Indoor inference is intentionally avoided for generic sound labels without visual support. + +def ambient_fallback_hint(families: list = None, scene_text: str = None) -> str: + """Plain-text (no brackets) best-guess hint for a generic/unclear + sound, used as the 'Original raw caption' reference fed to GPT — NOT + a final answer. This is intentionally not bracket-wrapped so it does + NOT get treated as a deterministic bypass: for anything this codebase + doesn't specifically recognize (a car horn, crowd chatter, a phone + ringing — anything outside the forest/village content this was tuned + on), GPT still gets to look at the actual raw detected label text and + adapt, rather than the sound being silently swallowed by one of a + handful of canned filler phrases regardless of what it really is.""" + category = classify_scene_category(scene_text) + if category and category in SCENE_PHRASE_BANKS: + return random.choice(SCENE_PHRASE_BANKS[category]) + + fams = set(f.lower() for f in (families or [])) + if fams & NATURE_FAMILIES: + pool = AMBIENT_FALLBACK_NATURE + else: + pool = AMBIENT_FALLBACK_GENERIC + return random.choice(pool) + +def ambient_fallback_caption(families: list = None, scene_text: str = None) -> str: + """Bracket-wrapped FINAL fallback — used only as a true last resort + when GPT itself errors out and no adaptive help is possible at all.""" + return f"[{ambient_fallback_hint(families, scene_text)}]" + + +def resolve_label_thresholds(panns_labels: list) -> dict: + global _threshold_cache + if _threshold_cache: + return _threshold_cache + resolved = {} + for label in panns_labels: + ll = label.lower() + for keywords, thresh in CLASS_THRESHOLD_KEYWORDS: + if any(k in ll for k in keywords): + if label not in resolved or thresh < resolved[label]: + resolved[label] = thresh + _threshold_cache = resolved + return resolved + +def get_class_threshold(label: str) -> float: + return _threshold_cache.get(label, DEFAULT_THRESHOLD) + +SPEECH_SUBSTRINGS = { + "speech", "male speech", "female speech", "conversation", "narration", + "monologue", "dialogue", "voice", "talking", "child speech", "babbling", + "whispering", "shout", "yell", "screaming", +} + +def is_speech_label(label: str) -> bool: + ll = label.lower() + return any(s in ll for s in SPEECH_SUBSTRINGS) + +# ====================== SCENE VOCABULARY ====================== +SCENE_SOUND_HINTS = [ + { + "name": "forest_outdoor", + "detect_keywords": ["forest", "jungle", "trees", "woods", "outdoor", "path", + "nature", "leaves", "branches", "vegetation", "grass", + "field", "meadow", "hill"], + "sound_hints": ["birds chirping", "wind rustling leaves", "crickets", + "crow cawing", "branch creak", "insects buzzing", + "footsteps on dirt", "rustling grass"], + }, + { + "name": "indoor_room", + "detect_keywords": ["room", "indoors", "inside", "house", "wall", "ceiling", + "furniture", "table", "chair", "floor", "lamp", "window"], + "sound_hints": ["door creak", "footsteps on floor", "clock ticking", + "distant voices", "fan humming"], + }, + { + "name": "water_scene", + "detect_keywords": ["river", "stream", "lake", "ocean", "sea", "pond", + "waterfall", "rain", "water", "boat", "shore", "beach"], + "sound_hints": ["water flowing", "water splashing", "rain falling", + "frogs croaking", "wind over water"], + }, + { + "name": "crowd_public", + "detect_keywords": ["crowd", "market", "street", "bazaar", "gathering", + "festival", "ceremony", "procession"], + "sound_hints": ["crowd chatter", "music playing", "children playing", + "bells ringing"], + }, + { + "name": "night_scene", + "detect_keywords": ["night", "dark", "moonlight", "stars", "dusk", "evening", + "candle", "firelight"], + "sound_hints": ["crickets chirping", "owl hooting", "night insects", + "distant music", "crackling fire", "wind"], + }, + { + "name": "village_rural", + "detect_keywords": ["village", "hut", "mud", "rural", "farm", "cattle", + "well", "bullock", "cart"], + "sound_hints": ["cattle lowing", "rooster crowing", "bells", "wind", + "birds", "distant music"], + }, + { + "name": "temple_religious", + "detect_keywords": ["temple", "shrine", "idol", "incense", "prayer", + "priest", "worship", "ritual", "sacred"], + "sound_hints": ["bells ringing", "chanting", "music", "crowd murmur", + "wind", "birds"], + }, + { + "name": "battle_conflict", + "detect_keywords": ["battle", "war", "fight", "weapon", "sword", "army", + "soldier", "attack", "conflict"], + "sound_hints": ["crowd shouting", "metal clashing", "drums", "horses", + "running", "wind"], + }, +] + +def detect_scene_hints(text: str) -> list: + tl = text.lower() + hints = [] + for scene in SCENE_SOUND_HINTS: + if any(kw in tl for kw in scene["detect_keywords"]): + hints.extend(scene["sound_hints"]) + return list(set(hints)) + +ACTION_WORDS = { + "walking", "running", "standing", "sitting", "laughing", "smiling", "crying", + "shouting", "fighting", "dancing", "talking", "looking", "approaching", + "fleeing", "gesturing", "praying", "angry", "scared", "joyful", "worried", + "surprised", "concerned", "serious", "calm", "distressed", +} + +def filter_florence_for_scene(text: str) -> str: + sentences = [s.strip() for s in text.replace(".", ". ").split(".") if len(s.strip()) > 5] + kept = [] + for sent in sentences: + words = set(sent.lower().split()) + has_action = bool(words & ACTION_WORDS) + if not has_action: + continue + kept.append(sent) + result = ". ".join(kept).strip() + return result if len(result) > 20 else text + +# ====================== LAZY MODEL LOADING ====================== +_florence_processor = None +_florence_model = None +_sentence_model = None +_panns_model = None +_silero_model = None +_silero_utils=None + +def get_florence(): + global _florence_processor, _florence_model + if _florence_model is None: + print("Loading Florence-2-large...") + _florence_processor = AutoProcessor.from_pretrained( + "microsoft/Florence-2-large", trust_remote_code=True) + + _florence_model = AutoModelForCausalLM.from_pretrained( + "microsoft/Florence-2-large", + torch_dtype=MODEL_DTYPE, + trust_remote_code=True + ).to(DEVICE) + + print("Florence-2 loaded.\n") + return _florence_processor, _florence_model + + +def get_sentence_model(): + global _sentence_model + if _sentence_model is None: + print("Loading Sentence Transformer...") + _sentence_model = SentenceTransformer('all-MiniLM-L6-v2', device=DEVICE) + print("Sentence Transformer loaded.\n") + return _sentence_model + +def get_panns(): + global _panns_model + if _panns_model is None: + print("Loading PANNs...") + _panns_model = AudioTagging(checkpoint_path=None, device=DEVICE) + print("PANNs loaded.\n") + return _panns_model + +def get_silero_vad(): + global _silero_model, _silero_utils + if _silero_model is None: + print("Loading Silero VAD (reliable speech detection)...") + torch.set_num_threads(1) + _silero_model, _silero_utils = torch.hub.load( + repo_or_dir='snakers4/silero-vad', + model='silero_vad', + force_reload=False, + trust_repo=True + ) + _silero_model = _silero_model.to(DEVICE) + print("Silero VAD loaded successfully.\n") + return _silero_model, _silero_utils + + +def get_speech_segments(wav_path: str, logger) -> list: + """ + Reliable speech segmentation using Silero VAD. + """ + model, utils = get_silero_vad() + (get_speech_timestamps, _, _, _, _) = utils + + logger.info(f"Running Silero VAD on {wav_path}...") + + # Load audio + waveform, sample_rate = torchaudio.load(wav_path) + waveform = waveform.to(DEVICE) + + if waveform.shape[0] > 1: + waveform = torch.mean(waveform, dim=0, keepdim=True) + + # Get speech timestamps + # threshold lowered 0.5 -> 0.35 and min_speech_duration_ms lowered + # 250 -> 150: atypical vocalizations (quiet mumbling, a distorted + # scream, slurred speech) can genuinely score below Silero's default + # confidence bar and never get recorded as a speech segment at all — + # and no amount of downstream overlap-ratio tuning in is_speech_window + # can compensate for a segment that was never detected in the first + # place. Erring toward over-detecting speech is the safer failure + # mode here, same reasoning as the overlap-ratio tightening below. + speech_timestamps = get_speech_timestamps( + waveform, + model, + sampling_rate=sample_rate, + threshold=0.35, + min_speech_duration_ms=150, + min_silence_duration_ms=300, + speech_pad_ms=500, + ) + + segments = [] + for seg in speech_timestamps: + start = seg['start'] / sample_rate + end = seg['end'] / sample_rate + segments.append((start, end)) + + # Merge overlapping segments + if segments: + segments.sort() + merged = [segments[0]] + for s, e in segments[1:]: + if s <= merged[-1][1]: + merged[-1] = (merged[-1][0], max(merged[-1][1], e)) + else: + merged.append((s, e)) + segments = merged + + total_speech = sum(e - s for s, e in segments) + logger.info(f"Silero detected {len(segments)} speech segments " + f"({total_speech:.1f}s total speech)") + + if len(segments) == 0: + logger.warning("⚠️ Silero found ZERO speech segments!") + + return segments + + +# ====================== SPEECH DETECTION ====================== + +def build_speech_mask_from_segments(segments: list, n_samples: int) -> np.ndarray: + """Convert (start_sec, end_sec) list to a sample-level boolean mask.""" + mask = np.zeros(n_samples, dtype=bool) + for start, end in segments: + s = int(start * SAMPLE_RATE) + e = min(n_samples, int(end * SAMPLE_RATE)) + mask[s:e] = True + return mask + +def is_speech_window(start_sec: float, speech_segments: list, + threshold_ratio: float = 0.10) -> bool: + # Tightened further: threshold lowered 0.25 -> 0.15 -> 0.10, and + # padding increased 0.3 -> 0.4s. VAD segment edges are imprecise + # (soft/trailing speech at onset/offset often gets slightly clipped), + # and captions were still being reported as persisting visibly into + # dialogue in a few places. Erring toward gating more aggressively is + # the safer failure mode — a missed sound-effect caption is far less + # jarring than one overlapping real speech. + PAD_SEC = 0.4 + end_sec = start_sec + WINDOW_SEC + overlap = 0.0 + for seg_start, seg_end in speech_segments: + seg_start -= PAD_SEC + seg_end += PAD_SEC + overlap += max(0.0, min(end_sec, seg_end) - max(start_sec, seg_start)) + return (overlap / WINDOW_SEC) >= threshold_ratio + +# ====================== NOISE REDUCTION ====================== +def apply_noise_reduction(waveform: np.ndarray) -> np.ndarray: + if not USE_NOISE_REDUCTION: + return waveform + try: + import noisereduce as nr + n = len(waveform) + candidates = [ + waveform[:SAMPLE_RATE], + waveform[n//4: n//4 + SAMPLE_RATE], + waveform[n//2: n//2 + SAMPLE_RATE], + ] + noise_clip = min(candidates, key=lambda c: float(np.sqrt(np.mean(c**2)))) + return nr.reduce_noise( + y=waveform, y_noise=noise_clip, sr=SAMPLE_RATE, + prop_decrease=0.6, stationary=True, n_fft=1024, + ).astype(np.float32) + except ImportError: + return waveform + +# ====================== HELPERS ====================== +def setup_logger(name: str, output_dir: Path) -> logging.Logger: + logger = logging.getLogger(name) + logger.setLevel(logging.INFO) + logger.handlers.clear() + fh = logging.FileHandler(output_dir / f"{name}.log", mode='w', encoding='utf-8') + ch = logging.StreamHandler() + fmt = logging.Formatter('%(asctime)s | %(levelname)s | %(message)s') + fh.setFormatter(fmt); ch.setFormatter(fmt) + logger.addHandler(fh); logger.addHandler(ch) + return logger + +def extract_audio(video_path: str, logger) -> tuple: + logger.info(f"Extracting audio: {video_path}") + tmp = tempfile.NamedTemporaryFile(suffix=".wav", delete=False) + tmp.close() + ffmpeg_bin = shutil.which("ffmpeg") or __import__("imageio_ffmpeg").get_ffmpeg_exe() + subprocess.run([ + ffmpeg_bin, "-y", "-loglevel", "error", "-i", video_path, + "-ar", str(SAMPLE_RATE), "-ac", "1", "-f", "wav", tmp.name + ], check=True, capture_output=True) + data, _ = sf.read(tmp.name, dtype="float32") + return data, tmp.name + +SDH_MAX_WORDS = 8 +SDH_MAX_CHARS = 42 + +def enforce_caption_format(caption: str) -> str: + """Force short length, square brackets, and remove punctuation. + + Enforces the strict OTT SDH limit (max 8 words / 42 characters, + matching Netflix/Amazon CPS-compliant subtitle density) in code — + GPT does not reliably obey a "max 8 words" prompt instruction on its + own, however emphatically it's worded, so this is the actual + guarantee, not the prompt text. + """ + if not caption: + return "[sound]" + + # Remove existing brackets + caption = caption.replace("[", "").replace("]", "").strip() + + # Remove punctuation (including Devanagari danda ।) + for ch in [".", ",", "!", "?", "।", "|", ";", ":"]: + caption = caption.replace(ch, "" if ch not in (",",) else "§") + # (comma temporarily marked §, used below to detect a clause boundary + # before being stripped for good) + + words = caption.split() + if len(words) > SDH_MAX_WORDS or len(caption) > SDH_MAX_CHARS: + # Prefer cutting at a clause boundary (where a comma was) if the + # first clause alone already fits — keeps grammar intact instead + # of chopping mid-sentence. + if "§" in caption: + first_clause = caption.split("§")[0].strip() + if first_clause and len(first_clause.split()) <= SDH_MAX_WORDS \ + and len(first_clause) <= SDH_MAX_CHARS: + caption = first_clause + else: + caption = " ".join(first_clause.split()[:SDH_MAX_WORDS]) + else: + caption = " ".join(words[:SDH_MAX_WORDS]) + # Hard char cap as a final backstop, trimmed at the last full word + if len(caption) > SDH_MAX_CHARS: + caption = caption[:SDH_MAX_CHARS].rsplit(" ", 1)[0] + + caption = caption.replace("§", "").strip() + + # Add square brackets + if not caption.startswith("["): + caption = "[" + caption + if not caption.endswith("]"): + caption = caption + "]" + + return caption + +def group_into_bursts(events: list, gap_sec: float = 1.5) -> list: + """ + Group consecutive audio events into bursts if they are close in time. + """ + if not events: + return [] + + bursts = [] + current_burst = [events[0]] + + for ev in events[1:]: + if ev["timestamp_sec"] - current_burst[-1]["timestamp_sec"] <= gap_sec: + current_burst.append(ev) + else: + bursts.append(current_burst) + current_burst = [ev] + + bursts.append(current_burst) + return bursts + +# ====================== CAPTION RENDERING ====================== +from langchain_openai import ChatOpenAI +from langchain_core.messages import HumanMessage, SystemMessage +from langsmith import traceable + +# LLM-based Hindi caption refinement with tracing. +llm = ChatOpenAI( + model="gpt-4o", + temperature=0.06, + max_tokens=60, + api_key=OPENAI_API_KEY, +) + +@traceable(name="generate_hindi_caption") +def generate_hindi_caption(raw_caption: str, scene_text: str, + detected_labels, expressions: list, + logger) -> str: + # detected_labels is a dict {family: raw_label} — use the actual raw + # label values (e.g. "Moo", "Dog") for GPT, not the dict's family-name + # keys. Joining the dict directly iterates its keys, which for some + # families (e.g. generic "animal") doesn't match the real label text. + label_values = list(detected_labels.values()) if isinstance(detected_labels, dict) else detected_labels + labels_str = ", ".join(label_values) if label_values else "None" + expr_str = ", ".join(expressions) if expressions else "None" + + # If the audio itself is generic/unclear, ground the fallback in what's + # actually on screen (visual scene text from Florence) instead of a + # setting-agnostic filler phrase — a forest scene suggests leaves/grass/ + # twigs, a walking scene suggests footsteps, etc. + scene_category = classify_scene_category(scene_text) + scene_hint = "" + if scene_category and scene_category in SCENE_PHRASE_BANKS: + examples = "، ".join(SCENE_PHRASE_BANKS[scene_category][:3]) + scene_hint = (f"\n7. If the sound is generic/unclear and no specific " + f"species/instrument is detected, the visual scene looks " + f"like a {scene_category.replace('_',' ')} setting — prefer " + f"something concrete and plausible for that setting over " + f"vague filler, e.g.: {examples}") + + system_prompt = f"""You are an expert Hindi SDH (Subtitles for Deaf and Hard-of-Hearing) Timed-Text Specialist for major OTT platforms (Netflix, Amazon Prime Video, Disney+ Hotstar). + +Your task is to convert raw audio detection tags into a single, streaming-compliant, high-quality Hindi non-speech subtitle card. + +STRICT OTT SDH COMPLIANCE RULES: +1. STRICT AUDIO GROUNDING: + - Describe ONLY sound events explicitly supported by "Detected sounds". Never invent unlisted sound events or transcribe visual actions. + - ANIMALS: Any animal sound (cow, dog, cat, horse, or unspecified) -> use the generic "जानवर की आवाज़ सुनाई दे रही है". Do NOT name the exact species (न गाय, न कुत्ता, न बिल्ली) — exact species names make captions too scene-specific; the generic term is preferred. + - BIRDS: Any bird sound (crow, owl, or unspecified bird) -> use the generic "पक्षियों की चहचहाहट सुनाई दे रही है". Do NOT name the exact species (न कौआ, न उल्लू) for the same reason. + - MULTIPLE ANIMAL/BIRD SOUNDS: If both an animal sound and a bird sound are present together, mention both generically rather than naming species: "जानवर और पक्षियों की चहचहाहट सुनाई दे रही है". + +2. INSTRUMENT & MUSIC SPECIFICATIONS: + - Faithfully translate detected instruments without substitution: + Tabla -> "संगीत के साथ तबला बज रहा है" + Sitar -> "संगीत के साथ सितार बज रहा है" + Dhol -> "संगीत के साथ ढोल बज रहा है" + Shehnai -> "संगीत के साथ शहनाई बज रहा है" + Flute -> "संगीत के साथ बांसुरी बज रहा है" + Harmonium -> "संगीत के साथ हारमोनियम बज रहा है" + Violin -> "संगीत के साथ वायलिन बज रहा है" + - Generic Drums/Percussion -> "ढोल-नगाड़े जैसी थाप सुनाई दे रही है" + - Music without specified instrument -> "संगीत बज रहा है" (Do NOT default to tabla or any specific instrument unless explicitly detected). + +3. HINDI ORTHOGRAPHY & SYNTAX: + - Bird sounds (crow, owl, or any other): Always use "पक्षियों की चहचहाहट सुनाई दे रही है" — do not name the species. + - Laughter: Use "हल्की हँसी सुनाई दे रही है". + +4. OBJECTIVITY & BANNED WORDS (CRITICAL OTT QC RULE): + - BANNED vague filler words: "पृष्ठभूमि" (background), "वातावरण" (environment/atmosphere), "आस-पास" (nearby/around), "हलचल" (movement/stir). + - BANNED subjective/dramatic adjectives: "डरावनी", "भयावह", "सुरीली", "मधुर", "मनमोहक". + - BANNED time-of-day references: Do NOT describe night/day (रात/दिन). You only know what was HEARD. + +5. FORMATTING & DENSITY CONSTRAINTS: + - Output length: Max 42 characters / 6-8 words (for CPS < 20 compliance). + - Enclose output ENTIRELY inside square brackets: [हिंदी कैप्शन]. + - NO sentence-ending punctuation inside brackets (NO '।', '.', '!', '?'). + - STYLE: Name the sound as a short noun phrase. Do NOT end with "सुनाई दे रहा है" / "सुनाई दे रही है" / "सुनाई दे रहे हैं"/"बज रहा है"/"बज रही है"/"बज रहे हैं" ("can be heard") — this is redundant filler, not new information. Prefer "पक्षियों की चहचहाहट" over "पक्षियों की चहचहाहट सुनाई दे रही है". """ + + human_prompt = f"""Generate a compliant Hindi SDH subtitle card for the following inputs: + +Detected sounds: {labels_str} +Expressions: {expr_str} +Scene context hint: {scene_hint if scene_hint else "None"} +Original raw caption: {raw_caption} + +Output ONLY the final Hindi caption inside square brackets [हिंदी पाठ].""" + + try: + messages = [SystemMessage(content=system_prompt), + HumanMessage(content=human_prompt)] + response = llm.invoke(messages) + + caption = response.content.strip() + return caption + + except Exception as e: + logger.error(f"LangChain GPT error in generate_hindi_caption: {e}") + return ambient_fallback_caption(scene_text=scene_text) + + +@traceable(name="polish_hindi_caption") +def polish_hindi_caption(caption: str, detected_labels, logger) -> str: + label_values = list(detected_labels.values()) if isinstance(detected_labels, dict) else detected_labels + labels_str = ", ".join(label_values) if label_values else "None" + + system_prompt = f"""You are a Quality Control (QC) Inspector for Hindi SDH Timed-Text on major OTT platforms. + +Your sole job is to audit and polish the input Hindi subtitle card to ensure strict OTT platform compliance: +1. FORMATTING: Wrap entirely in square brackets [...] with NO internal punctuation (no '।', '.', '!', '?'). +2. CHARACTER LIMIT: Ensure word count does NOT exceed 6-8 words (max 42 characters) for CPS compliance. +3. ANIMAL/BIRD GENERALIZATION: If the caption names a specific animal or bird species (गाय, कुत्ता, बिल्ली, घोड़ा, कौआ, उल्लू, etc.), replace it with the generic "जानवर की आवाज़" (for animals) or "पक्षियों की चहचहाहट" (for birds) — do not name exact species. +4. INSTRUMENT INTEGRITY: Preserve named musical instruments (तबला, सितार, ढोल, शहनाई, बांसुरी, हारमोनियम, वायलिन) exactly as detected. Do NOT default to or add "तबला" unless explicitly listed. +5. SANITIZATION: + - Remove subjective/dramatic adjectives ("सुरीली", "डरावनी", "मधुर", "भयावह"). + - Remove vague filler terms ("पृष्ठभूमि", "वातावरण", "आस-पास", "हलचल"). + - Remove the trailing phrase "सुनाई दे रहा है" / "सुनाई दे रही है" / "सुनाई दे रहे हैं/"बज रहा है"/"बज रही है"/"बज रहे हैं" wherever it appears — captions should name the sound as a noun phrase, not end with "can be heard". +6. OUTPUT: Return ONLY the polished caption inside square brackets.""" + + human_prompt = f"""QC Audit and polish this subtitle card: + +Detected sounds: {labels_str} +Current caption: {caption} + +Output ONLY the corrected caption in square brackets:""" + + try: + messages = [SystemMessage(content=system_prompt), + HumanMessage(content=human_prompt)] + response = llm.invoke(messages) + + polished = response.content.strip() + return polished + + except Exception as e: + logger.error(f"LangChain GPT error in polish_hindi_caption: {e}") + return caption + + + +def fix_hindi_issues(caption: str) -> str: + # Fix crow word: standard spelling is कौआ (nominative) / कौए (oblique, + # used before "की"). Normalize all common variants GPT might produce. + for variant in ["कौवा", "कव्वा", "काऊआ"]: + caption = caption.replace(variant, "कौआ") + for variant in ["कौवे", "कव्वे"]: + caption = caption.replace(variant, "कौए") + + # Fix crow's call matra: the nasalized "kaanv" sound on आ (a vowel with + # no ascender) takes chandrabindu (ँ), not anusvara (ं). + caption = caption.replace("कांव", "काँव") + + caption = caption.replace("कौवा काँव-काँव", "कौआ काँव-काँव") + caption = caption.replace("कौए की काँव-काँव", "कौआ काँव-काँव") + caption = caption.replace("कौआ की आवाज", "कौए की आवाज") + caption = caption.replace("कौए की आवाज", "कौए की आवाज़") + caption = caption.replace("कीटों की आवाज़", "कीड़ों की आवाज़") + + # Removes any mention of vague phrases of aas paas GPT doesn't reliably follow the prompt + # instruction against these words, so enforce it here unconditionally on every caption rather than relying on GPT to comply. + if "आस-पास" in caption or "आसपास" in caption or "हलचल" in caption or "इर्द-गिर्द" in caption: + caption = caption.replace("आस-पास", "").replace("आसपास", "") + caption = caption.replace("इर्द-गिर्द", "") + caption = caption.replace("हलचल", "आवाज़") + caption = caption.replace(" ", " ").strip() + caption = caption.replace(" की आवाज़ सुनाई", " आवाज़ सुनाई") + if caption in ("[]", "[ ]", ""): + caption = "[हल्की सी आवाज़ सुनाई दे रही है]" + + # Fix incomplete captions (previously this patched them by appending + # "सुनाई दे रहा/रही है" — no longer wanted, so just leave them as a + # clean noun phrase instead). + if caption.strip() == "[संगीत]": + caption = "[संगीत बज रहा है]" + + # GLOBAL: strip "सुनाई दे रहा/रही/रहे है/हैं" ("can be heard") style + # trailing verb phrases everywhere, regardless of source (hardcoded + # deterministic phrase or GPT-generated). Captions should read as a + # plain noun phrase naming the sound ("तबला बज रहा है", "पक्षियों की + # चहचहाहट") rather than "this sound can be heard" every time. This is + # a single regex applied to every caption, not a per-phrase fix, so it + # also covers any wording GPT comes up with that we haven't seen yet. + caption = re.sub(r"\s*सुनाई\s*दे\s*रह[ाी]\s*है\s*", " ", caption) + caption = re.sub(r"\s*सुनाई\s*दे\s*रहे\s*हैं\s*", " ", caption) + caption = re.sub(r"\s*सुनाई\s*दे\s*रहा\s*", " ", caption) # dangling, no है + caption = re.sub(r"\s*सुनाई\s*दे\s*रही\s*", " ", caption) # dangling, no है + caption = re.sub(r"\s*बज\s*रहा\s*है\s*", " ", caption) + caption = re.sub(r"\s*बज\s*रही\s*है\s*", " ", caption) + caption = re.sub(r"\s*बज\s*रहे\s*हैं\s*", " ", caption) + + # Collapse whitespace left behind, and reattach the closing bracket + # cleanly if it ended up separated from the last word. + caption = re.sub(r"\s+\]", "]", caption) + caption = re.sub(r"\s{2,}", " ", caption).strip() + # A stray empty/near-empty result after stripping — extremely rare, + # but guard against captioning nothing. + if caption in ("[]", "[ ]", ""): + caption = "[हल्की आवाज़]" + + return caption + + +def render_caption(frame: np.ndarray, text: str, + font_path: str = "TiroDevanagariHindi-Italic.ttf", + font_size: int = 26, + max_width_ratio: float = 0.82) -> np.ndarray: + """ + Renders clean, professional Hindi subtitles on video frames. + """ + if not text or not text.strip(): + return frame + + try: + from PIL import Image, ImageDraw, ImageFont + import os + + h, w = frame.shape[:2] + img = Image.fromarray(cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)) + draw = ImageDraw.Draw(img) + + # === Smart Font Loading (prioritizes your folder) === + font = None + possible_paths = [ + font_path, + os.path.join(os.getcwd(), font_path), + os.path.join(os.path.dirname(__file__), font_path), + r"C:\Windows\Fonts\TiroDevanagari-Regular.ttf", + ] + + for path in possible_paths: + if path and os.path.exists(path): + try: + font = ImageFont.truetype(path, font_size) + break + except: + continue + + if font is None: + font = ImageFont.load_default() + logger.warning("Tiro Devanagari font not found. Using default.") + + # === Word Wrapping (max 2 lines) === + max_text_width = int(w * max_width_ratio) + lines = [] + words = text.split() + current_line = "" + + for word in words: + test_line = current_line + " " + word if current_line else word + bbox = draw.textbbox((0, 0), test_line, font=font) + if bbox[2] - bbox[0] <= max_text_width: + current_line = test_line + else: + if current_line: + lines.append(current_line) + current_line = word + if current_line: + lines.append(current_line) + + if len(lines) > 2: + lines = lines[:2] # Force max 2 lines + + # === Calculate text block size === + line_heights = [] + line_widths = [] + for line in lines: + bbox = draw.textbbox((0, 0), line, font=font) + line_widths.append(bbox[2] - bbox[0]) + line_heights.append(bbox[3] - bbox[1]) + + text_block_width = max(line_widths) if line_widths else 0 + text_block_height = sum(line_heights) + (len(lines) - 1) * 8 + + # === Background Box === + padding_x = 28 + padding_y = 16 + box_width = text_block_width + 2 * padding_x + box_height = text_block_height + 2 * padding_y + + margin_bottom = 48 + x = (w - box_width) // 2 + y = h - box_height - margin_bottom + + # Semi-transparent rounded background + overlay = Image.new('RGBA', img.size, (0, 0, 0, 0)) + overlay_draw = ImageDraw.Draw(overlay) + overlay_draw.rounded_rectangle( + [x, y, x + box_width, y + box_height], + radius=14, + fill=(0, 0, 0, 215) + ) + img = Image.alpha_composite(img.convert('RGBA'), overlay).convert('RGB') + draw = ImageDraw.Draw(img) + + # === Draw text with shadow === + shadow_offset = 2 + for i, line in enumerate(lines): + line_y = y + padding_y + sum(line_heights[:i]) + i * 8 + shadow_offset + line_x = x + padding_x + (text_block_width - line_widths[i]) // 2 + draw.text((line_x + shadow_offset, line_y), line, font=font, fill=(0, 0, 0, 180)) + + for i, line in enumerate(lines): + line_y = y + padding_y + sum(line_heights[:i]) + i * 8 + line_x = x + padding_x + (text_block_width - line_widths[i]) // 2 + draw.text((line_x, line_y), line, font=font, fill=(255, 255, 255)) + + return cv2.cvtColor(np.array(img), cv2.COLOR_RGB2BGR) + + except Exception as e: + logger.warning(f"render_caption failed: {e}") + return frame + +def annotate_frame(frame, caption_text, output_path): + rendered_frame = render_caption(frame.copy(), caption_text) + cv2.imwrite(str(output_path), rendered_frame) + +def normalize_hindi_caption(caption: str) -> str: + """Standardize common phrases for consistency.""" + caption = caption.strip() + + # Standardize bird sounds + if "पक्षी" in caption or "चहचहाहट" in caption or "चिड़िया" in caption: + if "पेड़ों के बीच" not in caption: + caption = caption.replace("पक्षियों की चहचहाहट गूंज रही है", "पक्षियों की चहचहाहट सुनाई दे रही है") + + # Standardize music + if "संगीत" in caption: + caption = caption.replace("संगीत की मधुर धुन गूंज रही है", "संगीत की धुन सुनाई दे रही है") + caption = caption.replace("चारों ओर मधुर संगीत गूंज रहा है", "संगीत की धुन सुनाई दे रही है") + + # Remove repetitive or robotic phrases + caption = caption.replace("सुनाई दे रही है।", "सुनाई दे रही है") + caption = caption.replace("गूंज रही है।", "गूंज रही है") + + return caption + +# ====================== STAGE 1: VISION LOG ====================== +def extract_vision_log(video_path: str, output_path: Path, logger): + fp, fm = get_florence() + cap = cv2.VideoCapture(video_path) + fps = cap.get(cv2.CAP_PROP_FPS) or 25.0 + tot = int(cap.get(cv2.CAP_PROP_FRAME_COUNT)) + dur = tot / fps / 60.0 + n = max(1, int(dur * FRAMES_PER_MINUTE)) + idxs = np.linspace(0, tot - 1, n, dtype=int) + + logger.info(f"Vision extraction: {n} frames over {dur:.1f} min " + f"({FRAMES_PER_MINUTE} FPM)") + + prev_gray, written = None, 0 + with open(output_path, "w", encoding="utf-8") as f: + for idx in idxs: + cap.set(cv2.CAP_PROP_POS_FRAMES, int(idx)) + ret, frame = cap.read() + if not ret: continue + + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY).astype(float) + if prev_gray is not None: + diff = np.abs(gray - prev_gray).mean() + if diff > FRAME_STABILITY_THRESHOLD: + logger.info(f"[{idx/fps:.1f}s] skip unstable frame (diff={diff:.1f})") + prev_gray = gray + continue + prev_gray = gray + + t = idx / fps + image = Image.fromarray(cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)) + + def run_florence(prompt): + inputs = fp(text=prompt, images=image, return_tensors="pt") + inputs = { + k: (v.to(DEVICE, dtype=MODEL_DTYPE) + if torch.is_tensor(v) and torch.is_floating_point(v) + else v.to(DEVICE) if hasattr(v, "to") else v) + for k, v in inputs.items() + } + with torch.inference_mode(): + ids = fm.generate( + input_ids=inputs["input_ids"], + pixel_values=inputs["pixel_values"], + max_new_tokens=64, + do_sample=False, + num_beams=1, + ) + return fp.batch_decode(ids, skip_special_tokens=True)[0].strip() + + scene_cap = run_florence("") + action_cap = "" + + # Merge action sentences not already in scene caption + for sent in [s.strip() for s in action_cap.replace(".", ". ").split(".") + if len(s.strip()) > 10]: + if sent.lower() not in scene_cap.lower(): + scene_cap += " " + sent + + scene_text = filter_florence_for_scene(scene_cap) + scene_hints = detect_scene_hints(scene_cap) + expressions = [w for w in [ + "laughing","smiling","crying","angry","scared","worried", + "concerned","surprised","joyful","distressed","shouting", + ] if w in scene_cap.lower()] + + entry = { + "timestamp_sec": round(t, 2), + "raw_caption": scene_cap, + "scene_text": scene_text, + "scene_hints": scene_hints, + "expressions": expressions, + } + f.write(json.dumps(entry, ensure_ascii=False) + "\n") + logger.info(f"[{t:.1f}s] scene='{scene_text[:80]}' | " + f"hints={scene_hints[:3]} | expr={expressions}") + written += 1 + + cap.release() + logger.info(f"Vision log: {written} frames → {output_path}") + +def load_vision_log(log_path: Path, logger) -> list: + if not log_path or not Path(log_path).exists(): + logger.warning(f"Vision log not found: {log_path}") + return [] + entries = [] + with open(log_path, "r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: continue + try: + obj = json.loads(line) + entries.append({ + "t": float(obj["timestamp_sec"]), + "scene_text": obj.get("scene_text") or obj.get("caption", ""), + "scene_hints": obj.get("scene_hints", []), + "expressions": obj.get("expressions", []), + "raw_caption": obj.get("raw_caption", ""), + }) + except Exception as e: + logger.warning(f"Bad log line: {line[:60]} ({e})") + entries.sort(key=lambda e: e["t"]) + logger.info(f"Loaded {len(entries)} vision entries.") + return entries + +# ====================== PALETTE PREDICTION ====================== +def predict_scene_palette(entry: dict, panns_labels: list, + sentence_model, class_embs) -> dict: + scene_text = entry["scene_text"] + scene_hints = entry["scene_hints"] + hint_str = (". Ambient sounds expected: " + ", ".join(scene_hints)) if scene_hints else "" + query = scene_text + hint_str + + emb = sentence_model.encode(query, convert_to_tensor=True) + sims = util.cos_sim(emb, class_embs)[0] + + palette = {} + for i, label in enumerate(panns_labels): + if is_speech_label(label): continue + sim = float(sims[i]) + if sim >= SEMANTIC_THRESHOLD: + palette[label] = sim + + # Direct hint injection — ensures forest scene explicitly boosts crow, rustle, creak + for hint in scene_hints: + hl = hint.lower() + for label in panns_labels: + if is_speech_label(label): continue + if any(word in label.lower() for word in hl.split() if len(word) > 3): + if label not in palette or palette[label] < SEMANTIC_THRESHOLD: + palette[label] = SEMANTIC_THRESHOLD + + sorted_p = sorted(palette.items(), key=lambda x: x[1], reverse=True) + return dict(sorted_p[:PALETTE_SIZE]) + +def build_scene_index(vision_entries: list, panns_labels: list, logger) -> list: + if not vision_entries: return [] + sm = get_sentence_model() + class_embs = sm.encode(panns_labels, convert_to_tensor=True) + index = [] + for entry in vision_entries: + palette = predict_scene_palette(entry, panns_labels, sm, class_embs) + index.append({ + "t": entry["t"], + "palette": palette, + "scene_text": entry["scene_text"], + "expressions": entry.get("expressions", []), + }) + logger.info(f"[{entry['t']:.1f}s] palette top-5: " + f"{list(palette.keys())[:5]} | expr={entry.get('expressions', [])}") + logger.info(f"Scene index: {len(index)} entries") + return index + +_EMPTY_SCENE = {"palette": {}, "scene_text": "", "expressions": []} + +def get_scene_at(t: float, scene_index: list) -> dict: + if not scene_index: return _EMPTY_SCENE + best = min(scene_index, key=lambda e: abs(e["t"] - t)) + if abs(best["t"] - t) > SCENE_WINDOW_SEC: return _EMPTY_SCENE + return best + +# ====================== DETECTION ====================== +def detect_audio_events(waveform: np.ndarray, scene_index: list, + speech_segments: list, logger) -> list: + logger.info("=" * 65) + logger.info("AUDIO ANALYSIS — PANNs detection with SileroVAD speech gate") + logger.info("=" * 65) + + panns_model = get_panns() + resolve_label_thresholds(panns_model.labels) + + clean = apply_noise_reduction(waveform) + logger.info(f"Noise reduction: {'applied' if USE_NOISE_REDUCTION else 'skipped'}") + + win_samples = int(WINDOW_SEC * SAMPLE_RATE) + hop_samples = int(HOP_SEC * SAMPLE_RATE) + events = [] + n = len(clean) + start = 0 + + while start < n: + start_sec = start / SAMPLE_RATE + chunk = clean[start:start + win_samples] + if len(chunk) < win_samples: + chunk = np.pad(chunk, (0, win_samples - len(chunk))) + + # ---- HARD SPEECH GATE ---- + if is_speech_window(start_sec, speech_segments, threshold_ratio=0.25): + logger.debug(f"[{start_sec:.2f}s] SPEECH — skipped") + start += hop_samples + continue + + scene = get_scene_at(start_sec, scene_index) + palette = scene["palette"] + + if chunk.ndim == 1: + chunk = chunk.reshape(1, -1) + out = panns_model.inference(chunk) + scores = out[0] if isinstance(out, (list, tuple)) else out["clipwise_output"] + if hasattr(scores, "ndim") and scores.ndim > 1: + scores = scores[0] + + top_idx = np.argsort(scores)[::-1][:20] + best = None + best_score = -1.0 + candidates = [] + + for idx in top_idx: + raw = float(scores[idx]) + label = panns_model.labels[idx] + if is_speech_label(label): continue + + thresh = get_class_threshold(label) + if raw < thresh: continue + + # No VAD penalty — speech windows are hard-gated above, so any window reaching here is definitively non-speech. + palette_score = palette.get(label, 0.0) + combined = W_AUDIO * raw + W_PALETTE * palette_score + passed = combined >= ACCEPT_THRESHOLD + + candidates.append({ + "label": label, "raw": round(raw, 4), + "palette": round(palette_score, 4), + "combined": round(combined, 4), "pass": passed, + }) + + if combined > best_score: + best_score = combined + best = { + "timestamp_sec": round(start_sec, 2), + "label": label, + "raw_confidence": round(raw, 4), + "palette_score": round(palette_score, 4), + "combined_score": round(combined, 4), + "should_caption": passed, + "scene_text": scene["scene_text"][:120], + "expressions": scene.get("expressions", []), + } + + # ---- PER-WINDOW LOG ---- + scene_snippet = scene["scene_text"][:70] + logger.info( + f"\n[{start_sec:6.2f}s] AMBIENT | scene='{scene_snippet}'" + ) + if candidates: + logger.info(f" {'LABEL':<42} {'RAW':>6} {'PAL':>6} {'CMB':>6} PASS") + for c in sorted(candidates, key=lambda x: -x["combined"])[:6]: + logger.info( + f" {c['label']:<42} {c['raw']:>6.3f} " + f"{c['palette']:>6.3f} {c['combined']:>6.3f} " + f"{'✓' if c['pass'] else '✗'}" + ) + if best and best["should_caption"]: + logger.info(f" → WINNER: {best['label']} " + f"(combined={best['combined_score']:.3f})") + else: + logger.info(" → no winner") + + if best: + events.append(best) + + # Keep strong instrument-family hits even when "Music" wins the frame. + # This protects all spellings of the same instrument family. + for c in candidates: + if not c["pass"]: + continue + if _family(c["label"]) not in INSTRUMENT_FAMILIES: + continue + if best and c["label"] == best["label"]: + continue # already recorded as the winner event above + events.append({ + "timestamp_sec": round(start_sec, 2), + "label": c["label"], + "raw_confidence": c["raw"], + "palette_score": c["palette"], + "combined_score": c["combined"], + "should_caption": True, + "scene_text": scene["scene_text"][:120], + "expressions": scene.get("expressions", []), + }) + + start += hop_samples + + accepted = sum(1 for e in events if e["should_caption"]) + logger.info(f"\nDetection done: {len(events)} windows, {accepted} accepted") + return events + +# ====================== DEDUP ====================== +def dedup_events(events: list) -> list: + by_label = defaultdict(list) + for ev in events: + lbl = ev["label"] + bucket = by_label[lbl] + if not bucket or (ev["timestamp_sec"] - bucket[-1]["timestamp_sec"] > DEDUP_GAP_SEC): + bucket.append(ev) + elif ev["combined_score"] > bucket[-1]["combined_score"]: + bucket[-1] = ev + merged = [ev for b in by_label.values() for ev in b] + merged.sort(key=lambda e: e["timestamp_sec"]) + return merged + +SPECIFIC_ANIMAL_LABELS = { + "cattle, bovinae", "moo", "cow", "livestock, farm animals, working animals", + "dog", "bark", "bow-wow", "canidae, dogs, wolves", + "cat", "meow", "purr", + "horse", "neigh, whinny", "clip-clop", + "owl", "hoot", +} + +def filter_labels_for_caption(events: list, min_combined_score: float = 0.18) -> list: + """ + Filter out weak detections before sending to LLM. + This is the fix against random animal captions. + """ + filtered = [] + for ev in events: + score = ev.get("combined_score", 0) + label = ev.get("label", "") + fam = _family(label) + + if fam == "animal" and label.lower() not in SPECIFIC_ANIMAL_LABELS: + # Generic animal labels are noisy, so they need stronger evidence. + if score < 0.35: + continue + + # Phone/ringtone cues can be brief and still meaningful, so they get a lower bar. + if fam == "ringtone" and score >= 0.06: + filtered.append(ev) + continue + + # Birds/crows are high false-positive sources — require stronger evidence + if fam in ("bird", "crow") and score < 0.40: + continue + + if score >= min_combined_score: + filtered.append(ev) + + return filtered + + +def final_cleanup(caption: str, detected_labels, scene_text: str = None) -> str: + """ + Post-processing safety net to catch remaining generic animal captions. + """ + caption_lower = caption.lower() + label_values = list(detected_labels.values()) if isinstance(detected_labels, dict) else detected_labels + labels_str = " ".join(label_values).lower() + + # Keep generic animal/bird captions, but normalize exact species names back to the generic form. + SPECIES_TO_GENERIC = { + "गाय": "जानवर", "कुत्ते": "जानवर", "कुत्ता": "जानवर", + "बिल्ली": "जानवर", "घोड़े": "जानवर", "घोड़ा": "जानवर", + "कौआ": "पक्षियों", "कौवा": "पक्षियों", "कौए": "पक्षियों", + "उल्लू": "पक्षियों", "बत्तख": "पक्षियों", "हंस": "पक्षियों", + } + for species, generic in SPECIES_TO_GENERIC.items(): + if species in caption: + caption = f"[{generic} की आवाज़ सुनाई दे रही है]" + break + + return caption + +def _gender_from_scene(scene_text: str) -> str: + st = scene_text.lower() + w = bool(re.search(r"\b(woman|female|girl|lady|she|her)\b", st)) + m = bool(re.search(r"\b(man|male|boy|he|his)\b", st)) + if w and not m: return "female" + if m and not w: return "male" + return "unknown" + +# ====================== RULE-BASED CAPTION (FALLBACK) ====================== +SOUND_FAMILIES = { + "crow": ["crow", "caw"], + "bird": ["bird vocalization", "bird call", "bird song", "bird", + "fowl", "rooster", "chicken", "owl", "hoot", "turkey"], + # Human reaction sounds were missing before, so they are included here. + "human_reaction": ["wheeze", "groan", "grunt", "pant", "gasp", "sigh", + "battle cry", "whimper", "scream", "shout", "yell", + "sob", "sniff", "cough"], + "whistle": ["whistle", "wolf-whistle", "whistling"], + "laugh_soft": ["chuckle", "chortle", "giggle"], + "laugh_full": ["laughter", "belly laugh"], + "cricket": ["cricket"], + "insect": ["insect", "buzz"], + "wind": ["wind"], + "rustling": ["rustl"], + "creak": ["creak"], + "footstep": ["footstep", "walk", "run", "jog"], + "thunder": ["thunder"], + "music": ["music", "musical instrument", "plucked string", + "bowed string", "wind instrument", "singing"], + "crowd": ["crowd", "cheering", "chatter"], + "applause": ["applause", "clapping"], + "vehicle": ["vehicle", "car", "engine", "motor", "motorcycle", + "truck", "traffic"], + "animal": ["cattle", "cow", "bull", "dog", "bark", "cat", "horse", + "neigh", "frog", "animal", "duck", "quack", "goose", + "honk", "wild animal", "domestic animal"], + # Ringing sounds are split so phone and bell cases stay distinct. + "bell": ["bell", "chime", "wind chime"], + "ringtone": ["telephone", "ringtone", "phone"], + "siren": ["siren", "alarm", "civil defense"], + # Each instrument family needs its own entry to normalize varied raw labels. + "tabla": ["tabla"], + "dhol": ["dhol", "dholak"], + "mridangam": ["mridangam", "pakhawaj"], + "manjira": ["manjira", "cymbal"], + "sitar": ["sitar"], + "sarangi": ["sarangi", "veena", "sarod"], + "santoor": ["santoor", "santur"], + "tanpura": ["tanpura", "tambura"], + "flute": ["flute", "bansuri"], + "shehnai": ["shehnai", "nadaswaram"], + "harmonium": ["harmonium", "organ", "electronic organ", "hammond"], + "violin": ["violin", "fiddle"], + "guitar": ["guitar"], + "piano": ["piano", "keyboard"], + "drum": ["drum kit", "bass drum", "snare drum", "percussion"], + "water": ["water", "stream", "river", "splash", "rain", "waterfall"], + "wood": ["wood", "knock", "chop"], + "metal": ["metal", "clank", "clang", "clash"], + "glass": ["glass", "clink", "shatter"], + "fire": ["fire", "crackling"], +} + +def _family(label: str) -> str: + ll = label.lower() + for fam, kws in SOUND_FAMILIES.items(): + if any(k in ll for k in kws): + return fam + return ll + +FAMILY_CAPTION_MAP = { + "crow": "A crow can be heard cawing in the distance.", + "bird": "Birds can be heard chirping in the background.", + "laugh_soft": "A soft chuckle can be heard nearby.", + "laugh_full": "Laughter can be heard nearby.", + "cricket": "Crickets can be heard chirping in the background.", + "insect": "Insects can be heard buzzing nearby.", + "wind": "Wind can be heard blowing through the trees.", + "rustling": "Leaves and grass can be heard rustling.", + "creak": "Branches can be heard creaking in the wind.", + "footstep": "Footsteps can be heard on the path.", + "water": "Water can be heard flowing nearby.", + "thunder": "Thunder can be heard rumbling in the distance.", + "fire": "A fire can be heard crackling.", + "music": "Music can be heard playing in the background.", + "crowd": "A crowd can be heard in the background.", + "bell": "Bells can be heard ringing in the distance.", +} + +def _rule_caption(families: list, best_labels: dict, + scene_text: str, expressions: list, fam_scores: dict = None) -> str: + """Generate a deterministic rule-based caption. + + fam_scores: optional mapping of family -> combined_score to allow + gating low-confidence high-risk families (e.g. mantra, bird) so we + don't repeatedly caption them on very weak evidence. + """ + fset = set(families) + fam_scores = fam_scores or {} + # Minimum combined_score required to treat certain high-risk families as deterministic + MANTRA_MIN_SCORE = 0.40 + BIRD_MIN_SCORE = 0.40 + + # If a family was detected but its score is below the safety threshold, + # ignore it for deterministic rule decisions (avoids repeated false "mantra"/bird captions). + if "mantra" in fset and fam_scores.get("mantra", 0.0) < MANTRA_MIN_SCORE: + fset.remove("mantra") + if "chant" in fset and fam_scores.get("chant", 0.0) < MANTRA_MIN_SCORE: + fset.remove("chant") + if "crow" in fset and fam_scores.get("crow", 0.0) < BIRD_MIN_SCORE: + fset.remove("crow") + if "bird" in fset and fam_scores.get("bird", 0.0) < BIRD_MIN_SCORE: + fset.remove("bird") + + outdoor = any(x in scene_text.lower() + for x in ["forest","outdoor","trees","jungle","nature","path"]) + gender = _gender_from_scene(scene_text) + + # Use raw label strings, not family names, for exact species checks. + bl = [v.lower() for v in best_labels.values()] + + # Specific animal sounds win before the generic fallback. + ANIMAL_SOUND_LABELS = {"moo", "cattle, bovinae", "cow", + "dog", "bark", "bow-wow", "canidae, dogs, wolves", + "cat", "meow", "purr", + "horse", "neigh, whinny", "clip-clop"} + if any(b in ANIMAL_SOUND_LABELS for b in bl): + return "[जानवर की आवाज़ सुनाई दे रही है]" + + # "Patter" was being freely interpreted by GPT as rain ("बारिश की हल्की + # आवाज़") with no basis. + if "patter" in bl: + return "[हल्की थपथपाहट जैसी आवाज़ है]" + + if "animal" in families and len(families) == 1: + return "[जानवर की आवाज़ सुनाई दे रही है]" + + # Laughter — deterministic Hindi, reported alone and takes priority + # over co-occurring music/instrument/bird/animal in the same burst. + # Previously this branch returned English reference text, which meant + # it always failed the GPT-bypass check and got sent to GPT — which + # then freely combined it with whatever else was in the burst (e.g. + # "हँसी और पक्षियों की चहचहाहट"). Laughter is the salient, human- + # relevant sound and should be reported on its own. + if "laugh_soft" in fset or "laugh_full" in fset: + soft = "laugh_soft" in fset and "laugh_full" not in fset + return "[हल्की हँसी सुनाई दे रही है]" if soft else "[हँसी सुनाई दे रही है]" + + # Instrument detection: pick whichever instrument family ranks highest + # instead of choosing tabla no matter what. Uses the module-level + # INSTRUMENT_HINDI dict, which is the same one used for secondary- + # candidate protection and persistence filtering elsewhere - a single + # source of truth instead of three separately-maintained lists that + # inevitably drift out of sync with each other. + detected_instruments = [INSTRUMENT_HINDI[fam.lower()] for fam in families + if fam.lower() in INSTRUMENT_HINDI] + + # Keep drum cues when a named instrument is also present. + # This prevents real percussion from being lost during grouping. + LARGE_DRUM_FAMILIES = {"drum", "bass drum", "drum kit", "percussion"} + has_drum = any(fam.lower() in LARGE_DRUM_FAMILIES for fam in families) + if has_drum and len(detected_instruments) == 1 and "ढोल" not in detected_instruments: + detected_instruments.append("ढोल") + + # Resolve mantra, instruments, and drum cues in a confidence-aware order. + has_mantra = any(f.lower() in ("mantra", "chant") for f in families) + + if has_mantra: + # Require a higher confidence for mantra to be considered definitive + if fam_scores and fam_scores.get("mantra", 0.0) < MANTRA_MIN_SCORE and fam_scores.get("chant", 0.0) < MANTRA_MIN_SCORE: + has_mantra = False + else: + return "[मंत्रों का उच्चारण सुनाई दे रहा है]" + if detected_instruments: + if len(detected_instruments) == 1: + return f"[संगीत के साथ {detected_instruments[0]} बज रहा है]" + joined = "-".join(detected_instruments[:2]) + return f"[{joined} के साथ संगीत बज रहा है]" + if has_drum: + return "[ढोल-नगाड़े जैसी थाप सुनाई दे रही है]" + + # White noise is not a meaningful caption on its own, so use a generic ambient hint. + if fset <= {"white noise", "static"}: + return ambient_fallback_hint(families, scene_text) + + # Audience reaction pairs are a narrow, readable exception to the normal single-sound rule. + if "applause" in fset and "whistle" in fset: + return "[तालियों और सीटियों की आवाज़]" + + # Outdoor walking scenes can use rustling or footsteps as a stronger visual match. + walking = any(x in scene_text.lower() + for x in ["walk","path","trail","moving","strolling","approaching"]) + if outdoor and walking and fset & {"rustling", "creak", "footstep"}: + ambient = fset & {"bird","crow","cricket","insect","wind"} + if "crow" in ambient or "bird" in ambient: + return "[पक्षियों की चहचहाहट सुनाई दे रही है]" + return "[पत्तों की सरसराहट सुनाई दे रही है]" + + # After the early rules, score order decides the final phrase, with music as a normal candidate. + SOUND_PHRASE_MAP = { + "crow": "[पक्षियों की चहचहाहट]", + "bird": "[पक्षियों की चहचहाहट]", + "animal": "[जानवर की आवाज़]", + "applause": "[तालियों की आवाज़]", + "whistle": "[सीटी की आवाज़]", + "human_reaction": "[व्यक्ति की आवाज़]", + "crowd": "[भीड़ की आवाज़]", + "vehicle": "[वाहन की आवाज़]", + "bell": "[घंटी की आवाज़]", + "ringtone": "[फ़ोन बजने की आवाज़]", + "manjira": "[मंजीरे की आवाज़]", + "santoor": "[संतूर की धुन]", + "tanpura": "[तानपुरे की आवाज़]", + "water": "[पानी की आवाज़]", + "wood": "[लकड़ी की आवाज़]", + "metal": "[धातु की खनक]", + "glass": "[काँच की आवाज़]", + "fire": "[आग की चटचटाहट]", + "cricket": "[झींगुरों की आवाज़]", + "insect": "[कीड़ों की आवाज़]", + "wind": "[हवा चलने की आवाज़]", + "rustling": "[पत्तों की सरसराहट]", + "creak": "[टहनियों की चरमराहट]", + "music": "[संगीत बज रहा है]", + } + + # Scene context can suppress implausible sounds but not real animal cases. + _scene_category, _implausible = _scene_palette(scene_text) + _implausible = _implausible - {"animal"} + + for fam_name in families: # already score-sorted for this burst + fl = fam_name.lower() + if fl in _implausible: + continue + if fl in SOUND_PHRASE_MAP: + return SOUND_PHRASE_MAP[fl] + + # Ambiguous cases stay as a hint instead of a forced caption, so GPT can adapt to the real signal. + return ambient_fallback_hint(families, scene_text) + +# ====================== BURST CONSOLIDATION ====================== +def build_timeline(events: list, scene_index: list, logger, output_dir: Path = None, + speech_segments: list = None) -> list: + accepted = [ev for ev in events if ev.get("should_caption")] + if not accepted: + return [] + + accepted.sort(key=lambda e: e["timestamp_sec"]) + + # Music labels need a short persistence window before being kept. + MUSIC_PERSISTENCE_SEC = 3.0 + music_fams = {"music"} | INSTRUMENT_FAMILIES + filtered_accepted = [] + for i, ev in enumerate(accepted): + fam = _family(ev["label"]) + if fam not in music_fams: + filtered_accepted.append(ev) + continue + # Check for ANY music-family neighbor, not strictly the same + # instrument. A specific instrument (e.g. Tabla) only "wins" the + # odd frame even when playing continuously throughout. + has_neighbor = any( + _family(other["label"]) in music_fams + and other is not ev + and abs(other["timestamp_sec"] - ev["timestamp_sec"]) <= MUSIC_PERSISTENCE_SEC + for other in accepted + ) + if has_neighbor: + filtered_accepted.append(ev) + accepted = filtered_accepted + if not accepted: + return [] + + # Group nearby detections into bursts. + bursts, cur = [], [accepted[0]] + for ev in accepted[1:]: + if ev["timestamp_sec"] - cur[-1]["timestamp_sec"] <= BURST_GAP_SEC: + cur.append(ev) + else: + bursts.append(cur); cur = [ev] + bursts.append(cur) + + logger.info(f"Burst grouping: {len(accepted)} events → {len(bursts)} bursts") + logger.info("\nFINAL CAPTION SYNTHESIS:") + logger.info("=" * 65) + + timeline = [] + MIN_SIREN_SPAN_SEC = 4.0 + SPEECH_BUFFER_SEC = 0.15 # small safety margin before speech onset + for burst in bursts: + start_sec = burst[0]["timestamp_sec"] + end_sec = burst[-1]["timestamp_sec"] + 1.8 + + # Avoid extending captions into real speech regions. + if speech_segments: + for seg_start, seg_end in speech_segments: + if seg_start > start_sec and seg_start < end_sec: + end_sec = max(start_sec + 0.3, seg_start - SPEECH_BUFFER_SEC) + break + + siren_events = [ev for ev in burst if _family(ev["label"]) == "siren"] + if siren_events: + span = siren_events[-1]["timestamp_sec"] - siren_events[0]["timestamp_sec"] + if span < MIN_SIREN_SPAN_SEC: + burst = [ev for ev in burst if _family(ev["label"]) != "siren"] + if not burst: + continue + + # Best label per family + fam_best = {} + for ev in sorted(burst, key=lambda e: -e["combined_score"]): + fam = _family(ev["label"]) + if fam not in fam_best: + fam_best[fam] = ev + + # Prioritize reaction sounds ahead of generic high-score noise. + PRIORITY_FAMILIES = {"laugh_soft", "laugh_full", "human_reaction"} + ranked = sorted(fam_best, key=lambda f: fam_best[f]["combined_score"], reverse=True) + priority = [f for f in ranked if f in PRIORITY_FAMILIES] + rest = [f for f in ranked if f not in PRIORITY_FAMILIES] + top_fams = (priority + rest)[:3] + best_labels = {f: fam_best[f]["label"] for f in top_fams} + # Pass family-level combined scores so rule-based logic can gate + # low-confidence high-risk families (mantra, bird, etc.). + fam_scores = {f: fam_best[f].get("combined_score", 0.0) for f in top_fams} + + # Specific animal sounds override generic animal fallback in the same burst. + specific_present = any( + lbl.lower() in SPECIFIC_ANIMAL_LABELS for lbl in best_labels.values() + ) + + AMBIGUOUS_VOCALIZATION_FAMILIES = {"roar", "howl", "growl", "growling", + "whale vocalization"} + if specific_present: + for f, lbl in list(best_labels.items()): + if _family(lbl) == "animal" and lbl.lower() not in SPECIFIC_ANIMAL_LABELS: + del best_labels[f] + elif f.lower() in AMBIGUOUS_VOCALIZATION_FAMILIES: + del best_labels[f] + + for f, lbl in list(best_labels.items()): + if _family(lbl) == "animal" and lbl.lower() not in SPECIFIC_ANIMAL_LABELS: + best_labels[f] = "Ambient/unclear sound (do not name species)" + + # Use the strongest event as the scene anchor. + best_ev = max(burst, key=lambda e: e["combined_score"]) + scene_text = best_ev.get("scene_text", "") + expressions = best_ev.get("expressions", []) + + # Suppress instrument captions when speech overlaps the burst. + if speech_segments: + burst_dur = max(0.001, end_sec - start_sec) + overlap = 0.0 + for seg_start, seg_end in speech_segments: + overlap += max(0.0, min(end_sec, seg_end) - max(start_sec, seg_start)) + speech_fraction = overlap / burst_dur + if speech_fraction > 0.05: + # remove any music/instrument families from top_fams + top_fams = [f for f in top_fams if f not in music_fams] + if not top_fams: + # if nothing left, fall back to keeping human_reaction if present + top_fams = [f for f in list(fam_best.keys()) if f == 'human_reaction'] or top_fams + + # Rule-based caption comes first, then GPT only for ambiguous cases. + raw_caption = _rule_caption(top_fams, best_labels, scene_text, expressions, fam_scores) + + is_deterministic = ( + raw_caption.startswith("[") and + any("\u0900" <= ch <= "\u097F" for ch in raw_caption) + ) + + if is_deterministic: + hindi_caption = raw_caption + else: + # 2. Generate Hindi caption (LangSmith traces this automatically) + hindi_caption = generate_hindi_caption( + raw_caption=raw_caption, + scene_text=scene_text, + detected_labels=best_labels, + expressions=expressions, + logger=logger + ) + + # 3. Polish the caption + if hindi_caption and len(hindi_caption) > 5: + hindi_caption = polish_hindi_caption( + caption=hindi_caption, + detected_labels=best_labels, + logger=logger + ) + + hindi_caption = enforce_caption_format(hindi_caption) + hindi_caption = final_cleanup(hindi_caption, best_labels, scene_text) + hindi_caption = fix_hindi_issues(hindi_caption) + + # Final consistency pass catches mismatches between family signal and caption wording. + _fam_lower = set(f.lower() for f in top_fams) + _consistency_checks = [ + ("पक्षियों", {"bird", "crow"} & _fam_lower, + "[जानवर की आवाज़]" if "animal" in _fam_lower else None), + ("मंत्रों का उच्चारण", {"mantra", "chant"} & _fam_lower, None), + ("वाहन", {"vehicle"} & _fam_lower, None), + ("तालियों", {"applause"} & _fam_lower, None), + ("लकड़ी", {"wood"} & _fam_lower, None), + ] + for _mention, _justified_by, _fallback_override in _consistency_checks: + if _mention in hindi_caption and not _justified_by: + logger.warning( + f"CAPTION/FAMILY MISMATCH at {start_sec:.1f}s: caption " + f"'{hindi_caption}' mentions '{_mention}' but families=" + f"{top_fams} does not justify it. Forcing correction." + ) + if _fallback_override: + hindi_caption = _fallback_override + elif top_fams: + hindi_caption = _rule_caption(top_fams, best_labels, scene_text, expressions, fam_scores) + if not (hindi_caption.startswith("[") and + any("\u0900" <= ch <= "\u097F" for ch in hindi_caption)): + hindi_caption = ambient_fallback_caption(top_fams, scene_text) + break + + timeline.append({ + "start_sec": round(start_sec, 2), + "end_sec": round(end_sec, 2), + "caption": hindi_caption, + "families": top_fams, + "scene_text": scene_text[:100], + }) + + logger.info( + f" [{start_sec:.1f}→{end_sec:.1f}s] families={top_fams}\n" + f" final='{hindi_caption}'" + ) + + logger.info("=" * 65) + return timeline + +# ====================== SRT ====================== +def _srt_ts(sec: float) -> str: + h, r = divmod(int(sec), 3600) + m, s = divmod(r, 60) + return f"{h:02d}:{m:02d}:{s:02d},{int((sec%1)*1000):03d}" + +def write_srt(timeline: list, path: Path): + with open(path, "w", encoding="utf-8") as f: + for i, seg in enumerate(timeline, 1): + f.write(f"{i}\n{_srt_ts(seg['start_sec'])} --> " + f"{_srt_ts(seg['end_sec'])}\n{seg['caption']}\n\n") + +# ====================== FINAL VIDEO ====================== +def generate_final_video(video_path: str, timeline: list, + output_path: Path, logger): + if not timeline: + logger.info("Empty timeline — skipping video."); return + logger.info(f"Generating video with {len(timeline)} caption segments...") + + cap = cv2.VideoCapture(video_path) + fps = cap.get(cv2.CAP_PROP_FPS) or 25.0 + w = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH)) + h = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT)) + total = int(cap.get(cv2.CAP_PROP_FRAME_COUNT)) + + with tempfile.NamedTemporaryFile(suffix=".mp4", delete=False) as tmp: + silent_path = tmp.name + out = cv2.VideoWriter(silent_path, cv2.VideoWriter_fourcc(*"mp4v"), fps, (w, h)) + tl = sorted(timeline, key=lambda s: s["start_sec"]) + + for fi in range(total): + ret, frame = cap.read() + if not ret: break + t = fi / fps + active = next((s for s in tl if s["start_sec"] <= t < s["end_sec"]), None) + if active: + frame = render_caption(frame, active["caption"]) + out.write(frame) + + cap.release(); out.release() + try: + ffmpeg_bin = shutil.which("ffmpeg") or __import__("imageio_ffmpeg").get_ffmpeg_exe() + subprocess.run([ + ffmpeg_bin, "-y", "-i", silent_path, "-i", video_path, + "-c:v", "libx264", "-preset", "fast", "-crf", "23", + "-pix_fmt", "yuv420p", "-movflags", "+faststart", "-c:a", "aac", + "-map", "0:v:0", "-map", "1:a:0", "-shortest", str(output_path) + ], check=True, capture_output=True) + logger.info(f"Video saved: {output_path}") + except Exception as e: + logger.error(f"Video merge failed: {e}") + finally: + try: os.unlink(silent_path) + except: pass + +# ====================== MAIN PIPELINE ====================== +def process_video(video_path: str, output_dir: Path, + florence_log: Path = None): + vname = Path(video_path).stem + logger = setup_logger(vname, output_dir) + logger.info("=" * 70) + logger.info(f"PROCESSING: {vname} (PANNs + GPT-4o-mini)") + logger.info("=" * 70) + + panns_model = get_panns() + + # ---- Vision ---- + if florence_log and Path(florence_log).exists(): + vision_entries = load_vision_log(florence_log, logger) + else: + fallback = florence_log or (output_dir / "florence_log.jsonl") + logger.info(f"No vision log — extracting live to {fallback}") + extract_vision_log(video_path, str(fallback), logger) + vision_entries = load_vision_log(fallback, logger) + + scene_index = build_scene_index(vision_entries, panns_model.labels, logger) + + # ---- Audio extraction ---- + waveform, wav_path = extract_audio(video_path, logger) + + speech_segments = get_speech_segments(wav_path, logger) + try: os.unlink(wav_path) + except: pass + + # ---- PANNs detection ---- + raw_events = detect_audio_events( + waveform, scene_index, speech_segments, logger) + logger.info(f"Raw events: {len(raw_events)}, " + f"accepted: {sum(1 for e in raw_events if e.get('should_caption'))}") + + deduped = dedup_events(raw_events) + deduped = filter_labels_for_caption(deduped, min_combined_score=0.18) + + bursts = group_into_bursts(deduped) + logger.info(f"After dedup: {len(deduped)}") + + # Attach fresh scene context to each deduped event + for ev in deduped: + sc = get_scene_at(ev["timestamp_sec"], scene_index) + ev.setdefault("scene_text", sc.get("scene_text", "")) + ev.setdefault("expressions", sc.get("expressions", [])) + + # ---- Caption synthesis (rule-based + GPT-4o-mini) ---- + timeline = build_timeline(deduped, scene_index, logger, output_dir=output_dir, + speech_segments=speech_segments) + logger.info(f"Timeline: {len(timeline)} caption segments") + + # ---- Annotated frames ---- + frames_dir = output_dir / "annotated_frames" + frames_dir.mkdir(exist_ok=True) + cap_obj = cv2.VideoCapture(video_path) + fps_v = cap_obj.get(cv2.CAP_PROP_FPS) or 25.0 + for seg in timeline: + mid = (seg["start_sec"] + seg["end_sec"]) / 2 + cap_obj.set(cv2.CAP_PROP_POS_FRAMES, int(mid * fps_v)) + ret, frame = cap_obj.read() + if ret: + rendered = render_caption(frame.copy(), seg["caption"]) + cv2.imwrite(str(frames_dir / f"frame_{seg['start_sec']:.1f}s.png"), rendered) + cap_obj.release() + + # ---- SRT ---- + srt_path = output_dir / "captions.srt" + write_srt(timeline, srt_path) + logger.info(f"SRT: {srt_path}") + + # ---- JSON ---- + with open(output_dir / "results.json", "w", encoding="utf-8") as f: + json.dump({ + "caption_segments": len(timeline), + "timeline": timeline, + "raw_events": len(raw_events), + "deduped_events": len(deduped), + "speech_segments": len(speech_segments), + }, f, indent=2, ensure_ascii=False) + + if GENERATE_FINAL_VIDEO and timeline: + generate_final_video(video_path, timeline, + output_dir / "final_output.mp4", logger) + + logger.info(f"\nDone. {len(timeline)} segments → {output_dir}") + +# ====================== MAIN ====================== +def main(): + parser = argparse.ArgumentParser( + description="Non-speech audio captioning pipeline + GPT-4o-mini") + parser.add_argument("--video", required=True) + parser.add_argument("--florence-log", "-florence-log", default=None, + help="Path to JSONL vision log (Stage 1 output).") + parser.add_argument("--extract-vision", action="store_true", + help="Stage 1: run Florence, write vision log, exit.") + parser.add_argument("--openai-key", default=None, + help="OpenAI API key (overrides OPENAI_API_KEY env).") + args = parser.parse_args() + + global HF_TOKEN, OPENAI_API_KEY + if args.openai_key: OPENAI_API_KEY = args.openai_key + + video_path = Path(args.video) + if not video_path.exists(): + print(f"Video not found: {video_path}"); return + + out = Path("results_v17") / video_path.stem + out.mkdir(parents=True, exist_ok=True) + + if args.extract_vision: + log = Path(args.florence_log) if args.florence_log else (out / "florence_log.jsonl") + logger = setup_logger(video_path.stem + "_vision", out) + extract_vision_log(str(video_path), str(log), logger) + logger.info(f"\nStage 1 done. Stage 2:\n" + f" python {Path(__file__).name} --video {video_path} " + f"--florence-log {log}") + else: + process_video(str(video_path), out, + Path(args.florence_log) if args.florence_log else None) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fab3ba5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,26 @@ +# Core ML & Deep Learning +numpy==1.26.4 +packaging==24.1 + +# PyTorch (CUDA 12.1) +--extra-index-url https://download.pytorch.org/whl/cu121 +torch==2.4.1+cu121 +torchvision==0.19.1+cu121 +torchaudio==2.4.1+cu121 + +# Hugging Face Stack (Stable versions for Florence-2) +huggingface_hub==0.25.2 +transformers==4.46.3 +sentence-transformers==3.1.1 +jinja2 + +# Audio Processing +panns_inference +soundfile + +# Computer Vision +opencv-python +Pillow + +# Utilities +python-dotenv \ No newline at end of file diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full.log b/results_v14/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full.log new file mode 100644 index 0000000..67bc274 --- /dev/null +++ b/results_v14/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full.log @@ -0,0 +1,20487 @@ +2026-07-13 08:27:48,049 | INFO | ====================================================================== +2026-07-13 08:27:48,049 | INFO | PROCESSING: Bharat_Ek_Khoj_Ep_016_full (v4 — pyannote + GPT-4o-mini) +2026-07-13 08:27:48,049 | INFO | ====================================================================== +2026-07-13 08:28:03,747 | INFO | Loaded 103 vision entries. +2026-07-13 08:28:11,978 | INFO | [0.0s] palette top-5: ['Music of Bollywood', 'Music of Asia', 'Mantra', 'Chorus effect', 'Background music'] | expr=[] +2026-07-13 08:28:12,031 | INFO | [18.1s] palette top-5: ['Wind chime', 'Waves, surf', 'Rustling leaves', 'Wind', 'Chirp tone'] | expr=[] +2026-07-13 08:28:12,067 | INFO | [48.4s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Sound effect', 'Rustling leaves'] | expr=[] +2026-07-13 08:28:12,116 | INFO | [66.5s] palette top-5: ['Waves, surf', 'Wind chime', 'Clatter', 'Rain', 'Wind'] | expr=[] +2026-07-13 08:28:12,173 | INFO | [72.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Buzz', 'Waterfall'] | expr=[] +2026-07-13 08:28:12,246 | INFO | [78.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Insect', 'Environmental noise'] | expr=[] +2026-07-13 08:28:12,344 | INFO | [108.8s] palette top-5: ['Wind chime', 'Rustling leaves', 'Wind', 'Waves, surf', 'Environmental noise'] | expr=[] +2026-07-13 08:28:12,409 | INFO | [114.9s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'White noise', 'Rustling leaves'] | expr=[] +2026-07-13 08:28:12,490 | INFO | [121.0s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Environmental noise', 'Rustling leaves'] | expr=[] +2026-07-13 08:28:12,540 | INFO | [145.2s] palette top-5: ['Wind chime', 'Chirp tone', 'Waves, surf', 'Honk', 'Howl'] | expr=[] +2026-07-13 08:28:12,590 | INFO | [157.2s] palette top-5: ['Wind chime', 'White noise', 'Waves, surf', 'Wind', 'Civil defense siren'] | expr=[] +2026-07-13 08:28:12,666 | INFO | [163.3s] palette top-5: ['Wind chime', 'Waves, surf', 'Civil defense siren', 'Wind', 'White noise'] | expr=[] +2026-07-13 08:28:12,722 | INFO | [169.4s] palette top-5: ['Wind chime', 'Mosquito', 'Camera', 'Bird', 'White noise'] | expr=[] +2026-07-13 08:28:12,771 | INFO | [181.4s] palette top-5: ['Wind chime', 'Howl', 'Chirp tone', 'Waves, surf', 'Crow'] | expr=[] +2026-07-13 08:28:12,837 | INFO | [326.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Chirp tone', 'Wind', 'Sound effect'] | expr=['smiling'] +2026-07-13 08:28:12,894 | INFO | [332.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Waterfall', 'Sound effect'] | expr=[] +2026-07-13 08:28:12,953 | INFO | [369.0s] palette top-5: ['Wind chime', 'White noise', 'Wind', 'Clatter', 'Insect'] | expr=[] +2026-07-13 08:28:13,017 | INFO | [375.0s] palette top-5: ['Wind chime', 'Wind', 'Owl', 'Insect', 'Environmental noise'] | expr=[] +2026-07-13 08:28:13,074 | INFO | [381.0s] palette top-5: ['Wind chime', 'Insect', 'Wind', 'Bird', 'Mosquito'] | expr=[] +2026-07-13 08:28:13,139 | INFO | [387.1s] palette top-5: ['Wind chime', 'Environmental noise', 'Wind', 'Insect', 'Rustling leaves'] | expr=[] +2026-07-13 08:28:13,204 | INFO | [399.2s] palette top-5: ['White noise', 'Walk, footsteps', 'Wind chime', 'Rustling leaves', 'Wind'] | expr=[] +2026-07-13 08:28:13,254 | INFO | [417.4s] palette top-5: ['Wind chime', 'Bird', 'Camera', 'Wind', 'Crowd'] | expr=[] +2026-07-13 08:28:13,311 | INFO | [429.4s] palette top-5: ['Waves, surf', 'Wind chime', 'Wind', 'White noise', 'Fly, housefly'] | expr=[] +2026-07-13 08:28:13,368 | INFO | [435.5s] palette top-5: ['Waves, surf', 'Wind chime', 'Field recording', 'Wind', 'Clatter'] | expr=[] +2026-07-13 08:28:13,434 | INFO | [441.5s] palette top-5: ['Waves, surf', 'Waterfall', 'Crowd', 'Clatter', 'Rain'] | expr=[] +2026-07-13 08:28:13,497 | INFO | [447.6s] palette top-5: ['Wind chime', 'Wind', 'Rain', 'Waterfall', 'White noise'] | expr=[] +2026-07-13 08:28:13,551 | INFO | [453.6s] palette top-5: ['Waterfall', 'Waves, surf', 'Crowd', 'Clatter', 'Rain'] | expr=[] +2026-07-13 08:28:13,600 | INFO | [459.7s] palette top-5: ['Waterfall', 'Wind chime', 'White noise', 'Crowd', 'Rain'] | expr=[] +2026-07-13 08:28:13,666 | INFO | [465.7s] palette top-5: ['Crowd', 'Waterfall', 'Waves, surf', 'Wind', 'Wind chime'] | expr=[] +2026-07-13 08:28:13,724 | INFO | [471.8s] palette top-5: ['Waterfall', 'Crowd', 'White noise', 'Wind chime', 'Clatter'] | expr=[] +2026-07-13 08:28:13,834 | INFO | [477.8s] palette top-5: ['Wind chime', 'Crowd', 'Wind', 'Clatter', 'Bird vocalization, bird call, bird song'] | expr=[] +2026-07-13 08:28:13,929 | INFO | [483.9s] palette top-5: ['Wind chime', 'Bird vocalization, bird call, bird song', 'White noise', 'Wind noise (microphone)', 'Crowd'] | expr=[] +2026-07-13 08:28:14,021 | INFO | [489.9s] palette top-5: ['White noise', 'Wind chime', 'Bird vocalization, bird call, bird song', 'Wind noise (microphone)', 'Crowd'] | expr=[] +2026-07-13 08:28:14,119 | INFO | [496.0s] palette top-5: ['Wind noise (microphone)', 'White noise', 'Bird vocalization, bird call, bird song', 'Wind chime', 'Waterfall'] | expr=[] +2026-07-13 08:28:14,213 | INFO | [514.1s] palette top-5: ['Wind chime', 'Wind', 'Insect', 'Crowd', 'Clatter'] | expr=[] +2026-07-13 08:28:14,300 | INFO | [520.2s] palette top-5: ['Wind chime', 'White noise', 'Crowd', 'Wind', 'Clatter'] | expr=[] +2026-07-13 08:28:14,402 | INFO | [526.2s] palette top-5: ['Wind chime', 'White noise', 'Wind', 'Waves, surf', 'Crowd'] | expr=[] +2026-07-13 08:28:14,498 | INFO | [532.3s] palette top-5: ['Wind chime', 'Clatter', 'Waves, surf', 'Wind', 'Crowd'] | expr=[] +2026-07-13 08:28:14,620 | INFO | [538.3s] palette top-5: ['Wind chime', 'Wind', 'Bird vocalization, bird call, bird song', 'Rain', 'Crowd'] | expr=[] +2026-07-13 08:28:14,728 | INFO | [544.4s] palette top-5: ['Wind chime', 'Waves, surf', 'White noise', 'Clatter', 'Wind'] | expr=[] +2026-07-13 08:28:14,826 | INFO | [550.4s] palette top-5: ['Wind chime', 'Crowd', 'Waves, surf', 'Wind', 'Clatter'] | expr=[] +2026-07-13 08:28:14,948 | INFO | [556.5s] palette top-5: ['Wind chime', 'Wind', 'White noise', 'Waves, surf', 'Rain'] | expr=[] +2026-07-13 08:28:15,090 | INFO | [574.6s] palette top-5: ['Wind chime', 'Wind', 'Bird', 'Fly, housefly', 'Mosquito'] | expr=[] +2026-07-13 08:28:15,207 | INFO | [580.6s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Chirp tone', 'White noise'] | expr=[] +2026-07-13 08:28:15,314 | INFO | [598.8s] palette top-5: ['White noise', 'Wind chime', 'Raindrop', 'Walk, footsteps', 'Rain'] | expr=[] +2026-07-13 08:28:15,420 | INFO | [610.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Chirp tone', 'Insect'] | expr=[] +2026-07-13 08:28:15,518 | INFO | [617.0s] palette top-5: ['Wind chime', 'Waterfall', 'Wild animals', 'Rain', 'Bee, wasp, etc.'] | expr=[] +2026-07-13 08:28:15,637 | INFO | [629.0s] palette top-5: ['Waves, surf', 'Wind chime', 'Wind', 'Rain', 'Water'] | expr=[] +2026-07-13 08:28:15,735 | INFO | [641.2s] palette top-5: ['Rain', 'Raindrop', 'Water', 'Wind', 'Wind chime'] | expr=[] +2026-07-13 08:28:15,837 | INFO | [647.2s] palette top-5: ['Wind chime', 'Insect', 'Bird vocalization, bird call, bird song', 'Mosquito', 'White noise'] | expr=[] +2026-07-13 08:28:15,933 | INFO | [653.2s] palette top-5: ['Rain', 'Mosquito', 'Raindrop', 'Wind', 'Wind chime'] | expr=[] +2026-07-13 08:28:16,025 | INFO | [659.3s] palette top-5: ['Female singing', 'Wind chime', 'Chorus effect', 'Wind', 'Water'] | expr=[] +2026-07-13 08:28:16,155 | INFO | [689.5s] palette top-5: ['Wind chime', 'Environmental noise', 'Wind', 'Insect', 'Rustling leaves'] | expr=[] +2026-07-13 08:28:16,278 | INFO | [780.3s] palette top-5: ['Wild animals', 'Animal', 'Mosquito', 'Bird', 'Insect'] | expr=[] +2026-07-13 08:28:16,418 | INFO | [786.3s] palette top-5: ['Camera', 'Wind chime', 'Bird', 'Insect', 'Wind'] | expr=[] +2026-07-13 08:28:16,542 | INFO | [816.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'White noise', 'Environmental noise'] | expr=[] +2026-07-13 08:28:16,656 | INFO | [822.6s] palette top-5: ['Wind chime', 'Chorus effect', 'Sound effect', 'Waves, surf', 'Whistling'] | expr=[] +2026-07-13 08:28:16,780 | INFO | [840.8s] palette top-5: ['Music of Bollywood', 'Wind chime', 'Cricket', 'Insect', 'Wind'] | expr=['smiling'] +2026-07-13 08:28:16,915 | INFO | [846.8s] palette top-5: ['Music of Bollywood', 'Waves, surf', 'White noise', 'Wind chime', 'Insect'] | expr=[] +2026-07-13 08:28:17,039 | INFO | [852.8s] palette top-5: ['Music of Bollywood', 'Wind chime', 'White noise', 'Mosquito', 'Wind'] | expr=[] +2026-07-13 08:28:17,152 | INFO | [858.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Sound effect', 'Howl'] | expr=[] +2026-07-13 08:28:17,267 | INFO | [865.0s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Chirp tone', 'Howl'] | expr=[] +2026-07-13 08:28:17,378 | INFO | [871.0s] palette top-5: ['Wind chime', 'Waves, surf', 'Waterfall', 'Howl', 'Wind'] | expr=['smiling'] +2026-07-13 08:28:17,501 | INFO | [883.1s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Clatter', 'Humming'] | expr=[] +2026-07-13 08:28:17,609 | INFO | [895.2s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Rustling leaves', 'Walk, footsteps'] | expr=[] +2026-07-13 08:28:17,726 | INFO | [901.2s] palette top-5: ['Wind chime', 'Wind', 'Walk, footsteps', 'Buzz', 'Clatter'] | expr=[] +2026-07-13 08:28:17,871 | INFO | [973.8s] palette top-5: ['Camera', 'White noise', 'Wind chime', 'Waterfall', 'Wind'] | expr=['concerned'] +2026-07-13 08:28:17,979 | INFO | [985.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Clatter', 'Buzz', 'Wind'] | expr=[] +2026-07-13 08:28:18,118 | INFO | [992.0s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Clatter', 'Chirp tone'] | expr=[] +2026-07-13 08:28:18,209 | INFO | [998.0s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Buzz', 'Clatter'] | expr=[] +2026-07-13 08:28:18,347 | INFO | [1004.1s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Chirp tone', 'Clatter'] | expr=['concerned'] +2026-07-13 08:28:18,456 | INFO | [1010.1s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Buzz', 'Chirp tone'] | expr=[] +2026-07-13 08:28:18,579 | INFO | [1016.2s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Clatter', 'Buzz'] | expr=[] +2026-07-13 08:28:18,696 | INFO | [1022.2s] palette top-5: ['Wind chime', 'Wind', 'Clatter', 'Waves, surf', 'Rain'] | expr=[] +2026-07-13 08:28:18,820 | INFO | [1028.3s] palette top-5: ['Wind', 'Wind chime', 'Clatter', 'Waves, surf', 'Buzz'] | expr=[] +2026-07-13 08:28:18,942 | INFO | [1034.3s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Clatter', 'Buzz'] | expr=[] +2026-07-13 08:28:19,048 | INFO | [1040.4s] palette top-5: ['Wind chime', 'Waves, surf', 'Clatter', 'Wind', 'Buzz'] | expr=[] +2026-07-13 08:28:19,171 | INFO | [1046.4s] palette top-5: ['Wind chime', 'Waves, surf', 'Clatter', 'Buzz', 'White noise'] | expr=[] +2026-07-13 08:28:19,279 | INFO | [1052.4s] palette top-5: ['Wind chime', 'Wind', 'Rain', 'Fly, housefly', 'White noise'] | expr=[] +2026-07-13 08:28:19,377 | INFO | [1094.8s] palette top-5: ['Wild animals', 'Livestock, farm animals, working animals', 'Animal', 'Crowd', 'Crow'] | expr=[] +2026-07-13 08:28:19,509 | INFO | [1100.8s] palette top-5: ['Wild animals', 'Environmental noise', 'Clatter', 'Wind chime', 'Humming'] | expr=[] +2026-07-13 08:28:19,643 | INFO | [1106.9s] palette top-5: ['Clatter', 'Environmental noise', 'White noise', 'Wind chime', 'Crowd'] | expr=[] +2026-07-13 08:28:19,769 | INFO | [1113.0s] palette top-5: ['Environmental noise', 'Rustling leaves', 'Wind chime', 'Humming', 'Wood'] | expr=[] +2026-07-13 08:28:19,864 | INFO | [1119.0s] palette top-5: ['Rustling leaves', 'Wind chime', 'Wild animals', 'Environmental noise', 'Crow'] | expr=[] +2026-07-13 08:28:19,995 | INFO | [1125.0s] palette top-5: ['Wind chime', 'Environmental noise', 'Crowd', 'Wind', 'Rustling leaves'] | expr=[] +2026-07-13 08:28:20,126 | INFO | [1131.1s] palette top-5: ['Crowd', 'White noise', 'Clatter', 'Wind chime', 'Wind'] | expr=[] +2026-07-13 08:28:20,251 | INFO | [1143.2s] palette top-5: ['Wind chime', 'Female singing', 'Chorus effect', 'Ringtone', 'Sound effect'] | expr=['concerned'] +2026-07-13 08:28:20,392 | INFO | [1167.4s] palette top-5: ['Cattle, bovinae', 'Sound effect', 'Ambulance (siren)', 'Civil defense siren', 'Whale vocalization'] | expr=[] +2026-07-13 08:28:20,523 | INFO | [1179.5s] palette top-5: ['Wind chime', 'Wind', 'White noise', 'Sound effect', 'Waves, surf'] | expr=[] +2026-07-13 08:28:20,655 | INFO | [1185.5s] palette top-5: ['Wind chime', 'Waves, surf', 'White noise', 'Wind', 'Chirp tone'] | expr=[] +2026-07-13 08:28:20,770 | INFO | [1191.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'White noise', 'Chirp tone'] | expr=[] +2026-07-13 08:28:20,884 | INFO | [1203.7s] palette top-5: ['Wind chime', 'Chirp tone', 'Howl', 'Owl', 'Buzz'] | expr=[] +2026-07-13 08:28:20,999 | INFO | [1215.8s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'White noise', 'Chirp tone'] | expr=[] +2026-07-13 08:28:21,148 | INFO | [1221.8s] palette top-5: ['Wind chime', 'Wind', 'Sound effect', 'White noise', 'Waves, surf'] | expr=[] +2026-07-13 08:28:21,262 | INFO | [1227.9s] palette top-5: ['Wind chime', 'Waves, surf', 'White noise', 'Chirp tone', 'Sound effect'] | expr=[] +2026-07-13 08:28:21,394 | INFO | [1233.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Whale vocalization', 'Animal', 'Sound effect'] | expr=[] +2026-07-13 08:28:21,504 | INFO | [1246.0s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Humming', 'Wind chime'] | expr=[] +2026-07-13 08:28:21,610 | INFO | [1252.1s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Outside, rural or natural', 'Humming'] | expr=[] +2026-07-13 08:28:21,727 | INFO | [1258.1s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Humming', 'Wind chime'] | expr=[] +2026-07-13 08:28:21,841 | INFO | [1264.2s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Outside, rural or natural', 'Humming'] | expr=[] +2026-07-13 08:28:21,974 | INFO | [1270.2s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Outside, rural or natural', 'Humming'] | expr=[] +2026-07-13 08:28:22,114 | INFO | [1276.2s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Owl', 'Humming'] | expr=[] +2026-07-13 08:28:22,250 | INFO | [1324.6s] palette top-5: ['Wind chime', 'Traffic noise, roadway noise', 'Crow', 'Chirp tone', 'White noise'] | expr=[] +2026-07-13 08:28:22,250 | INFO | Scene index: 103 entries +2026-07-13 08:28:22,250 | INFO | Extracting audio: data\Bharat_Ek_Khoj_Ep_016_full.mp4 +2026-07-13 08:28:25,552 | INFO | Running Silero VAD on C:\Users\ADITIP~1\AppData\Local\Temp\tmpr6u_ksje.wav... +2026-07-13 08:29:51,682 | INFO | ✅ Silero detected 156 speech segments (812.8s total speech) +2026-07-13 08:29:51,690 | INFO | ================================================================= +2026-07-13 08:29:51,690 | INFO | AUDIO ANALYSIS — PANNs detection with pyannote speech gate +2026-07-13 08:29:51,690 | INFO | ================================================================= +2026-07-13 08:29:51,699 | INFO | Noise reduction: applied +2026-07-13 08:29:52,036 | INFO | +[ 0.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,036 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,036 | INFO | Environmental noise 0.399 0.000 0.259 ✓ +2026-07-13 08:29:52,036 | INFO | Bird 0.248 0.000 0.162 ✓ +2026-07-13 08:29:52,036 | INFO | Bird vocalization, bird call, bird song 0.218 0.000 0.141 ✓ +2026-07-13 08:29:52,036 | INFO | Chirp, tweet 0.176 0.000 0.115 ✗ +2026-07-13 08:29:52,036 | INFO | Animal 0.133 0.000 0.086 ✗ +2026-07-13 08:29:52,036 | INFO | Outside, rural or natural 0.086 0.000 0.056 ✗ +2026-07-13 08:29:52,036 | INFO | → WINNER: Environmental noise (combined=0.259) +2026-07-13 08:29:52,086 | INFO | +[ 0.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,086 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,086 | INFO | Bird 0.277 0.000 0.180 ✓ +2026-07-13 08:29:52,086 | INFO | Environmental noise 0.245 0.000 0.159 ✓ +2026-07-13 08:29:52,089 | INFO | Bird vocalization, bird call, bird song 0.239 0.000 0.155 ✓ +2026-07-13 08:29:52,089 | INFO | Chirp, tweet 0.233 0.000 0.151 ✓ +2026-07-13 08:29:52,089 | INFO | Animal 0.107 0.000 0.070 ✗ +2026-07-13 08:29:52,089 | INFO | Outside, rural or natural 0.069 0.000 0.044 ✗ +2026-07-13 08:29:52,089 | INFO | → WINNER: Bird (combined=0.180) +2026-07-13 08:29:52,116 | INFO | +[ 0.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,116 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,116 | INFO | Bird 0.216 0.000 0.140 ✓ +2026-07-13 08:29:52,116 | INFO | Chirp, tweet 0.182 0.000 0.118 ✗ +2026-07-13 08:29:52,116 | INFO | Bird vocalization, bird call, bird song 0.143 0.000 0.093 ✗ +2026-07-13 08:29:52,116 | INFO | Animal 0.105 0.000 0.069 ✗ +2026-07-13 08:29:52,119 | INFO | Environmental noise 0.068 0.000 0.044 ✗ +2026-07-13 08:29:52,119 | INFO | Alarm 0.053 0.000 0.035 ✗ +2026-07-13 08:29:52,119 | INFO | → WINNER: Bird (combined=0.140) +2026-07-13 08:29:52,144 | INFO | +[ 0.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,144 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,148 | INFO | Bird 0.219 0.000 0.143 ✓ +2026-07-13 08:29:52,148 | INFO | Chirp, tweet 0.131 0.000 0.085 ✗ +2026-07-13 08:29:52,148 | INFO | Animal 0.119 0.000 0.077 ✗ +2026-07-13 08:29:52,148 | INFO | Bird vocalization, bird call, bird song 0.111 0.000 0.072 ✗ +2026-07-13 08:29:52,148 | INFO | → WINNER: Bird (combined=0.143) +2026-07-13 08:29:52,170 | INFO | +[ 0.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,170 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,176 | INFO | Bird 0.147 0.000 0.096 ✗ +2026-07-13 08:29:52,176 | INFO | Animal 0.107 0.000 0.069 ✗ +2026-07-13 08:29:52,176 | INFO | Chirp, tweet 0.076 0.000 0.049 ✗ +2026-07-13 08:29:52,176 | INFO | Bird vocalization, bird call, bird song 0.066 0.000 0.043 ✗ +2026-07-13 08:29:52,176 | INFO | → no winner +2026-07-13 08:29:52,199 | INFO | +[ 1.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,199 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,199 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:29:52,199 | INFO | Animal 0.131 0.000 0.085 ✗ +2026-07-13 08:29:52,199 | INFO | Environmental noise 0.125 0.000 0.081 ✗ +2026-07-13 08:29:52,199 | INFO | Bird vocalization, bird call, bird song 0.076 0.000 0.049 ✗ +2026-07-13 08:29:52,199 | INFO | Chirp, tweet 0.065 0.000 0.042 ✗ +2026-07-13 08:29:52,199 | INFO | Outside, rural or natural 0.052 0.000 0.034 ✗ +2026-07-13 08:29:52,199 | INFO | → no winner +2026-07-13 08:29:52,231 | INFO | +[ 1.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,231 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,233 | INFO | Bird 0.168 0.000 0.109 ✗ +2026-07-13 08:29:52,233 | INFO | Environmental noise 0.165 0.000 0.107 ✗ +2026-07-13 08:29:52,233 | INFO | Animal 0.135 0.000 0.088 ✗ +2026-07-13 08:29:52,234 | INFO | Bird vocalization, bird call, bird song 0.110 0.000 0.071 ✗ +2026-07-13 08:29:52,234 | INFO | Chirp, tweet 0.098 0.000 0.064 ✗ +2026-07-13 08:29:52,234 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:29:52,234 | INFO | → no winner +2026-07-13 08:29:52,259 | INFO | +[ 1.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,259 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,259 | INFO | Animal 0.179 0.000 0.116 ✗ +2026-07-13 08:29:52,259 | INFO | Bird 0.165 0.000 0.107 ✗ +2026-07-13 08:29:52,259 | INFO | Chicken, rooster 0.076 0.000 0.049 ✗ +2026-07-13 08:29:52,259 | INFO | Bird vocalization, bird call, bird song 0.060 0.000 0.039 ✗ +2026-07-13 08:29:52,259 | INFO | → no winner +2026-07-13 08:29:52,282 | INFO | +[ 1.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,282 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,282 | INFO | Animal 0.150 0.000 0.097 ✗ +2026-07-13 08:29:52,291 | INFO | Music 0.077 0.000 0.050 ✗ +2026-07-13 08:29:52,291 | INFO | Bird 0.051 0.000 0.033 ✗ +2026-07-13 08:29:52,291 | INFO | → no winner +2026-07-13 08:29:52,317 | INFO | +[ 1.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,317 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,317 | INFO | Animal 0.158 0.000 0.102 ✗ +2026-07-13 08:29:52,317 | INFO | Music 0.094 0.000 0.061 ✗ +2026-07-13 08:29:52,317 | INFO | Bird 0.074 0.000 0.048 ✗ +2026-07-13 08:29:52,317 | INFO | Mouse 0.054 0.000 0.035 ✗ +2026-07-13 08:29:52,317 | INFO | → no winner +2026-07-13 08:29:52,342 | INFO | +[ 2.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,342 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,342 | INFO | Bird 0.226 0.000 0.147 ✓ +2026-07-13 08:29:52,348 | INFO | Animal 0.170 0.000 0.110 ✗ +2026-07-13 08:29:52,348 | INFO | Bird vocalization, bird call, bird song 0.096 0.000 0.062 ✗ +2026-07-13 08:29:52,348 | INFO | Chirp, tweet 0.081 0.000 0.052 ✗ +2026-07-13 08:29:52,348 | INFO | Rodents, rats, mice 0.074 0.000 0.048 ✗ +2026-07-13 08:29:52,350 | INFO | Chicken, rooster 0.056 0.000 0.036 ✗ +2026-07-13 08:29:52,350 | INFO | → WINNER: Bird (combined=0.147) +2026-07-13 08:29:52,375 | INFO | +[ 2.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,375 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,375 | INFO | Bird 0.406 0.000 0.264 ✓ +2026-07-13 08:29:52,375 | INFO | Chirp, tweet 0.253 0.000 0.164 ✓ +2026-07-13 08:29:52,375 | INFO | Animal 0.244 0.000 0.159 ✓ +2026-07-13 08:29:52,375 | INFO | Bird vocalization, bird call, bird song 0.237 0.000 0.154 ✓ +2026-07-13 08:29:52,375 | INFO | Duck 0.111 0.000 0.072 ✗ +2026-07-13 08:29:52,375 | INFO | Environmental noise 0.087 0.000 0.057 ✗ +2026-07-13 08:29:52,375 | INFO | → WINNER: Bird (combined=0.264) +2026-07-13 08:29:52,405 | INFO | +[ 2.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,405 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,405 | INFO | Bird 0.503 0.000 0.327 ✓ +2026-07-13 08:29:52,405 | INFO | Chirp, tweet 0.400 0.000 0.260 ✓ +2026-07-13 08:29:52,405 | INFO | Bird vocalization, bird call, bird song 0.346 0.000 0.225 ✓ +2026-07-13 08:29:52,405 | INFO | Animal 0.213 0.000 0.138 ✓ +2026-07-13 08:29:52,405 | INFO | Duck 0.171 0.000 0.111 ✗ +2026-07-13 08:29:52,405 | INFO | Environmental noise 0.070 0.000 0.046 ✗ +2026-07-13 08:29:52,405 | INFO | → WINNER: Bird (combined=0.327) +2026-07-13 08:29:52,432 | INFO | +[ 2.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,432 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,432 | INFO | Bird 0.556 0.000 0.362 ✓ +2026-07-13 08:29:52,432 | INFO | Chirp, tweet 0.439 0.000 0.285 ✓ +2026-07-13 08:29:52,432 | INFO | Bird vocalization, bird call, bird song 0.383 0.000 0.249 ✓ +2026-07-13 08:29:52,432 | INFO | Duck 0.278 0.000 0.180 ✓ +2026-07-13 08:29:52,432 | INFO | Animal 0.206 0.000 0.134 ✓ +2026-07-13 08:29:52,432 | INFO | Domestic animals, pets 0.092 0.000 0.060 ✗ +2026-07-13 08:29:52,432 | INFO | → WINNER: Bird (combined=0.362) +2026-07-13 08:29:52,462 | INFO | +[ 2.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,462 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,462 | INFO | Bird 0.504 0.000 0.328 ✓ +2026-07-13 08:29:52,462 | INFO | Chirp, tweet 0.307 0.000 0.200 ✓ +2026-07-13 08:29:52,462 | INFO | Bird vocalization, bird call, bird song 0.266 0.000 0.173 ✓ +2026-07-13 08:29:52,462 | INFO | Duck 0.218 0.000 0.142 ✓ +2026-07-13 08:29:52,462 | INFO | Animal 0.198 0.000 0.129 ✓ +2026-07-13 08:29:52,462 | INFO | Chicken, rooster 0.098 0.000 0.064 ✗ +2026-07-13 08:29:52,462 | INFO | → WINNER: Bird (combined=0.328) +2026-07-13 08:29:52,487 | INFO | +[ 3.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,487 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,487 | INFO | Bird 0.416 0.000 0.270 ✓ +2026-07-13 08:29:52,487 | INFO | Chirp, tweet 0.248 0.000 0.161 ✓ +2026-07-13 08:29:52,495 | INFO | Bird vocalization, bird call, bird song 0.211 0.000 0.137 ✓ +2026-07-13 08:29:52,495 | INFO | Animal 0.141 0.000 0.092 ✗ +2026-07-13 08:29:52,495 | INFO | Chicken, rooster 0.061 0.000 0.039 ✗ +2026-07-13 08:29:52,495 | INFO | → WINNER: Bird (combined=0.270) +2026-07-13 08:29:52,523 | INFO | +[ 3.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,523 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,523 | INFO | Bird 0.382 0.000 0.248 ✓ +2026-07-13 08:29:52,523 | INFO | Animal 0.273 0.000 0.178 ✓ +2026-07-13 08:29:52,523 | INFO | Chirp, tweet 0.269 0.000 0.174 ✓ +2026-07-13 08:29:52,523 | INFO | Bird vocalization, bird call, bird song 0.243 0.000 0.158 ✓ +2026-07-13 08:29:52,523 | INFO | Environmental noise 0.074 0.000 0.048 ✗ +2026-07-13 08:29:52,523 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:29:52,523 | INFO | → WINNER: Bird (combined=0.248) +2026-07-13 08:29:52,552 | INFO | +[ 3.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,552 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,552 | INFO | Animal 0.241 0.000 0.157 ✓ +2026-07-13 08:29:52,552 | INFO | Bird 0.203 0.000 0.132 ✓ +2026-07-13 08:29:52,552 | INFO | Environmental noise 0.126 0.000 0.082 ✗ +2026-07-13 08:29:52,552 | INFO | Bird vocalization, bird call, bird song 0.115 0.000 0.075 ✗ +2026-07-13 08:29:52,552 | INFO | Chirp, tweet 0.104 0.000 0.068 ✗ +2026-07-13 08:29:52,552 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:29:52,552 | INFO | → WINNER: Animal (combined=0.157) +2026-07-13 08:29:52,578 | INFO | +[ 3.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,578 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,578 | INFO | Animal 0.224 0.000 0.146 ✓ +2026-07-13 08:29:52,578 | INFO | Environmental noise 0.121 0.000 0.079 ✗ +2026-07-13 08:29:52,584 | INFO | Bird 0.103 0.000 0.067 ✗ +2026-07-13 08:29:52,584 | INFO | Outside, rural or natural 0.077 0.000 0.050 ✗ +2026-07-13 08:29:52,584 | INFO | Bird vocalization, bird call, bird song 0.054 0.000 0.035 ✗ +2026-07-13 08:29:52,584 | INFO | → WINNER: Animal (combined=0.146) +2026-07-13 08:29:52,608 | INFO | +[ 3.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,608 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,608 | INFO | Environmental noise 0.261 0.000 0.170 ✓ +2026-07-13 08:29:52,608 | INFO | Bird 0.183 0.000 0.119 ✗ +2026-07-13 08:29:52,608 | INFO | Animal 0.171 0.000 0.111 ✗ +2026-07-13 08:29:52,608 | INFO | Bird vocalization, bird call, bird song 0.133 0.000 0.086 ✗ +2026-07-13 08:29:52,614 | INFO | Chirp, tweet 0.117 0.000 0.076 ✗ +2026-07-13 08:29:52,614 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:29:52,615 | INFO | → WINNER: Environmental noise (combined=0.170) +2026-07-13 08:29:52,641 | INFO | +[ 4.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,641 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,641 | INFO | Environmental noise 0.220 0.000 0.143 ✓ +2026-07-13 08:29:52,641 | INFO | Animal 0.216 0.000 0.141 ✓ +2026-07-13 08:29:52,641 | INFO | Bird 0.194 0.000 0.126 ✓ +2026-07-13 08:29:52,641 | INFO | Bird vocalization, bird call, bird song 0.121 0.000 0.079 ✗ +2026-07-13 08:29:52,641 | INFO | Chirp, tweet 0.111 0.000 0.072 ✗ +2026-07-13 08:29:52,641 | INFO | Outside, rural or natural 0.083 0.000 0.054 ✗ +2026-07-13 08:29:52,641 | INFO | → WINNER: Environmental noise (combined=0.143) +2026-07-13 08:29:52,671 | INFO | +[ 4.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,671 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,671 | INFO | Animal 0.275 0.000 0.179 ✓ +2026-07-13 08:29:52,671 | INFO | Bird 0.252 0.000 0.164 ✓ +2026-07-13 08:29:52,671 | INFO | Environmental noise 0.188 0.000 0.122 ✓ +2026-07-13 08:29:52,674 | INFO | Chirp, tweet 0.162 0.000 0.105 ✗ +2026-07-13 08:29:52,674 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.101 ✗ +2026-07-13 08:29:52,675 | INFO | Outside, rural or natural 0.107 0.000 0.069 ✗ +2026-07-13 08:29:52,675 | INFO | → WINNER: Animal (combined=0.179) +2026-07-13 08:29:52,699 | INFO | +[ 4.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,699 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,699 | INFO | Chicken, rooster 0.295 0.000 0.192 ✓ +2026-07-13 08:29:52,699 | INFO | Bird 0.292 0.000 0.190 ✓ +2026-07-13 08:29:52,699 | INFO | Animal 0.213 0.000 0.138 ✓ +2026-07-13 08:29:52,699 | INFO | Cluck 0.178 0.000 0.116 ✗ +2026-07-13 08:29:52,699 | INFO | Duck 0.168 0.000 0.109 ✗ +2026-07-13 08:29:52,699 | INFO | Livestock, farm animals, working animals 0.102 0.000 0.066 ✗ +2026-07-13 08:29:52,704 | INFO | → WINNER: Chicken, rooster (combined=0.192) +2026-07-13 08:29:52,729 | INFO | +[ 4.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,729 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,729 | INFO | Bird 0.370 0.000 0.241 ✓ +2026-07-13 08:29:52,729 | INFO | Chicken, rooster 0.343 0.000 0.223 ✓ +2026-07-13 08:29:52,729 | INFO | Cluck 0.208 0.000 0.135 ✓ +2026-07-13 08:29:52,729 | INFO | Animal 0.195 0.000 0.127 ✓ +2026-07-13 08:29:52,729 | INFO | Duck 0.159 0.000 0.103 ✗ +2026-07-13 08:29:52,732 | INFO | Chirp, tweet 0.135 0.000 0.088 ✗ +2026-07-13 08:29:52,732 | INFO | → WINNER: Bird (combined=0.241) +2026-07-13 08:29:52,758 | INFO | +[ 4.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,758 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,758 | INFO | Bird 0.307 0.000 0.199 ✓ +2026-07-13 08:29:52,758 | INFO | Animal 0.212 0.000 0.138 ✓ +2026-07-13 08:29:52,758 | INFO | Chicken, rooster 0.170 0.000 0.110 ✗ +2026-07-13 08:29:52,758 | INFO | Chirp, tweet 0.153 0.000 0.099 ✗ +2026-07-13 08:29:52,758 | INFO | Bird vocalization, bird call, bird song 0.142 0.000 0.092 ✗ +2026-07-13 08:29:52,758 | INFO | Environmental noise 0.103 0.000 0.067 ✗ +2026-07-13 08:29:52,758 | INFO | → WINNER: Bird (combined=0.199) +2026-07-13 08:29:52,787 | INFO | +[ 5.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,787 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,787 | INFO | Bird 0.349 0.000 0.227 ✓ +2026-07-13 08:29:52,787 | INFO | Chirp, tweet 0.232 0.000 0.151 ✓ +2026-07-13 08:29:52,787 | INFO | Animal 0.213 0.000 0.138 ✓ +2026-07-13 08:29:52,789 | INFO | Chicken, rooster 0.203 0.000 0.132 ✓ +2026-07-13 08:29:52,789 | INFO | Bird vocalization, bird call, bird song 0.189 0.000 0.123 ✓ +2026-07-13 08:29:52,789 | INFO | Duck 0.175 0.000 0.114 ✗ +2026-07-13 08:29:52,789 | INFO | → WINNER: Bird (combined=0.227) +2026-07-13 08:29:52,814 | INFO | +[ 5.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,816 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,816 | INFO | Bird 0.294 0.000 0.191 ✓ +2026-07-13 08:29:52,816 | INFO | Animal 0.221 0.000 0.143 ✓ +2026-07-13 08:29:52,816 | INFO | Chicken, rooster 0.207 0.000 0.135 ✓ +2026-07-13 08:29:52,816 | INFO | Duck 0.171 0.000 0.111 ✗ +2026-07-13 08:29:52,816 | INFO | Chirp, tweet 0.134 0.000 0.087 ✗ +2026-07-13 08:29:52,816 | INFO | Cluck 0.130 0.000 0.085 ✗ +2026-07-13 08:29:52,816 | INFO | → WINNER: Bird (combined=0.191) +2026-07-13 08:29:52,838 | INFO | +[ 5.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,838 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,838 | INFO | Bird 0.234 0.000 0.152 ✓ +2026-07-13 08:29:52,838 | INFO | Animal 0.224 0.000 0.145 ✓ +2026-07-13 08:29:52,838 | INFO | Chicken, rooster 0.149 0.000 0.097 ✗ +2026-07-13 08:29:52,838 | INFO | Duck 0.123 0.000 0.080 ✗ +2026-07-13 08:29:52,838 | INFO | Cluck 0.108 0.000 0.070 ✗ +2026-07-13 08:29:52,838 | INFO | Chirp, tweet 0.079 0.000 0.051 ✗ +2026-07-13 08:29:52,838 | INFO | → WINNER: Bird (combined=0.152) +2026-07-13 08:29:52,871 | INFO | +[ 5.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,871 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,871 | INFO | Duck 0.419 0.000 0.272 ✓ +2026-07-13 08:29:52,871 | INFO | Animal 0.267 0.000 0.174 ✓ +2026-07-13 08:29:52,871 | INFO | Bird 0.223 0.000 0.145 ✓ +2026-07-13 08:29:52,871 | INFO | Quack 0.204 0.000 0.133 ✓ +2026-07-13 08:29:52,871 | INFO | Bird vocalization, bird call, bird song 0.075 0.000 0.049 ✗ +2026-07-13 08:29:52,874 | INFO | Chirp, tweet 0.074 0.000 0.048 ✗ +2026-07-13 08:29:52,874 | INFO | → WINNER: Duck (combined=0.272) +2026-07-13 08:29:52,898 | INFO | +[ 5.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,898 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,898 | INFO | Animal 0.224 0.000 0.145 ✓ +2026-07-13 08:29:52,898 | INFO | Duck 0.193 0.000 0.125 ✓ +2026-07-13 08:29:52,898 | INFO | Bird 0.137 0.000 0.089 ✗ +2026-07-13 08:29:52,898 | INFO | Quack 0.107 0.000 0.070 ✗ +2026-07-13 08:29:52,898 | INFO | Mouse 0.056 0.000 0.036 ✗ +2026-07-13 08:29:52,898 | INFO | Bird vocalization, bird call, bird song 0.043 0.000 0.028 ✗ +2026-07-13 08:29:52,898 | INFO | → WINNER: Animal (combined=0.145) +2026-07-13 08:29:52,928 | INFO | +[ 6.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,928 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,928 | INFO | Animal 0.138 0.000 0.090 ✗ +2026-07-13 08:29:52,928 | INFO | Bird 0.133 0.000 0.087 ✗ +2026-07-13 08:29:52,928 | INFO | Duck 0.092 0.000 0.060 ✗ +2026-07-13 08:29:52,928 | INFO | Mouse 0.068 0.000 0.044 ✗ +2026-07-13 08:29:52,928 | INFO | Bird vocalization, bird call, bird song 0.046 0.000 0.030 ✗ +2026-07-13 08:29:52,928 | INFO | → no winner +2026-07-13 08:29:52,955 | INFO | +[ 6.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,955 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,960 | INFO | Animal 0.114 0.000 0.074 ✗ +2026-07-13 08:29:52,960 | INFO | Bird 0.087 0.000 0.057 ✗ +2026-07-13 08:29:52,960 | INFO | Bird vocalization, bird call, bird song 0.035 0.000 0.023 ✗ +2026-07-13 08:29:52,960 | INFO | → no winner +2026-07-13 08:29:52,987 | INFO | +[ 6.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:52,988 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:52,988 | INFO | Bird 0.263 0.000 0.171 ✓ +2026-07-13 08:29:52,988 | INFO | Animal 0.224 0.000 0.146 ✓ +2026-07-13 08:29:52,988 | INFO | Chicken, rooster 0.175 0.000 0.114 ✗ +2026-07-13 08:29:52,988 | INFO | Cluck 0.093 0.000 0.061 ✗ +2026-07-13 08:29:52,988 | INFO | Bird vocalization, bird call, bird song 0.088 0.000 0.057 ✗ +2026-07-13 08:29:52,988 | INFO | Chirp, tweet 0.087 0.000 0.056 ✗ +2026-07-13 08:29:52,988 | INFO | → WINNER: Bird (combined=0.171) +2026-07-13 08:29:53,012 | INFO | +[ 6.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,012 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,018 | INFO | Bird 0.259 0.000 0.168 ✓ +2026-07-13 08:29:53,018 | INFO | Animal 0.185 0.000 0.120 ✓ +2026-07-13 08:29:53,018 | INFO | Environmental noise 0.132 0.000 0.086 ✗ +2026-07-13 08:29:53,018 | INFO | Bird vocalization, bird call, bird song 0.129 0.000 0.084 ✗ +2026-07-13 08:29:53,018 | INFO | Chirp, tweet 0.128 0.000 0.083 ✗ +2026-07-13 08:29:53,018 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:29:53,018 | INFO | → WINNER: Bird (combined=0.168) +2026-07-13 08:29:53,042 | INFO | +[ 6.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,042 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,042 | INFO | Bird 0.226 0.000 0.147 ✓ +2026-07-13 08:29:53,042 | INFO | Animal 0.191 0.000 0.124 ✓ +2026-07-13 08:29:53,042 | INFO | Environmental noise 0.175 0.000 0.114 ✗ +2026-07-13 08:29:53,042 | INFO | Chirp, tweet 0.161 0.000 0.105 ✗ +2026-07-13 08:29:53,042 | INFO | Bird vocalization, bird call, bird song 0.157 0.000 0.102 ✗ +2026-07-13 08:29:53,042 | INFO | Outside, rural or natural 0.067 0.000 0.044 ✗ +2026-07-13 08:29:53,042 | INFO | → WINNER: Bird (combined=0.147) +2026-07-13 08:29:53,076 | INFO | +[ 7.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,076 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,076 | INFO | Environmental noise 0.233 0.000 0.151 ✓ +2026-07-13 08:29:53,076 | INFO | Bird 0.197 0.000 0.128 ✓ +2026-07-13 08:29:53,077 | INFO | Animal 0.174 0.000 0.113 ✗ +2026-07-13 08:29:53,077 | INFO | Bird vocalization, bird call, bird song 0.135 0.000 0.088 ✗ +2026-07-13 08:29:53,077 | INFO | Chirp, tweet 0.131 0.000 0.085 ✗ +2026-07-13 08:29:53,077 | INFO | Outside, rural or natural 0.068 0.000 0.044 ✗ +2026-07-13 08:29:53,077 | INFO | → WINNER: Environmental noise (combined=0.151) +2026-07-13 08:29:53,104 | INFO | +[ 7.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,104 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,104 | INFO | Animal 0.255 0.000 0.166 ✓ +2026-07-13 08:29:53,106 | INFO | Bird 0.154 0.000 0.100 ✗ +2026-07-13 08:29:53,106 | INFO | Environmental noise 0.115 0.000 0.075 ✗ +2026-07-13 08:29:53,106 | INFO | Bird vocalization, bird call, bird song 0.079 0.000 0.051 ✗ +2026-07-13 08:29:53,106 | INFO | Chirp, tweet 0.074 0.000 0.048 ✗ +2026-07-13 08:29:53,106 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:29:53,107 | INFO | → WINNER: Animal (combined=0.166) +2026-07-13 08:29:53,132 | INFO | +[ 7.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,132 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,132 | INFO | Animal 0.165 0.000 0.107 ✗ +2026-07-13 08:29:53,132 | INFO | Bird 0.104 0.000 0.067 ✗ +2026-07-13 08:29:53,132 | INFO | Bird vocalization, bird call, bird song 0.049 0.000 0.032 ✗ +2026-07-13 08:29:53,132 | INFO | → no winner +2026-07-13 08:29:53,163 | INFO | +[ 7.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,163 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,164 | INFO | Animal 0.154 0.000 0.100 ✗ +2026-07-13 08:29:53,164 | INFO | Bird 0.108 0.000 0.070 ✗ +2026-07-13 08:29:53,164 | INFO | Chirp, tweet 0.070 0.000 0.045 ✗ +2026-07-13 08:29:53,164 | INFO | Bird vocalization, bird call, bird song 0.067 0.000 0.043 ✗ +2026-07-13 08:29:53,164 | INFO | → no winner +2026-07-13 08:29:53,188 | INFO | +[ 7.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,188 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,188 | INFO | Bird 0.173 0.000 0.113 ✗ +2026-07-13 08:29:53,188 | INFO | Animal 0.148 0.000 0.096 ✗ +2026-07-13 08:29:53,188 | INFO | Chirp, tweet 0.136 0.000 0.088 ✗ +2026-07-13 08:29:53,188 | INFO | Bird vocalization, bird call, bird song 0.119 0.000 0.077 ✗ +2026-07-13 08:29:53,188 | INFO | Environmental noise 0.097 0.000 0.063 ✗ +2026-07-13 08:29:53,188 | INFO | → no winner +2026-07-13 08:29:53,212 | INFO | +[ 8.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-07-13 08:29:53,220 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,220 | INFO | Bird 0.167 0.000 0.108 ✗ +2026-07-13 08:29:53,220 | INFO | Animal 0.130 0.000 0.085 ✗ +2026-07-13 08:29:53,220 | INFO | Chirp, tweet 0.113 0.000 0.073 ✗ +2026-07-13 08:29:53,220 | INFO | Bird vocalization, bird call, bird song 0.103 0.000 0.067 ✗ +2026-07-13 08:29:53,220 | INFO | Environmental noise 0.063 0.000 0.041 ✗ +2026-07-13 08:29:53,220 | INFO | → no winner +2026-07-13 08:29:53,247 | INFO | +[ 8.20s] AMBIENT | scene='' +2026-07-13 08:29:53,247 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,247 | INFO | Animal 0.111 0.000 0.072 ✗ +2026-07-13 08:29:53,247 | INFO | Bird 0.085 0.000 0.055 ✗ +2026-07-13 08:29:53,247 | INFO | Mouse 0.077 0.000 0.050 ✗ +2026-07-13 08:29:53,247 | INFO | Bird vocalization, bird call, bird song 0.047 0.000 0.030 ✗ +2026-07-13 08:29:53,247 | INFO | → no winner +2026-07-13 08:29:53,272 | INFO | +[ 8.40s] AMBIENT | scene='' +2026-07-13 08:29:53,276 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,276 | INFO | Animal 0.114 0.000 0.074 ✗ +2026-07-13 08:29:53,276 | INFO | Mouse 0.062 0.000 0.040 ✗ +2026-07-13 08:29:53,276 | INFO | Bird 0.048 0.000 0.031 ✗ +2026-07-13 08:29:53,276 | INFO | → no winner +2026-07-13 08:29:53,304 | INFO | +[ 8.60s] AMBIENT | scene='' +2026-07-13 08:29:53,304 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,304 | INFO | Animal 0.166 0.000 0.108 ✗ +2026-07-13 08:29:53,304 | INFO | Bird 0.113 0.000 0.073 ✗ +2026-07-13 08:29:53,304 | INFO | Mouse 0.086 0.000 0.056 ✗ +2026-07-13 08:29:53,304 | INFO | Rodents, rats, mice 0.079 0.000 0.051 ✗ +2026-07-13 08:29:53,304 | INFO | Chicken, rooster 0.075 0.000 0.049 ✗ +2026-07-13 08:29:53,304 | INFO | Cluck 0.059 0.000 0.039 ✗ +2026-07-13 08:29:53,304 | INFO | → no winner +2026-07-13 08:29:53,331 | INFO | +[ 8.80s] AMBIENT | scene='' +2026-07-13 08:29:53,333 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,333 | INFO | Animal 0.136 0.000 0.088 ✗ +2026-07-13 08:29:53,333 | INFO | Bird 0.088 0.000 0.057 ✗ +2026-07-13 08:29:53,334 | INFO | → no winner +2026-07-13 08:29:53,366 | INFO | +[ 31.80s] AMBIENT | scene='' +2026-07-13 08:29:53,366 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,366 | INFO | Frog 0.058 0.000 0.038 ✗ +2026-07-13 08:29:53,366 | INFO | → no winner +2026-07-13 08:29:53,390 | INFO | +[ 32.00s] AMBIENT | scene='' +2026-07-13 08:29:53,390 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,398 | INFO | Frog 0.053 0.000 0.034 ✗ +2026-07-13 08:29:53,398 | INFO | → no winner +2026-07-13 08:29:53,423 | INFO | +[ 32.20s] AMBIENT | scene='' +2026-07-13 08:29:53,423 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,423 | INFO | Frog 0.103 0.000 0.067 ✗ +2026-07-13 08:29:53,423 | INFO | Bird 0.060 0.000 0.039 ✗ +2026-07-13 08:29:53,423 | INFO | Noise 0.056 0.000 0.036 ✗ +2026-07-13 08:29:53,423 | INFO | → no winner +2026-07-13 08:29:53,449 | INFO | +[ 32.40s] AMBIENT | scene='' +2026-07-13 08:29:53,449 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,449 | INFO | Animal 0.182 0.000 0.118 ✗ +2026-07-13 08:29:53,449 | INFO | Bird 0.106 0.000 0.069 ✗ +2026-07-13 08:29:53,449 | INFO | Bird vocalization, bird call, bird song 0.035 0.000 0.022 ✗ +2026-07-13 08:29:53,449 | INFO | → no winner +2026-07-13 08:29:53,480 | INFO | +[ 32.60s] AMBIENT | scene='' +2026-07-13 08:29:53,480 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,480 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:29:53,482 | INFO | Bird 0.162 0.000 0.105 ✗ +2026-07-13 08:29:53,482 | INFO | Rodents, rats, mice 0.110 0.000 0.072 ✗ +2026-07-13 08:29:53,482 | INFO | Patter 0.077 0.000 0.050 ✗ +2026-07-13 08:29:53,482 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.033 ✗ +2026-07-13 08:29:53,482 | INFO | → no winner +2026-07-13 08:29:53,504 | INFO | +[ 32.80s] AMBIENT | scene='' +2026-07-13 08:29:53,504 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,504 | INFO | Bird 0.254 0.000 0.165 ✓ +2026-07-13 08:29:53,504 | INFO | Animal 0.181 0.000 0.118 ✗ +2026-07-13 08:29:53,504 | INFO | Chicken, rooster 0.095 0.000 0.062 ✗ +2026-07-13 08:29:53,504 | INFO | Bird vocalization, bird call, bird song 0.091 0.000 0.059 ✗ +2026-07-13 08:29:53,512 | INFO | Chirp, tweet 0.087 0.000 0.057 ✗ +2026-07-13 08:29:53,512 | INFO | Turkey 0.072 0.000 0.047 ✗ +2026-07-13 08:29:53,512 | INFO | → WINNER: Bird (combined=0.165) +2026-07-13 08:29:53,536 | INFO | +[ 33.00s] AMBIENT | scene='' +2026-07-13 08:29:53,536 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,539 | INFO | Bird 0.245 0.000 0.159 ✓ +2026-07-13 08:29:53,539 | INFO | Animal 0.199 0.000 0.129 ✓ +2026-07-13 08:29:53,539 | INFO | Chicken, rooster 0.158 0.000 0.103 ✗ +2026-07-13 08:29:53,539 | INFO | Cluck 0.101 0.000 0.066 ✗ +2026-07-13 08:29:53,539 | INFO | Bird vocalization, bird call, bird song 0.088 0.000 0.057 ✗ +2026-07-13 08:29:53,539 | INFO | Chirp, tweet 0.082 0.000 0.053 ✗ +2026-07-13 08:29:53,539 | INFO | → WINNER: Bird (combined=0.159) +2026-07-13 08:29:53,561 | INFO | +[ 33.20s] AMBIENT | scene='' +2026-07-13 08:29:53,568 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,568 | INFO | Bird 0.284 0.000 0.184 ✓ +2026-07-13 08:29:53,568 | INFO | Animal 0.192 0.000 0.125 ✓ +2026-07-13 08:29:53,568 | INFO | Chirp, tweet 0.162 0.000 0.105 ✗ +2026-07-13 08:29:53,568 | INFO | Bird vocalization, bird call, bird song 0.160 0.000 0.104 ✗ +2026-07-13 08:29:53,568 | INFO | Environmental noise 0.129 0.000 0.084 ✗ +2026-07-13 08:29:53,568 | INFO | Outside, rural or natural 0.064 0.000 0.042 ✗ +2026-07-13 08:29:53,568 | INFO | → WINNER: Bird (combined=0.184) +2026-07-13 08:29:53,596 | INFO | +[ 33.40s] AMBIENT | scene='' +2026-07-13 08:29:53,596 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,596 | INFO | Bird 0.192 0.000 0.125 ✓ +2026-07-13 08:29:53,596 | INFO | Animal 0.185 0.000 0.120 ✓ +2026-07-13 08:29:53,596 | INFO | Environmental noise 0.150 0.000 0.097 ✗ +2026-07-13 08:29:53,596 | INFO | Bird vocalization, bird call, bird song 0.107 0.000 0.070 ✗ +2026-07-13 08:29:53,596 | INFO | Chirp, tweet 0.087 0.000 0.057 ✗ +2026-07-13 08:29:53,596 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:29:53,596 | INFO | → WINNER: Bird (combined=0.125) +2026-07-13 08:29:53,627 | INFO | +[ 33.60s] AMBIENT | scene='' +2026-07-13 08:29:53,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,627 | INFO | Animal 0.239 0.000 0.155 ✓ +2026-07-13 08:29:53,627 | INFO | Environmental noise 0.141 0.000 0.092 ✗ +2026-07-13 08:29:53,627 | INFO | Bird 0.139 0.000 0.090 ✗ +2026-07-13 08:29:53,627 | INFO | Outside, rural or natural 0.074 0.000 0.048 ✗ +2026-07-13 08:29:53,627 | INFO | Bird vocalization, bird call, bird song 0.072 0.000 0.047 ✗ +2026-07-13 08:29:53,627 | INFO | Chirp, tweet 0.059 0.000 0.038 ✗ +2026-07-13 08:29:53,627 | INFO | → WINNER: Animal (combined=0.155) +2026-07-13 08:29:53,651 | INFO | +[ 33.80s] AMBIENT | scene='' +2026-07-13 08:29:53,651 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,651 | INFO | Animal 0.232 0.000 0.151 ✓ +2026-07-13 08:29:53,659 | INFO | Bird 0.080 0.000 0.052 ✗ +2026-07-13 08:29:53,659 | INFO | Outside, rural or natural 0.055 0.000 0.036 ✗ +2026-07-13 08:29:53,659 | INFO | Bird vocalization, bird call, bird song 0.033 0.000 0.021 ✗ +2026-07-13 08:29:53,659 | INFO | → WINNER: Animal (combined=0.151) +2026-07-13 08:29:53,685 | INFO | +[ 34.00s] AMBIENT | scene='' +2026-07-13 08:29:53,685 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,687 | INFO | Animal 0.209 0.000 0.136 ✓ +2026-07-13 08:29:53,687 | INFO | Bird 0.148 0.000 0.096 ✗ +2026-07-13 08:29:53,687 | INFO | Environmental noise 0.080 0.000 0.052 ✗ +2026-07-13 08:29:53,687 | INFO | Bird vocalization, bird call, bird song 0.070 0.000 0.046 ✗ +2026-07-13 08:29:53,687 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:29:53,687 | INFO | Chirp, tweet 0.058 0.000 0.037 ✗ +2026-07-13 08:29:53,689 | INFO | → WINNER: Animal (combined=0.136) +2026-07-13 08:29:53,716 | INFO | +[ 34.20s] AMBIENT | scene='' +2026-07-13 08:29:53,716 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,716 | INFO | Rodents, rats, mice 0.189 0.000 0.123 ✓ +2026-07-13 08:29:53,716 | INFO | Bird 0.183 0.000 0.119 ✗ +2026-07-13 08:29:53,716 | INFO | Animal 0.166 0.000 0.108 ✗ +2026-07-13 08:29:53,716 | INFO | Chirp, tweet 0.112 0.000 0.073 ✗ +2026-07-13 08:29:53,716 | INFO | Bird vocalization, bird call, bird song 0.108 0.000 0.070 ✗ +2026-07-13 08:29:53,716 | INFO | Mouse 0.071 0.000 0.046 ✗ +2026-07-13 08:29:53,716 | INFO | → WINNER: Rodents, rats, mice (combined=0.123) +2026-07-13 08:29:53,739 | INFO | +[ 34.40s] AMBIENT | scene='' +2026-07-13 08:29:53,739 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,739 | INFO | Rodents, rats, mice 0.262 0.000 0.171 ✓ +2026-07-13 08:29:53,739 | INFO | Bird 0.154 0.000 0.100 ✗ +2026-07-13 08:29:53,748 | INFO | Animal 0.108 0.000 0.070 ✗ +2026-07-13 08:29:53,748 | INFO | Chirp, tweet 0.076 0.000 0.050 ✗ +2026-07-13 08:29:53,748 | INFO | Patter 0.075 0.000 0.049 ✗ +2026-07-13 08:29:53,748 | INFO | Bird vocalization, bird call, bird song 0.069 0.000 0.045 ✗ +2026-07-13 08:29:53,748 | INFO | → WINNER: Rodents, rats, mice (combined=0.171) +2026-07-13 08:29:53,775 | INFO | +[ 34.60s] AMBIENT | scene='' +2026-07-13 08:29:53,775 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,775 | INFO | Bird 0.293 0.000 0.191 ✓ +2026-07-13 08:29:53,775 | INFO | Chirp, tweet 0.178 0.000 0.116 ✗ +2026-07-13 08:29:53,775 | INFO | Animal 0.162 0.000 0.105 ✗ +2026-07-13 08:29:53,775 | INFO | Bird vocalization, bird call, bird song 0.134 0.000 0.087 ✗ +2026-07-13 08:29:53,775 | INFO | Rodents, rats, mice 0.084 0.000 0.055 ✗ +2026-07-13 08:29:53,775 | INFO | Outside, rural or natural 0.079 0.000 0.051 ✗ +2026-07-13 08:29:53,775 | INFO | → WINNER: Bird (combined=0.191) +2026-07-13 08:29:53,805 | INFO | +[ 34.80s] AMBIENT | scene='' +2026-07-13 08:29:53,805 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,805 | INFO | Bird 0.259 0.000 0.169 ✓ +2026-07-13 08:29:53,805 | INFO | Chirp, tweet 0.181 0.000 0.118 ✗ +2026-07-13 08:29:53,805 | INFO | Bird vocalization, bird call, bird song 0.147 0.000 0.096 ✗ +2026-07-13 08:29:53,805 | INFO | Animal 0.105 0.000 0.068 ✗ +2026-07-13 08:29:53,805 | INFO | Outside, rural or natural 0.058 0.000 0.038 ✗ +2026-07-13 08:29:53,805 | INFO | Rodents, rats, mice 0.056 0.000 0.037 ✗ +2026-07-13 08:29:53,805 | INFO | → WINNER: Bird (combined=0.169) +2026-07-13 08:29:53,838 | INFO | +[ 35.00s] AMBIENT | scene='' +2026-07-13 08:29:53,838 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,838 | INFO | Bird 0.332 0.000 0.216 ✓ +2026-07-13 08:29:53,838 | INFO | Chirp, tweet 0.230 0.000 0.149 ✓ +2026-07-13 08:29:53,838 | INFO | Bird vocalization, bird call, bird song 0.201 0.000 0.131 ✓ +2026-07-13 08:29:53,838 | INFO | Animal 0.157 0.000 0.102 ✗ +2026-07-13 08:29:53,838 | INFO | Environmental noise 0.087 0.000 0.056 ✗ +2026-07-13 08:29:53,838 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:29:53,838 | INFO | → WINNER: Bird (combined=0.216) +2026-07-13 08:29:53,867 | INFO | +[ 35.20s] AMBIENT | scene='' +2026-07-13 08:29:53,867 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,867 | INFO | Environmental noise 0.280 0.000 0.182 ✓ +2026-07-13 08:29:53,867 | INFO | Bird 0.248 0.000 0.161 ✓ +2026-07-13 08:29:53,867 | INFO | Bird vocalization, bird call, bird song 0.160 0.000 0.104 ✗ +2026-07-13 08:29:53,867 | INFO | Animal 0.160 0.000 0.104 ✗ +2026-07-13 08:29:53,867 | INFO | Chirp, tweet 0.128 0.000 0.083 ✗ +2026-07-13 08:29:53,867 | INFO | Outside, rural or natural 0.073 0.000 0.047 ✗ +2026-07-13 08:29:53,867 | INFO | → WINNER: Environmental noise (combined=0.182) +2026-07-13 08:29:53,896 | INFO | +[ 35.40s] AMBIENT | scene='' +2026-07-13 08:29:53,896 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,896 | INFO | Environmental noise 0.266 0.000 0.173 ✓ +2026-07-13 08:29:53,896 | INFO | Animal 0.216 0.000 0.140 ✓ +2026-07-13 08:29:53,896 | INFO | Bird 0.148 0.000 0.096 ✗ +2026-07-13 08:29:53,896 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.061 ✗ +2026-07-13 08:29:53,896 | INFO | Turkey 0.089 0.000 0.058 ✗ +2026-07-13 08:29:53,896 | INFO | Outside, rural or natural 0.067 0.000 0.043 ✗ +2026-07-13 08:29:53,896 | INFO | → WINNER: Environmental noise (combined=0.173) +2026-07-13 08:29:53,920 | INFO | +[ 35.60s] AMBIENT | scene='' +2026-07-13 08:29:53,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,920 | INFO | Environmental noise 0.301 0.000 0.196 ✓ +2026-07-13 08:29:53,920 | INFO | Bird 0.196 0.000 0.128 ✓ +2026-07-13 08:29:53,920 | INFO | Animal 0.186 0.000 0.121 ✓ +2026-07-13 08:29:53,920 | INFO | Bird vocalization, bird call, bird song 0.136 0.000 0.088 ✗ +2026-07-13 08:29:53,920 | INFO | Chirp, tweet 0.097 0.000 0.063 ✗ +2026-07-13 08:29:53,920 | INFO | Outside, rural or natural 0.069 0.000 0.045 ✗ +2026-07-13 08:29:53,920 | INFO | → WINNER: Environmental noise (combined=0.196) +2026-07-13 08:29:53,945 | INFO | +[ 35.80s] AMBIENT | scene='' +2026-07-13 08:29:53,954 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,954 | INFO | Environmental noise 0.271 0.000 0.176 ✓ +2026-07-13 08:29:53,954 | INFO | Bird 0.239 0.000 0.155 ✓ +2026-07-13 08:29:53,954 | INFO | Animal 0.186 0.000 0.121 ✓ +2026-07-13 08:29:53,954 | INFO | Bird vocalization, bird call, bird song 0.166 0.000 0.108 ✗ +2026-07-13 08:29:53,954 | INFO | Chirp, tweet 0.140 0.000 0.091 ✗ +2026-07-13 08:29:53,954 | INFO | Outside, rural or natural 0.069 0.000 0.045 ✗ +2026-07-13 08:29:53,954 | INFO | → WINNER: Environmental noise (combined=0.176) +2026-07-13 08:29:53,981 | INFO | +[ 36.00s] AMBIENT | scene='' +2026-07-13 08:29:53,981 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:53,981 | INFO | Bird 0.284 0.000 0.184 ✓ +2026-07-13 08:29:53,981 | INFO | Chirp, tweet 0.237 0.000 0.154 ✓ +2026-07-13 08:29:53,981 | INFO | Bird vocalization, bird call, bird song 0.219 0.000 0.142 ✓ +2026-07-13 08:29:53,981 | INFO | Environmental noise 0.166 0.000 0.108 ✗ +2026-07-13 08:29:53,981 | INFO | Animal 0.161 0.000 0.104 ✗ +2026-07-13 08:29:53,981 | INFO | Outside, rural or natural 0.069 0.000 0.045 ✗ +2026-07-13 08:29:53,981 | INFO | → WINNER: Bird (combined=0.184) +2026-07-13 08:29:54,012 | INFO | +[ 36.20s] AMBIENT | scene='' +2026-07-13 08:29:54,012 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,013 | INFO | Bird 0.291 0.000 0.189 ✓ +2026-07-13 08:29:54,013 | INFO | Chirp, tweet 0.257 0.000 0.167 ✓ +2026-07-13 08:29:54,013 | INFO | Bird vocalization, bird call, bird song 0.223 0.000 0.145 ✓ +2026-07-13 08:29:54,013 | INFO | Animal 0.162 0.000 0.105 ✗ +2026-07-13 08:29:54,013 | INFO | Environmental noise 0.125 0.000 0.081 ✗ +2026-07-13 08:29:54,013 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:29:54,013 | INFO | → WINNER: Bird (combined=0.189) +2026-07-13 08:29:54,041 | INFO | +[ 36.40s] AMBIENT | scene='' +2026-07-13 08:29:54,041 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,041 | INFO | Bird 0.323 0.000 0.210 ✓ +2026-07-13 08:29:54,041 | INFO | Chirp, tweet 0.269 0.000 0.174 ✓ +2026-07-13 08:29:54,041 | INFO | Bird vocalization, bird call, bird song 0.245 0.000 0.159 ✓ +2026-07-13 08:29:54,041 | INFO | Animal 0.170 0.000 0.110 ✗ +2026-07-13 08:29:54,041 | INFO | Environmental noise 0.107 0.000 0.070 ✗ +2026-07-13 08:29:54,041 | INFO | Insect 0.106 0.000 0.069 ✗ +2026-07-13 08:29:54,041 | INFO | → WINNER: Bird (combined=0.210) +2026-07-13 08:29:54,069 | INFO | +[ 36.60s] AMBIENT | scene='' +2026-07-13 08:29:54,069 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,072 | INFO | Animal 0.324 0.000 0.210 ✓ +2026-07-13 08:29:54,072 | INFO | Bird 0.264 0.000 0.171 ✓ +2026-07-13 08:29:54,072 | INFO | Mouse 0.121 0.000 0.079 ✗ +2026-07-13 08:29:54,072 | INFO | Chirp, tweet 0.113 0.000 0.073 ✗ +2026-07-13 08:29:54,072 | INFO | Bird vocalization, bird call, bird song 0.110 0.000 0.071 ✗ +2026-07-13 08:29:54,072 | INFO | → WINNER: Animal (combined=0.210) +2026-07-13 08:29:54,094 | INFO | +[ 36.80s] AMBIENT | scene='' +2026-07-13 08:29:54,100 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,100 | INFO | Animal 0.235 0.000 0.153 ✓ +2026-07-13 08:29:54,100 | INFO | Bird 0.224 0.000 0.146 ✓ +2026-07-13 08:29:54,100 | INFO | Chirp, tweet 0.119 0.000 0.077 ✗ +2026-07-13 08:29:54,100 | INFO | Bird vocalization, bird call, bird song 0.098 0.000 0.063 ✗ +2026-07-13 08:29:54,100 | INFO | Mouse 0.077 0.000 0.050 ✗ +2026-07-13 08:29:54,102 | INFO | → WINNER: Animal (combined=0.153) +2026-07-13 08:29:54,129 | INFO | +[ 37.00s] AMBIENT | scene='' +2026-07-13 08:29:54,129 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,129 | INFO | Bird 0.244 0.000 0.159 ✓ +2026-07-13 08:29:54,129 | INFO | Animal 0.202 0.000 0.131 ✓ +2026-07-13 08:29:54,129 | INFO | Chirp, tweet 0.136 0.000 0.089 ✗ +2026-07-13 08:29:54,129 | INFO | Bird vocalization, bird call, bird song 0.131 0.000 0.085 ✗ +2026-07-13 08:29:54,129 | INFO | Outside, rural or natural 0.105 0.000 0.068 ✗ +2026-07-13 08:29:54,129 | INFO | Environmental noise 0.102 0.000 0.066 ✗ +2026-07-13 08:29:54,129 | INFO | → WINNER: Bird (combined=0.159) +2026-07-13 08:29:54,158 | INFO | +[ 37.20s] AMBIENT | scene='' +2026-07-13 08:29:54,159 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,159 | INFO | Animal 0.353 0.000 0.230 ✓ +2026-07-13 08:29:54,159 | INFO | Bird 0.350 0.000 0.228 ✓ +2026-07-13 08:29:54,159 | INFO | Chirp, tweet 0.186 0.000 0.121 ✓ +2026-07-13 08:29:54,159 | INFO | Bird vocalization, bird call, bird song 0.169 0.000 0.110 ✗ +2026-07-13 08:29:54,159 | INFO | Duck 0.153 0.000 0.099 ✗ +2026-07-13 08:29:54,159 | INFO | Outside, rural or natural 0.124 0.000 0.081 ✗ +2026-07-13 08:29:54,159 | INFO | → WINNER: Animal (combined=0.230) +2026-07-13 08:29:54,187 | INFO | +[ 37.40s] AMBIENT | scene='' +2026-07-13 08:29:54,187 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,187 | INFO | Bird 0.382 0.000 0.248 ✓ +2026-07-13 08:29:54,187 | INFO | Animal 0.268 0.000 0.174 ✓ +2026-07-13 08:29:54,187 | INFO | Chirp, tweet 0.221 0.000 0.144 ✓ +2026-07-13 08:29:54,187 | INFO | Bird vocalization, bird call, bird song 0.205 0.000 0.133 ✓ +2026-07-13 08:29:54,187 | INFO | Duck 0.130 0.000 0.085 ✗ +2026-07-13 08:29:54,187 | INFO | Environmental noise 0.125 0.000 0.081 ✗ +2026-07-13 08:29:54,187 | INFO | → WINNER: Bird (combined=0.248) +2026-07-13 08:29:54,216 | INFO | +[ 37.60s] AMBIENT | scene='' +2026-07-13 08:29:54,216 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,216 | INFO | Bird 0.326 0.000 0.212 ✓ +2026-07-13 08:29:54,216 | INFO | Chirp, tweet 0.256 0.000 0.166 ✓ +2026-07-13 08:29:54,216 | INFO | Bird vocalization, bird call, bird song 0.225 0.000 0.146 ✓ +2026-07-13 08:29:54,216 | INFO | Animal 0.172 0.000 0.112 ✗ +2026-07-13 08:29:54,218 | INFO | Environmental noise 0.140 0.000 0.091 ✗ +2026-07-13 08:29:54,218 | INFO | Outside, rural or natural 0.072 0.000 0.047 ✗ +2026-07-13 08:29:54,218 | INFO | → WINNER: Bird (combined=0.212) +2026-07-13 08:29:54,242 | INFO | +[ 37.80s] AMBIENT | scene='' +2026-07-13 08:29:54,242 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,242 | INFO | Bird 0.343 0.000 0.223 ✓ +2026-07-13 08:29:54,242 | INFO | Chicken, rooster 0.288 0.000 0.187 ✓ +2026-07-13 08:29:54,242 | INFO | Animal 0.192 0.000 0.125 ✓ +2026-07-13 08:29:54,242 | INFO | Cluck 0.180 0.000 0.117 ✗ +2026-07-13 08:29:54,242 | INFO | Chirp, tweet 0.146 0.000 0.095 ✗ +2026-07-13 08:29:54,242 | INFO | Bird vocalization, bird call, bird song 0.135 0.000 0.088 ✗ +2026-07-13 08:29:54,242 | INFO | → WINNER: Bird (combined=0.223) +2026-07-13 08:29:54,274 | INFO | +[ 38.00s] AMBIENT | scene='' +2026-07-13 08:29:54,275 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,275 | INFO | Bird 0.223 0.000 0.145 ✓ +2026-07-13 08:29:54,275 | INFO | Chicken, rooster 0.191 0.000 0.124 ✓ +2026-07-13 08:29:54,275 | INFO | Animal 0.163 0.000 0.106 ✗ +2026-07-13 08:29:54,275 | INFO | Cluck 0.137 0.000 0.089 ✗ +2026-07-13 08:29:54,275 | INFO | Bird vocalization, bird call, bird song 0.077 0.000 0.050 ✗ +2026-07-13 08:29:54,275 | INFO | Chirp, tweet 0.067 0.000 0.043 ✗ +2026-07-13 08:29:54,275 | INFO | → WINNER: Bird (combined=0.145) +2026-07-13 08:29:54,299 | INFO | +[ 38.20s] AMBIENT | scene='' +2026-07-13 08:29:54,299 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,299 | INFO | Fowl 0.534 0.000 0.347 ✓ +2026-07-13 08:29:54,299 | INFO | Turkey 0.478 0.000 0.311 ✓ +2026-07-13 08:29:54,299 | INFO | Gobble 0.413 0.000 0.269 ✓ +2026-07-13 08:29:54,299 | INFO | Animal 0.152 0.000 0.099 ✗ +2026-07-13 08:29:54,299 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:29:54,299 | INFO | Chicken, rooster 0.089 0.000 0.058 ✗ +2026-07-13 08:29:54,299 | INFO | → WINNER: Fowl (combined=0.347) +2026-07-13 08:29:54,331 | INFO | +[ 38.40s] AMBIENT | scene='' +2026-07-13 08:29:54,331 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,331 | INFO | Fowl 0.404 0.000 0.263 ✓ +2026-07-13 08:29:54,331 | INFO | Turkey 0.252 0.000 0.164 ✓ +2026-07-13 08:29:54,331 | INFO | Gobble 0.189 0.000 0.123 ✓ +2026-07-13 08:29:54,331 | INFO | Animal 0.184 0.000 0.120 ✗ +2026-07-13 08:29:54,331 | INFO | Bird 0.096 0.000 0.062 ✗ +2026-07-13 08:29:54,331 | INFO | Bird vocalization, bird call, bird song 0.045 0.000 0.029 ✗ +2026-07-13 08:29:54,331 | INFO | → WINNER: Fowl (combined=0.263) +2026-07-13 08:29:54,357 | INFO | +[ 38.60s] AMBIENT | scene='' +2026-07-13 08:29:54,357 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,357 | INFO | Fowl 0.380 0.000 0.247 ✓ +2026-07-13 08:29:54,357 | INFO | Turkey 0.179 0.000 0.116 ✗ +2026-07-13 08:29:54,357 | INFO | Bird 0.130 0.000 0.084 ✗ +2026-07-13 08:29:54,357 | INFO | Animal 0.116 0.000 0.075 ✗ +2026-07-13 08:29:54,357 | INFO | Gobble 0.116 0.000 0.075 ✗ +2026-07-13 08:29:54,357 | INFO | Duck 0.099 0.000 0.064 ✗ +2026-07-13 08:29:54,364 | INFO | → WINNER: Fowl (combined=0.247) +2026-07-13 08:29:54,390 | INFO | +[ 38.80s] AMBIENT | scene='' +2026-07-13 08:29:54,390 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,390 | INFO | Alarm 0.128 0.000 0.083 ✗ +2026-07-13 08:29:54,390 | INFO | Animal 0.096 0.000 0.062 ✗ +2026-07-13 08:29:54,390 | INFO | Bird 0.085 0.000 0.055 ✗ +2026-07-13 08:29:54,390 | INFO | Fire alarm 0.046 0.000 0.030 ✗ +2026-07-13 08:29:54,390 | INFO | Bird vocalization, bird call, bird song 0.045 0.000 0.029 ✗ +2026-07-13 08:29:54,390 | INFO | → no winner +2026-07-13 08:29:54,417 | INFO | +[ 39.00s] AMBIENT | scene='' +2026-07-13 08:29:54,417 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,417 | INFO | Bird 0.130 0.000 0.084 ✗ +2026-07-13 08:29:54,417 | INFO | Animal 0.091 0.000 0.059 ✗ +2026-07-13 08:29:54,423 | INFO | Chirp, tweet 0.063 0.000 0.041 ✗ +2026-07-13 08:29:54,424 | INFO | Bird vocalization, bird call, bird song 0.057 0.000 0.037 ✗ +2026-07-13 08:29:54,424 | INFO | Alarm 0.054 0.000 0.035 ✗ +2026-07-13 08:29:54,424 | INFO | → no winner +2026-07-13 08:29:54,448 | INFO | +[ 39.20s] AMBIENT | scene='' +2026-07-13 08:29:54,448 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,448 | INFO | Bird 0.058 0.000 0.038 ✗ +2026-07-13 08:29:54,448 | INFO | → no winner +2026-07-13 08:29:54,474 | INFO | +[ 39.40s] AMBIENT | scene='' +2026-07-13 08:29:54,474 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,474 | INFO | Duck 0.169 0.000 0.110 ✗ +2026-07-13 08:29:54,474 | INFO | Bird 0.165 0.000 0.107 ✗ +2026-07-13 08:29:54,481 | INFO | Animal 0.160 0.000 0.104 ✗ +2026-07-13 08:29:54,481 | INFO | Chirp, tweet 0.062 0.000 0.040 ✗ +2026-07-13 08:29:54,481 | INFO | Bird vocalization, bird call, bird song 0.056 0.000 0.036 ✗ +2026-07-13 08:29:54,481 | INFO | → no winner +2026-07-13 08:29:54,507 | INFO | +[ 39.60s] AMBIENT | scene='' +2026-07-13 08:29:54,507 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,507 | INFO | Animal 0.178 0.000 0.116 ✗ +2026-07-13 08:29:54,507 | INFO | Bird 0.162 0.000 0.105 ✗ +2026-07-13 08:29:54,507 | INFO | Environmental noise 0.125 0.000 0.081 ✗ +2026-07-13 08:29:54,507 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.052 ✗ +2026-07-13 08:29:54,507 | INFO | Chirp, tweet 0.068 0.000 0.044 ✗ +2026-07-13 08:29:54,507 | INFO | Outside, rural or natural 0.058 0.000 0.038 ✗ +2026-07-13 08:29:54,507 | INFO | → no winner +2026-07-13 08:29:54,535 | INFO | +[ 39.80s] AMBIENT | scene='' +2026-07-13 08:29:54,535 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,537 | INFO | Bird 0.234 0.000 0.152 ✓ +2026-07-13 08:29:54,537 | INFO | Animal 0.159 0.000 0.103 ✗ +2026-07-13 08:29:54,537 | INFO | Bird vocalization, bird call, bird song 0.121 0.000 0.078 ✗ +2026-07-13 08:29:54,537 | INFO | Chirp, tweet 0.107 0.000 0.070 ✗ +2026-07-13 08:29:54,537 | INFO | Environmental noise 0.096 0.000 0.062 ✗ +2026-07-13 08:29:54,537 | INFO | Outside, rural or natural 0.055 0.000 0.036 ✗ +2026-07-13 08:29:54,537 | INFO | → WINNER: Bird (combined=0.152) +2026-07-13 08:29:54,563 | INFO | +[ 40.00s] AMBIENT | scene='' +2026-07-13 08:29:54,563 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,563 | INFO | Bird 0.189 0.000 0.123 ✓ +2026-07-13 08:29:54,563 | INFO | Animal 0.166 0.000 0.108 ✗ +2026-07-13 08:29:54,563 | INFO | Environmental noise 0.133 0.000 0.087 ✗ +2026-07-13 08:29:54,563 | INFO | Bird vocalization, bird call, bird song 0.109 0.000 0.071 ✗ +2026-07-13 08:29:54,563 | INFO | Chirp, tweet 0.084 0.000 0.054 ✗ +2026-07-13 08:29:54,563 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:29:54,563 | INFO | → WINNER: Bird (combined=0.123) +2026-07-13 08:29:54,588 | INFO | +[ 40.20s] AMBIENT | scene='' +2026-07-13 08:29:54,588 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,588 | INFO | Animal 0.177 0.000 0.115 ✗ +2026-07-13 08:29:54,588 | INFO | Bird 0.154 0.000 0.100 ✗ +2026-07-13 08:29:54,588 | INFO | Bird vocalization, bird call, bird song 0.076 0.000 0.049 ✗ +2026-07-13 08:29:54,588 | INFO | Chirp, tweet 0.066 0.000 0.043 ✗ +2026-07-13 08:29:54,588 | INFO | Mouse 0.053 0.000 0.034 ✗ +2026-07-13 08:29:54,595 | INFO | → no winner +2026-07-13 08:29:54,620 | INFO | +[ 40.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,620 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,620 | INFO | Duck 0.375 0.000 0.244 ✓ +2026-07-13 08:29:54,620 | INFO | Bird 0.297 0.000 0.193 ✓ +2026-07-13 08:29:54,620 | INFO | Animal 0.290 0.000 0.189 ✓ +2026-07-13 08:29:54,620 | INFO | Environmental noise 0.053 0.320 0.146 ✓ +2026-07-13 08:29:54,620 | INFO | Quack 0.170 0.000 0.110 ✗ +2026-07-13 08:29:54,620 | INFO | Bird vocalization, bird call, bird song 0.134 0.000 0.087 ✗ +2026-07-13 08:29:54,620 | INFO | → WINNER: Duck (combined=0.244) +2026-07-13 08:29:54,648 | INFO | +[ 40.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,648 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,648 | INFO | Duck 0.472 0.000 0.306 ✓ +2026-07-13 08:29:54,648 | INFO | Bird 0.381 0.000 0.247 ✓ +2026-07-13 08:29:54,648 | INFO | Animal 0.200 0.000 0.130 ✓ +2026-07-13 08:29:54,648 | INFO | Bird vocalization, bird call, bird song 0.145 0.000 0.094 ✗ +2026-07-13 08:29:54,648 | INFO | Quack 0.143 0.000 0.093 ✗ +2026-07-13 08:29:54,648 | INFO | Chirp, tweet 0.135 0.000 0.088 ✗ +2026-07-13 08:29:54,648 | INFO | → WINNER: Duck (combined=0.306) +2026-07-13 08:29:54,679 | INFO | +[ 40.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,679 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,679 | INFO | Duck 0.584 0.000 0.380 ✓ +2026-07-13 08:29:54,679 | INFO | Bird 0.470 0.000 0.306 ✓ +2026-07-13 08:29:54,679 | INFO | Animal 0.350 0.000 0.228 ✓ +2026-07-13 08:29:54,679 | INFO | Chirp, tweet 0.233 0.000 0.151 ✓ +2026-07-13 08:29:54,679 | INFO | Bird vocalization, bird call, bird song 0.225 0.000 0.146 ✓ +2026-07-13 08:29:54,679 | INFO | Quack 0.193 0.000 0.125 ✓ +2026-07-13 08:29:54,679 | INFO | → WINNER: Duck (combined=0.380) +2026-07-13 08:29:54,702 | INFO | +[ 41.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,702 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,702 | INFO | Duck 0.589 0.000 0.383 ✓ +2026-07-13 08:29:54,702 | INFO | Bird 0.558 0.000 0.362 ✓ +2026-07-13 08:29:54,702 | INFO | Animal 0.307 0.000 0.200 ✓ +2026-07-13 08:29:54,702 | INFO | Bird vocalization, bird call, bird song 0.293 0.000 0.190 ✓ +2026-07-13 08:29:54,702 | INFO | Chirp, tweet 0.287 0.000 0.187 ✓ +2026-07-13 08:29:54,710 | INFO | Quack 0.168 0.000 0.109 ✗ +2026-07-13 08:29:54,710 | INFO | → WINNER: Duck (combined=0.383) +2026-07-13 08:29:54,735 | INFO | +[ 41.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,735 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,735 | INFO | Bird 0.647 0.000 0.421 ✓ +2026-07-13 08:29:54,735 | INFO | Chirp, tweet 0.413 0.000 0.268 ✓ +2026-07-13 08:29:54,735 | INFO | Duck 0.380 0.000 0.247 ✓ +2026-07-13 08:29:54,735 | INFO | Bird vocalization, bird call, bird song 0.332 0.000 0.216 ✓ +2026-07-13 08:29:54,735 | INFO | Animal 0.265 0.000 0.172 ✓ +2026-07-13 08:29:54,735 | INFO | Domestic animals, pets 0.114 0.000 0.074 ✗ +2026-07-13 08:29:54,735 | INFO | → WINNER: Bird (combined=0.421) +2026-07-13 08:29:54,761 | INFO | +[ 41.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,761 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,761 | INFO | Bird 0.510 0.000 0.332 ✓ +2026-07-13 08:29:54,761 | INFO | Chirp, tweet 0.340 0.000 0.221 ✓ +2026-07-13 08:29:54,761 | INFO | Bird vocalization, bird call, bird song 0.286 0.000 0.186 ✓ +2026-07-13 08:29:54,761 | INFO | Animal 0.229 0.000 0.149 ✓ +2026-07-13 08:29:54,761 | INFO | Duck 0.139 0.000 0.090 ✗ +2026-07-13 08:29:54,768 | INFO | Domestic animals, pets 0.101 0.000 0.066 ✗ +2026-07-13 08:29:54,768 | INFO | → WINNER: Bird (combined=0.332) +2026-07-13 08:29:54,792 | INFO | +[ 41.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,792 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,792 | INFO | Bird 0.338 0.000 0.220 ✓ +2026-07-13 08:29:54,792 | INFO | Animal 0.263 0.000 0.171 ✓ +2026-07-13 08:29:54,792 | INFO | Environmental noise 0.079 0.320 0.163 ✓ +2026-07-13 08:29:54,792 | INFO | Bird vocalization, bird call, bird song 0.161 0.000 0.105 ✗ +2026-07-13 08:29:54,792 | INFO | Chirp, tweet 0.143 0.000 0.093 ✗ +2026-07-13 08:29:54,792 | INFO | Outside, rural or natural 0.079 0.000 0.051 ✗ +2026-07-13 08:29:54,792 | INFO | → WINNER: Bird (combined=0.220) +2026-07-13 08:29:54,825 | INFO | +[ 41.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,826 | INFO | Environmental noise 0.140 0.320 0.203 ✓ +2026-07-13 08:29:54,826 | INFO | Bird 0.300 0.000 0.195 ✓ +2026-07-13 08:29:54,826 | INFO | Animal 0.241 0.000 0.157 ✓ +2026-07-13 08:29:54,828 | INFO | Bird vocalization, bird call, bird song 0.194 0.000 0.126 ✓ +2026-07-13 08:29:54,828 | INFO | Chirp, tweet 0.171 0.000 0.111 ✗ +2026-07-13 08:29:54,828 | INFO | Outside, rural or natural 0.069 0.000 0.045 ✗ +2026-07-13 08:29:54,828 | INFO | → WINNER: Environmental noise (combined=0.203) +2026-07-13 08:29:54,858 | INFO | +[ 42.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,859 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,859 | INFO | Environmental noise 0.117 0.320 0.188 ✓ +2026-07-13 08:29:54,859 | INFO | Animal 0.222 0.000 0.144 ✓ +2026-07-13 08:29:54,859 | INFO | Bird 0.203 0.000 0.132 ✓ +2026-07-13 08:29:54,859 | INFO | Bird vocalization, bird call, bird song 0.120 0.000 0.078 ✗ +2026-07-13 08:29:54,859 | INFO | Chirp, tweet 0.102 0.000 0.066 ✗ +2026-07-13 08:29:54,859 | INFO | Outside, rural or natural 0.067 0.000 0.044 ✗ +2026-07-13 08:29:54,859 | INFO | → WINNER: Environmental noise (combined=0.188) +2026-07-13 08:29:54,887 | INFO | +[ 42.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,887 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,887 | INFO | Environmental noise 0.228 0.320 0.260 ✓ +2026-07-13 08:29:54,887 | INFO | Animal 0.223 0.000 0.145 ✓ +2026-07-13 08:29:54,887 | INFO | Bird 0.168 0.000 0.109 ✗ +2026-07-13 08:29:54,887 | INFO | Bird vocalization, bird call, bird song 0.095 0.000 0.062 ✗ +2026-07-13 08:29:54,887 | INFO | Outside, rural or natural 0.081 0.000 0.053 ✗ +2026-07-13 08:29:54,887 | INFO | Chirp, tweet 0.076 0.000 0.049 ✗ +2026-07-13 08:29:54,887 | INFO | → WINNER: Environmental noise (combined=0.260) +2026-07-13 08:29:54,916 | INFO | +[ 42.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,916 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,916 | INFO | Environmental noise 0.271 0.320 0.288 ✓ +2026-07-13 08:29:54,916 | INFO | Bird 0.212 0.000 0.138 ✓ +2026-07-13 08:29:54,916 | INFO | Animal 0.193 0.000 0.125 ✓ +2026-07-13 08:29:54,916 | INFO | Bird vocalization, bird call, bird song 0.143 0.000 0.093 ✗ +2026-07-13 08:29:54,916 | INFO | Chirp, tweet 0.139 0.000 0.090 ✗ +2026-07-13 08:29:54,916 | INFO | Outside, rural or natural 0.077 0.000 0.050 ✗ +2026-07-13 08:29:54,919 | INFO | → WINNER: Environmental noise (combined=0.288) +2026-07-13 08:29:54,940 | INFO | +[ 42.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,940 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,940 | INFO | Environmental noise 0.251 0.320 0.275 ✓ +2026-07-13 08:29:54,940 | INFO | Bird 0.267 0.000 0.174 ✓ +2026-07-13 08:29:54,940 | INFO | Animal 0.251 0.000 0.163 ✓ +2026-07-13 08:29:54,948 | INFO | Bird vocalization, bird call, bird song 0.185 0.000 0.120 ✓ +2026-07-13 08:29:54,948 | INFO | Chirp, tweet 0.180 0.000 0.117 ✗ +2026-07-13 08:29:54,948 | INFO | Duck 0.115 0.000 0.074 ✗ +2026-07-13 08:29:54,948 | INFO | → WINNER: Environmental noise (combined=0.275) +2026-07-13 08:29:54,975 | INFO | +[ 42.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,975 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,975 | INFO | Bird 0.335 0.000 0.218 ✓ +2026-07-13 08:29:54,975 | INFO | Environmental noise 0.089 0.320 0.170 ✓ +2026-07-13 08:29:54,975 | INFO | Duck 0.259 0.000 0.168 ✓ +2026-07-13 08:29:54,975 | INFO | Chirp, tweet 0.254 0.000 0.165 ✓ +2026-07-13 08:29:54,975 | INFO | Bird vocalization, bird call, bird song 0.227 0.000 0.147 ✓ +2026-07-13 08:29:54,975 | INFO | Animal 0.212 0.000 0.138 ✓ +2026-07-13 08:29:54,975 | INFO | → WINNER: Bird (combined=0.218) +2026-07-13 08:29:54,999 | INFO | +[ 43.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:54,999 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:54,999 | INFO | Bird 0.384 0.000 0.250 ✓ +2026-07-13 08:29:54,999 | INFO | Chicken, rooster 0.260 0.000 0.169 ✓ +2026-07-13 08:29:54,999 | INFO | Chirp, tweet 0.201 0.000 0.131 ✓ +2026-07-13 08:29:54,999 | INFO | Bird vocalization, bird call, bird song 0.167 0.000 0.108 ✗ +2026-07-13 08:29:55,006 | INFO | Duck 0.163 0.000 0.106 ✗ +2026-07-13 08:29:55,006 | INFO | Animal 0.152 0.000 0.099 ✗ +2026-07-13 08:29:55,006 | INFO | → WINNER: Bird (combined=0.250) +2026-07-13 08:29:55,030 | INFO | +[ 43.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,030 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,030 | INFO | Bird 0.344 0.000 0.224 ✓ +2026-07-13 08:29:55,030 | INFO | Chicken, rooster 0.279 0.000 0.181 ✓ +2026-07-13 08:29:55,030 | INFO | Duck 0.214 0.000 0.139 ✓ +2026-07-13 08:29:55,030 | INFO | Animal 0.198 0.000 0.128 ✓ +2026-07-13 08:29:55,030 | INFO | Cluck 0.174 0.000 0.113 ✗ +2026-07-13 08:29:55,030 | INFO | Chirp, tweet 0.136 0.000 0.089 ✗ +2026-07-13 08:29:55,030 | INFO | → WINNER: Bird (combined=0.224) +2026-07-13 08:29:55,063 | INFO | +[ 43.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,063 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,063 | INFO | Environmental noise 0.140 0.320 0.203 ✓ +2026-07-13 08:29:55,063 | INFO | Bird 0.310 0.000 0.201 ✓ +2026-07-13 08:29:55,063 | INFO | Animal 0.185 0.000 0.120 ✓ +2026-07-13 08:29:55,063 | INFO | Bird vocalization, bird call, bird song 0.168 0.000 0.109 ✗ +2026-07-13 08:29:55,063 | INFO | Chirp, tweet 0.160 0.000 0.104 ✗ +2026-07-13 08:29:55,063 | INFO | Outside, rural or natural 0.086 0.000 0.056 ✗ +2026-07-13 08:29:55,063 | INFO | → WINNER: Environmental noise (combined=0.203) +2026-07-13 08:29:55,090 | INFO | +[ 43.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,092 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,092 | INFO | Bird 0.334 0.000 0.217 ✓ +2026-07-13 08:29:55,092 | INFO | Environmental noise 0.084 0.320 0.166 ✓ +2026-07-13 08:29:55,094 | INFO | Animal 0.211 0.000 0.137 ✓ +2026-07-13 08:29:55,094 | INFO | Chirp, tweet 0.170 0.000 0.111 ✗ +2026-07-13 08:29:55,094 | INFO | Bird vocalization, bird call, bird song 0.162 0.000 0.105 ✗ +2026-07-13 08:29:55,094 | INFO | Chicken, rooster 0.103 0.000 0.067 ✗ +2026-07-13 08:29:55,094 | INFO | → WINNER: Bird (combined=0.217) +2026-07-13 08:29:55,121 | INFO | +[ 43.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,123 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,123 | INFO | Environmental noise 0.097 0.320 0.175 ✓ +2026-07-13 08:29:55,123 | INFO | Animal 0.247 0.000 0.160 ✓ +2026-07-13 08:29:55,125 | INFO | Bird 0.211 0.000 0.137 ✓ +2026-07-13 08:29:55,125 | INFO | Chicken, rooster 0.087 0.000 0.057 ✗ +2026-07-13 08:29:55,125 | INFO | Bird vocalization, bird call, bird song 0.076 0.000 0.049 ✗ +2026-07-13 08:29:55,125 | INFO | Outside, rural or natural 0.073 0.000 0.047 ✗ +2026-07-13 08:29:55,125 | INFO | → WINNER: Environmental noise (combined=0.175) +2026-07-13 08:29:55,151 | INFO | +[ 44.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,151 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,151 | INFO | Animal 0.167 0.000 0.109 ✗ +2026-07-13 08:29:55,151 | INFO | Bird 0.153 0.000 0.100 ✗ +2026-07-13 08:29:55,151 | INFO | Mouse 0.077 0.000 0.050 ✗ +2026-07-13 08:29:55,151 | INFO | Chicken, rooster 0.057 0.000 0.037 ✗ +2026-07-13 08:29:55,151 | INFO | Bird vocalization, bird call, bird song 0.052 0.000 0.034 ✗ +2026-07-13 08:29:55,151 | INFO | → no winner +2026-07-13 08:29:55,179 | INFO | +[ 44.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,179 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,180 | INFO | Bird 0.229 0.000 0.149 ✓ +2026-07-13 08:29:55,180 | INFO | Animal 0.184 0.000 0.120 ✗ +2026-07-13 08:29:55,180 | INFO | Duck 0.127 0.000 0.083 ✗ +2026-07-13 08:29:55,180 | INFO | Chirp, tweet 0.087 0.000 0.057 ✗ +2026-07-13 08:29:55,180 | INFO | Bird vocalization, bird call, bird song 0.087 0.000 0.057 ✗ +2026-07-13 08:29:55,180 | INFO | Chicken, rooster 0.085 0.000 0.055 ✗ +2026-07-13 08:29:55,180 | INFO | → WINNER: Bird (combined=0.149) +2026-07-13 08:29:55,205 | INFO | +[ 44.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,205 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,205 | INFO | Environmental noise 0.053 0.320 0.146 ✓ +2026-07-13 08:29:55,205 | INFO | Animal 0.225 0.000 0.146 ✓ +2026-07-13 08:29:55,205 | INFO | Duck 0.217 0.000 0.141 ✓ +2026-07-13 08:29:55,205 | INFO | Bird 0.207 0.000 0.135 ✓ +2026-07-13 08:29:55,205 | INFO | Bird vocalization, bird call, bird song 0.083 0.000 0.054 ✗ +2026-07-13 08:29:55,205 | INFO | Chirp, tweet 0.075 0.000 0.049 ✗ +2026-07-13 08:29:55,205 | INFO | → WINNER: Environmental noise (combined=0.146) +2026-07-13 08:29:55,235 | INFO | +[ 44.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,237 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,237 | INFO | Environmental noise 0.082 0.320 0.165 ✓ +2026-07-13 08:29:55,237 | INFO | Bird 0.194 0.000 0.126 ✓ +2026-07-13 08:29:55,237 | INFO | Animal 0.173 0.000 0.113 ✗ +2026-07-13 08:29:55,237 | INFO | Bird vocalization, bird call, bird song 0.110 0.000 0.072 ✗ +2026-07-13 08:29:55,237 | INFO | Duck 0.101 0.000 0.066 ✗ +2026-07-13 08:29:55,237 | INFO | Chirp, tweet 0.101 0.000 0.065 ✗ +2026-07-13 08:29:55,239 | INFO | → WINNER: Environmental noise (combined=0.165) +2026-07-13 08:29:55,264 | INFO | +[ 44.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,264 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,265 | INFO | Environmental noise 0.064 0.320 0.153 ✓ +2026-07-13 08:29:55,265 | INFO | Bird 0.141 0.000 0.092 ✗ +2026-07-13 08:29:55,265 | INFO | Animal 0.110 0.000 0.071 ✗ +2026-07-13 08:29:55,265 | INFO | Cricket 0.089 0.000 0.058 ✗ +2026-07-13 08:29:55,265 | INFO | Mouse 0.086 0.000 0.056 ✗ +2026-07-13 08:29:55,265 | INFO | Bird vocalization, bird call, bird song 0.079 0.000 0.051 ✗ +2026-07-13 08:29:55,265 | INFO | → WINNER: Environmental noise (combined=0.153) +2026-07-13 08:29:55,289 | INFO | +[ 45.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,289 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,289 | INFO | Environmental noise 0.190 0.320 0.236 ✓ +2026-07-13 08:29:55,289 | INFO | Insect 0.138 0.299 0.194 ✓ +2026-07-13 08:29:55,289 | INFO | Animal 0.218 0.000 0.142 ✓ +2026-07-13 08:29:55,289 | INFO | Bird 0.192 0.000 0.124 ✓ +2026-07-13 08:29:55,289 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.061 ✗ +2026-07-13 08:29:55,289 | INFO | Cricket 0.087 0.000 0.057 ✗ +2026-07-13 08:29:55,289 | INFO | → WINNER: Environmental noise (combined=0.236) +2026-07-13 08:29:55,321 | INFO | +[ 45.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,321 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,321 | INFO | Environmental noise 0.295 0.320 0.304 ✓ +2026-07-13 08:29:55,321 | INFO | Insect 0.151 0.299 0.202 ✓ +2026-07-13 08:29:55,321 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:29:55,321 | INFO | Bird 0.172 0.000 0.112 ✗ +2026-07-13 08:29:55,321 | INFO | Bird vocalization, bird call, bird song 0.116 0.000 0.075 ✗ +2026-07-13 08:29:55,321 | INFO | Chirp, tweet 0.094 0.000 0.061 ✗ +2026-07-13 08:29:55,321 | INFO | → WINNER: Environmental noise (combined=0.304) +2026-07-13 08:29:55,350 | INFO | +[ 45.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,350 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,350 | INFO | Insect 0.197 0.299 0.232 ✓ +2026-07-13 08:29:55,350 | INFO | Environmental noise 0.141 0.320 0.204 ✓ +2026-07-13 08:29:55,350 | INFO | Animal 0.221 0.000 0.143 ✓ +2026-07-13 08:29:55,350 | INFO | Bird 0.163 0.000 0.106 ✗ +2026-07-13 08:29:55,350 | INFO | Cricket 0.091 0.000 0.059 ✗ +2026-07-13 08:29:55,353 | INFO | Bird vocalization, bird call, bird song 0.077 0.000 0.050 ✗ +2026-07-13 08:29:55,354 | INFO | → WINNER: Insect (combined=0.232) +2026-07-13 08:29:55,379 | INFO | +[ 45.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,379 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,379 | INFO | Environmental noise 0.123 0.320 0.192 ✓ +2026-07-13 08:29:55,379 | INFO | Animal 0.288 0.000 0.187 ✓ +2026-07-13 08:29:55,379 | INFO | Bird 0.178 0.000 0.116 ✗ +2026-07-13 08:29:55,379 | INFO | Outside, rural or natural 0.085 0.000 0.055 ✗ +2026-07-13 08:29:55,379 | INFO | Bird vocalization, bird call, bird song 0.074 0.000 0.048 ✗ +2026-07-13 08:29:55,379 | INFO | Chirp, tweet 0.065 0.000 0.042 ✗ +2026-07-13 08:29:55,379 | INFO | → WINNER: Environmental noise (combined=0.192) +2026-07-13 08:29:55,410 | INFO | +[ 45.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,410 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,410 | INFO | Animal 0.330 0.000 0.214 ✓ +2026-07-13 08:29:55,410 | INFO | Environmental noise 0.130 0.320 0.196 ✓ +2026-07-13 08:29:55,410 | INFO | Insect 0.109 0.299 0.175 ✓ +2026-07-13 08:29:55,410 | INFO | Bird 0.143 0.000 0.093 ✗ +2026-07-13 08:29:55,410 | INFO | Outside, rural or natural 0.114 0.000 0.074 ✗ +2026-07-13 08:29:55,410 | INFO | Cricket 0.095 0.000 0.062 ✗ +2026-07-13 08:29:55,410 | INFO | → WINNER: Animal (combined=0.214) +2026-07-13 08:29:55,436 | INFO | +[ 46.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,436 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,436 | INFO | Animal 0.317 0.000 0.206 ✓ +2026-07-13 08:29:55,436 | INFO | Bird 0.079 0.000 0.051 ✗ +2026-07-13 08:29:55,436 | INFO | Outside, rural or natural 0.072 0.000 0.047 ✗ +2026-07-13 08:29:55,436 | INFO | → WINNER: Animal (combined=0.206) +2026-07-13 08:29:55,468 | INFO | +[ 46.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,468 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,468 | INFO | Environmental noise 0.057 0.320 0.149 ✓ +2026-07-13 08:29:55,468 | INFO | Animal 0.155 0.000 0.101 ✗ +2026-07-13 08:29:55,468 | INFO | Water 0.127 0.000 0.082 ✗ +2026-07-13 08:29:55,468 | INFO | Trickle, dribble 0.097 0.000 0.063 ✗ +2026-07-13 08:29:55,468 | INFO | Liquid 0.096 0.000 0.062 ✗ +2026-07-13 08:29:55,468 | INFO | Bird 0.080 0.000 0.052 ✗ +2026-07-13 08:29:55,468 | INFO | → WINNER: Environmental noise (combined=0.149) +2026-07-13 08:29:55,495 | INFO | +[ 46.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,495 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,495 | INFO | Water 0.144 0.000 0.094 ✗ +2026-07-13 08:29:55,495 | INFO | Trickle, dribble 0.105 0.000 0.068 ✗ +2026-07-13 08:29:55,495 | INFO | Liquid 0.100 0.000 0.065 ✗ +2026-07-13 08:29:55,501 | INFO | Pour 0.076 0.000 0.049 ✗ +2026-07-13 08:29:55,501 | INFO | Drip 0.074 0.000 0.048 ✗ +2026-07-13 08:29:55,502 | INFO | Boat, Water vehicle 0.038 0.000 0.025 ✗ +2026-07-13 08:29:55,502 | INFO | → no winner +2026-07-13 08:29:55,527 | INFO | +[ 46.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,527 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,527 | INFO | Environmental noise 0.114 0.320 0.186 ✓ +2026-07-13 08:29:55,527 | INFO | Animal 0.219 0.000 0.143 ✓ +2026-07-13 08:29:55,527 | INFO | Bird 0.174 0.000 0.113 ✗ +2026-07-13 08:29:55,527 | INFO | Bird vocalization, bird call, bird song 0.103 0.000 0.067 ✗ +2026-07-13 08:29:55,527 | INFO | Chirp, tweet 0.100 0.000 0.065 ✗ +2026-07-13 08:29:55,527 | INFO | Outside, rural or natural 0.081 0.000 0.052 ✗ +2026-07-13 08:29:55,527 | INFO | → WINNER: Environmental noise (combined=0.186) +2026-07-13 08:29:55,559 | INFO | +[ 46.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,559 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,559 | INFO | Environmental noise 0.100 0.320 0.177 ✓ +2026-07-13 08:29:55,559 | INFO | Animal 0.239 0.000 0.155 ✓ +2026-07-13 08:29:55,559 | INFO | Bird 0.140 0.000 0.091 ✗ +2026-07-13 08:29:55,559 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:29:55,559 | INFO | Bird vocalization, bird call, bird song 0.067 0.000 0.044 ✗ +2026-07-13 08:29:55,559 | INFO | Chirp, tweet 0.060 0.000 0.039 ✗ +2026-07-13 08:29:55,559 | INFO | → WINNER: Environmental noise (combined=0.177) +2026-07-13 08:29:55,584 | INFO | +[ 47.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,584 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,584 | INFO | Animal 0.192 0.000 0.124 ✓ +2026-07-13 08:29:55,584 | INFO | Bird 0.099 0.000 0.064 ✗ +2026-07-13 08:29:55,584 | INFO | Vehicle 0.070 0.000 0.045 ✗ +2026-07-13 08:29:55,584 | INFO | Outside, rural or natural 0.059 0.000 0.039 ✗ +2026-07-13 08:29:55,584 | INFO | Bird vocalization, bird call, bird song 0.030 0.000 0.020 ✗ +2026-07-13 08:29:55,584 | INFO | → WINNER: Animal (combined=0.124) +2026-07-13 08:29:55,609 | INFO | +[ 47.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,609 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,616 | INFO | Bird 0.211 0.000 0.137 ✓ +2026-07-13 08:29:55,617 | INFO | Animal 0.186 0.000 0.121 ✓ +2026-07-13 08:29:55,617 | INFO | Duck 0.143 0.000 0.093 ✗ +2026-07-13 08:29:55,617 | INFO | Chicken, rooster 0.126 0.000 0.082 ✗ +2026-07-13 08:29:55,617 | INFO | Cluck 0.096 0.000 0.063 ✗ +2026-07-13 08:29:55,617 | INFO | Mouse 0.062 0.000 0.040 ✗ +2026-07-13 08:29:55,617 | INFO | → WINNER: Bird (combined=0.137) +2026-07-13 08:29:55,641 | INFO | +[ 47.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,641 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,641 | INFO | Bird 0.188 0.000 0.122 ✓ +2026-07-13 08:29:55,641 | INFO | Animal 0.158 0.000 0.103 ✗ +2026-07-13 08:29:55,641 | INFO | Chicken, rooster 0.107 0.000 0.070 ✗ +2026-07-13 08:29:55,641 | INFO | Duck 0.099 0.000 0.064 ✗ +2026-07-13 08:29:55,641 | INFO | Cluck 0.083 0.000 0.054 ✗ +2026-07-13 08:29:55,641 | INFO | Rodents, rats, mice 0.060 0.000 0.039 ✗ +2026-07-13 08:29:55,641 | INFO | → WINNER: Bird (combined=0.122) +2026-07-13 08:29:55,673 | INFO | +[ 47.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,674 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,674 | INFO | Bird 0.141 0.000 0.092 ✗ +2026-07-13 08:29:55,674 | INFO | Animal 0.120 0.000 0.078 ✗ +2026-07-13 08:29:55,674 | INFO | Rodents, rats, mice 0.053 0.000 0.034 ✗ +2026-07-13 08:29:55,676 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.033 ✗ +2026-07-13 08:29:55,676 | INFO | → no winner +2026-07-13 08:29:55,698 | INFO | +[ 47.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,698 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,698 | INFO | Animal 0.143 0.000 0.093 ✗ +2026-07-13 08:29:55,698 | INFO | Frog 0.082 0.000 0.053 ✗ +2026-07-13 08:29:55,698 | INFO | Bird 0.049 0.000 0.032 ✗ +2026-07-13 08:29:55,698 | INFO | → no winner +2026-07-13 08:29:55,730 | INFO | +[ 48.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,730 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,730 | INFO | Animal 0.126 0.000 0.082 ✗ +2026-07-13 08:29:55,730 | INFO | Rodents, rats, mice 0.102 0.000 0.066 ✗ +2026-07-13 08:29:55,730 | INFO | Bird 0.073 0.000 0.047 ✗ +2026-07-13 08:29:55,730 | INFO | → no winner +2026-07-13 08:29:55,755 | INFO | +[ 48.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,755 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,755 | INFO | Bird 0.229 0.000 0.149 ✓ +2026-07-13 08:29:55,764 | INFO | Animal 0.210 0.000 0.137 ✓ +2026-07-13 08:29:55,764 | INFO | Duck 0.120 0.000 0.078 ✗ +2026-07-13 08:29:55,764 | INFO | Chirp, tweet 0.114 0.000 0.074 ✗ +2026-07-13 08:29:55,764 | INFO | Bird vocalization, bird call, bird song 0.099 0.000 0.064 ✗ +2026-07-13 08:29:55,764 | INFO | Frog 0.077 0.000 0.050 ✗ +2026-07-13 08:29:55,764 | INFO | → WINNER: Bird (combined=0.149) +2026-07-13 08:29:55,788 | INFO | +[ 48.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,788 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,788 | INFO | Animal 0.203 0.000 0.132 ✓ +2026-07-13 08:29:55,788 | INFO | Bird 0.168 0.000 0.109 ✗ +2026-07-13 08:29:55,788 | INFO | Duck 0.103 0.000 0.067 ✗ +2026-07-13 08:29:55,788 | INFO | Bird vocalization, bird call, bird song 0.057 0.000 0.037 ✗ +2026-07-13 08:29:55,788 | INFO | Chicken, rooster 0.052 0.000 0.034 ✗ +2026-07-13 08:29:55,788 | INFO | → WINNER: Animal (combined=0.132) +2026-07-13 08:29:55,818 | INFO | +[ 48.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,818 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,821 | INFO | Bird 0.220 0.000 0.143 ✓ +2026-07-13 08:29:55,821 | INFO | Animal 0.131 0.000 0.085 ✗ +2026-07-13 08:29:55,821 | INFO | Chirp, tweet 0.100 0.000 0.065 ✗ +2026-07-13 08:29:55,821 | INFO | Bird vocalization, bird call, bird song 0.093 0.000 0.061 ✗ +2026-07-13 08:29:55,821 | INFO | → WINNER: Bird (combined=0.143) +2026-07-13 08:29:55,850 | INFO | +[ 48.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,850 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,850 | INFO | Environmental noise 0.088 0.320 0.169 ✓ +2026-07-13 08:29:55,850 | INFO | Turkey 0.226 0.000 0.147 ✓ +2026-07-13 08:29:55,850 | INFO | Gobble 0.166 0.000 0.108 ✗ +2026-07-13 08:29:55,850 | INFO | Animal 0.160 0.000 0.104 ✗ +2026-07-13 08:29:55,850 | INFO | Bird 0.146 0.000 0.095 ✗ +2026-07-13 08:29:55,850 | INFO | Bird vocalization, bird call, bird song 0.072 0.000 0.047 ✗ +2026-07-13 08:29:55,850 | INFO | → WINNER: Environmental noise (combined=0.169) +2026-07-13 08:29:55,879 | INFO | +[ 49.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,879 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,879 | INFO | Environmental noise 0.080 0.320 0.164 ✓ +2026-07-13 08:29:55,879 | INFO | Animal 0.185 0.000 0.120 ✓ +2026-07-13 08:29:55,879 | INFO | Bird 0.133 0.000 0.086 ✗ +2026-07-13 08:29:55,879 | INFO | Outside, rural or natural 0.062 0.000 0.040 ✗ +2026-07-13 08:29:55,881 | INFO | Bird vocalization, bird call, bird song 0.059 0.000 0.039 ✗ +2026-07-13 08:29:55,881 | INFO | → WINNER: Environmental noise (combined=0.164) +2026-07-13 08:29:55,904 | INFO | +[ 49.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,904 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,904 | INFO | Animal 0.262 0.000 0.171 ✓ +2026-07-13 08:29:55,904 | INFO | Environmental noise 0.060 0.320 0.151 ✓ +2026-07-13 08:29:55,904 | INFO | Bird 0.143 0.000 0.093 ✗ +2026-07-13 08:29:55,904 | INFO | Outside, rural or natural 0.089 0.000 0.058 ✗ +2026-07-13 08:29:55,904 | INFO | Bird vocalization, bird call, bird song 0.047 0.000 0.030 ✗ +2026-07-13 08:29:55,904 | INFO | → WINNER: Animal (combined=0.171) +2026-07-13 08:29:55,936 | INFO | +[ 49.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,936 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,936 | INFO | Environmental noise 0.172 0.320 0.224 ✓ +2026-07-13 08:29:55,936 | INFO | Animal 0.152 0.000 0.099 ✗ +2026-07-13 08:29:55,936 | INFO | Bird 0.124 0.000 0.081 ✗ +2026-07-13 08:29:55,936 | INFO | Bird vocalization, bird call, bird song 0.111 0.000 0.072 ✗ +2026-07-13 08:29:55,936 | INFO | Water 0.107 0.000 0.070 ✗ +2026-07-13 08:29:55,936 | INFO | Chirp, tweet 0.084 0.000 0.055 ✗ +2026-07-13 08:29:55,936 | INFO | → WINNER: Environmental noise (combined=0.224) +2026-07-13 08:29:55,961 | INFO | +[ 49.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,961 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,961 | INFO | Environmental noise 0.108 0.320 0.182 ✓ +2026-07-13 08:29:55,961 | INFO | Water 0.151 0.000 0.098 ✗ +2026-07-13 08:29:55,961 | INFO | Pour 0.106 0.000 0.069 ✗ +2026-07-13 08:29:55,961 | INFO | Trickle, dribble 0.100 0.000 0.065 ✗ +2026-07-13 08:29:55,961 | INFO | Bird 0.093 0.000 0.061 ✗ +2026-07-13 08:29:55,961 | INFO | Animal 0.092 0.000 0.060 ✗ +2026-07-13 08:29:55,961 | INFO | → WINNER: Environmental noise (combined=0.182) +2026-07-13 08:29:55,995 | INFO | +[ 49.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:55,995 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:55,995 | INFO | Environmental noise 0.177 0.320 0.227 ✓ +2026-07-13 08:29:55,995 | INFO | Bird 0.204 0.000 0.133 ✓ +2026-07-13 08:29:55,995 | INFO | Animal 0.156 0.000 0.102 ✗ +2026-07-13 08:29:55,995 | INFO | Bird vocalization, bird call, bird song 0.149 0.000 0.097 ✗ +2026-07-13 08:29:55,995 | INFO | Chirp, tweet 0.148 0.000 0.096 ✗ +2026-07-13 08:29:55,995 | INFO | Outside, rural or natural 0.054 0.000 0.035 ✗ +2026-07-13 08:29:55,995 | INFO | → WINNER: Environmental noise (combined=0.227) +2026-07-13 08:29:56,026 | INFO | +[ 50.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,026 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,026 | INFO | Environmental noise 0.060 0.320 0.151 ✓ +2026-07-13 08:29:56,026 | INFO | Animal 0.121 0.000 0.079 ✗ +2026-07-13 08:29:56,026 | INFO | Bird 0.099 0.000 0.064 ✗ +2026-07-13 08:29:56,026 | INFO | Pour 0.075 0.000 0.049 ✗ +2026-07-13 08:29:56,026 | INFO | Water 0.072 0.000 0.047 ✗ +2026-07-13 08:29:56,026 | INFO | Bird vocalization, bird call, bird song 0.062 0.000 0.041 ✗ +2026-07-13 08:29:56,026 | INFO | → WINNER: Environmental noise (combined=0.151) +2026-07-13 08:29:56,054 | INFO | +[ 50.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,054 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,054 | INFO | Environmental noise 0.073 0.320 0.159 ✓ +2026-07-13 08:29:56,054 | INFO | Animal 0.123 0.000 0.080 ✗ +2026-07-13 08:29:56,054 | INFO | Bird 0.108 0.000 0.070 ✗ +2026-07-13 08:29:56,054 | INFO | Mouse 0.105 0.000 0.068 ✗ +2026-07-13 08:29:56,059 | INFO | Bird vocalization, bird call, bird song 0.065 0.000 0.042 ✗ +2026-07-13 08:29:56,059 | INFO | Chirp, tweet 0.059 0.000 0.038 ✗ +2026-07-13 08:29:56,059 | INFO | → WINNER: Environmental noise (combined=0.159) +2026-07-13 08:29:56,085 | INFO | +[ 50.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,085 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,085 | INFO | Animal 0.142 0.000 0.092 ✗ +2026-07-13 08:29:56,088 | INFO | Mouse 0.070 0.000 0.046 ✗ +2026-07-13 08:29:56,088 | INFO | Patter 0.068 0.000 0.044 ✗ +2026-07-13 08:29:56,088 | INFO | Bird 0.063 0.000 0.041 ✗ +2026-07-13 08:29:56,088 | INFO | Rodents, rats, mice 0.057 0.000 0.037 ✗ +2026-07-13 08:29:56,088 | INFO | → no winner +2026-07-13 08:29:56,115 | INFO | +[ 50.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,116 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,116 | INFO | Animal 0.247 0.000 0.161 ✓ +2026-07-13 08:29:56,116 | INFO | Bird 0.098 0.000 0.064 ✗ +2026-07-13 08:29:56,116 | INFO | Clip-clop 0.066 0.000 0.043 ✗ +2026-07-13 08:29:56,116 | INFO | Outside, rural or natural 0.058 0.000 0.038 ✗ +2026-07-13 08:29:56,116 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:29:56,116 | INFO | Horse 0.055 0.000 0.036 ✗ +2026-07-13 08:29:56,116 | INFO | → WINNER: Animal (combined=0.161) +2026-07-13 08:29:56,142 | INFO | +[ 50.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,142 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,142 | INFO | Animal 0.314 0.000 0.204 ✓ +2026-07-13 08:29:56,142 | INFO | Clip-clop 0.143 0.000 0.093 ✗ +2026-07-13 08:29:56,142 | INFO | Horse 0.126 0.000 0.082 ✗ +2026-07-13 08:29:56,142 | INFO | Bird 0.078 0.000 0.051 ✗ +2026-07-13 08:29:56,142 | INFO | Patter 0.068 0.000 0.044 ✗ +2026-07-13 08:29:56,142 | INFO | Outside, rural or natural 0.053 0.000 0.035 ✗ +2026-07-13 08:29:56,142 | INFO | → WINNER: Animal (combined=0.204) +2026-07-13 08:29:56,166 | INFO | +[ 51.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,166 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,166 | INFO | Animal 0.167 0.000 0.108 ✗ +2026-07-13 08:29:56,166 | INFO | Rodents, rats, mice 0.101 0.000 0.065 ✗ +2026-07-13 08:29:56,166 | INFO | Bird 0.086 0.000 0.056 ✗ +2026-07-13 08:29:56,166 | INFO | Patter 0.071 0.000 0.046 ✗ +2026-07-13 08:29:56,166 | INFO | → no winner +2026-07-13 08:29:56,198 | INFO | +[ 51.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,198 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,198 | INFO | Animal 0.113 0.000 0.074 ✗ +2026-07-13 08:29:56,198 | INFO | Rodents, rats, mice 0.099 0.000 0.065 ✗ +2026-07-13 08:29:56,198 | INFO | Bird 0.079 0.000 0.051 ✗ +2026-07-13 08:29:56,198 | INFO | → no winner +2026-07-13 08:29:56,223 | INFO | +[ 51.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,223 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,223 | INFO | Rodents, rats, mice 0.074 0.000 0.048 ✗ +2026-07-13 08:29:56,223 | INFO | → no winner +2026-07-13 08:29:56,256 | INFO | +[ 51.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,256 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,256 | INFO | Animal 0.189 0.000 0.123 ✓ +2026-07-13 08:29:56,256 | INFO | Bird 0.142 0.000 0.092 ✗ +2026-07-13 08:29:56,256 | INFO | Chicken, rooster 0.092 0.000 0.060 ✗ +2026-07-13 08:29:56,256 | INFO | Cluck 0.063 0.000 0.041 ✗ +2026-07-13 08:29:56,256 | INFO | Bird vocalization, bird call, bird song 0.037 0.000 0.024 ✗ +2026-07-13 08:29:56,256 | INFO | → WINNER: Animal (combined=0.123) +2026-07-13 08:29:56,281 | INFO | +[ 51.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,281 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,281 | INFO | Animal 0.245 0.000 0.159 ✓ +2026-07-13 08:29:56,281 | INFO | Turkey 0.143 0.000 0.093 ✗ +2026-07-13 08:29:56,281 | INFO | Bird 0.143 0.000 0.093 ✗ +2026-07-13 08:29:56,281 | INFO | Gobble 0.096 0.000 0.062 ✗ +2026-07-13 08:29:56,281 | INFO | Outside, rural or natural 0.058 0.000 0.037 ✗ +2026-07-13 08:29:56,287 | INFO | Chicken, rooster 0.053 0.000 0.035 ✗ +2026-07-13 08:29:56,287 | INFO | → WINNER: Animal (combined=0.159) +2026-07-13 08:29:56,312 | INFO | +[ 52.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,312 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,312 | INFO | Turkey 0.304 0.000 0.198 ✓ +2026-07-13 08:29:56,312 | INFO | Gobble 0.240 0.000 0.156 ✓ +2026-07-13 08:29:56,312 | INFO | Animal 0.169 0.000 0.110 ✗ +2026-07-13 08:29:56,312 | INFO | Bird 0.121 0.000 0.079 ✗ +2026-07-13 08:29:56,312 | INFO | Rodents, rats, mice 0.091 0.000 0.059 ✗ +2026-07-13 08:29:56,312 | INFO | Patter 0.053 0.000 0.035 ✗ +2026-07-13 08:29:56,312 | INFO | → WINNER: Turkey (combined=0.198) +2026-07-13 08:29:56,336 | INFO | +[ 52.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,336 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,336 | INFO | Environmental noise 0.091 0.320 0.171 ✓ +2026-07-13 08:29:56,344 | INFO | Animal 0.256 0.000 0.166 ✓ +2026-07-13 08:29:56,345 | INFO | Bird 0.205 0.000 0.133 ✓ +2026-07-13 08:29:56,345 | INFO | Outside, rural or natural 0.084 0.000 0.055 ✗ +2026-07-13 08:29:56,345 | INFO | Bird vocalization, bird call, bird song 0.081 0.000 0.052 ✗ +2026-07-13 08:29:56,345 | INFO | Turkey 0.061 0.000 0.040 ✗ +2026-07-13 08:29:56,345 | INFO | → WINNER: Environmental noise (combined=0.171) +2026-07-13 08:29:56,370 | INFO | +[ 52.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,370 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,370 | INFO | Animal 0.316 0.000 0.206 ✓ +2026-07-13 08:29:56,370 | INFO | Environmental noise 0.111 0.320 0.184 ✓ +2026-07-13 08:29:56,370 | INFO | Bird 0.228 0.000 0.148 ✓ +2026-07-13 08:29:56,370 | INFO | Chirp, tweet 0.114 0.000 0.074 ✗ +2026-07-13 08:29:56,370 | INFO | Bird vocalization, bird call, bird song 0.113 0.000 0.073 ✗ +2026-07-13 08:29:56,370 | INFO | Outside, rural or natural 0.105 0.000 0.068 ✗ +2026-07-13 08:29:56,370 | INFO | → WINNER: Animal (combined=0.206) +2026-07-13 08:29:56,402 | INFO | +[ 52.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,402 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,402 | INFO | Animal 0.264 0.000 0.172 ✓ +2026-07-13 08:29:56,402 | INFO | Environmental noise 0.085 0.320 0.167 ✓ +2026-07-13 08:29:56,402 | INFO | Bird 0.251 0.000 0.163 ✓ +2026-07-13 08:29:56,402 | INFO | Chirp, tweet 0.147 0.000 0.096 ✗ +2026-07-13 08:29:56,402 | INFO | Bird vocalization, bird call, bird song 0.141 0.000 0.091 ✗ +2026-07-13 08:29:56,402 | INFO | Outside, rural or natural 0.082 0.000 0.054 ✗ +2026-07-13 08:29:56,402 | INFO | → WINNER: Animal (combined=0.172) +2026-07-13 08:29:56,431 | INFO | +[ 52.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,431 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,431 | INFO | Environmental noise 0.053 0.320 0.147 ✓ +2026-07-13 08:29:56,431 | INFO | Animal 0.211 0.000 0.137 ✓ +2026-07-13 08:29:56,431 | INFO | Bird 0.163 0.000 0.106 ✗ +2026-07-13 08:29:56,431 | INFO | Chirp, tweet 0.097 0.000 0.063 ✗ +2026-07-13 08:29:56,431 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.058 ✗ +2026-07-13 08:29:56,434 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:29:56,434 | INFO | → WINNER: Environmental noise (combined=0.147) +2026-07-13 08:29:56,459 | INFO | +[ 53.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,459 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,459 | INFO | Environmental noise 0.125 0.320 0.193 ✓ +2026-07-13 08:29:56,459 | INFO | Animal 0.266 0.000 0.173 ✓ +2026-07-13 08:29:56,459 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:29:56,459 | INFO | Outside, rural or natural 0.079 0.000 0.052 ✗ +2026-07-13 08:29:56,459 | INFO | Bird vocalization, bird call, bird song 0.066 0.000 0.043 ✗ +2026-07-13 08:29:56,459 | INFO | Chirp, tweet 0.062 0.000 0.040 ✗ +2026-07-13 08:29:56,459 | INFO | → WINNER: Environmental noise (combined=0.193) +2026-07-13 08:29:56,487 | INFO | +[ 53.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,487 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,487 | INFO | Animal 0.314 0.000 0.204 ✓ +2026-07-13 08:29:56,487 | INFO | Bird 0.102 0.000 0.067 ✗ +2026-07-13 08:29:56,492 | INFO | Outside, rural or natural 0.082 0.000 0.053 ✗ +2026-07-13 08:29:56,492 | INFO | Vehicle 0.059 0.000 0.038 ✗ +2026-07-13 08:29:56,492 | INFO | Bird vocalization, bird call, bird song 0.034 0.000 0.022 ✗ +2026-07-13 08:29:56,492 | INFO | → WINNER: Animal (combined=0.204) +2026-07-13 08:29:56,520 | INFO | +[ 53.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,520 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,520 | INFO | Animal 0.344 0.000 0.224 ✓ +2026-07-13 08:29:56,520 | INFO | Vehicle 0.119 0.000 0.078 ✗ +2026-07-13 08:29:56,520 | INFO | Outside, rural or natural 0.098 0.000 0.064 ✗ +2026-07-13 08:29:56,520 | INFO | Bird 0.081 0.000 0.053 ✗ +2026-07-13 08:29:56,520 | INFO | Boat, Water vehicle 0.076 0.000 0.049 ✗ +2026-07-13 08:29:56,520 | INFO | Rodents, rats, mice 0.058 0.000 0.037 ✗ +2026-07-13 08:29:56,520 | INFO | → WINNER: Animal (combined=0.224) +2026-07-13 08:29:56,549 | INFO | +[ 53.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,549 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,549 | INFO | Rodents, rats, mice 0.436 0.000 0.283 ✓ +2026-07-13 08:29:56,549 | INFO | Animal 0.281 0.000 0.182 ✓ +2026-07-13 08:29:56,549 | INFO | Patter 0.170 0.000 0.111 ✗ +2026-07-13 08:29:56,549 | INFO | Bird 0.154 0.000 0.100 ✗ +2026-07-13 08:29:56,549 | INFO | Outside, rural or natural 0.057 0.000 0.037 ✗ +2026-07-13 08:29:56,549 | INFO | Bird vocalization, bird call, bird song 0.046 0.000 0.030 ✗ +2026-07-13 08:29:56,549 | INFO | → WINNER: Rodents, rats, mice (combined=0.283) +2026-07-13 08:29:56,577 | INFO | +[ 53.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,581 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,581 | INFO | Animal 0.203 0.000 0.132 ✓ +2026-07-13 08:29:56,581 | INFO | Bird 0.179 0.000 0.117 ✗ +2026-07-13 08:29:56,581 | INFO | Rodents, rats, mice 0.099 0.000 0.065 ✗ +2026-07-13 08:29:56,581 | INFO | Outside, rural or natural 0.064 0.000 0.041 ✗ +2026-07-13 08:29:56,581 | INFO | Chirp, tweet 0.058 0.000 0.037 ✗ +2026-07-13 08:29:56,581 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.033 ✗ +2026-07-13 08:29:56,581 | INFO | → WINNER: Animal (combined=0.132) +2026-07-13 08:29:56,608 | INFO | +[ 54.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,610 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,610 | INFO | Animal 0.256 0.000 0.167 ✓ +2026-07-13 08:29:56,610 | INFO | Rodents, rats, mice 0.203 0.000 0.132 ✓ +2026-07-13 08:29:56,610 | INFO | Bird 0.161 0.000 0.104 ✗ +2026-07-13 08:29:56,610 | INFO | Patter 0.103 0.000 0.067 ✗ +2026-07-13 08:29:56,610 | INFO | Mouse 0.094 0.000 0.061 ✗ +2026-07-13 08:29:56,610 | INFO | Outside, rural or natural 0.073 0.000 0.048 ✗ +2026-07-13 08:29:56,610 | INFO | → WINNER: Animal (combined=0.167) +2026-07-13 08:29:56,635 | INFO | +[ 54.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,639 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,639 | INFO | Animal 0.242 0.000 0.158 ✓ +2026-07-13 08:29:56,639 | INFO | Bird 0.185 0.000 0.120 ✓ +2026-07-13 08:29:56,639 | INFO | Chirp, tweet 0.066 0.000 0.043 ✗ +2026-07-13 08:29:56,639 | INFO | Outside, rural or natural 0.064 0.000 0.042 ✗ +2026-07-13 08:29:56,641 | INFO | Mouse 0.061 0.000 0.040 ✗ +2026-07-13 08:29:56,641 | INFO | Bird vocalization, bird call, bird song 0.060 0.000 0.039 ✗ +2026-07-13 08:29:56,641 | INFO | → WINNER: Animal (combined=0.158) +2026-07-13 08:29:56,666 | INFO | +[ 54.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,666 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,666 | INFO | Environmental noise 0.176 0.320 0.226 ✓ +2026-07-13 08:29:56,666 | INFO | Animal 0.256 0.000 0.167 ✓ +2026-07-13 08:29:56,666 | INFO | Bird 0.185 0.000 0.120 ✓ +2026-07-13 08:29:56,666 | INFO | Outside, rural or natural 0.097 0.000 0.063 ✗ +2026-07-13 08:29:56,666 | INFO | Bird vocalization, bird call, bird song 0.079 0.000 0.051 ✗ +2026-07-13 08:29:56,666 | INFO | Chirp, tweet 0.061 0.000 0.040 ✗ +2026-07-13 08:29:56,666 | INFO | → WINNER: Environmental noise (combined=0.226) +2026-07-13 08:29:56,690 | INFO | +[ 54.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,696 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,696 | INFO | Animal 0.266 0.000 0.173 ✓ +2026-07-13 08:29:56,696 | INFO | Environmental noise 0.089 0.320 0.170 ✓ +2026-07-13 08:29:56,696 | INFO | Outside, rural or natural 0.113 0.000 0.074 ✗ +2026-07-13 08:29:56,696 | INFO | Bird 0.100 0.000 0.065 ✗ +2026-07-13 08:29:56,696 | INFO | Walk, footsteps 0.069 0.000 0.045 ✗ +2026-07-13 08:29:56,696 | INFO | Bird vocalization, bird call, bird song 0.036 0.000 0.023 ✗ +2026-07-13 08:29:56,696 | INFO | → WINNER: Animal (combined=0.173) +2026-07-13 08:29:56,724 | INFO | +[ 54.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-07-13 08:29:56,724 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,724 | INFO | Environmental noise 0.112 0.320 0.185 ✓ +2026-07-13 08:29:56,724 | INFO | Animal 0.254 0.000 0.165 ✓ +2026-07-13 08:29:56,724 | INFO | Rustling leaves 0.028 0.336 0.136 ✓ +2026-07-13 08:29:56,724 | INFO | Outside, rural or natural 0.125 0.000 0.081 ✗ +2026-07-13 08:29:56,724 | INFO | Bird 0.121 0.000 0.078 ✗ +2026-07-13 08:29:56,724 | INFO | Walk, footsteps 0.056 0.000 0.036 ✗ +2026-07-13 08:29:56,724 | INFO | → WINNER: Environmental noise (combined=0.185) +2026-07-13 08:29:56,756 | INFO | +[ 66.60s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-07-13 08:29:56,756 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,756 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:29:56,756 | INFO | Outside, rural or natural 0.075 0.000 0.049 ✗ +2026-07-13 08:29:56,756 | INFO | Bird 0.062 0.000 0.041 ✗ +2026-07-13 08:29:56,756 | INFO | Vehicle 0.058 0.000 0.038 ✗ +2026-07-13 08:29:56,756 | INFO | → no winner +2026-07-13 08:29:56,782 | INFO | +[ 66.80s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-07-13 08:29:56,782 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,782 | INFO | Animal 0.263 0.000 0.171 ✓ +2026-07-13 08:29:56,782 | INFO | Bird vocalization, bird call, bird song 0.035 0.273 0.118 ✗ +2026-07-13 08:29:56,782 | INFO | Bird 0.119 0.000 0.077 ✗ +2026-07-13 08:29:56,782 | INFO | Outside, rural or natural 0.090 0.000 0.059 ✗ +2026-07-13 08:29:56,782 | INFO | → WINNER: Animal (combined=0.171) +2026-07-13 08:29:56,812 | INFO | +[ 67.00s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-07-13 08:29:56,812 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,814 | INFO | Animal 0.235 0.000 0.153 ✓ +2026-07-13 08:29:56,814 | INFO | Bird vocalization, bird call, bird song 0.033 0.273 0.117 ✗ +2026-07-13 08:29:56,814 | INFO | Bird 0.117 0.000 0.076 ✗ +2026-07-13 08:29:56,814 | INFO | Outside, rural or natural 0.079 0.000 0.051 ✗ +2026-07-13 08:29:56,814 | INFO | → WINNER: Animal (combined=0.153) +2026-07-13 08:29:56,837 | INFO | +[ 67.20s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-07-13 08:29:56,837 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,837 | INFO | Animal 0.235 0.000 0.153 ✓ +2026-07-13 08:29:56,837 | INFO | Bird vocalization, bird call, bird song 0.028 0.273 0.114 ✗ +2026-07-13 08:29:56,837 | INFO | Bird 0.114 0.000 0.074 ✗ +2026-07-13 08:29:56,837 | INFO | Outside, rural or natural 0.056 0.000 0.036 ✗ +2026-07-13 08:29:56,837 | INFO | → WINNER: Animal (combined=0.153) +2026-07-13 08:29:56,869 | INFO | +[ 67.40s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-07-13 08:29:56,869 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,869 | INFO | Vehicle 0.135 0.000 0.088 ✗ +2026-07-13 08:29:56,869 | INFO | Animal 0.134 0.000 0.087 ✗ +2026-07-13 08:29:56,869 | INFO | Engine 0.082 0.000 0.053 ✗ +2026-07-13 08:29:56,869 | INFO | Mouse 0.080 0.000 0.052 ✗ +2026-07-13 08:29:56,869 | INFO | Idling 0.052 0.000 0.034 ✗ +2026-07-13 08:29:56,869 | INFO | Bird 0.039 0.000 0.025 ✗ +2026-07-13 08:29:56,869 | INFO | → no winner +2026-07-13 08:29:56,902 | INFO | +[ 77.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:56,902 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,902 | INFO | Animal 0.475 0.000 0.309 ✓ +2026-07-13 08:29:56,902 | INFO | Horse 0.218 0.000 0.142 ✓ +2026-07-13 08:29:56,902 | INFO | Clip-clop 0.165 0.000 0.107 ✗ +2026-07-13 08:29:56,902 | INFO | Neigh, whinny 0.072 0.000 0.046 ✗ +2026-07-13 08:29:56,902 | INFO | Outside, rural or natural 0.067 0.000 0.043 ✗ +2026-07-13 08:29:56,902 | INFO | Bird 0.063 0.000 0.041 ✗ +2026-07-13 08:29:56,902 | INFO | → WINNER: Animal (combined=0.309) +2026-07-13 08:29:56,925 | INFO | +[ 77.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:56,933 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,933 | INFO | Environmental noise 0.055 0.350 0.159 ✓ +2026-07-13 08:29:56,933 | INFO | Bird vocalization, bird call, bird song 0.063 0.314 0.150 ✓ +2026-07-13 08:29:56,933 | INFO | Animal 0.185 0.000 0.120 ✓ +2026-07-13 08:29:56,933 | INFO | Bird 0.147 0.000 0.096 ✗ +2026-07-13 08:29:56,933 | INFO | Outside, rural or natural 0.053 0.000 0.034 ✗ +2026-07-13 08:29:56,933 | INFO | → WINNER: Environmental noise (combined=0.159) +2026-07-13 08:29:56,958 | INFO | +[ 77.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:56,958 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,958 | INFO | Environmental noise 0.060 0.350 0.162 ✓ +2026-07-13 08:29:56,958 | INFO | Bird vocalization, bird call, bird song 0.046 0.314 0.140 ✓ +2026-07-13 08:29:56,958 | INFO | Animal 0.198 0.000 0.129 ✓ +2026-07-13 08:29:56,958 | INFO | Bird 0.105 0.000 0.068 ✗ +2026-07-13 08:29:56,958 | INFO | → WINNER: Environmental noise (combined=0.162) +2026-07-13 08:29:56,989 | INFO | +[ 77.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:56,989 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:56,989 | INFO | Animal 0.130 0.000 0.085 ✗ +2026-07-13 08:29:56,989 | INFO | Bird 0.084 0.000 0.054 ✗ +2026-07-13 08:29:56,989 | INFO | → no winner +2026-07-13 08:29:57,018 | INFO | +[ 77.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,018 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,018 | INFO | Goose 0.225 0.000 0.146 ✓ +2026-07-13 08:29:57,018 | INFO | Honk 0.205 0.000 0.133 ✓ +2026-07-13 08:29:57,018 | INFO | Animal 0.179 0.000 0.117 ✗ +2026-07-13 08:29:57,023 | INFO | Duck 0.142 0.000 0.092 ✗ +2026-07-13 08:29:57,023 | INFO | Crow 0.139 0.000 0.090 ✗ +2026-07-13 08:29:57,024 | INFO | Bird 0.114 0.000 0.074 ✗ +2026-07-13 08:29:57,024 | INFO | → WINNER: Goose (combined=0.146) +2026-07-13 08:29:57,047 | INFO | +[ 78.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,047 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,047 | INFO | Goose 0.556 0.000 0.362 ✓ +2026-07-13 08:29:57,047 | INFO | Honk 0.524 0.000 0.341 ✓ +2026-07-13 08:29:57,047 | INFO | Fowl 0.427 0.000 0.277 ✓ +2026-07-13 08:29:57,047 | INFO | Duck 0.207 0.000 0.135 ✓ +2026-07-13 08:29:57,047 | INFO | Animal 0.129 0.000 0.084 ✗ +2026-07-13 08:29:57,047 | INFO | Quack 0.113 0.000 0.073 ✗ +2026-07-13 08:29:57,047 | INFO | → WINNER: Goose (combined=0.362) +2026-07-13 08:29:57,097 | INFO | +[ 78.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,097 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,097 | INFO | Goose 0.377 0.000 0.245 ✓ +2026-07-13 08:29:57,097 | INFO | Honk 0.350 0.000 0.227 ✓ +2026-07-13 08:29:57,097 | INFO | Duck 0.318 0.000 0.207 ✓ +2026-07-13 08:29:57,097 | INFO | Quack 0.183 0.000 0.119 ✗ +2026-07-13 08:29:57,097 | INFO | Bird 0.155 0.000 0.101 ✗ +2026-07-13 08:29:57,097 | INFO | Animal 0.146 0.000 0.095 ✗ +2026-07-13 08:29:57,105 | INFO | → WINNER: Goose (combined=0.245) +2026-07-13 08:29:57,156 | INFO | +[ 78.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,156 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,156 | INFO | Goose 0.487 0.000 0.317 ✓ +2026-07-13 08:29:57,156 | INFO | Fowl 0.393 0.000 0.256 ✓ +2026-07-13 08:29:57,156 | INFO | Honk 0.393 0.000 0.255 ✓ +2026-07-13 08:29:57,156 | INFO | Duck 0.384 0.000 0.249 ✓ +2026-07-13 08:29:57,156 | INFO | Animal 0.238 0.000 0.155 ✓ +2026-07-13 08:29:57,156 | INFO | Bird vocalization, bird call, bird song 0.037 0.314 0.134 ✓ +2026-07-13 08:29:57,156 | INFO | → WINNER: Goose (combined=0.317) +2026-07-13 08:29:57,211 | INFO | +[ 78.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,211 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,211 | INFO | Fowl 0.698 0.000 0.454 ✓ +2026-07-13 08:29:57,211 | INFO | Turkey 0.378 0.000 0.246 ✓ +2026-07-13 08:29:57,211 | INFO | Gobble 0.342 0.000 0.222 ✓ +2026-07-13 08:29:57,211 | INFO | Goose 0.242 0.000 0.157 ✓ +2026-07-13 08:29:57,211 | INFO | Bird vocalization, bird call, bird song 0.033 0.314 0.131 ✓ +2026-07-13 08:29:57,213 | INFO | Honk 0.157 0.000 0.102 ✗ +2026-07-13 08:29:57,213 | INFO | → WINNER: Fowl (combined=0.454) +2026-07-13 08:29:57,260 | INFO | +[ 78.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,260 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,260 | INFO | Duck 0.230 0.000 0.150 ✓ +2026-07-13 08:29:57,260 | INFO | Bird vocalization, bird call, bird song 0.041 0.314 0.136 ✓ +2026-07-13 08:29:57,260 | INFO | Animal 0.173 0.000 0.113 ✗ +2026-07-13 08:29:57,260 | INFO | Bird 0.153 0.000 0.100 ✗ +2026-07-13 08:29:57,260 | INFO | Turkey 0.133 0.000 0.086 ✗ +2026-07-13 08:29:57,260 | INFO | Goose 0.120 0.000 0.078 ✗ +2026-07-13 08:29:57,260 | INFO | → WINNER: Duck (combined=0.150) +2026-07-13 08:29:57,294 | INFO | +[ 79.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,295 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,295 | INFO | Fowl 0.577 0.000 0.375 ✓ +2026-07-13 08:29:57,295 | INFO | Turkey 0.391 0.000 0.254 ✓ +2026-07-13 08:29:57,295 | INFO | Gobble 0.329 0.000 0.214 ✓ +2026-07-13 08:29:57,295 | INFO | Bird vocalization, bird call, bird song 0.031 0.314 0.130 ✓ +2026-07-13 08:29:57,295 | INFO | Goose 0.170 0.000 0.110 ✗ +2026-07-13 08:29:57,295 | INFO | Honk 0.150 0.000 0.098 ✗ +2026-07-13 08:29:57,295 | INFO | → WINNER: Fowl (combined=0.375) +2026-07-13 08:29:57,325 | INFO | +[ 79.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,325 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,325 | INFO | Bird vocalization, bird call, bird song 0.031 0.314 0.130 ✓ +2026-07-13 08:29:57,325 | INFO | Animal 0.155 0.000 0.101 ✗ +2026-07-13 08:29:57,327 | INFO | Duck 0.119 0.000 0.078 ✗ +2026-07-13 08:29:57,327 | INFO | Turkey 0.118 0.000 0.077 ✗ +2026-07-13 08:29:57,327 | INFO | Bird 0.104 0.000 0.068 ✗ +2026-07-13 08:29:57,327 | INFO | Gobble 0.083 0.000 0.054 ✗ +2026-07-13 08:29:57,327 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.130) +2026-07-13 08:29:57,352 | INFO | +[ 79.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,352 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,352 | INFO | Animal 0.292 0.000 0.190 ✓ +2026-07-13 08:29:57,352 | INFO | Bird vocalization, bird call, bird song 0.105 0.314 0.178 ✓ +2026-07-13 08:29:57,352 | INFO | Bird 0.270 0.000 0.175 ✓ +2026-07-13 08:29:57,352 | INFO | Domestic animals, pets 0.137 0.000 0.089 ✗ +2026-07-13 08:29:57,352 | INFO | Duck 0.121 0.000 0.079 ✗ +2026-07-13 08:29:57,352 | INFO | Chirp, tweet 0.091 0.000 0.059 ✗ +2026-07-13 08:29:57,352 | INFO | → WINNER: Animal (combined=0.190) +2026-07-13 08:29:57,378 | INFO | +[ 79.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,385 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,385 | INFO | Bird vocalization, bird call, bird song 0.341 0.314 0.331 ✓ +2026-07-13 08:29:57,385 | INFO | Bird 0.496 0.000 0.323 ✓ +2026-07-13 08:29:57,385 | INFO | Chirp, tweet 0.321 0.000 0.209 ✓ +2026-07-13 08:29:57,385 | INFO | Environmental noise 0.055 0.350 0.158 ✓ +2026-07-13 08:29:57,385 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:29:57,385 | INFO | Domestic animals, pets 0.090 0.000 0.059 ✗ +2026-07-13 08:29:57,385 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.331) +2026-07-13 08:29:57,415 | INFO | +[ 79.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,415 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,417 | INFO | Bird vocalization, bird call, bird song 0.342 0.314 0.332 ✓ +2026-07-13 08:29:57,417 | INFO | Bird 0.508 0.000 0.330 ✓ +2026-07-13 08:29:57,418 | INFO | Chirp, tweet 0.371 0.000 0.241 ✓ +2026-07-13 08:29:57,418 | INFO | Animal 0.139 0.000 0.090 ✗ +2026-07-13 08:29:57,418 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.332) +2026-07-13 08:29:57,443 | INFO | +[ 80.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,443 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,443 | INFO | Bird vocalization, bird call, bird song 0.236 0.314 0.263 ✓ +2026-07-13 08:29:57,443 | INFO | Bird 0.389 0.000 0.253 ✓ +2026-07-13 08:29:57,443 | INFO | Environmental noise 0.114 0.350 0.196 ✓ +2026-07-13 08:29:57,443 | INFO | Chirp, tweet 0.194 0.000 0.126 ✓ +2026-07-13 08:29:57,443 | INFO | Animal 0.165 0.000 0.107 ✗ +2026-07-13 08:29:57,443 | INFO | Outside, rural or natural 0.074 0.000 0.048 ✗ +2026-07-13 08:29:57,443 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.263) +2026-07-13 08:29:57,469 | INFO | +[ 80.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,469 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,469 | INFO | Bird vocalization, bird call, bird song 0.094 0.314 0.171 ✓ +2026-07-13 08:29:57,469 | INFO | Environmental noise 0.068 0.350 0.167 ✓ +2026-07-13 08:29:57,474 | INFO | Bird 0.211 0.000 0.137 ✓ +2026-07-13 08:29:57,474 | INFO | Animal 0.163 0.000 0.106 ✗ +2026-07-13 08:29:57,474 | INFO | Chirp, tweet 0.070 0.000 0.046 ✗ +2026-07-13 08:29:57,474 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.171) +2026-07-13 08:29:57,499 | INFO | +[ 80.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,499 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,499 | INFO | Animal 0.290 0.000 0.189 ✓ +2026-07-13 08:29:57,499 | INFO | Environmental noise 0.089 0.350 0.180 ✓ +2026-07-13 08:29:57,499 | INFO | Bird vocalization, bird call, bird song 0.054 0.314 0.145 ✓ +2026-07-13 08:29:57,499 | INFO | Bird 0.142 0.000 0.092 ✗ +2026-07-13 08:29:57,499 | INFO | Outside, rural or natural 0.076 0.000 0.049 ✗ +2026-07-13 08:29:57,499 | INFO | → WINNER: Animal (combined=0.189) +2026-07-13 08:29:57,529 | INFO | +[ 80.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,529 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,529 | INFO | Animal 0.359 0.000 0.233 ✓ +2026-07-13 08:29:57,529 | INFO | Environmental noise 0.118 0.350 0.200 ✓ +2026-07-13 08:29:57,529 | INFO | Bird vocalization, bird call, bird song 0.049 0.314 0.142 ✓ +2026-07-13 08:29:57,531 | INFO | Bird 0.135 0.000 0.088 ✗ +2026-07-13 08:29:57,531 | INFO | Outside, rural or natural 0.089 0.000 0.058 ✗ +2026-07-13 08:29:57,531 | INFO | → WINNER: Animal (combined=0.233) +2026-07-13 08:29:57,558 | INFO | +[ 80.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,558 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,558 | INFO | Environmental noise 0.135 0.350 0.210 ✓ +2026-07-13 08:29:57,558 | INFO | Animal 0.311 0.000 0.202 ✓ +2026-07-13 08:29:57,558 | INFO | Bird vocalization, bird call, bird song 0.062 0.314 0.150 ✓ +2026-07-13 08:29:57,558 | INFO | Bird 0.155 0.000 0.101 ✗ +2026-07-13 08:29:57,558 | INFO | Outside, rural or natural 0.066 0.000 0.043 ✗ +2026-07-13 08:29:57,558 | INFO | Chirp, tweet 0.054 0.000 0.035 ✗ +2026-07-13 08:29:57,558 | INFO | → WINNER: Environmental noise (combined=0.210) +2026-07-13 08:29:57,582 | INFO | +[ 81.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,582 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,589 | INFO | Environmental noise 0.199 0.350 0.252 ✓ +2026-07-13 08:29:57,589 | INFO | Animal 0.263 0.000 0.171 ✓ +2026-07-13 08:29:57,589 | INFO | Bird vocalization, bird call, bird song 0.092 0.314 0.170 ✓ +2026-07-13 08:29:57,589 | INFO | Bird 0.204 0.000 0.132 ✓ +2026-07-13 08:29:57,589 | INFO | Outside, rural or natural 0.088 0.000 0.057 ✗ +2026-07-13 08:29:57,589 | INFO | Chirp, tweet 0.081 0.000 0.053 ✗ +2026-07-13 08:29:57,589 | INFO | → WINNER: Environmental noise (combined=0.252) +2026-07-13 08:29:57,615 | INFO | +[ 81.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,615 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,615 | INFO | Environmental noise 0.208 0.350 0.257 ✓ +2026-07-13 08:29:57,615 | INFO | Bird vocalization, bird call, bird song 0.095 0.314 0.171 ✓ +2026-07-13 08:29:57,615 | INFO | Animal 0.227 0.000 0.148 ✓ +2026-07-13 08:29:57,615 | INFO | Bird 0.192 0.000 0.125 ✓ +2026-07-13 08:29:57,615 | INFO | Outside, rural or natural 0.086 0.000 0.056 ✗ +2026-07-13 08:29:57,615 | INFO | Chirp, tweet 0.078 0.000 0.051 ✗ +2026-07-13 08:29:57,615 | INFO | → WINNER: Environmental noise (combined=0.257) +2026-07-13 08:29:57,647 | INFO | +[ 81.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,648 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,648 | INFO | Environmental noise 0.163 0.350 0.228 ✓ +2026-07-13 08:29:57,648 | INFO | Bird vocalization, bird call, bird song 0.088 0.314 0.167 ✓ +2026-07-13 08:29:57,648 | INFO | Animal 0.215 0.000 0.140 ✓ +2026-07-13 08:29:57,648 | INFO | Bird 0.180 0.000 0.117 ✗ +2026-07-13 08:29:57,648 | INFO | Outside, rural or natural 0.089 0.000 0.058 ✗ +2026-07-13 08:29:57,648 | INFO | Chirp, tweet 0.076 0.000 0.050 ✗ +2026-07-13 08:29:57,648 | INFO | → WINNER: Environmental noise (combined=0.228) +2026-07-13 08:29:57,678 | INFO | +[ 81.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,678 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,680 | INFO | Environmental noise 0.117 0.350 0.199 ✓ +2026-07-13 08:29:57,680 | INFO | Bird vocalization, bird call, bird song 0.068 0.314 0.154 ✓ +2026-07-13 08:29:57,680 | INFO | Animal 0.220 0.000 0.143 ✓ +2026-07-13 08:29:57,680 | INFO | Bird 0.168 0.000 0.109 ✗ +2026-07-13 08:29:57,680 | INFO | Outside, rural or natural 0.116 0.000 0.075 ✗ +2026-07-13 08:29:57,680 | INFO | → WINNER: Environmental noise (combined=0.199) +2026-07-13 08:29:57,705 | INFO | +[ 81.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,705 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,705 | INFO | Animal 0.304 0.000 0.198 ✓ +2026-07-13 08:29:57,709 | INFO | Environmental noise 0.093 0.350 0.183 ✓ +2026-07-13 08:29:57,709 | INFO | Bird vocalization, bird call, bird song 0.051 0.314 0.143 ✓ +2026-07-13 08:29:57,709 | INFO | Bird 0.152 0.000 0.099 ✗ +2026-07-13 08:29:57,709 | INFO | Outside, rural or natural 0.119 0.000 0.078 ✗ +2026-07-13 08:29:57,709 | INFO | Horse 0.063 0.000 0.041 ✗ +2026-07-13 08:29:57,709 | INFO | → WINNER: Animal (combined=0.198) +2026-07-13 08:29:57,738 | INFO | +[ 82.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,738 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,739 | INFO | Animal 0.339 0.000 0.221 ✓ +2026-07-13 08:29:57,739 | INFO | Environmental noise 0.105 0.350 0.191 ✓ +2026-07-13 08:29:57,739 | INFO | Bird vocalization, bird call, bird song 0.036 0.314 0.133 ✓ +2026-07-13 08:29:57,739 | INFO | Outside, rural or natural 0.132 0.000 0.086 ✗ +2026-07-13 08:29:57,739 | INFO | Bird 0.103 0.000 0.067 ✗ +2026-07-13 08:29:57,739 | INFO | Horse 0.079 0.000 0.051 ✗ +2026-07-13 08:29:57,739 | INFO | → WINNER: Animal (combined=0.221) +2026-07-13 08:29:57,763 | INFO | +[ 82.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,767 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,767 | INFO | Animal 0.460 0.000 0.299 ✓ +2026-07-13 08:29:57,767 | INFO | Environmental noise 0.086 0.350 0.178 ✓ +2026-07-13 08:29:57,767 | INFO | Bird vocalization, bird call, bird song 0.044 0.314 0.138 ✓ +2026-07-13 08:29:57,767 | INFO | Horse 0.170 0.000 0.111 ✗ +2026-07-13 08:29:57,767 | INFO | Clip-clop 0.146 0.000 0.095 ✗ +2026-07-13 08:29:57,767 | INFO | Bird 0.129 0.000 0.084 ✗ +2026-07-13 08:29:57,767 | INFO | → WINNER: Animal (combined=0.299) +2026-07-13 08:29:57,796 | INFO | +[ 82.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,796 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,796 | INFO | Animal 0.306 0.000 0.199 ✓ +2026-07-13 08:29:57,796 | INFO | Environmental noise 0.072 0.350 0.169 ✓ +2026-07-13 08:29:57,796 | INFO | Bird vocalization, bird call, bird song 0.041 0.314 0.137 ✓ +2026-07-13 08:29:57,796 | INFO | Bird 0.119 0.000 0.077 ✗ +2026-07-13 08:29:57,796 | INFO | Outside, rural or natural 0.094 0.000 0.061 ✗ +2026-07-13 08:29:57,796 | INFO | Horse 0.078 0.000 0.051 ✗ +2026-07-13 08:29:57,796 | INFO | → WINNER: Animal (combined=0.199) +2026-07-13 08:29:57,824 | INFO | +[ 82.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-07-13 08:29:57,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,826 | INFO | Environmental noise 0.111 0.350 0.194 ✓ +2026-07-13 08:29:57,826 | INFO | Animal 0.240 0.000 0.156 ✓ +2026-07-13 08:29:57,826 | INFO | Bird vocalization, bird call, bird song 0.064 0.314 0.151 ✓ +2026-07-13 08:29:57,826 | INFO | Bird 0.150 0.000 0.098 ✗ +2026-07-13 08:29:57,826 | INFO | Outside, rural or natural 0.076 0.000 0.050 ✗ +2026-07-13 08:29:57,826 | INFO | → WINNER: Environmental noise (combined=0.194) +2026-07-13 08:29:57,853 | INFO | +[ 94.00s] AMBIENT | scene='' +2026-07-13 08:29:57,853 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,853 | INFO | Animal 0.338 0.000 0.220 ✓ +2026-07-13 08:29:57,853 | INFO | Bird 0.137 0.000 0.089 ✗ +2026-07-13 08:29:57,853 | INFO | Environmental noise 0.073 0.000 0.047 ✗ +2026-07-13 08:29:57,853 | INFO | Outside, rural or natural 0.063 0.000 0.041 ✗ +2026-07-13 08:29:57,853 | INFO | Crow 0.055 0.000 0.036 ✗ +2026-07-13 08:29:57,853 | INFO | Bird vocalization, bird call, bird song 0.045 0.000 0.029 ✗ +2026-07-13 08:29:57,853 | INFO | → WINNER: Animal (combined=0.220) +2026-07-13 08:29:57,885 | INFO | +[ 94.20s] AMBIENT | scene='' +2026-07-13 08:29:57,885 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,885 | INFO | Animal 0.176 0.000 0.114 ✗ +2026-07-13 08:29:57,885 | INFO | Bird 0.101 0.000 0.066 ✗ +2026-07-13 08:29:57,885 | INFO | Environmental noise 0.085 0.000 0.055 ✗ +2026-07-13 08:29:57,885 | INFO | Music 0.067 0.000 0.044 ✗ +2026-07-13 08:29:57,885 | INFO | Crow 0.062 0.000 0.040 ✗ +2026-07-13 08:29:57,885 | INFO | Outside, rural or natural 0.058 0.000 0.038 ✗ +2026-07-13 08:29:57,885 | INFO | → no winner +2026-07-13 08:29:57,916 | INFO | +[ 94.40s] AMBIENT | scene='' +2026-07-13 08:29:57,916 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,916 | INFO | Music 0.420 0.000 0.273 ✓ +2026-07-13 08:29:57,916 | INFO | Crow 0.253 0.000 0.164 ✓ +2026-07-13 08:29:57,916 | INFO | Caw 0.215 0.000 0.140 ✓ +2026-07-13 08:29:57,918 | INFO | Animal 0.092 0.000 0.060 ✗ +2026-07-13 08:29:57,918 | INFO | Bird 0.048 0.000 0.031 ✗ +2026-07-13 08:29:57,918 | INFO | → WINNER: Music (combined=0.273) +2026-07-13 08:29:57,943 | INFO | +[ 94.60s] AMBIENT | scene='' +2026-07-13 08:29:57,943 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,943 | INFO | Crow 0.741 0.000 0.482 ✓ +2026-07-13 08:29:57,943 | INFO | Caw 0.617 0.000 0.401 ✓ +2026-07-13 08:29:57,943 | INFO | Animal 0.218 0.000 0.141 ✓ +2026-07-13 08:29:57,943 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:29:57,943 | INFO | → WINNER: Crow (combined=0.482) +2026-07-13 08:29:57,972 | INFO | +[ 94.80s] AMBIENT | scene='' +2026-07-13 08:29:57,972 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:57,972 | INFO | Crow 0.793 0.000 0.515 ✓ +2026-07-13 08:29:57,972 | INFO | Caw 0.609 0.000 0.396 ✓ +2026-07-13 08:29:57,972 | INFO | Animal 0.260 0.000 0.169 ✓ +2026-07-13 08:29:57,976 | INFO | Bird 0.200 0.000 0.130 ✓ +2026-07-13 08:29:57,976 | INFO | → WINNER: Crow (combined=0.515) +2026-07-13 08:29:58,001 | INFO | +[ 95.00s] AMBIENT | scene='' +2026-07-13 08:29:58,001 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,001 | INFO | Crow 0.741 0.000 0.481 ✓ +2026-07-13 08:29:58,001 | INFO | Caw 0.506 0.000 0.329 ✓ +2026-07-13 08:29:58,001 | INFO | Animal 0.304 0.000 0.197 ✓ +2026-07-13 08:29:58,001 | INFO | Bird 0.261 0.000 0.170 ✓ +2026-07-13 08:29:58,001 | INFO | → WINNER: Crow (combined=0.481) +2026-07-13 08:29:58,033 | INFO | +[ 95.20s] AMBIENT | scene='' +2026-07-13 08:29:58,034 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,034 | INFO | Animal 0.366 0.000 0.238 ✓ +2026-07-13 08:29:58,034 | INFO | Bird 0.221 0.000 0.143 ✓ +2026-07-13 08:29:58,034 | INFO | Crow 0.195 0.000 0.127 ✓ +2026-07-13 08:29:58,034 | INFO | Duck 0.145 0.000 0.094 ✗ +2026-07-13 08:29:58,034 | INFO | Caw 0.124 0.000 0.081 ✗ +2026-07-13 08:29:58,034 | INFO | Bird vocalization, bird call, bird song 0.061 0.000 0.039 ✗ +2026-07-13 08:29:58,034 | INFO | → WINNER: Animal (combined=0.238) +2026-07-13 08:29:58,062 | INFO | +[ 95.40s] AMBIENT | scene='' +2026-07-13 08:29:58,062 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,062 | INFO | Duck 0.369 0.000 0.240 ✓ +2026-07-13 08:29:58,062 | INFO | Animal 0.260 0.000 0.169 ✓ +2026-07-13 08:29:58,064 | INFO | Bird 0.190 0.000 0.123 ✓ +2026-07-13 08:29:58,064 | INFO | Quack 0.182 0.000 0.118 ✗ +2026-07-13 08:29:58,064 | INFO | Goose 0.130 0.000 0.084 ✗ +2026-07-13 08:29:58,064 | INFO | Honk 0.112 0.000 0.072 ✗ +2026-07-13 08:29:58,066 | INFO | → WINNER: Duck (combined=0.240) +2026-07-13 08:29:58,092 | INFO | +[ 95.60s] AMBIENT | scene='' +2026-07-13 08:29:58,092 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,092 | INFO | Animal 0.332 0.000 0.216 ✓ +2026-07-13 08:29:58,092 | INFO | Bird 0.218 0.000 0.141 ✓ +2026-07-13 08:29:58,092 | INFO | Crow 0.103 0.000 0.067 ✗ +2026-07-13 08:29:58,092 | INFO | Domestic animals, pets 0.091 0.000 0.059 ✗ +2026-07-13 08:29:58,092 | INFO | Chicken, rooster 0.072 0.000 0.047 ✗ +2026-07-13 08:29:58,092 | INFO | Outside, rural or natural 0.069 0.000 0.045 ✗ +2026-07-13 08:29:58,092 | INFO | → WINNER: Animal (combined=0.216) +2026-07-13 08:29:58,124 | INFO | +[ 95.80s] AMBIENT | scene='' +2026-07-13 08:29:58,124 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,124 | INFO | Animal 0.222 0.000 0.144 ✓ +2026-07-13 08:29:58,124 | INFO | Crow 0.207 0.000 0.134 ✓ +2026-07-13 08:29:58,124 | INFO | Bird 0.199 0.000 0.129 ✓ +2026-07-13 08:29:58,124 | INFO | Caw 0.140 0.000 0.091 ✗ +2026-07-13 08:29:58,124 | INFO | Outside, rural or natural 0.064 0.000 0.042 ✗ +2026-07-13 08:29:58,124 | INFO | Bird vocalization, bird call, bird song 0.063 0.000 0.041 ✗ +2026-07-13 08:29:58,124 | INFO | → WINNER: Animal (combined=0.144) +2026-07-13 08:29:58,153 | INFO | +[ 96.00s] AMBIENT | scene='' +2026-07-13 08:29:58,153 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,153 | INFO | Animal 0.232 0.000 0.151 ✓ +2026-07-13 08:29:58,153 | INFO | Bird 0.220 0.000 0.143 ✓ +2026-07-13 08:29:58,153 | INFO | Crow 0.180 0.000 0.117 ✗ +2026-07-13 08:29:58,153 | INFO | Caw 0.108 0.000 0.070 ✗ +2026-07-13 08:29:58,153 | INFO | Outside, rural or natural 0.069 0.000 0.045 ✗ +2026-07-13 08:29:58,157 | INFO | Bird vocalization, bird call, bird song 0.043 0.000 0.028 ✗ +2026-07-13 08:29:58,157 | INFO | → WINNER: Animal (combined=0.151) +2026-07-13 08:29:58,182 | INFO | +[ 96.20s] AMBIENT | scene='' +2026-07-13 08:29:58,182 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,182 | INFO | Bird 0.309 0.000 0.201 ✓ +2026-07-13 08:29:58,182 | INFO | Animal 0.256 0.000 0.167 ✓ +2026-07-13 08:29:58,182 | INFO | Duck 0.228 0.000 0.148 ✓ +2026-07-13 08:29:58,182 | INFO | Crow 0.123 0.000 0.080 ✗ +2026-07-13 08:29:58,182 | INFO | Goose 0.099 0.000 0.065 ✗ +2026-07-13 08:29:58,182 | INFO | Caw 0.054 0.000 0.035 ✗ +2026-07-13 08:29:58,182 | INFO | → WINNER: Bird (combined=0.201) +2026-07-13 08:29:58,211 | INFO | +[ 96.40s] AMBIENT | scene='' +2026-07-13 08:29:58,211 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,213 | INFO | Duck 0.439 0.000 0.285 ✓ +2026-07-13 08:29:58,213 | INFO | Bird 0.267 0.000 0.174 ✓ +2026-07-13 08:29:58,213 | INFO | Animal 0.230 0.000 0.149 ✓ +2026-07-13 08:29:58,213 | INFO | Goose 0.208 0.000 0.135 ✓ +2026-07-13 08:29:58,213 | INFO | Quack 0.190 0.000 0.124 ✓ +2026-07-13 08:29:58,213 | INFO | Honk 0.139 0.000 0.090 ✗ +2026-07-13 08:29:58,213 | INFO | → WINNER: Duck (combined=0.285) +2026-07-13 08:29:58,240 | INFO | +[ 96.60s] AMBIENT | scene='' +2026-07-13 08:29:58,240 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,240 | INFO | Animal 0.178 0.000 0.116 ✗ +2026-07-13 08:29:58,240 | INFO | Bird 0.070 0.000 0.045 ✗ +2026-07-13 08:29:58,240 | INFO | Rodents, rats, mice 0.055 0.000 0.036 ✗ +2026-07-13 08:29:58,240 | INFO | → no winner +2026-07-13 08:29:58,265 | INFO | +[ 96.80s] AMBIENT | scene='' +2026-07-13 08:29:58,265 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,265 | INFO | Frog 0.359 0.000 0.233 ✓ +2026-07-13 08:29:58,265 | INFO | Croak 0.124 0.000 0.081 ✗ +2026-07-13 08:29:58,265 | INFO | Animal 0.090 0.000 0.059 ✗ +2026-07-13 08:29:58,271 | INFO | Bird 0.060 0.000 0.039 ✗ +2026-07-13 08:29:58,271 | INFO | → WINNER: Frog (combined=0.233) +2026-07-13 08:29:58,296 | INFO | +[ 97.00s] AMBIENT | scene='' +2026-07-13 08:29:58,296 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,296 | INFO | Frog 0.121 0.000 0.079 ✗ +2026-07-13 08:29:58,296 | INFO | Bird 0.049 0.000 0.032 ✗ +2026-07-13 08:29:58,296 | INFO | → no winner +2026-07-13 08:29:58,329 | INFO | +[ 97.20s] AMBIENT | scene='' +2026-07-13 08:29:58,329 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,329 | INFO | Animal 0.128 0.000 0.083 ✗ +2026-07-13 08:29:58,329 | INFO | Goose 0.098 0.000 0.064 ✗ +2026-07-13 08:29:58,329 | INFO | Duck 0.097 0.000 0.063 ✗ +2026-07-13 08:29:58,329 | INFO | Bird 0.083 0.000 0.054 ✗ +2026-07-13 08:29:58,329 | INFO | Crow 0.078 0.000 0.051 ✗ +2026-07-13 08:29:58,329 | INFO | Music 0.062 0.000 0.041 ✗ +2026-07-13 08:29:58,329 | INFO | → no winner +2026-07-13 08:29:58,354 | INFO | +[ 97.40s] AMBIENT | scene='' +2026-07-13 08:29:58,354 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,354 | INFO | Honk 0.180 0.000 0.117 ✗ +2026-07-13 08:29:58,354 | INFO | Goose 0.172 0.000 0.112 ✗ +2026-07-13 08:29:58,354 | INFO | Animal 0.108 0.000 0.070 ✗ +2026-07-13 08:29:58,354 | INFO | Duck 0.098 0.000 0.064 ✗ +2026-07-13 08:29:58,354 | INFO | Bird 0.071 0.000 0.046 ✗ +2026-07-13 08:29:58,354 | INFO | Crow 0.049 0.000 0.032 ✗ +2026-07-13 08:29:58,354 | INFO | → no winner +2026-07-13 08:29:58,387 | INFO | +[ 97.60s] AMBIENT | scene='' +2026-07-13 08:29:58,388 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,388 | INFO | Animal 0.165 0.000 0.107 ✗ +2026-07-13 08:29:58,388 | INFO | Music 0.097 0.000 0.063 ✗ +2026-07-13 08:29:58,388 | INFO | Horse 0.057 0.000 0.037 ✗ +2026-07-13 08:29:58,388 | INFO | Bird 0.048 0.000 0.031 ✗ +2026-07-13 08:29:58,388 | INFO | → no winner +2026-07-13 08:29:58,412 | INFO | +[ 97.80s] AMBIENT | scene='' +2026-07-13 08:29:58,412 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,412 | INFO | Music 0.160 0.000 0.104 ✗ +2026-07-13 08:29:58,412 | INFO | Tap 0.064 0.000 0.042 ✗ +2026-07-13 08:29:58,412 | INFO | Chop 0.057 0.000 0.037 ✗ +2026-07-13 08:29:58,412 | INFO | → no winner +2026-07-13 08:29:58,436 | INFO | +[ 98.00s] AMBIENT | scene='' +2026-07-13 08:29:58,444 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,444 | INFO | Music 0.083 0.000 0.054 ✗ +2026-07-13 08:29:58,444 | INFO | → no winner +2026-07-13 08:29:58,471 | INFO | +[ 98.20s] AMBIENT | scene='' +2026-07-13 08:29:58,471 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,471 | INFO | Animal 0.268 0.000 0.174 ✓ +2026-07-13 08:29:58,471 | INFO | Clip-clop 0.092 0.000 0.060 ✗ +2026-07-13 08:29:58,471 | INFO | Horse 0.092 0.000 0.059 ✗ +2026-07-13 08:29:58,471 | INFO | Bird 0.090 0.000 0.058 ✗ +2026-07-13 08:29:58,471 | INFO | Outside, rural or natural 0.056 0.000 0.036 ✗ +2026-07-13 08:29:58,471 | INFO | Walk, footsteps 0.042 0.000 0.027 ✗ +2026-07-13 08:29:58,471 | INFO | → WINNER: Animal (combined=0.174) +2026-07-13 08:29:58,500 | INFO | +[ 98.40s] AMBIENT | scene='' +2026-07-13 08:29:58,502 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,502 | INFO | Animal 0.377 0.000 0.245 ✓ +2026-07-13 08:29:58,502 | INFO | Bird 0.142 0.000 0.092 ✗ +2026-07-13 08:29:58,502 | INFO | Horse 0.118 0.000 0.077 ✗ +2026-07-13 08:29:58,502 | INFO | Clip-clop 0.118 0.000 0.077 ✗ +2026-07-13 08:29:58,502 | INFO | Outside, rural or natural 0.099 0.000 0.064 ✗ +2026-07-13 08:29:58,502 | INFO | Walk, footsteps 0.068 0.000 0.044 ✗ +2026-07-13 08:29:58,502 | INFO | → WINNER: Animal (combined=0.245) +2026-07-13 08:29:58,527 | INFO | +[ 98.60s] AMBIENT | scene='' +2026-07-13 08:29:58,527 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,527 | INFO | Animal 0.346 0.000 0.225 ✓ +2026-07-13 08:29:58,527 | INFO | Bird 0.221 0.000 0.143 ✓ +2026-07-13 08:29:58,527 | INFO | Outside, rural or natural 0.076 0.000 0.050 ✗ +2026-07-13 08:29:58,532 | INFO | Chicken, rooster 0.074 0.000 0.048 ✗ +2026-07-13 08:29:58,532 | INFO | Horse 0.061 0.000 0.040 ✗ +2026-07-13 08:29:58,532 | INFO | Patter 0.053 0.000 0.035 ✗ +2026-07-13 08:29:58,532 | INFO | → WINNER: Animal (combined=0.225) +2026-07-13 08:29:58,559 | INFO | +[ 98.80s] AMBIENT | scene='' +2026-07-13 08:29:58,559 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,559 | INFO | Bird 0.278 0.000 0.181 ✓ +2026-07-13 08:29:58,559 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:29:58,559 | INFO | Chicken, rooster 0.171 0.000 0.111 ✗ +2026-07-13 08:29:58,559 | INFO | Livestock, farm animals, working animals 0.093 0.000 0.060 ✗ +2026-07-13 08:29:58,559 | INFO | Cluck 0.085 0.000 0.055 ✗ +2026-07-13 08:29:58,559 | INFO | Bird vocalization, bird call, bird song 0.061 0.000 0.040 ✗ +2026-07-13 08:29:58,559 | INFO | → WINNER: Bird (combined=0.181) +2026-07-13 08:29:58,587 | INFO | +[ 99.00s] AMBIENT | scene='' +2026-07-13 08:29:58,587 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,587 | INFO | Bird 0.329 0.000 0.214 ✓ +2026-07-13 08:29:58,587 | INFO | Animal 0.203 0.000 0.132 ✓ +2026-07-13 08:29:58,587 | INFO | Duck 0.196 0.000 0.128 ✓ +2026-07-13 08:29:58,592 | INFO | Chicken, rooster 0.178 0.000 0.116 ✗ +2026-07-13 08:29:58,592 | INFO | Livestock, farm animals, working animals 0.097 0.000 0.063 ✗ +2026-07-13 08:29:58,592 | INFO | Cluck 0.093 0.000 0.060 ✗ +2026-07-13 08:29:58,592 | INFO | → WINNER: Bird (combined=0.214) +2026-07-13 08:29:58,620 | INFO | +[ 99.20s] AMBIENT | scene='' +2026-07-13 08:29:58,620 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,620 | INFO | Bird 0.231 0.000 0.150 ✓ +2026-07-13 08:29:58,620 | INFO | Animal 0.181 0.000 0.118 ✗ +2026-07-13 08:29:58,620 | INFO | Patter 0.078 0.000 0.051 ✗ +2026-07-13 08:29:58,620 | INFO | Rodents, rats, mice 0.068 0.000 0.044 ✗ +2026-07-13 08:29:58,620 | INFO | Bird vocalization, bird call, bird song 0.062 0.000 0.041 ✗ +2026-07-13 08:29:58,620 | INFO | Bird flight, flapping wings 0.055 0.000 0.036 ✗ +2026-07-13 08:29:58,620 | INFO | → WINNER: Bird (combined=0.150) +2026-07-13 08:29:58,642 | INFO | +[ 99.40s] AMBIENT | scene='' +2026-07-13 08:29:58,642 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,642 | INFO | Animal 0.503 0.000 0.327 ✓ +2026-07-13 08:29:58,649 | INFO | Bird 0.161 0.000 0.105 ✗ +2026-07-13 08:29:58,649 | INFO | Duck 0.107 0.000 0.070 ✗ +2026-07-13 08:29:58,649 | INFO | Horse 0.085 0.000 0.056 ✗ +2026-07-13 08:29:58,649 | INFO | Outside, rural or natural 0.085 0.000 0.055 ✗ +2026-07-13 08:29:58,649 | INFO | Clip-clop 0.069 0.000 0.045 ✗ +2026-07-13 08:29:58,649 | INFO | → WINNER: Animal (combined=0.327) +2026-07-13 08:29:58,677 | INFO | +[ 99.60s] AMBIENT | scene='' +2026-07-13 08:29:58,677 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,677 | INFO | Animal 0.460 0.000 0.299 ✓ +2026-07-13 08:29:58,677 | INFO | Horse 0.122 0.000 0.079 ✗ +2026-07-13 08:29:58,677 | INFO | Clip-clop 0.107 0.000 0.069 ✗ +2026-07-13 08:29:58,677 | INFO | Bird 0.092 0.000 0.060 ✗ +2026-07-13 08:29:58,677 | INFO | Outside, rural or natural 0.083 0.000 0.054 ✗ +2026-07-13 08:29:58,680 | INFO | Patter 0.070 0.000 0.045 ✗ +2026-07-13 08:29:58,680 | INFO | → WINNER: Animal (combined=0.299) +2026-07-13 08:29:58,699 | INFO | +[ 99.80s] AMBIENT | scene='' +2026-07-13 08:29:58,707 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,707 | INFO | Animal 0.339 0.000 0.221 ✓ +2026-07-13 08:29:58,707 | INFO | Horse 0.070 0.000 0.046 ✗ +2026-07-13 08:29:58,707 | INFO | Clip-clop 0.070 0.000 0.045 ✗ +2026-07-13 08:29:58,707 | INFO | Patter 0.063 0.000 0.041 ✗ +2026-07-13 08:29:58,707 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:29:58,707 | INFO | Bird 0.057 0.000 0.037 ✗ +2026-07-13 08:29:58,707 | INFO | → WINNER: Animal (combined=0.221) +2026-07-13 08:29:58,735 | INFO | +[100.00s] AMBIENT | scene='' +2026-07-13 08:29:58,736 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,736 | INFO | Animal 0.376 0.000 0.244 ✓ +2026-07-13 08:29:58,736 | INFO | Clip-clop 0.162 0.000 0.105 ✗ +2026-07-13 08:29:58,736 | INFO | Mechanisms 0.140 0.000 0.091 ✗ +2026-07-13 08:29:58,736 | INFO | Horse 0.140 0.000 0.091 ✗ +2026-07-13 08:29:58,736 | INFO | Patter 0.129 0.000 0.084 ✗ +2026-07-13 08:29:58,736 | INFO | Ratchet, pawl 0.093 0.000 0.060 ✗ +2026-07-13 08:29:58,736 | INFO | → WINNER: Animal (combined=0.244) +2026-07-13 08:29:58,767 | INFO | +[100.20s] AMBIENT | scene='' +2026-07-13 08:29:58,767 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,767 | INFO | Mechanisms 0.324 0.000 0.210 ✓ +2026-07-13 08:29:58,767 | INFO | Ratchet, pawl 0.226 0.000 0.147 ✓ +2026-07-13 08:29:58,767 | INFO | Gears 0.184 0.000 0.119 ✗ +2026-07-13 08:29:58,767 | INFO | Animal 0.180 0.000 0.117 ✗ +2026-07-13 08:29:58,767 | INFO | Patter 0.080 0.000 0.052 ✗ +2026-07-13 08:29:58,767 | INFO | Pulleys 0.064 0.000 0.042 ✗ +2026-07-13 08:29:58,767 | INFO | → WINNER: Mechanisms (combined=0.210) +2026-07-13 08:29:58,792 | INFO | +[100.40s] AMBIENT | scene='' +2026-07-13 08:29:58,798 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,798 | INFO | Animal 0.560 0.000 0.364 ✓ +2026-07-13 08:29:58,798 | INFO | Horse 0.207 0.000 0.134 ✓ +2026-07-13 08:29:58,798 | INFO | Clip-clop 0.171 0.000 0.111 ✗ +2026-07-13 08:29:58,798 | INFO | Bird 0.093 0.000 0.061 ✗ +2026-07-13 08:29:58,798 | INFO | Outside, rural or natural 0.086 0.000 0.056 ✗ +2026-07-13 08:29:58,798 | INFO | Patter 0.058 0.000 0.038 ✗ +2026-07-13 08:29:58,798 | INFO | → WINNER: Animal (combined=0.364) +2026-07-13 08:29:58,824 | INFO | +[100.60s] AMBIENT | scene='' +2026-07-13 08:29:58,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,826 | INFO | Animal 0.584 0.000 0.380 ✓ +2026-07-13 08:29:58,826 | INFO | Horse 0.278 0.000 0.180 ✓ +2026-07-13 08:29:58,826 | INFO | Clip-clop 0.249 0.000 0.162 ✓ +2026-07-13 08:29:58,826 | INFO | Outside, rural or natural 0.080 0.000 0.052 ✗ +2026-07-13 08:29:58,826 | INFO | Patter 0.063 0.000 0.041 ✗ +2026-07-13 08:29:58,826 | INFO | Bird 0.054 0.000 0.035 ✗ +2026-07-13 08:29:58,826 | INFO | → WINNER: Animal (combined=0.380) +2026-07-13 08:29:58,853 | INFO | +[100.80s] AMBIENT | scene='' +2026-07-13 08:29:58,853 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,855 | INFO | Animal 0.430 0.000 0.279 ✓ +2026-07-13 08:29:58,855 | INFO | Patter 0.156 0.000 0.102 ✗ +2026-07-13 08:29:58,855 | INFO | Bird 0.119 0.000 0.077 ✗ +2026-07-13 08:29:58,857 | INFO | Outside, rural or natural 0.101 0.000 0.065 ✗ +2026-07-13 08:29:58,857 | INFO | Horse 0.100 0.000 0.065 ✗ +2026-07-13 08:29:58,857 | INFO | Clip-clop 0.086 0.000 0.056 ✗ +2026-07-13 08:29:58,857 | INFO | → WINNER: Animal (combined=0.279) +2026-07-13 08:29:58,884 | INFO | +[101.00s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:29:58,884 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,884 | INFO | Animal 0.391 0.000 0.254 ✓ +2026-07-13 08:29:58,884 | INFO | Bird 0.138 0.000 0.090 ✗ +2026-07-13 08:29:58,884 | INFO | Patter 0.113 0.000 0.073 ✗ +2026-07-13 08:29:58,887 | INFO | Outside, rural or natural 0.091 0.000 0.059 ✗ +2026-07-13 08:29:58,887 | INFO | Horse 0.083 0.000 0.054 ✗ +2026-07-13 08:29:58,887 | INFO | Clip-clop 0.065 0.000 0.042 ✗ +2026-07-13 08:29:58,887 | INFO | → WINNER: Animal (combined=0.254) +2026-07-13 08:29:58,913 | INFO | +[101.20s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:29:58,913 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,915 | INFO | Animal 0.383 0.000 0.249 ✓ +2026-07-13 08:29:58,915 | INFO | Patter 0.189 0.000 0.123 ✓ +2026-07-13 08:29:58,915 | INFO | Bird 0.100 0.000 0.065 ✗ +2026-07-13 08:29:58,916 | INFO | Outside, rural or natural 0.089 0.000 0.058 ✗ +2026-07-13 08:29:58,916 | INFO | Rodents, rats, mice 0.075 0.000 0.049 ✗ +2026-07-13 08:29:58,916 | INFO | Horse 0.074 0.000 0.048 ✗ +2026-07-13 08:29:58,916 | INFO | → WINNER: Animal (combined=0.249) +2026-07-13 08:29:58,941 | INFO | +[101.40s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:29:58,943 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,943 | INFO | Animal 0.418 0.000 0.272 ✓ +2026-07-13 08:29:58,943 | INFO | Environmental noise 0.062 0.313 0.150 ✓ +2026-07-13 08:29:58,943 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:29:58,943 | INFO | Outside, rural or natural 0.103 0.000 0.067 ✗ +2026-07-13 08:29:58,943 | INFO | Horse 0.101 0.000 0.066 ✗ +2026-07-13 08:29:58,943 | INFO | Clip-clop 0.091 0.000 0.059 ✗ +2026-07-13 08:29:58,943 | INFO | → WINNER: Animal (combined=0.272) +2026-07-13 08:29:58,995 | INFO | +[190.20s] AMBIENT | scene='' +2026-07-13 08:29:58,995 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:58,995 | INFO | Animal 0.162 0.000 0.105 ✗ +2026-07-13 08:29:58,995 | INFO | Mouse 0.110 0.000 0.072 ✗ +2026-07-13 08:29:58,995 | INFO | Bird 0.107 0.000 0.070 ✗ +2026-07-13 08:29:58,995 | INFO | Patter 0.062 0.000 0.041 ✗ +2026-07-13 08:29:58,995 | INFO | Rodents, rats, mice 0.061 0.000 0.040 ✗ +2026-07-13 08:29:58,995 | INFO | Outside, rural or natural 0.056 0.000 0.036 ✗ +2026-07-13 08:29:58,995 | INFO | → no winner +2026-07-13 08:29:59,028 | INFO | +[190.40s] AMBIENT | scene='' +2026-07-13 08:29:59,028 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,028 | INFO | Animal 0.164 0.000 0.107 ✗ +2026-07-13 08:29:59,029 | INFO | Bird 0.090 0.000 0.058 ✗ +2026-07-13 08:29:59,029 | INFO | Mouse 0.079 0.000 0.052 ✗ +2026-07-13 08:29:59,029 | INFO | Vehicle 0.065 0.000 0.042 ✗ +2026-07-13 08:29:59,029 | INFO | Bird vocalization, bird call, bird song 0.035 0.000 0.023 ✗ +2026-07-13 08:29:59,029 | INFO | → no winner +2026-07-13 08:29:59,056 | INFO | +[190.60s] AMBIENT | scene='' +2026-07-13 08:29:59,056 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,056 | INFO | Animal 0.112 0.000 0.073 ✗ +2026-07-13 08:29:59,056 | INFO | Bird 0.045 0.000 0.029 ✗ +2026-07-13 08:29:59,056 | INFO | → no winner +2026-07-13 08:29:59,111 | INFO | +[190.80s] AMBIENT | scene='' +2026-07-13 08:29:59,111 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,111 | INFO | Boiling 0.052 0.000 0.034 ✗ +2026-07-13 08:29:59,111 | INFO | Water 0.047 0.000 0.030 ✗ +2026-07-13 08:29:59,115 | INFO | → no winner +2026-07-13 08:29:59,167 | INFO | +[198.40s] AMBIENT | scene='' +2026-07-13 08:29:59,167 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,167 | INFO | Music 0.717 0.000 0.466 ✓ +2026-07-13 08:29:59,175 | INFO | Tabla 0.568 0.000 0.369 ✓ +2026-07-13 08:29:59,175 | INFO | Musical instrument 0.505 0.000 0.329 ✓ +2026-07-13 08:29:59,175 | INFO | Carnatic music 0.425 0.000 0.277 ✓ +2026-07-13 08:29:59,175 | INFO | Classical music 0.370 0.000 0.240 ✓ +2026-07-13 08:29:59,175 | INFO | Sitar 0.322 0.000 0.209 ✓ +2026-07-13 08:29:59,175 | INFO | → WINNER: Music (combined=0.466) +2026-07-13 08:29:59,233 | INFO | +[198.60s] AMBIENT | scene='' +2026-07-13 08:29:59,233 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,233 | INFO | Music 0.743 0.000 0.483 ✓ +2026-07-13 08:29:59,233 | INFO | Tabla 0.496 0.000 0.322 ✓ +2026-07-13 08:29:59,233 | INFO | Musical instrument 0.424 0.000 0.275 ✓ +2026-07-13 08:29:59,233 | INFO | Sitar 0.334 0.000 0.217 ✓ +2026-07-13 08:29:59,233 | INFO | Carnatic music 0.321 0.000 0.208 ✓ +2026-07-13 08:29:59,233 | INFO | Percussion 0.217 0.000 0.141 ✓ +2026-07-13 08:29:59,233 | INFO | → WINNER: Music (combined=0.483) +2026-07-13 08:29:59,274 | INFO | +[198.80s] AMBIENT | scene='' +2026-07-13 08:29:59,274 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,274 | INFO | Music 0.865 0.000 0.562 ✓ +2026-07-13 08:29:59,274 | INFO | Musical instrument 0.551 0.000 0.358 ✓ +2026-07-13 08:29:59,274 | INFO | Plucked string instrument 0.385 0.000 0.251 ✓ +2026-07-13 08:29:59,274 | INFO | Sitar 0.265 0.000 0.172 ✓ +2026-07-13 08:29:59,274 | INFO | Guitar 0.211 0.000 0.137 ✓ +2026-07-13 08:29:59,274 | INFO | Carnatic music 0.144 0.000 0.093 ✗ +2026-07-13 08:29:59,274 | INFO | → WINNER: Music (combined=0.562) +2026-07-13 08:29:59,302 | INFO | +[199.00s] AMBIENT | scene='' +2026-07-13 08:29:59,307 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,307 | INFO | Music 0.917 0.000 0.596 ✓ +2026-07-13 08:29:59,307 | INFO | Musical instrument 0.791 0.000 0.514 ✓ +2026-07-13 08:29:59,309 | INFO | Plucked string instrument 0.743 0.000 0.483 ✓ +2026-07-13 08:29:59,309 | INFO | Guitar 0.693 0.000 0.451 ✓ +2026-07-13 08:29:59,309 | INFO | Acoustic guitar 0.285 0.000 0.185 ✓ +2026-07-13 08:29:59,309 | INFO | Strum 0.215 0.000 0.140 ✓ +2026-07-13 08:29:59,309 | INFO | → WINNER: Music (combined=0.596) +2026-07-13 08:29:59,335 | INFO | +[199.20s] AMBIENT | scene='' +2026-07-13 08:29:59,335 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,335 | INFO | Music 0.914 0.000 0.594 ✓ +2026-07-13 08:29:59,338 | INFO | Musical instrument 0.833 0.000 0.542 ✓ +2026-07-13 08:29:59,338 | INFO | Guitar 0.803 0.000 0.522 ✓ +2026-07-13 08:29:59,339 | INFO | Plucked string instrument 0.798 0.000 0.519 ✓ +2026-07-13 08:29:59,339 | INFO | Acoustic guitar 0.390 0.000 0.253 ✓ +2026-07-13 08:29:59,339 | INFO | Strum 0.305 0.000 0.198 ✓ +2026-07-13 08:29:59,339 | INFO | → WINNER: Music (combined=0.594) +2026-07-13 08:29:59,366 | INFO | +[199.40s] AMBIENT | scene='' +2026-07-13 08:29:59,366 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,366 | INFO | Music 0.863 0.000 0.561 ✓ +2026-07-13 08:29:59,366 | INFO | Musical instrument 0.702 0.000 0.456 ✓ +2026-07-13 08:29:59,366 | INFO | Plucked string instrument 0.634 0.000 0.412 ✓ +2026-07-13 08:29:59,366 | INFO | Guitar 0.531 0.000 0.345 ✓ +2026-07-13 08:29:59,366 | INFO | Acoustic guitar 0.231 0.000 0.150 ✓ +2026-07-13 08:29:59,366 | INFO | Strum 0.145 0.000 0.095 ✗ +2026-07-13 08:29:59,366 | INFO | → WINNER: Music (combined=0.561) +2026-07-13 08:29:59,394 | INFO | +[199.60s] AMBIENT | scene='' +2026-07-13 08:29:59,394 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,394 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:29:59,394 | INFO | Musical instrument 0.642 0.000 0.417 ✓ +2026-07-13 08:29:59,394 | INFO | Plucked string instrument 0.588 0.000 0.382 ✓ +2026-07-13 08:29:59,394 | INFO | Guitar 0.499 0.000 0.324 ✓ +2026-07-13 08:29:59,394 | INFO | Acoustic guitar 0.181 0.000 0.118 ✗ +2026-07-13 08:29:59,397 | INFO | Strum 0.162 0.000 0.105 ✗ +2026-07-13 08:29:59,397 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:29:59,424 | INFO | +[199.80s] AMBIENT | scene='' +2026-07-13 08:29:59,425 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,425 | INFO | Music 0.802 0.000 0.521 ✓ +2026-07-13 08:29:59,425 | INFO | Musical instrument 0.491 0.000 0.319 ✓ +2026-07-13 08:29:59,425 | INFO | Plucked string instrument 0.234 0.000 0.152 ✓ +2026-07-13 08:29:59,425 | INFO | Guitar 0.181 0.000 0.118 ✗ +2026-07-13 08:29:59,425 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:29:59,447 | INFO | +[200.00s] AMBIENT | scene='' +2026-07-13 08:29:59,447 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,447 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:29:59,447 | INFO | Musical instrument 0.354 0.000 0.230 ✓ +2026-07-13 08:29:59,447 | INFO | Tabla 0.189 0.000 0.123 ✓ +2026-07-13 08:29:59,447 | INFO | Plucked string instrument 0.081 0.000 0.053 ✗ +2026-07-13 08:29:59,447 | INFO | Carnatic music 0.081 0.000 0.052 ✗ +2026-07-13 08:29:59,447 | INFO | Drum 0.075 0.000 0.049 ✗ +2026-07-13 08:29:59,447 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:29:59,479 | INFO | +[200.20s] AMBIENT | scene='' +2026-07-13 08:29:59,481 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,481 | INFO | Tabla 0.706 0.000 0.459 ✓ +2026-07-13 08:29:59,481 | INFO | Music 0.701 0.000 0.456 ✓ +2026-07-13 08:29:59,481 | INFO | Musical instrument 0.396 0.000 0.257 ✓ +2026-07-13 08:29:59,481 | INFO | Percussion 0.264 0.000 0.172 ✓ +2026-07-13 08:29:59,481 | INFO | Drum 0.238 0.000 0.155 ✓ +2026-07-13 08:29:59,481 | INFO | Carnatic music 0.106 0.000 0.069 ✗ +2026-07-13 08:29:59,481 | INFO | → WINNER: Tabla (combined=0.459) +2026-07-13 08:29:59,510 | INFO | +[200.40s] AMBIENT | scene='' +2026-07-13 08:29:59,510 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,510 | INFO | Tabla 0.805 0.000 0.523 ✓ +2026-07-13 08:29:59,510 | INFO | Music 0.637 0.000 0.414 ✓ +2026-07-13 08:29:59,510 | INFO | Percussion 0.385 0.000 0.250 ✓ +2026-07-13 08:29:59,510 | INFO | Musical instrument 0.322 0.000 0.209 ✓ +2026-07-13 08:29:59,512 | INFO | Drum 0.301 0.000 0.196 ✓ +2026-07-13 08:29:59,512 | INFO | Carnatic music 0.154 0.000 0.100 ✗ +2026-07-13 08:29:59,512 | INFO | → WINNER: Tabla (combined=0.523) +2026-07-13 08:29:59,537 | INFO | +[200.60s] AMBIENT | scene='' +2026-07-13 08:29:59,537 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,537 | INFO | Tabla 0.805 0.000 0.523 ✓ +2026-07-13 08:29:59,537 | INFO | Music 0.651 0.000 0.423 ✓ +2026-07-13 08:29:59,537 | INFO | Musical instrument 0.411 0.000 0.267 ✓ +2026-07-13 08:29:59,537 | INFO | Percussion 0.383 0.000 0.249 ✓ +2026-07-13 08:29:59,537 | INFO | Drum 0.339 0.000 0.220 ✓ +2026-07-13 08:29:59,537 | INFO | Carnatic music 0.142 0.000 0.093 ✗ +2026-07-13 08:29:59,537 | INFO | → WINNER: Tabla (combined=0.523) +2026-07-13 08:29:59,566 | INFO | +[200.80s] AMBIENT | scene='' +2026-07-13 08:29:59,566 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,566 | INFO | Music 0.778 0.000 0.506 ✓ +2026-07-13 08:29:59,566 | INFO | Tabla 0.520 0.000 0.338 ✓ +2026-07-13 08:29:59,566 | INFO | Musical instrument 0.477 0.000 0.310 ✓ +2026-07-13 08:29:59,566 | INFO | Drum 0.183 0.000 0.119 ✗ +2026-07-13 08:29:59,566 | INFO | Plucked string instrument 0.168 0.000 0.109 ✗ +2026-07-13 08:29:59,566 | INFO | Percussion 0.167 0.000 0.108 ✗ +2026-07-13 08:29:59,566 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:29:59,594 | INFO | +[201.00s] AMBIENT | scene='' +2026-07-13 08:29:59,596 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,596 | INFO | Music 0.844 0.000 0.548 ✓ +2026-07-13 08:29:59,596 | INFO | Musical instrument 0.730 0.000 0.474 ✓ +2026-07-13 08:29:59,596 | INFO | Carnatic music 0.445 0.000 0.289 ✓ +2026-07-13 08:29:59,596 | INFO | Plucked string instrument 0.438 0.000 0.285 ✓ +2026-07-13 08:29:59,596 | INFO | Tabla 0.404 0.000 0.262 ✓ +2026-07-13 08:29:59,596 | INFO | Sitar 0.352 0.000 0.229 ✓ +2026-07-13 08:29:59,596 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:29:59,618 | INFO | +[201.20s] AMBIENT | scene='' +2026-07-13 08:29:59,618 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,618 | INFO | Music 0.843 0.000 0.548 ✓ +2026-07-13 08:29:59,627 | INFO | Musical instrument 0.632 0.000 0.411 ✓ +2026-07-13 08:29:59,627 | INFO | Sitar 0.470 0.000 0.305 ✓ +2026-07-13 08:29:59,627 | INFO | Tabla 0.453 0.000 0.294 ✓ +2026-07-13 08:29:59,627 | INFO | Plucked string instrument 0.394 0.000 0.256 ✓ +2026-07-13 08:29:59,627 | INFO | Carnatic music 0.352 0.000 0.229 ✓ +2026-07-13 08:29:59,627 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:29:59,654 | INFO | +[201.40s] AMBIENT | scene='' +2026-07-13 08:29:59,654 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,656 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:29:59,656 | INFO | Sitar 0.697 0.000 0.453 ✓ +2026-07-13 08:29:59,656 | INFO | Musical instrument 0.533 0.000 0.347 ✓ +2026-07-13 08:29:59,656 | INFO | Plucked string instrument 0.408 0.000 0.265 ✓ +2026-07-13 08:29:59,656 | INFO | Carnatic music 0.320 0.000 0.208 ✓ +2026-07-13 08:29:59,656 | INFO | Classical music 0.223 0.000 0.145 ✓ +2026-07-13 08:29:59,656 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:29:59,684 | INFO | +[201.60s] AMBIENT | scene='' +2026-07-13 08:29:59,684 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,684 | INFO | Music 0.802 0.000 0.521 ✓ +2026-07-13 08:29:59,684 | INFO | Sitar 0.790 0.000 0.514 ✓ +2026-07-13 08:29:59,684 | INFO | Musical instrument 0.371 0.000 0.241 ✓ +2026-07-13 08:29:59,684 | INFO | Carnatic music 0.348 0.000 0.227 ✓ +2026-07-13 08:29:59,684 | INFO | Plucked string instrument 0.280 0.000 0.182 ✓ +2026-07-13 08:29:59,684 | INFO | Classical music 0.179 0.000 0.116 ✗ +2026-07-13 08:29:59,684 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:29:59,709 | INFO | +[201.80s] AMBIENT | scene='' +2026-07-13 08:29:59,709 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,709 | INFO | Music 0.756 0.000 0.492 ✓ +2026-07-13 08:29:59,709 | INFO | Sitar 0.402 0.000 0.261 ✓ +2026-07-13 08:29:59,709 | INFO | Musical instrument 0.309 0.000 0.201 ✓ +2026-07-13 08:29:59,709 | INFO | Carnatic music 0.286 0.000 0.186 ✓ +2026-07-13 08:29:59,709 | INFO | Tabla 0.202 0.000 0.131 ✓ +2026-07-13 08:29:59,709 | INFO | Middle Eastern music 0.161 0.000 0.104 ✗ +2026-07-13 08:29:59,709 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:29:59,742 | INFO | +[202.00s] AMBIENT | scene='' +2026-07-13 08:29:59,742 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,742 | INFO | Music 0.845 0.000 0.549 ✓ +2026-07-13 08:29:59,742 | INFO | Musical instrument 0.262 0.000 0.170 ✓ +2026-07-13 08:29:59,742 | INFO | Middle Eastern music 0.239 0.000 0.155 ✓ +2026-07-13 08:29:59,742 | INFO | Sitar 0.208 0.000 0.135 ✓ +2026-07-13 08:29:59,742 | INFO | Folk music 0.144 0.000 0.094 ✗ +2026-07-13 08:29:59,742 | INFO | Plucked string instrument 0.110 0.000 0.071 ✗ +2026-07-13 08:29:59,742 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:29:59,766 | INFO | +[202.20s] AMBIENT | scene='' +2026-07-13 08:29:59,766 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,766 | INFO | Music 0.864 0.000 0.562 ✓ +2026-07-13 08:29:59,766 | INFO | Musical instrument 0.417 0.000 0.271 ✓ +2026-07-13 08:29:59,766 | INFO | Plucked string instrument 0.331 0.000 0.215 ✓ +2026-07-13 08:29:59,766 | INFO | Guitar 0.260 0.000 0.169 ✓ +2026-07-13 08:29:59,766 | INFO | Middle Eastern music 0.135 0.000 0.088 ✗ +2026-07-13 08:29:59,766 | INFO | Acoustic guitar 0.133 0.000 0.086 ✗ +2026-07-13 08:29:59,766 | INFO | → WINNER: Music (combined=0.562) +2026-07-13 08:29:59,800 | INFO | +[202.40s] AMBIENT | scene='' +2026-07-13 08:29:59,800 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,800 | INFO | Music 0.820 0.000 0.533 ✓ +2026-07-13 08:29:59,800 | INFO | Musical instrument 0.473 0.000 0.307 ✓ +2026-07-13 08:29:59,800 | INFO | Plucked string instrument 0.241 0.000 0.157 ✓ +2026-07-13 08:29:59,800 | INFO | Guitar 0.164 0.000 0.107 ✗ +2026-07-13 08:29:59,800 | INFO | Tabla 0.094 0.000 0.061 ✗ +2026-07-13 08:29:59,800 | INFO | Keyboard (musical) 0.076 0.000 0.049 ✗ +2026-07-13 08:29:59,800 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:29:59,831 | INFO | +[202.60s] AMBIENT | scene='' +2026-07-13 08:29:59,831 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,831 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:29:59,831 | INFO | Musical instrument 0.721 0.000 0.468 ✓ +2026-07-13 08:29:59,831 | INFO | Plucked string instrument 0.607 0.000 0.394 ✓ +2026-07-13 08:29:59,831 | INFO | Guitar 0.427 0.000 0.277 ✓ +2026-07-13 08:29:59,831 | INFO | Sitar 0.214 0.000 0.139 ✓ +2026-07-13 08:29:59,831 | INFO | Carnatic music 0.159 0.000 0.104 ✗ +2026-07-13 08:29:59,831 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:29:59,859 | INFO | +[202.80s] AMBIENT | scene='' +2026-07-13 08:29:59,859 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,859 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:29:59,859 | INFO | Musical instrument 0.678 0.000 0.441 ✓ +2026-07-13 08:29:59,859 | INFO | Plucked string instrument 0.479 0.000 0.311 ✓ +2026-07-13 08:29:59,859 | INFO | Carnatic music 0.409 0.000 0.266 ✓ +2026-07-13 08:29:59,859 | INFO | Tabla 0.369 0.000 0.240 ✓ +2026-07-13 08:29:59,859 | INFO | Sitar 0.338 0.000 0.220 ✓ +2026-07-13 08:29:59,859 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:29:59,888 | INFO | +[203.00s] AMBIENT | scene='' +2026-07-13 08:29:59,888 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,888 | INFO | Music 0.804 0.000 0.523 ✓ +2026-07-13 08:29:59,888 | INFO | Carnatic music 0.652 0.000 0.424 ✓ +2026-07-13 08:29:59,888 | INFO | Musical instrument 0.589 0.000 0.383 ✓ +2026-07-13 08:29:59,888 | INFO | Classical music 0.420 0.000 0.273 ✓ +2026-07-13 08:29:59,888 | INFO | Tabla 0.379 0.000 0.246 ✓ +2026-07-13 08:29:59,888 | INFO | Sitar 0.289 0.000 0.188 ✓ +2026-07-13 08:29:59,888 | INFO | → WINNER: Music (combined=0.523) +2026-07-13 08:29:59,916 | INFO | +[203.20s] AMBIENT | scene='' +2026-07-13 08:29:59,918 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,918 | INFO | Music 0.830 0.000 0.539 ✓ +2026-07-13 08:29:59,918 | INFO | Musical instrument 0.521 0.000 0.339 ✓ +2026-07-13 08:29:59,918 | INFO | Carnatic music 0.220 0.000 0.143 ✓ +2026-07-13 08:29:59,918 | INFO | Plucked string instrument 0.204 0.000 0.133 ✓ +2026-07-13 08:29:59,918 | INFO | Sitar 0.189 0.000 0.123 ✓ +2026-07-13 08:29:59,918 | INFO | Classical music 0.144 0.000 0.093 ✗ +2026-07-13 08:29:59,920 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:29:59,946 | INFO | +[203.40s] AMBIENT | scene='' +2026-07-13 08:29:59,946 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,946 | INFO | Music 0.880 0.000 0.572 ✓ +2026-07-13 08:29:59,946 | INFO | Musical instrument 0.549 0.000 0.357 ✓ +2026-07-13 08:29:59,946 | INFO | Plucked string instrument 0.399 0.000 0.259 ✓ +2026-07-13 08:29:59,946 | INFO | Traditional music 0.231 0.000 0.150 ✓ +2026-07-13 08:29:59,946 | INFO | Sitar 0.209 0.000 0.136 ✓ +2026-07-13 08:29:59,946 | INFO | Folk music 0.128 0.000 0.083 ✗ +2026-07-13 08:29:59,946 | INFO | → WINNER: Music (combined=0.572) +2026-07-13 08:29:59,970 | INFO | +[203.60s] AMBIENT | scene='' +2026-07-13 08:29:59,970 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:29:59,970 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:29:59,970 | INFO | Musical instrument 0.424 0.000 0.276 ✓ +2026-07-13 08:29:59,970 | INFO | Traditional music 0.281 0.000 0.182 ✓ +2026-07-13 08:29:59,970 | INFO | Plucked string instrument 0.278 0.000 0.181 ✓ +2026-07-13 08:29:59,970 | INFO | Zither 0.188 0.000 0.122 ✓ +2026-07-13 08:29:59,970 | INFO | Sitar 0.170 0.000 0.110 ✗ +2026-07-13 08:29:59,970 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:00,003 | INFO | +[203.80s] AMBIENT | scene='' +2026-07-13 08:30:00,003 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,003 | INFO | Music 0.805 0.000 0.523 ✓ +2026-07-13 08:30:00,003 | INFO | Musical instrument 0.444 0.000 0.288 ✓ +2026-07-13 08:30:00,005 | INFO | Plucked string instrument 0.312 0.000 0.203 ✓ +2026-07-13 08:30:00,005 | INFO | Tabla 0.205 0.000 0.133 ✓ +2026-07-13 08:30:00,005 | INFO | Sitar 0.165 0.000 0.107 ✗ +2026-07-13 08:30:00,005 | INFO | Traditional music 0.127 0.000 0.082 ✗ +2026-07-13 08:30:00,005 | INFO | → WINNER: Music (combined=0.523) +2026-07-13 08:30:00,032 | INFO | +[204.00s] AMBIENT | scene='' +2026-07-13 08:30:00,032 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,032 | INFO | Music 0.730 0.000 0.475 ✓ +2026-07-13 08:30:00,032 | INFO | Tabla 0.564 0.000 0.367 ✓ +2026-07-13 08:30:00,036 | INFO | Musical instrument 0.414 0.000 0.269 ✓ +2026-07-13 08:30:00,036 | INFO | Plucked string instrument 0.242 0.000 0.157 ✓ +2026-07-13 08:30:00,036 | INFO | Sitar 0.228 0.000 0.148 ✓ +2026-07-13 08:30:00,036 | INFO | Percussion 0.190 0.000 0.124 ✓ +2026-07-13 08:30:00,036 | INFO | → WINNER: Music (combined=0.475) +2026-07-13 08:30:00,063 | INFO | +[204.20s] AMBIENT | scene='' +2026-07-13 08:30:00,063 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,064 | INFO | Tabla 0.686 0.000 0.446 ✓ +2026-07-13 08:30:00,064 | INFO | Music 0.622 0.000 0.404 ✓ +2026-07-13 08:30:00,064 | INFO | Percussion 0.259 0.000 0.168 ✓ +2026-07-13 08:30:00,064 | INFO | Musical instrument 0.235 0.000 0.152 ✓ +2026-07-13 08:30:00,064 | INFO | Drum 0.221 0.000 0.143 ✓ +2026-07-13 08:30:00,064 | INFO | Carnatic music 0.107 0.000 0.069 ✗ +2026-07-13 08:30:00,064 | INFO | → WINNER: Tabla (combined=0.446) +2026-07-13 08:30:00,093 | INFO | +[204.40s] AMBIENT | scene='' +2026-07-13 08:30:00,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,094 | INFO | Music 0.740 0.000 0.481 ✓ +2026-07-13 08:30:00,094 | INFO | Musical instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:00,094 | INFO | Tabla 0.178 0.000 0.116 ✗ +2026-07-13 08:30:00,094 | INFO | Singing 0.115 0.000 0.075 ✗ +2026-07-13 08:30:00,094 | INFO | Drum 0.112 0.000 0.073 ✗ +2026-07-13 08:30:00,094 | INFO | Percussion 0.099 0.000 0.064 ✗ +2026-07-13 08:30:00,094 | INFO | → WINNER: Music (combined=0.481) +2026-07-13 08:30:00,119 | INFO | +[204.60s] AMBIENT | scene='' +2026-07-13 08:30:00,119 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,119 | INFO | Music 0.559 0.000 0.363 ✓ +2026-07-13 08:30:00,119 | INFO | Singing 0.175 0.000 0.114 ✗ +2026-07-13 08:30:00,119 | INFO | Musical instrument 0.128 0.000 0.083 ✗ +2026-07-13 08:30:00,119 | INFO | Tabla 0.031 0.000 0.020 ✗ +2026-07-13 08:30:00,119 | INFO | → WINNER: Music (combined=0.363) +2026-07-13 08:30:00,150 | INFO | +[204.80s] AMBIENT | scene='' +2026-07-13 08:30:00,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,150 | INFO | Music 0.608 0.000 0.395 ✓ +2026-07-13 08:30:00,150 | INFO | Musical instrument 0.209 0.000 0.136 ✓ +2026-07-13 08:30:00,150 | INFO | Singing 0.155 0.000 0.101 ✗ +2026-07-13 08:30:00,150 | INFO | Plucked string instrument 0.064 0.000 0.042 ✗ +2026-07-13 08:30:00,150 | INFO | Guitar 0.064 0.000 0.041 ✗ +2026-07-13 08:30:00,150 | INFO | → WINNER: Music (combined=0.395) +2026-07-13 08:30:00,175 | INFO | +[205.00s] AMBIENT | scene='' +2026-07-13 08:30:00,175 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,175 | INFO | Music 0.781 0.000 0.508 ✓ +2026-07-13 08:30:00,175 | INFO | Musical instrument 0.292 0.000 0.190 ✓ +2026-07-13 08:30:00,175 | INFO | Singing 0.178 0.000 0.116 ✗ +2026-07-13 08:30:00,175 | INFO | Plucked string instrument 0.123 0.000 0.080 ✗ +2026-07-13 08:30:00,183 | INFO | Guitar 0.090 0.000 0.059 ✗ +2026-07-13 08:30:00,183 | INFO | Tabla 0.068 0.000 0.044 ✗ +2026-07-13 08:30:00,184 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:00,209 | INFO | +[205.20s] AMBIENT | scene='' +2026-07-13 08:30:00,209 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,212 | INFO | Music 0.727 0.000 0.472 ✓ +2026-07-13 08:30:00,212 | INFO | Musical instrument 0.451 0.000 0.293 ✓ +2026-07-13 08:30:00,212 | INFO | Tabla 0.413 0.000 0.269 ✓ +2026-07-13 08:30:00,212 | INFO | Carnatic music 0.248 0.000 0.161 ✓ +2026-07-13 08:30:00,212 | INFO | Plucked string instrument 0.195 0.000 0.127 ✓ +2026-07-13 08:30:00,212 | INFO | Sitar 0.168 0.000 0.109 ✗ +2026-07-13 08:30:00,212 | INFO | → WINNER: Music (combined=0.472) +2026-07-13 08:30:00,241 | INFO | +[205.40s] AMBIENT | scene='' +2026-07-13 08:30:00,241 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,241 | INFO | Music 0.743 0.000 0.483 ✓ +2026-07-13 08:30:00,241 | INFO | Musical instrument 0.413 0.000 0.268 ✓ +2026-07-13 08:30:00,241 | INFO | Plucked string instrument 0.245 0.000 0.159 ✓ +2026-07-13 08:30:00,241 | INFO | Sitar 0.128 0.000 0.083 ✗ +2026-07-13 08:30:00,241 | INFO | Guitar 0.126 0.000 0.082 ✗ +2026-07-13 08:30:00,241 | INFO | Carnatic music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:00,241 | INFO | → WINNER: Music (combined=0.483) +2026-07-13 08:30:00,267 | INFO | +[205.60s] AMBIENT | scene='' +2026-07-13 08:30:00,267 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,267 | INFO | Music 0.843 0.000 0.548 ✓ +2026-07-13 08:30:00,267 | INFO | Musical instrument 0.608 0.000 0.395 ✓ +2026-07-13 08:30:00,267 | INFO | Plucked string instrument 0.462 0.000 0.300 ✓ +2026-07-13 08:30:00,267 | INFO | Banjo 0.280 0.000 0.182 ✓ +2026-07-13 08:30:00,267 | INFO | Guitar 0.219 0.000 0.142 ✓ +2026-07-13 08:30:00,267 | INFO | Sitar 0.162 0.000 0.105 ✗ +2026-07-13 08:30:00,267 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:00,298 | INFO | +[205.80s] AMBIENT | scene='' +2026-07-13 08:30:00,298 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,298 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:00,298 | INFO | Musical instrument 0.697 0.000 0.453 ✓ +2026-07-13 08:30:00,298 | INFO | Plucked string instrument 0.588 0.000 0.382 ✓ +2026-07-13 08:30:00,298 | INFO | Guitar 0.340 0.000 0.221 ✓ +2026-07-13 08:30:00,298 | INFO | Sitar 0.221 0.000 0.144 ✓ +2026-07-13 08:30:00,298 | INFO | Banjo 0.160 0.000 0.104 ✗ +2026-07-13 08:30:00,298 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:00,322 | INFO | +[206.00s] AMBIENT | scene='' +2026-07-13 08:30:00,322 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,322 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:30:00,322 | INFO | Musical instrument 0.414 0.000 0.269 ✓ +2026-07-13 08:30:00,322 | INFO | Sitar 0.291 0.000 0.189 ✓ +2026-07-13 08:30:00,322 | INFO | Plucked string instrument 0.252 0.000 0.164 ✓ +2026-07-13 08:30:00,322 | INFO | Tabla 0.101 0.000 0.065 ✗ +2026-07-13 08:30:00,322 | INFO | Carnatic music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:00,322 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:00,355 | INFO | +[206.20s] AMBIENT | scene='' +2026-07-13 08:30:00,355 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,355 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:00,355 | INFO | Musical instrument 0.663 0.000 0.431 ✓ +2026-07-13 08:30:00,355 | INFO | Plucked string instrument 0.509 0.000 0.331 ✓ +2026-07-13 08:30:00,355 | INFO | Guitar 0.325 0.000 0.211 ✓ +2026-07-13 08:30:00,355 | INFO | Sitar 0.197 0.000 0.128 ✓ +2026-07-13 08:30:00,355 | INFO | Carnatic music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:00,355 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:00,384 | INFO | +[206.40s] AMBIENT | scene='' +2026-07-13 08:30:00,384 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,384 | INFO | Music 0.799 0.000 0.519 ✓ +2026-07-13 08:30:00,384 | INFO | Musical instrument 0.572 0.000 0.372 ✓ +2026-07-13 08:30:00,388 | INFO | Tabla 0.416 0.000 0.271 ✓ +2026-07-13 08:30:00,388 | INFO | Plucked string instrument 0.371 0.000 0.241 ✓ +2026-07-13 08:30:00,388 | INFO | Guitar 0.190 0.000 0.123 ✓ +2026-07-13 08:30:00,388 | INFO | Sitar 0.149 0.000 0.097 ✗ +2026-07-13 08:30:00,388 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:00,416 | INFO | +[206.60s] AMBIENT | scene='' +2026-07-13 08:30:00,416 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,416 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:00,416 | INFO | Musical instrument 0.430 0.000 0.279 ✓ +2026-07-13 08:30:00,416 | INFO | Plucked string instrument 0.204 0.000 0.133 ✓ +2026-07-13 08:30:00,416 | INFO | Guitar 0.165 0.000 0.107 ✗ +2026-07-13 08:30:00,416 | INFO | Singing 0.098 0.000 0.064 ✗ +2026-07-13 08:30:00,416 | INFO | Tabla 0.095 0.000 0.062 ✗ +2026-07-13 08:30:00,416 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:00,446 | INFO | +[206.80s] AMBIENT | scene='' +2026-07-13 08:30:00,446 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,446 | INFO | Music 0.808 0.000 0.525 ✓ +2026-07-13 08:30:00,446 | INFO | Musical instrument 0.316 0.000 0.205 ✓ +2026-07-13 08:30:00,446 | INFO | Singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:00,446 | INFO | Plucked string instrument 0.087 0.000 0.057 ✗ +2026-07-13 08:30:00,446 | INFO | Guitar 0.072 0.000 0.047 ✗ +2026-07-13 08:30:00,446 | INFO | Drum 0.058 0.000 0.038 ✗ +2026-07-13 08:30:00,446 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:00,477 | INFO | +[207.00s] AMBIENT | scene='' +2026-07-13 08:30:00,477 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,477 | INFO | Music 0.828 0.000 0.538 ✓ +2026-07-13 08:30:00,480 | INFO | Musical instrument 0.568 0.000 0.369 ✓ +2026-07-13 08:30:00,480 | INFO | Plucked string instrument 0.317 0.000 0.206 ✓ +2026-07-13 08:30:00,480 | INFO | Guitar 0.235 0.000 0.152 ✓ +2026-07-13 08:30:00,480 | INFO | Tabla 0.223 0.000 0.145 ✓ +2026-07-13 08:30:00,480 | INFO | Percussion 0.106 0.000 0.069 ✗ +2026-07-13 08:30:00,480 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:00,506 | INFO | +[207.20s] AMBIENT | scene='' +2026-07-13 08:30:00,506 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,506 | INFO | Music 0.792 0.000 0.515 ✓ +2026-07-13 08:30:00,506 | INFO | Musical instrument 0.430 0.000 0.280 ✓ +2026-07-13 08:30:00,506 | INFO | Tabla 0.304 0.000 0.198 ✓ +2026-07-13 08:30:00,506 | INFO | Plucked string instrument 0.160 0.000 0.104 ✗ +2026-07-13 08:30:00,506 | INFO | Singing 0.137 0.000 0.089 ✗ +2026-07-13 08:30:00,506 | INFO | Carnatic music 0.130 0.000 0.084 ✗ +2026-07-13 08:30:00,506 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:00,532 | INFO | +[207.40s] AMBIENT | scene='' +2026-07-13 08:30:00,532 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,532 | INFO | Music 0.793 0.000 0.515 ✓ +2026-07-13 08:30:00,532 | INFO | Musical instrument 0.445 0.000 0.289 ✓ +2026-07-13 08:30:00,532 | INFO | Tabla 0.244 0.000 0.159 ✓ +2026-07-13 08:30:00,532 | INFO | Plucked string instrument 0.221 0.000 0.143 ✓ +2026-07-13 08:30:00,537 | INFO | Carnatic music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:00,537 | INFO | Singing 0.141 0.000 0.091 ✗ +2026-07-13 08:30:00,537 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:00,564 | INFO | +[207.60s] AMBIENT | scene='' +2026-07-13 08:30:00,564 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,564 | INFO | Music 0.844 0.000 0.549 ✓ +2026-07-13 08:30:00,564 | INFO | Musical instrument 0.536 0.000 0.348 ✓ +2026-07-13 08:30:00,564 | INFO | Plucked string instrument 0.448 0.000 0.291 ✓ +2026-07-13 08:30:00,564 | INFO | Guitar 0.322 0.000 0.209 ✓ +2026-07-13 08:30:00,564 | INFO | Ukulele 0.191 0.000 0.124 ✓ +2026-07-13 08:30:00,564 | INFO | Acoustic guitar 0.116 0.000 0.075 ✗ +2026-07-13 08:30:00,564 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:00,591 | INFO | +[207.80s] AMBIENT | scene='' +2026-07-13 08:30:00,591 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,591 | INFO | Music 0.862 0.000 0.560 ✓ +2026-07-13 08:30:00,591 | INFO | Musical instrument 0.528 0.000 0.343 ✓ +2026-07-13 08:30:00,591 | INFO | Plucked string instrument 0.432 0.000 0.281 ✓ +2026-07-13 08:30:00,591 | INFO | Banjo 0.330 0.000 0.214 ✓ +2026-07-13 08:30:00,595 | INFO | Ukulele 0.295 0.000 0.192 ✓ +2026-07-13 08:30:00,595 | INFO | Guitar 0.277 0.000 0.180 ✓ +2026-07-13 08:30:00,595 | INFO | → WINNER: Music (combined=0.560) +2026-07-13 08:30:00,620 | INFO | +[208.00s] AMBIENT | scene='' +2026-07-13 08:30:00,620 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,620 | INFO | Music 0.886 0.000 0.576 ✓ +2026-07-13 08:30:00,620 | INFO | Musical instrument 0.619 0.000 0.403 ✓ +2026-07-13 08:30:00,620 | INFO | Plucked string instrument 0.536 0.000 0.348 ✓ +2026-07-13 08:30:00,620 | INFO | Banjo 0.380 0.000 0.247 ✓ +2026-07-13 08:30:00,620 | INFO | Guitar 0.330 0.000 0.214 ✓ +2026-07-13 08:30:00,620 | INFO | Ukulele 0.314 0.000 0.204 ✓ +2026-07-13 08:30:00,620 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:00,647 | INFO | +[208.20s] AMBIENT | scene='' +2026-07-13 08:30:00,652 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,653 | INFO | Music 0.823 0.000 0.535 ✓ +2026-07-13 08:30:00,653 | INFO | Musical instrument 0.470 0.000 0.305 ✓ +2026-07-13 08:30:00,653 | INFO | Plucked string instrument 0.368 0.000 0.239 ✓ +2026-07-13 08:30:00,653 | INFO | Banjo 0.313 0.000 0.204 ✓ +2026-07-13 08:30:00,653 | INFO | Tabla 0.216 0.000 0.140 ✓ +2026-07-13 08:30:00,653 | INFO | Guitar 0.140 0.000 0.091 ✗ +2026-07-13 08:30:00,653 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:00,681 | INFO | +[208.40s] AMBIENT | scene='' +2026-07-13 08:30:00,681 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,681 | INFO | Music 0.788 0.000 0.512 ✓ +2026-07-13 08:30:00,681 | INFO | Musical instrument 0.494 0.000 0.321 ✓ +2026-07-13 08:30:00,681 | INFO | Tabla 0.354 0.000 0.231 ✓ +2026-07-13 08:30:00,681 | INFO | Plucked string instrument 0.315 0.000 0.205 ✓ +2026-07-13 08:30:00,681 | INFO | Banjo 0.199 0.000 0.129 ✓ +2026-07-13 08:30:00,681 | INFO | Percussion 0.181 0.000 0.118 ✗ +2026-07-13 08:30:00,681 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:00,706 | INFO | +[208.60s] AMBIENT | scene='' +2026-07-13 08:30:00,706 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,706 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:00,711 | INFO | Tabla 0.423 0.000 0.275 ✓ +2026-07-13 08:30:00,711 | INFO | Musical instrument 0.403 0.000 0.262 ✓ +2026-07-13 08:30:00,711 | INFO | Percussion 0.320 0.000 0.208 ✓ +2026-07-13 08:30:00,712 | INFO | Drum 0.227 0.000 0.147 ✓ +2026-07-13 08:30:00,712 | INFO | Plucked string instrument 0.137 0.000 0.089 ✗ +2026-07-13 08:30:00,712 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:00,736 | INFO | +[208.80s] AMBIENT | scene='' +2026-07-13 08:30:00,736 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,736 | INFO | Tabla 0.711 0.000 0.462 ✓ +2026-07-13 08:30:00,736 | INFO | Music 0.711 0.000 0.462 ✓ +2026-07-13 08:30:00,736 | INFO | Percussion 0.451 0.000 0.293 ✓ +2026-07-13 08:30:00,736 | INFO | Drum 0.372 0.000 0.242 ✓ +2026-07-13 08:30:00,736 | INFO | Musical instrument 0.351 0.000 0.228 ✓ +2026-07-13 08:30:00,736 | INFO | Plucked string instrument 0.059 0.000 0.038 ✗ +2026-07-13 08:30:00,736 | INFO | → WINNER: Tabla (combined=0.462) +2026-07-13 08:30:00,766 | INFO | +[209.00s] AMBIENT | scene='' +2026-07-13 08:30:00,766 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,766 | INFO | Music 0.766 0.000 0.498 ✓ +2026-07-13 08:30:00,768 | INFO | Tabla 0.722 0.000 0.469 ✓ +2026-07-13 08:30:00,768 | INFO | Musical instrument 0.543 0.000 0.353 ✓ +2026-07-13 08:30:00,768 | INFO | Percussion 0.308 0.000 0.200 ✓ +2026-07-13 08:30:00,768 | INFO | Sitar 0.281 0.000 0.183 ✓ +2026-07-13 08:30:00,768 | INFO | Drum 0.275 0.000 0.178 ✓ +2026-07-13 08:30:00,768 | INFO | → WINNER: Music (combined=0.498) +2026-07-13 08:30:00,795 | INFO | +[209.20s] AMBIENT | scene='' +2026-07-13 08:30:00,795 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,795 | INFO | Tabla 0.807 0.000 0.524 ✓ +2026-07-13 08:30:00,795 | INFO | Music 0.704 0.000 0.457 ✓ +2026-07-13 08:30:00,795 | INFO | Musical instrument 0.579 0.000 0.376 ✓ +2026-07-13 08:30:00,795 | INFO | Percussion 0.333 0.000 0.216 ✓ +2026-07-13 08:30:00,795 | INFO | Carnatic music 0.327 0.000 0.213 ✓ +2026-07-13 08:30:00,795 | INFO | Drum 0.301 0.000 0.195 ✓ +2026-07-13 08:30:00,795 | INFO | → WINNER: Tabla (combined=0.524) +2026-07-13 08:30:00,825 | INFO | +[209.40s] AMBIENT | scene='' +2026-07-13 08:30:00,825 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,827 | INFO | Music 0.688 0.000 0.447 ✓ +2026-07-13 08:30:00,827 | INFO | Tabla 0.679 0.000 0.441 ✓ +2026-07-13 08:30:00,827 | INFO | Musical instrument 0.439 0.000 0.286 ✓ +2026-07-13 08:30:00,827 | INFO | Percussion 0.355 0.000 0.231 ✓ +2026-07-13 08:30:00,827 | INFO | Drum 0.293 0.000 0.191 ✓ +2026-07-13 08:30:00,827 | INFO | Classical music 0.227 0.000 0.148 ✓ +2026-07-13 08:30:00,827 | INFO | → WINNER: Music (combined=0.447) +2026-07-13 08:30:00,855 | INFO | +[209.60s] AMBIENT | scene='' +2026-07-13 08:30:00,855 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,855 | INFO | Music 0.695 0.000 0.452 ✓ +2026-07-13 08:30:00,855 | INFO | Tabla 0.688 0.000 0.447 ✓ +2026-07-13 08:30:00,855 | INFO | Musical instrument 0.466 0.000 0.303 ✓ +2026-07-13 08:30:00,855 | INFO | Percussion 0.332 0.000 0.216 ✓ +2026-07-13 08:30:00,855 | INFO | Drum 0.276 0.000 0.179 ✓ +2026-07-13 08:30:00,855 | INFO | Carnatic music 0.142 0.000 0.093 ✗ +2026-07-13 08:30:00,859 | INFO | → WINNER: Music (combined=0.452) +2026-07-13 08:30:00,885 | INFO | +[209.80s] AMBIENT | scene='' +2026-07-13 08:30:00,885 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,885 | INFO | Music 0.841 0.000 0.546 ✓ +2026-07-13 08:30:00,885 | INFO | Musical instrument 0.371 0.000 0.241 ✓ +2026-07-13 08:30:00,885 | INFO | Tabla 0.334 0.000 0.217 ✓ +2026-07-13 08:30:00,888 | INFO | Percussion 0.220 0.000 0.143 ✓ +2026-07-13 08:30:00,888 | INFO | Drum 0.201 0.000 0.131 ✓ +2026-07-13 08:30:00,888 | INFO | Traditional music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:00,888 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:30:00,911 | INFO | +[210.00s] AMBIENT | scene='' +2026-07-13 08:30:00,911 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,917 | INFO | Music 0.880 0.000 0.572 ✓ +2026-07-13 08:30:00,917 | INFO | Musical instrument 0.577 0.000 0.375 ✓ +2026-07-13 08:30:00,917 | INFO | Plucked string instrument 0.339 0.000 0.221 ✓ +2026-07-13 08:30:00,917 | INFO | Guitar 0.217 0.000 0.141 ✓ +2026-07-13 08:30:00,917 | INFO | Tabla 0.126 0.000 0.082 ✗ +2026-07-13 08:30:00,917 | INFO | Percussion 0.121 0.000 0.079 ✗ +2026-07-13 08:30:00,917 | INFO | → WINNER: Music (combined=0.572) +2026-07-13 08:30:00,942 | INFO | +[210.20s] AMBIENT | scene='' +2026-07-13 08:30:00,942 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,942 | INFO | Music 0.826 0.000 0.537 ✓ +2026-07-13 08:30:00,942 | INFO | Musical instrument 0.497 0.000 0.323 ✓ +2026-07-13 08:30:00,942 | INFO | Tabla 0.247 0.000 0.161 ✓ +2026-07-13 08:30:00,942 | INFO | Plucked string instrument 0.186 0.000 0.121 ✓ +2026-07-13 08:30:00,942 | INFO | Percussion 0.127 0.000 0.083 ✗ +2026-07-13 08:30:00,942 | INFO | Traditional music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:00,942 | INFO | → WINNER: Music (combined=0.537) +2026-07-13 08:30:00,971 | INFO | +[210.40s] AMBIENT | scene='' +2026-07-13 08:30:00,971 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,971 | INFO | Music 0.786 0.000 0.511 ✓ +2026-07-13 08:30:00,971 | INFO | Tabla 0.489 0.000 0.318 ✓ +2026-07-13 08:30:00,973 | INFO | Musical instrument 0.487 0.000 0.317 ✓ +2026-07-13 08:30:00,973 | INFO | Plucked string instrument 0.190 0.000 0.123 ✓ +2026-07-13 08:30:00,973 | INFO | Sitar 0.185 0.000 0.120 ✓ +2026-07-13 08:30:00,973 | INFO | Percussion 0.169 0.000 0.110 ✗ +2026-07-13 08:30:00,973 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:00,998 | INFO | +[210.60s] AMBIENT | scene='' +2026-07-13 08:30:00,998 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:00,998 | INFO | Music 0.819 0.000 0.532 ✓ +2026-07-13 08:30:00,998 | INFO | Musical instrument 0.386 0.000 0.251 ✓ +2026-07-13 08:30:00,998 | INFO | Tabla 0.217 0.000 0.141 ✓ +2026-07-13 08:30:00,998 | INFO | Folk music 0.174 0.000 0.113 ✗ +2026-07-13 08:30:00,998 | INFO | Middle Eastern music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:00,998 | INFO | Plucked string instrument 0.134 0.000 0.087 ✗ +2026-07-13 08:30:00,998 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:01,023 | INFO | +[210.80s] AMBIENT | scene='' +2026-07-13 08:30:01,023 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,030 | INFO | Music 0.839 0.000 0.545 ✓ +2026-07-13 08:30:01,030 | INFO | Musical instrument 0.609 0.000 0.396 ✓ +2026-07-13 08:30:01,030 | INFO | Plucked string instrument 0.289 0.000 0.188 ✓ +2026-07-13 08:30:01,030 | INFO | Tabla 0.223 0.000 0.145 ✓ +2026-07-13 08:30:01,030 | INFO | Carnatic music 0.194 0.000 0.126 ✓ +2026-07-13 08:30:01,030 | INFO | Guitar 0.158 0.000 0.103 ✗ +2026-07-13 08:30:01,030 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:01,057 | INFO | +[211.00s] AMBIENT | scene='' +2026-07-13 08:30:01,059 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,059 | INFO | Music 0.875 0.000 0.569 ✓ +2026-07-13 08:30:01,059 | INFO | Musical instrument 0.746 0.000 0.485 ✓ +2026-07-13 08:30:01,059 | INFO | Plucked string instrument 0.652 0.000 0.424 ✓ +2026-07-13 08:30:01,059 | INFO | Guitar 0.596 0.000 0.387 ✓ +2026-07-13 08:30:01,059 | INFO | Acoustic guitar 0.264 0.000 0.172 ✓ +2026-07-13 08:30:01,059 | INFO | Strum 0.206 0.000 0.134 ✓ +2026-07-13 08:30:01,059 | INFO | → WINNER: Music (combined=0.569) +2026-07-13 08:30:01,088 | INFO | +[211.20s] AMBIENT | scene='' +2026-07-13 08:30:01,088 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,088 | INFO | Music 0.876 0.000 0.570 ✓ +2026-07-13 08:30:01,088 | INFO | Musical instrument 0.509 0.000 0.331 ✓ +2026-07-13 08:30:01,088 | INFO | Plucked string instrument 0.362 0.000 0.236 ✓ +2026-07-13 08:30:01,088 | INFO | Guitar 0.300 0.000 0.195 ✓ +2026-07-13 08:30:01,088 | INFO | Acoustic guitar 0.124 0.000 0.081 ✗ +2026-07-13 08:30:01,088 | INFO | Strum 0.110 0.000 0.072 ✗ +2026-07-13 08:30:01,088 | INFO | → WINNER: Music (combined=0.570) +2026-07-13 08:30:01,119 | INFO | +[211.40s] AMBIENT | scene='' +2026-07-13 08:30:01,119 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,119 | INFO | Music 0.885 0.000 0.575 ✓ +2026-07-13 08:30:01,119 | INFO | Musical instrument 0.632 0.000 0.411 ✓ +2026-07-13 08:30:01,119 | INFO | Plucked string instrument 0.573 0.000 0.372 ✓ +2026-07-13 08:30:01,119 | INFO | Guitar 0.541 0.000 0.352 ✓ +2026-07-13 08:30:01,119 | INFO | Acoustic guitar 0.233 0.000 0.151 ✓ +2026-07-13 08:30:01,119 | INFO | Strum 0.208 0.000 0.135 ✓ +2026-07-13 08:30:01,119 | INFO | → WINNER: Music (combined=0.575) +2026-07-13 08:30:01,147 | INFO | +[211.60s] AMBIENT | scene='' +2026-07-13 08:30:01,147 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,147 | INFO | Music 0.790 0.000 0.514 ✓ +2026-07-13 08:30:01,147 | INFO | Musical instrument 0.590 0.000 0.383 ✓ +2026-07-13 08:30:01,147 | INFO | Tabla 0.508 0.000 0.330 ✓ +2026-07-13 08:30:01,147 | INFO | Carnatic music 0.431 0.000 0.280 ✓ +2026-07-13 08:30:01,147 | INFO | Plucked string instrument 0.267 0.000 0.173 ✓ +2026-07-13 08:30:01,147 | INFO | Classical music 0.190 0.000 0.123 ✓ +2026-07-13 08:30:01,147 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:01,176 | INFO | +[211.80s] AMBIENT | scene='' +2026-07-13 08:30:01,176 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,176 | INFO | Music 0.815 0.000 0.530 ✓ +2026-07-13 08:30:01,176 | INFO | Musical instrument 0.487 0.000 0.317 ✓ +2026-07-13 08:30:01,176 | INFO | Carnatic music 0.433 0.000 0.282 ✓ +2026-07-13 08:30:01,176 | INFO | Tabla 0.274 0.000 0.178 ✓ +2026-07-13 08:30:01,176 | INFO | Plucked string instrument 0.159 0.000 0.103 ✗ +2026-07-13 08:30:01,176 | INFO | Sitar 0.155 0.000 0.101 ✗ +2026-07-13 08:30:01,176 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:01,206 | INFO | +[212.00s] AMBIENT | scene='' +2026-07-13 08:30:01,206 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,206 | INFO | Music 0.782 0.000 0.509 ✓ +2026-07-13 08:30:01,206 | INFO | Musical instrument 0.498 0.000 0.324 ✓ +2026-07-13 08:30:01,206 | INFO | Carnatic music 0.334 0.000 0.217 ✓ +2026-07-13 08:30:01,206 | INFO | Plucked string instrument 0.240 0.000 0.156 ✓ +2026-07-13 08:30:01,206 | INFO | Guitar 0.130 0.000 0.084 ✗ +2026-07-13 08:30:01,206 | INFO | Singing 0.097 0.000 0.063 ✗ +2026-07-13 08:30:01,206 | INFO | → WINNER: Music (combined=0.509) +2026-07-13 08:30:01,235 | INFO | +[212.20s] AMBIENT | scene='' +2026-07-13 08:30:01,235 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,235 | INFO | Music 0.844 0.000 0.548 ✓ +2026-07-13 08:30:01,235 | INFO | Musical instrument 0.557 0.000 0.362 ✓ +2026-07-13 08:30:01,235 | INFO | Carnatic music 0.516 0.000 0.336 ✓ +2026-07-13 08:30:01,235 | INFO | Sitar 0.339 0.000 0.221 ✓ +2026-07-13 08:30:01,235 | INFO | Tabla 0.333 0.000 0.217 ✓ +2026-07-13 08:30:01,235 | INFO | Plucked string instrument 0.274 0.000 0.178 ✓ +2026-07-13 08:30:01,235 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:01,261 | INFO | +[212.40s] AMBIENT | scene='' +2026-07-13 08:30:01,261 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,261 | INFO | Music 0.820 0.000 0.533 ✓ +2026-07-13 08:30:01,261 | INFO | Musical instrument 0.465 0.000 0.302 ✓ +2026-07-13 08:30:01,266 | INFO | Carnatic music 0.347 0.000 0.225 ✓ +2026-07-13 08:30:01,266 | INFO | Plucked string instrument 0.264 0.000 0.172 ✓ +2026-07-13 08:30:01,266 | INFO | Sitar 0.206 0.000 0.134 ✓ +2026-07-13 08:30:01,266 | INFO | Tabla 0.119 0.000 0.077 ✗ +2026-07-13 08:30:01,266 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:01,292 | INFO | +[212.60s] AMBIENT | scene='' +2026-07-13 08:30:01,292 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,292 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:01,292 | INFO | Sitar 0.431 0.000 0.280 ✓ +2026-07-13 08:30:01,292 | INFO | Musical instrument 0.406 0.000 0.264 ✓ +2026-07-13 08:30:01,292 | INFO | Tabla 0.285 0.000 0.185 ✓ +2026-07-13 08:30:01,292 | INFO | Plucked string instrument 0.216 0.000 0.140 ✓ +2026-07-13 08:30:01,292 | INFO | Carnatic music 0.170 0.000 0.111 ✗ +2026-07-13 08:30:01,292 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:01,319 | INFO | +[212.80s] AMBIENT | scene='' +2026-07-13 08:30:01,319 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,319 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:01,323 | INFO | Musical instrument 0.542 0.000 0.352 ✓ +2026-07-13 08:30:01,323 | INFO | Plucked string instrument 0.348 0.000 0.226 ✓ +2026-07-13 08:30:01,323 | INFO | Carnatic music 0.202 0.000 0.131 ✓ +2026-07-13 08:30:01,323 | INFO | Sitar 0.182 0.000 0.118 ✗ +2026-07-13 08:30:01,323 | INFO | Guitar 0.170 0.000 0.111 ✗ +2026-07-13 08:30:01,323 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:01,347 | INFO | +[213.00s] AMBIENT | scene='' +2026-07-13 08:30:01,347 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,347 | INFO | Music 0.862 0.000 0.560 ✓ +2026-07-13 08:30:01,347 | INFO | Musical instrument 0.602 0.000 0.391 ✓ +2026-07-13 08:30:01,347 | INFO | Plucked string instrument 0.486 0.000 0.316 ✓ +2026-07-13 08:30:01,347 | INFO | Guitar 0.402 0.000 0.262 ✓ +2026-07-13 08:30:01,347 | INFO | Acoustic guitar 0.118 0.000 0.077 ✗ +2026-07-13 08:30:01,347 | INFO | Strum 0.102 0.000 0.066 ✗ +2026-07-13 08:30:01,347 | INFO | → WINNER: Music (combined=0.560) +2026-07-13 08:30:01,375 | INFO | +[213.20s] AMBIENT | scene='' +2026-07-13 08:30:01,375 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,379 | INFO | Music 0.896 0.000 0.582 ✓ +2026-07-13 08:30:01,379 | INFO | Musical instrument 0.809 0.000 0.526 ✓ +2026-07-13 08:30:01,379 | INFO | Guitar 0.739 0.000 0.480 ✓ +2026-07-13 08:30:01,379 | INFO | Plucked string instrument 0.705 0.000 0.458 ✓ +2026-07-13 08:30:01,379 | INFO | Bass guitar 0.279 0.000 0.181 ✓ +2026-07-13 08:30:01,379 | INFO | Acoustic guitar 0.191 0.000 0.124 ✓ +2026-07-13 08:30:01,379 | INFO | → WINNER: Music (combined=0.582) +2026-07-13 08:30:01,406 | INFO | +[213.40s] AMBIENT | scene='' +2026-07-13 08:30:01,406 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,406 | INFO | Music 0.824 0.000 0.535 ✓ +2026-07-13 08:30:01,406 | INFO | Musical instrument 0.424 0.000 0.275 ✓ +2026-07-13 08:30:01,406 | INFO | Plucked string instrument 0.201 0.000 0.130 ✓ +2026-07-13 08:30:01,406 | INFO | Guitar 0.174 0.000 0.113 ✗ +2026-07-13 08:30:01,406 | INFO | Singing 0.117 0.000 0.076 ✗ +2026-07-13 08:30:01,406 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:01,434 | INFO | +[213.60s] AMBIENT | scene='' +2026-07-13 08:30:01,434 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,434 | INFO | Music 0.835 0.000 0.543 ✓ +2026-07-13 08:30:01,434 | INFO | Musical instrument 0.651 0.000 0.423 ✓ +2026-07-13 08:30:01,434 | INFO | Guitar 0.540 0.000 0.351 ✓ +2026-07-13 08:30:01,434 | INFO | Plucked string instrument 0.471 0.000 0.306 ✓ +2026-07-13 08:30:01,434 | INFO | Acoustic guitar 0.181 0.000 0.117 ✗ +2026-07-13 08:30:01,437 | INFO | Singing 0.144 0.000 0.093 ✗ +2026-07-13 08:30:01,437 | INFO | → WINNER: Music (combined=0.543) +2026-07-13 08:30:01,463 | INFO | +[222.80s] AMBIENT | scene='' +2026-07-13 08:30:01,463 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,463 | INFO | Music 0.770 0.000 0.501 ✓ +2026-07-13 08:30:01,463 | INFO | Tabla 0.538 0.000 0.350 ✓ +2026-07-13 08:30:01,463 | INFO | Musical instrument 0.314 0.000 0.204 ✓ +2026-07-13 08:30:01,463 | INFO | Drum 0.248 0.000 0.162 ✓ +2026-07-13 08:30:01,463 | INFO | Percussion 0.234 0.000 0.152 ✓ +2026-07-13 08:30:01,463 | INFO | Wood block 0.044 0.000 0.029 ✗ +2026-07-13 08:30:01,463 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:01,494 | INFO | +[223.00s] AMBIENT | scene='' +2026-07-13 08:30:01,496 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,496 | INFO | Music 0.718 0.000 0.467 ✓ +2026-07-13 08:30:01,496 | INFO | Tabla 0.691 0.000 0.449 ✓ +2026-07-13 08:30:01,496 | INFO | Percussion 0.346 0.000 0.225 ✓ +2026-07-13 08:30:01,496 | INFO | Musical instrument 0.326 0.000 0.211 ✓ +2026-07-13 08:30:01,496 | INFO | Drum 0.273 0.000 0.177 ✓ +2026-07-13 08:30:01,496 | INFO | Carnatic music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:01,496 | INFO | → WINNER: Music (combined=0.467) +2026-07-13 08:30:01,524 | INFO | +[223.20s] AMBIENT | scene='' +2026-07-13 08:30:01,526 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,526 | INFO | Music 0.730 0.000 0.475 ✓ +2026-07-13 08:30:01,526 | INFO | Tabla 0.639 0.000 0.415 ✓ +2026-07-13 08:30:01,526 | INFO | Musical instrument 0.378 0.000 0.246 ✓ +2026-07-13 08:30:01,526 | INFO | Percussion 0.265 0.000 0.172 ✓ +2026-07-13 08:30:01,526 | INFO | Drum 0.209 0.000 0.136 ✓ +2026-07-13 08:30:01,526 | INFO | Sitar 0.148 0.000 0.096 ✗ +2026-07-13 08:30:01,526 | INFO | → WINNER: Music (combined=0.475) +2026-07-13 08:30:01,553 | INFO | +[223.40s] AMBIENT | scene='' +2026-07-13 08:30:01,553 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,553 | INFO | Music 0.857 0.000 0.557 ✓ +2026-07-13 08:30:01,553 | INFO | Musical instrument 0.659 0.000 0.429 ✓ +2026-07-13 08:30:01,553 | INFO | Plucked string instrument 0.446 0.000 0.290 ✓ +2026-07-13 08:30:01,553 | INFO | Sitar 0.366 0.000 0.238 ✓ +2026-07-13 08:30:01,553 | INFO | Tabla 0.346 0.000 0.225 ✓ +2026-07-13 08:30:01,553 | INFO | Carnatic music 0.157 0.000 0.102 ✗ +2026-07-13 08:30:01,553 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:01,576 | INFO | +[223.60s] AMBIENT | scene='' +2026-07-13 08:30:01,576 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,576 | INFO | Music 0.799 0.000 0.519 ✓ +2026-07-13 08:30:01,576 | INFO | Tabla 0.557 0.000 0.362 ✓ +2026-07-13 08:30:01,576 | INFO | Musical instrument 0.516 0.000 0.336 ✓ +2026-07-13 08:30:01,576 | INFO | Plucked string instrument 0.296 0.000 0.192 ✓ +2026-07-13 08:30:01,576 | INFO | Percussion 0.214 0.000 0.139 ✓ +2026-07-13 08:30:01,576 | INFO | Sitar 0.185 0.000 0.120 ✓ +2026-07-13 08:30:01,576 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:01,609 | INFO | +[223.80s] AMBIENT | scene='' +2026-07-13 08:30:01,609 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,609 | INFO | Music 0.708 0.000 0.460 ✓ +2026-07-13 08:30:01,609 | INFO | Tabla 0.691 0.000 0.449 ✓ +2026-07-13 08:30:01,609 | INFO | Musical instrument 0.448 0.000 0.291 ✓ +2026-07-13 08:30:01,609 | INFO | Percussion 0.407 0.000 0.265 ✓ +2026-07-13 08:30:01,609 | INFO | Drum 0.303 0.000 0.197 ✓ +2026-07-13 08:30:01,609 | INFO | Plucked string instrument 0.171 0.000 0.111 ✗ +2026-07-13 08:30:01,609 | INFO | → WINNER: Music (combined=0.460) +2026-07-13 08:30:01,633 | INFO | +[224.00s] AMBIENT | scene='' +2026-07-13 08:30:01,633 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,633 | INFO | Tabla 0.832 0.000 0.540 ✓ +2026-07-13 08:30:01,633 | INFO | Music 0.665 0.000 0.432 ✓ +2026-07-13 08:30:01,633 | INFO | Musical instrument 0.481 0.000 0.313 ✓ +2026-07-13 08:30:01,633 | INFO | Percussion 0.407 0.000 0.265 ✓ +2026-07-13 08:30:01,641 | INFO | Drum 0.382 0.000 0.248 ✓ +2026-07-13 08:30:01,641 | INFO | Plucked string instrument 0.139 0.000 0.090 ✗ +2026-07-13 08:30:01,641 | INFO | → WINNER: Tabla (combined=0.540) +2026-07-13 08:30:01,669 | INFO | +[224.20s] AMBIENT | scene='' +2026-07-13 08:30:01,669 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,669 | INFO | Music 0.718 0.000 0.467 ✓ +2026-07-13 08:30:01,669 | INFO | Tabla 0.582 0.000 0.378 ✓ +2026-07-13 08:30:01,669 | INFO | Percussion 0.302 0.000 0.196 ✓ +2026-07-13 08:30:01,669 | INFO | Drum 0.208 0.000 0.136 ✓ +2026-07-13 08:30:01,669 | INFO | Musical instrument 0.163 0.000 0.106 ✗ +2026-07-13 08:30:01,669 | INFO | Middle Eastern music 0.134 0.000 0.087 ✗ +2026-07-13 08:30:01,669 | INFO | → WINNER: Music (combined=0.467) +2026-07-13 08:30:01,699 | INFO | +[224.40s] AMBIENT | scene='' +2026-07-13 08:30:01,700 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,700 | INFO | Music 0.771 0.000 0.501 ✓ +2026-07-13 08:30:01,700 | INFO | Tabla 0.631 0.000 0.410 ✓ +2026-07-13 08:30:01,700 | INFO | Musical instrument 0.330 0.000 0.214 ✓ +2026-07-13 08:30:01,700 | INFO | Percussion 0.275 0.000 0.178 ✓ +2026-07-13 08:30:01,700 | INFO | Carnatic music 0.211 0.000 0.137 ✓ +2026-07-13 08:30:01,700 | INFO | Drum 0.172 0.000 0.112 ✗ +2026-07-13 08:30:01,700 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:01,728 | INFO | +[224.60s] AMBIENT | scene='' +2026-07-13 08:30:01,728 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,729 | INFO | Music 0.819 0.000 0.532 ✓ +2026-07-13 08:30:01,729 | INFO | Tabla 0.275 0.000 0.179 ✓ +2026-07-13 08:30:01,729 | INFO | Musical instrument 0.231 0.000 0.150 ✓ +2026-07-13 08:30:01,729 | INFO | Carnatic music 0.153 0.000 0.099 ✗ +2026-07-13 08:30:01,729 | INFO | Singing 0.144 0.000 0.094 ✗ +2026-07-13 08:30:01,729 | INFO | Percussion 0.133 0.000 0.086 ✗ +2026-07-13 08:30:01,731 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:01,757 | INFO | +[224.80s] AMBIENT | scene='' +2026-07-13 08:30:01,757 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,757 | INFO | Music 0.873 0.000 0.567 ✓ +2026-07-13 08:30:01,757 | INFO | Musical instrument 0.311 0.000 0.202 ✓ +2026-07-13 08:30:01,757 | INFO | Singing 0.131 0.000 0.085 ✗ +2026-07-13 08:30:01,757 | INFO | Folk music 0.102 0.000 0.067 ✗ +2026-07-13 08:30:01,757 | INFO | Traditional music 0.102 0.000 0.066 ✗ +2026-07-13 08:30:01,757 | INFO | Middle Eastern music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:01,757 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:01,785 | INFO | +[225.00s] AMBIENT | scene='' +2026-07-13 08:30:01,786 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,786 | INFO | Music 0.825 0.000 0.536 ✓ +2026-07-13 08:30:01,786 | INFO | Musical instrument 0.258 0.000 0.168 ✓ +2026-07-13 08:30:01,786 | INFO | Carnatic music 0.183 0.000 0.119 ✗ +2026-07-13 08:30:01,788 | INFO | Singing 0.134 0.000 0.087 ✗ +2026-07-13 08:30:01,788 | INFO | Middle Eastern music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:01,789 | INFO | Folk music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:01,789 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:01,815 | INFO | +[225.20s] AMBIENT | scene='' +2026-07-13 08:30:01,815 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,815 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:30:01,815 | INFO | Musical instrument 0.458 0.000 0.297 ✓ +2026-07-13 08:30:01,815 | INFO | Tabla 0.249 0.000 0.162 ✓ +2026-07-13 08:30:01,815 | INFO | Plucked string instrument 0.215 0.000 0.140 ✓ +2026-07-13 08:30:01,815 | INFO | Percussion 0.137 0.000 0.089 ✗ +2026-07-13 08:30:01,815 | INFO | Traditional music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:01,815 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:01,843 | INFO | +[225.40s] AMBIENT | scene='' +2026-07-13 08:30:01,843 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,845 | INFO | Music 0.818 0.000 0.532 ✓ +2026-07-13 08:30:01,846 | INFO | Middle Eastern music 0.381 0.000 0.247 ✓ +2026-07-13 08:30:01,846 | INFO | Folk music 0.181 0.000 0.118 ✗ +2026-07-13 08:30:01,846 | INFO | Singing 0.154 0.000 0.100 ✗ +2026-07-13 08:30:01,846 | INFO | Musical instrument 0.146 0.000 0.095 ✗ +2026-07-13 08:30:01,846 | INFO | Tabla 0.107 0.000 0.069 ✗ +2026-07-13 08:30:01,846 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:01,871 | INFO | +[225.60s] AMBIENT | scene='' +2026-07-13 08:30:01,871 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,871 | INFO | Music 0.827 0.000 0.537 ✓ +2026-07-13 08:30:01,871 | INFO | Musical instrument 0.398 0.000 0.259 ✓ +2026-07-13 08:30:01,871 | INFO | Tabla 0.353 0.000 0.229 ✓ +2026-07-13 08:30:01,871 | INFO | Carnatic music 0.289 0.000 0.188 ✓ +2026-07-13 08:30:01,871 | INFO | Sitar 0.199 0.000 0.130 ✓ +2026-07-13 08:30:01,871 | INFO | Middle Eastern music 0.177 0.000 0.115 ✗ +2026-07-13 08:30:01,871 | INFO | → WINNER: Music (combined=0.537) +2026-07-13 08:30:01,899 | INFO | +[225.80s] AMBIENT | scene='' +2026-07-13 08:30:01,899 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,903 | INFO | Music 0.751 0.000 0.488 ✓ +2026-07-13 08:30:01,904 | INFO | Tabla 0.477 0.000 0.310 ✓ +2026-07-13 08:30:01,904 | INFO | Musical instrument 0.377 0.000 0.245 ✓ +2026-07-13 08:30:01,904 | INFO | Percussion 0.223 0.000 0.145 ✓ +2026-07-13 08:30:01,904 | INFO | Middle Eastern music 0.173 0.000 0.112 ✗ +2026-07-13 08:30:01,904 | INFO | Plucked string instrument 0.166 0.000 0.108 ✗ +2026-07-13 08:30:01,904 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:01,927 | INFO | +[226.00s] AMBIENT | scene='' +2026-07-13 08:30:01,927 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,927 | INFO | Music 0.849 0.000 0.552 ✓ +2026-07-13 08:30:01,927 | INFO | Musical instrument 0.651 0.000 0.423 ✓ +2026-07-13 08:30:01,927 | INFO | Plucked string instrument 0.484 0.000 0.315 ✓ +2026-07-13 08:30:01,927 | INFO | Tabla 0.229 0.000 0.149 ✓ +2026-07-13 08:30:01,927 | INFO | Guitar 0.171 0.000 0.111 ✗ +2026-07-13 08:30:01,935 | INFO | Sitar 0.155 0.000 0.101 ✗ +2026-07-13 08:30:01,935 | INFO | → WINNER: Music (combined=0.552) +2026-07-13 08:30:01,960 | INFO | +[226.20s] AMBIENT | scene='' +2026-07-13 08:30:01,963 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,963 | INFO | Music 0.880 0.000 0.572 ✓ +2026-07-13 08:30:01,963 | INFO | Musical instrument 0.718 0.000 0.467 ✓ +2026-07-13 08:30:01,963 | INFO | Plucked string instrument 0.559 0.000 0.363 ✓ +2026-07-13 08:30:01,963 | INFO | Guitar 0.338 0.000 0.220 ✓ +2026-07-13 08:30:01,963 | INFO | Banjo 0.221 0.000 0.143 ✓ +2026-07-13 08:30:01,963 | INFO | Traditional music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:01,963 | INFO | → WINNER: Music (combined=0.572) +2026-07-13 08:30:01,986 | INFO | +[226.40s] AMBIENT | scene='' +2026-07-13 08:30:01,986 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:01,986 | INFO | Music 0.843 0.000 0.548 ✓ +2026-07-13 08:30:01,986 | INFO | Musical instrument 0.574 0.000 0.373 ✓ +2026-07-13 08:30:01,986 | INFO | Plucked string instrument 0.473 0.000 0.308 ✓ +2026-07-13 08:30:01,986 | INFO | Guitar 0.331 0.000 0.215 ✓ +2026-07-13 08:30:01,986 | INFO | Banjo 0.209 0.000 0.136 ✓ +2026-07-13 08:30:01,993 | INFO | Tabla 0.162 0.000 0.105 ✗ +2026-07-13 08:30:01,993 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:02,019 | INFO | +[226.60s] AMBIENT | scene='' +2026-07-13 08:30:02,019 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,019 | INFO | Music 0.816 0.000 0.530 ✓ +2026-07-13 08:30:02,019 | INFO | Musical instrument 0.545 0.000 0.355 ✓ +2026-07-13 08:30:02,019 | INFO | Plucked string instrument 0.295 0.000 0.192 ✓ +2026-07-13 08:30:02,019 | INFO | Guitar 0.224 0.000 0.146 ✓ +2026-07-13 08:30:02,019 | INFO | Tabla 0.215 0.000 0.140 ✓ +2026-07-13 08:30:02,019 | INFO | Drum 0.121 0.000 0.079 ✗ +2026-07-13 08:30:02,019 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:02,044 | INFO | +[226.80s] AMBIENT | scene='' +2026-07-13 08:30:02,044 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,044 | INFO | Music 0.678 0.000 0.441 ✓ +2026-07-13 08:30:02,044 | INFO | Tabla 0.541 0.000 0.352 ✓ +2026-07-13 08:30:02,044 | INFO | Musical instrument 0.301 0.000 0.196 ✓ +2026-07-13 08:30:02,044 | INFO | Drum 0.231 0.000 0.150 ✓ +2026-07-13 08:30:02,044 | INFO | Percussion 0.202 0.000 0.131 ✓ +2026-07-13 08:30:02,051 | INFO | Carnatic music 0.153 0.000 0.099 ✗ +2026-07-13 08:30:02,051 | INFO | → WINNER: Music (combined=0.441) +2026-07-13 08:30:02,078 | INFO | +[227.00s] AMBIENT | scene='' +2026-07-13 08:30:02,079 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,079 | INFO | Music 0.666 0.000 0.433 ✓ +2026-07-13 08:30:02,079 | INFO | Musical instrument 0.191 0.000 0.124 ✓ +2026-07-13 08:30:02,079 | INFO | Tabla 0.155 0.000 0.101 ✗ +2026-07-13 08:30:02,079 | INFO | Drum 0.131 0.000 0.085 ✗ +2026-07-13 08:30:02,079 | INFO | Percussion 0.101 0.000 0.066 ✗ +2026-07-13 08:30:02,079 | INFO | Carnatic music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:02,079 | INFO | → WINNER: Music (combined=0.433) +2026-07-13 08:30:02,109 | INFO | +[227.20s] AMBIENT | scene='' +2026-07-13 08:30:02,109 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,109 | INFO | Music 0.801 0.000 0.521 ✓ +2026-07-13 08:30:02,109 | INFO | Musical instrument 0.433 0.000 0.282 ✓ +2026-07-13 08:30:02,109 | INFO | Tabla 0.375 0.000 0.243 ✓ +2026-07-13 08:30:02,109 | INFO | Carnatic music 0.236 0.000 0.153 ✓ +2026-07-13 08:30:02,109 | INFO | Percussion 0.170 0.000 0.111 ✗ +2026-07-13 08:30:02,109 | INFO | Drum 0.132 0.000 0.086 ✗ +2026-07-13 08:30:02,109 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:30:02,134 | INFO | +[227.40s] AMBIENT | scene='' +2026-07-13 08:30:02,134 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,134 | INFO | Music 0.750 0.000 0.488 ✓ +2026-07-13 08:30:02,134 | INFO | Tabla 0.443 0.000 0.288 ✓ +2026-07-13 08:30:02,134 | INFO | Musical instrument 0.345 0.000 0.224 ✓ +2026-07-13 08:30:02,134 | INFO | Sitar 0.274 0.000 0.178 ✓ +2026-07-13 08:30:02,134 | INFO | Percussion 0.175 0.000 0.114 ✗ +2026-07-13 08:30:02,134 | INFO | Carnatic music 0.168 0.000 0.109 ✗ +2026-07-13 08:30:02,134 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:02,167 | INFO | +[227.60s] AMBIENT | scene='' +2026-07-13 08:30:02,169 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,169 | INFO | Music 0.755 0.000 0.491 ✓ +2026-07-13 08:30:02,169 | INFO | Tabla 0.467 0.000 0.303 ✓ +2026-07-13 08:30:02,169 | INFO | Musical instrument 0.427 0.000 0.277 ✓ +2026-07-13 08:30:02,169 | INFO | Sitar 0.289 0.000 0.188 ✓ +2026-07-13 08:30:02,169 | INFO | Carnatic music 0.191 0.000 0.124 ✓ +2026-07-13 08:30:02,171 | INFO | Percussion 0.182 0.000 0.118 ✗ +2026-07-13 08:30:02,172 | INFO | → WINNER: Music (combined=0.491) +2026-07-13 08:30:02,192 | INFO | +[227.80s] AMBIENT | scene='' +2026-07-13 08:30:02,192 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,200 | INFO | Music 0.777 0.000 0.505 ✓ +2026-07-13 08:30:02,200 | INFO | Sitar 0.601 0.000 0.390 ✓ +2026-07-13 08:30:02,200 | INFO | Musical instrument 0.446 0.000 0.290 ✓ +2026-07-13 08:30:02,200 | INFO | Tabla 0.326 0.000 0.212 ✓ +2026-07-13 08:30:02,200 | INFO | Plucked string instrument 0.267 0.000 0.173 ✓ +2026-07-13 08:30:02,200 | INFO | Carnatic music 0.261 0.000 0.170 ✓ +2026-07-13 08:30:02,200 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:02,227 | INFO | +[228.00s] AMBIENT | scene='' +2026-07-13 08:30:02,227 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,227 | INFO | Music 0.690 0.000 0.448 ✓ +2026-07-13 08:30:02,227 | INFO | Tabla 0.545 0.000 0.354 ✓ +2026-07-13 08:30:02,227 | INFO | Musical instrument 0.382 0.000 0.248 ✓ +2026-07-13 08:30:02,227 | INFO | Carnatic music 0.343 0.000 0.223 ✓ +2026-07-13 08:30:02,227 | INFO | Sitar 0.217 0.000 0.141 ✓ +2026-07-13 08:30:02,227 | INFO | Classical music 0.200 0.000 0.130 ✓ +2026-07-13 08:30:02,227 | INFO | → WINNER: Music (combined=0.448) +2026-07-13 08:30:02,256 | INFO | +[228.20s] AMBIENT | scene='' +2026-07-13 08:30:02,256 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,256 | INFO | Music 0.762 0.000 0.495 ✓ +2026-07-13 08:30:02,256 | INFO | Tabla 0.315 0.000 0.205 ✓ +2026-07-13 08:30:02,256 | INFO | Carnatic music 0.271 0.000 0.176 ✓ +2026-07-13 08:30:02,256 | INFO | Musical instrument 0.193 0.000 0.126 ✓ +2026-07-13 08:30:02,256 | INFO | Middle Eastern music 0.184 0.000 0.119 ✗ +2026-07-13 08:30:02,256 | INFO | Singing 0.167 0.000 0.108 ✗ +2026-07-13 08:30:02,256 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:02,282 | INFO | +[228.40s] AMBIENT | scene='' +2026-07-13 08:30:02,282 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,287 | INFO | Music 0.784 0.000 0.510 ✓ +2026-07-13 08:30:02,287 | INFO | Musical instrument 0.282 0.000 0.184 ✓ +2026-07-13 08:30:02,287 | INFO | Carnatic music 0.226 0.000 0.147 ✓ +2026-07-13 08:30:02,287 | INFO | Tabla 0.103 0.000 0.067 ✗ +2026-07-13 08:30:02,287 | INFO | Plucked string instrument 0.068 0.000 0.044 ✗ +2026-07-13 08:30:02,287 | INFO | Mantra 0.053 0.000 0.034 ✗ +2026-07-13 08:30:02,287 | INFO | → WINNER: Music (combined=0.510) +2026-07-13 08:30:02,314 | INFO | +[228.60s] AMBIENT | scene='' +2026-07-13 08:30:02,314 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,314 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:02,314 | INFO | Carnatic music 0.239 0.000 0.155 ✓ +2026-07-13 08:30:02,314 | INFO | Musical instrument 0.170 0.000 0.110 ✗ +2026-07-13 08:30:02,314 | INFO | Singing 0.136 0.000 0.089 ✗ +2026-07-13 08:30:02,314 | INFO | Mantra 0.112 0.000 0.073 ✗ +2026-07-13 08:30:02,314 | INFO | Tabla 0.077 0.000 0.050 ✗ +2026-07-13 08:30:02,314 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:02,345 | INFO | +[228.80s] AMBIENT | scene='' +2026-07-13 08:30:02,345 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,345 | INFO | Music 0.810 0.000 0.526 ✓ +2026-07-13 08:30:02,345 | INFO | Musical instrument 0.559 0.000 0.364 ✓ +2026-07-13 08:30:02,345 | INFO | Plucked string instrument 0.369 0.000 0.240 ✓ +2026-07-13 08:30:02,347 | INFO | Carnatic music 0.337 0.000 0.219 ✓ +2026-07-13 08:30:02,347 | INFO | Sitar 0.243 0.000 0.158 ✓ +2026-07-13 08:30:02,347 | INFO | Tabla 0.223 0.000 0.145 ✓ +2026-07-13 08:30:02,347 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:02,371 | INFO | +[229.00s] AMBIENT | scene='' +2026-07-13 08:30:02,371 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,371 | INFO | Music 0.821 0.000 0.534 ✓ +2026-07-13 08:30:02,371 | INFO | Musical instrument 0.684 0.000 0.444 ✓ +2026-07-13 08:30:02,371 | INFO | Sitar 0.602 0.000 0.392 ✓ +2026-07-13 08:30:02,371 | INFO | Carnatic music 0.503 0.000 0.327 ✓ +2026-07-13 08:30:02,371 | INFO | Plucked string instrument 0.493 0.000 0.321 ✓ +2026-07-13 08:30:02,371 | INFO | Tabla 0.472 0.000 0.307 ✓ +2026-07-13 08:30:02,371 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:02,400 | INFO | +[229.20s] AMBIENT | scene='' +2026-07-13 08:30:02,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,402 | INFO | Music 0.719 0.000 0.468 ✓ +2026-07-13 08:30:02,402 | INFO | Tabla 0.666 0.000 0.433 ✓ +2026-07-13 08:30:02,402 | INFO | Musical instrument 0.647 0.000 0.421 ✓ +2026-07-13 08:30:02,402 | INFO | Classical music 0.536 0.000 0.348 ✓ +2026-07-13 08:30:02,402 | INFO | Carnatic music 0.475 0.000 0.309 ✓ +2026-07-13 08:30:02,404 | INFO | Sitar 0.371 0.000 0.241 ✓ +2026-07-13 08:30:02,404 | INFO | → WINNER: Music (combined=0.468) +2026-07-13 08:30:02,429 | INFO | +[229.40s] AMBIENT | scene='' +2026-07-13 08:30:02,429 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,429 | INFO | Music 0.783 0.000 0.509 ✓ +2026-07-13 08:30:02,429 | INFO | Musical instrument 0.647 0.000 0.420 ✓ +2026-07-13 08:30:02,429 | INFO | Tabla 0.545 0.000 0.354 ✓ +2026-07-13 08:30:02,429 | INFO | Sitar 0.375 0.000 0.244 ✓ +2026-07-13 08:30:02,429 | INFO | Carnatic music 0.349 0.000 0.227 ✓ +2026-07-13 08:30:02,429 | INFO | Plucked string instrument 0.344 0.000 0.224 ✓ +2026-07-13 08:30:02,429 | INFO | → WINNER: Music (combined=0.509) +2026-07-13 08:30:02,461 | INFO | +[229.60s] AMBIENT | scene='' +2026-07-13 08:30:02,461 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,461 | INFO | Music 0.869 0.000 0.565 ✓ +2026-07-13 08:30:02,461 | INFO | Musical instrument 0.622 0.000 0.404 ✓ +2026-07-13 08:30:02,461 | INFO | Plucked string instrument 0.337 0.000 0.219 ✓ +2026-07-13 08:30:02,461 | INFO | Tabla 0.310 0.000 0.202 ✓ +2026-07-13 08:30:02,461 | INFO | Carnatic music 0.300 0.000 0.195 ✓ +2026-07-13 08:30:02,461 | INFO | Sitar 0.197 0.000 0.128 ✓ +2026-07-13 08:30:02,461 | INFO | → WINNER: Music (combined=0.565) +2026-07-13 08:30:02,487 | INFO | +[229.80s] AMBIENT | scene='' +2026-07-13 08:30:02,487 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,487 | INFO | Music 0.872 0.000 0.567 ✓ +2026-07-13 08:30:02,487 | INFO | Musical instrument 0.520 0.000 0.338 ✓ +2026-07-13 08:30:02,487 | INFO | Plucked string instrument 0.321 0.000 0.208 ✓ +2026-07-13 08:30:02,487 | INFO | Guitar 0.205 0.000 0.133 ✓ +2026-07-13 08:30:02,487 | INFO | Animal 0.163 0.000 0.106 ✗ +2026-07-13 08:30:02,487 | INFO | Dog 0.093 0.000 0.060 ✗ +2026-07-13 08:30:02,487 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:02,515 | INFO | +[230.00s] AMBIENT | scene='' +2026-07-13 08:30:02,515 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,515 | INFO | Music 0.836 0.000 0.543 ✓ +2026-07-13 08:30:02,515 | INFO | Musical instrument 0.284 0.000 0.185 ✓ +2026-07-13 08:30:02,519 | INFO | Tabla 0.230 0.000 0.150 ✓ +2026-07-13 08:30:02,519 | INFO | Middle Eastern music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:02,519 | INFO | Folk music 0.141 0.000 0.091 ✗ +2026-07-13 08:30:02,519 | INFO | Plucked string instrument 0.129 0.000 0.084 ✗ +2026-07-13 08:30:02,519 | INFO | → WINNER: Music (combined=0.543) +2026-07-13 08:30:02,546 | INFO | +[230.20s] AMBIENT | scene='' +2026-07-13 08:30:02,546 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,546 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:02,546 | INFO | Musical instrument 0.348 0.000 0.226 ✓ +2026-07-13 08:30:02,546 | INFO | Tabla 0.306 0.000 0.199 ✓ +2026-07-13 08:30:02,546 | INFO | Sitar 0.185 0.000 0.120 ✓ +2026-07-13 08:30:02,546 | INFO | Plucked string instrument 0.152 0.000 0.099 ✗ +2026-07-13 08:30:02,546 | INFO | Folk music 0.107 0.000 0.069 ✗ +2026-07-13 08:30:02,546 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:02,576 | INFO | +[230.40s] AMBIENT | scene='' +2026-07-13 08:30:02,576 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,576 | INFO | Music 0.816 0.000 0.530 ✓ +2026-07-13 08:30:02,576 | INFO | Tabla 0.246 0.000 0.160 ✓ +2026-07-13 08:30:02,576 | INFO | Musical instrument 0.168 0.000 0.110 ✗ +2026-07-13 08:30:02,576 | INFO | Middle Eastern music 0.161 0.000 0.104 ✗ +2026-07-13 08:30:02,576 | INFO | Folk music 0.145 0.000 0.094 ✗ +2026-07-13 08:30:02,576 | INFO | Drum 0.120 0.000 0.078 ✗ +2026-07-13 08:30:02,576 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:02,603 | INFO | +[230.60s] AMBIENT | scene='' +2026-07-13 08:30:02,603 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,603 | INFO | Music 0.762 0.000 0.496 ✓ +2026-07-13 08:30:02,603 | INFO | Musical instrument 0.342 0.000 0.222 ✓ +2026-07-13 08:30:02,603 | INFO | Plucked string instrument 0.094 0.000 0.061 ✗ +2026-07-13 08:30:02,603 | INFO | Guitar 0.073 0.000 0.048 ✗ +2026-07-13 08:30:02,608 | INFO | Percussion 0.062 0.000 0.040 ✗ +2026-07-13 08:30:02,609 | INFO | Drum 0.060 0.000 0.039 ✗ +2026-07-13 08:30:02,609 | INFO | → WINNER: Music (combined=0.496) +2026-07-13 08:30:02,633 | INFO | +[230.80s] AMBIENT | scene='' +2026-07-13 08:30:02,633 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,633 | INFO | Music 0.742 0.000 0.482 ✓ +2026-07-13 08:30:02,633 | INFO | Tabla 0.502 0.000 0.326 ✓ +2026-07-13 08:30:02,633 | INFO | Musical instrument 0.339 0.000 0.221 ✓ +2026-07-13 08:30:02,633 | INFO | Carnatic music 0.238 0.000 0.155 ✓ +2026-07-13 08:30:02,633 | INFO | Drum 0.200 0.000 0.130 ✓ +2026-07-13 08:30:02,633 | INFO | Percussion 0.196 0.000 0.127 ✓ +2026-07-13 08:30:02,633 | INFO | → WINNER: Music (combined=0.482) +2026-07-13 08:30:02,666 | INFO | +[231.00s] AMBIENT | scene='' +2026-07-13 08:30:02,666 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,666 | INFO | Music 0.680 0.000 0.442 ✓ +2026-07-13 08:30:02,666 | INFO | Musical instrument 0.362 0.000 0.236 ✓ +2026-07-13 08:30:02,666 | INFO | Carnatic music 0.151 0.000 0.099 ✗ +2026-07-13 08:30:02,666 | INFO | Plucked string instrument 0.099 0.000 0.065 ✗ +2026-07-13 08:30:02,666 | INFO | Tabla 0.083 0.000 0.054 ✗ +2026-07-13 08:30:02,666 | INFO | Guitar 0.066 0.000 0.043 ✗ +2026-07-13 08:30:02,666 | INFO | → WINNER: Music (combined=0.442) +2026-07-13 08:30:02,691 | INFO | +[231.20s] AMBIENT | scene='' +2026-07-13 08:30:02,691 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,691 | INFO | Music 0.659 0.000 0.428 ✓ +2026-07-13 08:30:02,691 | INFO | Singing 0.202 0.000 0.131 ✓ +2026-07-13 08:30:02,691 | INFO | Musical instrument 0.155 0.000 0.101 ✗ +2026-07-13 08:30:02,691 | INFO | Drum 0.066 0.000 0.043 ✗ +2026-07-13 08:30:02,691 | INFO | Tabla 0.042 0.000 0.027 ✗ +2026-07-13 08:30:02,691 | INFO | → WINNER: Music (combined=0.428) +2026-07-13 08:30:02,722 | INFO | +[231.40s] AMBIENT | scene='' +2026-07-13 08:30:02,722 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,722 | INFO | Music 0.640 0.000 0.416 ✓ +2026-07-13 08:30:02,722 | INFO | Musical instrument 0.237 0.000 0.154 ✓ +2026-07-13 08:30:02,722 | INFO | Tabla 0.134 0.000 0.087 ✗ +2026-07-13 08:30:02,722 | INFO | Carnatic music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:02,722 | INFO | Singing 0.105 0.000 0.068 ✗ +2026-07-13 08:30:02,722 | INFO | Drum 0.086 0.000 0.056 ✗ +2026-07-13 08:30:02,722 | INFO | → WINNER: Music (combined=0.416) +2026-07-13 08:30:02,748 | INFO | +[231.60s] AMBIENT | scene='' +2026-07-13 08:30:02,748 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,748 | INFO | Music 0.503 0.000 0.327 ✓ +2026-07-13 08:30:02,748 | INFO | Musical instrument 0.132 0.000 0.086 ✗ +2026-07-13 08:30:02,748 | INFO | Singing 0.084 0.000 0.054 ✗ +2026-07-13 08:30:02,748 | INFO | → WINNER: Music (combined=0.327) +2026-07-13 08:30:02,781 | INFO | +[231.80s] AMBIENT | scene='' +2026-07-13 08:30:02,781 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,781 | INFO | Music 0.706 0.000 0.459 ✓ +2026-07-13 08:30:02,781 | INFO | Musical instrument 0.211 0.000 0.137 ✓ +2026-07-13 08:30:02,781 | INFO | Singing 0.159 0.000 0.103 ✗ +2026-07-13 08:30:02,781 | INFO | Plucked string instrument 0.127 0.000 0.083 ✗ +2026-07-13 08:30:02,781 | INFO | Guitar 0.112 0.000 0.073 ✗ +2026-07-13 08:30:02,781 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:02,807 | INFO | +[232.00s] AMBIENT | scene='' +2026-07-13 08:30:02,807 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,807 | INFO | Music 0.817 0.000 0.531 ✓ +2026-07-13 08:30:02,807 | INFO | Musical instrument 0.570 0.000 0.370 ✓ +2026-07-13 08:30:02,807 | INFO | Plucked string instrument 0.365 0.000 0.237 ✓ +2026-07-13 08:30:02,807 | INFO | Guitar 0.245 0.000 0.160 ✓ +2026-07-13 08:30:02,807 | INFO | Tabla 0.128 0.000 0.083 ✗ +2026-07-13 08:30:02,807 | INFO | Sitar 0.087 0.000 0.057 ✗ +2026-07-13 08:30:02,807 | INFO | → WINNER: Music (combined=0.531) +2026-07-13 08:30:02,839 | INFO | +[232.20s] AMBIENT | scene='' +2026-07-13 08:30:02,842 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,842 | INFO | Music 0.766 0.000 0.498 ✓ +2026-07-13 08:30:02,842 | INFO | Tabla 0.454 0.000 0.295 ✓ +2026-07-13 08:30:02,842 | INFO | Musical instrument 0.404 0.000 0.262 ✓ +2026-07-13 08:30:02,842 | INFO | Percussion 0.200 0.000 0.130 ✓ +2026-07-13 08:30:02,842 | INFO | Drum 0.182 0.000 0.118 ✗ +2026-07-13 08:30:02,842 | INFO | Plucked string instrument 0.144 0.000 0.094 ✗ +2026-07-13 08:30:02,842 | INFO | → WINNER: Music (combined=0.498) +2026-07-13 08:30:02,871 | INFO | +[232.40s] AMBIENT | scene='' +2026-07-13 08:30:02,871 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,873 | INFO | Music 0.694 0.000 0.451 ✓ +2026-07-13 08:30:02,874 | INFO | Tabla 0.627 0.000 0.408 ✓ +2026-07-13 08:30:02,874 | INFO | Musical instrument 0.403 0.000 0.262 ✓ +2026-07-13 08:30:02,874 | INFO | Percussion 0.294 0.000 0.191 ✓ +2026-07-13 08:30:02,874 | INFO | Drum 0.272 0.000 0.177 ✓ +2026-07-13 08:30:02,874 | INFO | Classical music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:02,874 | INFO | → WINNER: Music (combined=0.451) +2026-07-13 08:30:02,896 | INFO | +[232.60s] AMBIENT | scene='' +2026-07-13 08:30:02,896 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,896 | INFO | Tabla 0.717 0.000 0.466 ✓ +2026-07-13 08:30:02,896 | INFO | Music 0.643 0.000 0.418 ✓ +2026-07-13 08:30:02,896 | INFO | Percussion 0.359 0.000 0.234 ✓ +2026-07-13 08:30:02,896 | INFO | Drum 0.310 0.000 0.201 ✓ +2026-07-13 08:30:02,896 | INFO | Musical instrument 0.301 0.000 0.196 ✓ +2026-07-13 08:30:02,896 | INFO | Carnatic music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:02,904 | INFO | → WINNER: Tabla (combined=0.466) +2026-07-13 08:30:02,929 | INFO | +[232.80s] AMBIENT | scene='' +2026-07-13 08:30:02,929 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,929 | INFO | Music 0.659 0.000 0.428 ✓ +2026-07-13 08:30:02,929 | INFO | Tabla 0.608 0.000 0.395 ✓ +2026-07-13 08:30:02,929 | INFO | Percussion 0.328 0.000 0.213 ✓ +2026-07-13 08:30:02,929 | INFO | Musical instrument 0.320 0.000 0.208 ✓ +2026-07-13 08:30:02,929 | INFO | Drum 0.276 0.000 0.179 ✓ +2026-07-13 08:30:02,929 | INFO | Carnatic music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:02,929 | INFO | → WINNER: Music (combined=0.428) +2026-07-13 08:30:02,961 | INFO | +[233.00s] AMBIENT | scene='' +2026-07-13 08:30:02,961 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,961 | INFO | Tabla 0.744 0.000 0.484 ✓ +2026-07-13 08:30:02,961 | INFO | Music 0.628 0.000 0.408 ✓ +2026-07-13 08:30:02,961 | INFO | Musical instrument 0.355 0.000 0.231 ✓ +2026-07-13 08:30:02,961 | INFO | Percussion 0.312 0.000 0.203 ✓ +2026-07-13 08:30:02,961 | INFO | Carnatic music 0.283 0.000 0.184 ✓ +2026-07-13 08:30:02,961 | INFO | Drum 0.269 0.000 0.175 ✓ +2026-07-13 08:30:02,961 | INFO | → WINNER: Tabla (combined=0.484) +2026-07-13 08:30:02,988 | INFO | +[233.20s] AMBIENT | scene='' +2026-07-13 08:30:02,988 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:02,988 | INFO | Tabla 0.659 0.000 0.428 ✓ +2026-07-13 08:30:02,988 | INFO | Music 0.632 0.000 0.411 ✓ +2026-07-13 08:30:02,988 | INFO | Musical instrument 0.355 0.000 0.231 ✓ +2026-07-13 08:30:02,988 | INFO | Percussion 0.322 0.000 0.209 ✓ +2026-07-13 08:30:02,988 | INFO | Drum 0.284 0.000 0.184 ✓ +2026-07-13 08:30:02,988 | INFO | Carnatic music 0.200 0.000 0.130 ✓ +2026-07-13 08:30:02,988 | INFO | → WINNER: Tabla (combined=0.428) +2026-07-13 08:30:03,013 | INFO | +[233.40s] AMBIENT | scene='' +2026-07-13 08:30:03,019 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,019 | INFO | Tabla 0.736 0.000 0.478 ✓ +2026-07-13 08:30:03,019 | INFO | Music 0.638 0.000 0.415 ✓ +2026-07-13 08:30:03,020 | INFO | Musical instrument 0.392 0.000 0.255 ✓ +2026-07-13 08:30:03,021 | INFO | Percussion 0.362 0.000 0.235 ✓ +2026-07-13 08:30:03,021 | INFO | Drum 0.289 0.000 0.188 ✓ +2026-07-13 08:30:03,021 | INFO | Carnatic music 0.209 0.000 0.136 ✓ +2026-07-13 08:30:03,022 | INFO | → WINNER: Tabla (combined=0.478) +2026-07-13 08:30:03,047 | INFO | +[233.60s] AMBIENT | scene='' +2026-07-13 08:30:03,047 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,047 | INFO | Music 0.751 0.000 0.488 ✓ +2026-07-13 08:30:03,047 | INFO | Tabla 0.540 0.000 0.351 ✓ +2026-07-13 08:30:03,047 | INFO | Musical instrument 0.366 0.000 0.238 ✓ +2026-07-13 08:30:03,047 | INFO | Percussion 0.287 0.000 0.187 ✓ +2026-07-13 08:30:03,047 | INFO | Drum 0.250 0.000 0.163 ✓ +2026-07-13 08:30:03,047 | INFO | Carnatic music 0.097 0.000 0.063 ✗ +2026-07-13 08:30:03,047 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:03,077 | INFO | +[233.80s] AMBIENT | scene='' +2026-07-13 08:30:03,077 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,079 | INFO | Music 0.853 0.000 0.554 ✓ +2026-07-13 08:30:03,080 | INFO | Musical instrument 0.454 0.000 0.295 ✓ +2026-07-13 08:30:03,080 | INFO | Plucked string instrument 0.287 0.000 0.187 ✓ +2026-07-13 08:30:03,080 | INFO | Guitar 0.171 0.000 0.111 ✗ +2026-07-13 08:30:03,080 | INFO | Tabla 0.091 0.000 0.059 ✗ +2026-07-13 08:30:03,080 | INFO | Traditional music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:03,080 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:03,106 | INFO | +[234.00s] AMBIENT | scene='' +2026-07-13 08:30:03,106 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,106 | INFO | Music 0.799 0.000 0.520 ✓ +2026-07-13 08:30:03,106 | INFO | Musical instrument 0.408 0.000 0.265 ✓ +2026-07-13 08:30:03,106 | INFO | Plucked string instrument 0.264 0.000 0.172 ✓ +2026-07-13 08:30:03,106 | INFO | Tabla 0.170 0.000 0.110 ✗ +2026-07-13 08:30:03,106 | INFO | Banjo 0.113 0.000 0.074 ✗ +2026-07-13 08:30:03,106 | INFO | Guitar 0.111 0.000 0.072 ✗ +2026-07-13 08:30:03,106 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:03,136 | INFO | +[234.20s] AMBIENT | scene='' +2026-07-13 08:30:03,136 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,136 | INFO | Music 0.842 0.000 0.548 ✓ +2026-07-13 08:30:03,136 | INFO | Musical instrument 0.355 0.000 0.231 ✓ +2026-07-13 08:30:03,136 | INFO | Plucked string instrument 0.177 0.000 0.115 ✗ +2026-07-13 08:30:03,136 | INFO | Tabla 0.125 0.000 0.082 ✗ +2026-07-13 08:30:03,136 | INFO | Guitar 0.106 0.000 0.069 ✗ +2026-07-13 08:30:03,136 | INFO | Middle Eastern music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:03,136 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:03,161 | INFO | +[234.40s] AMBIENT | scene='' +2026-07-13 08:30:03,161 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,161 | INFO | Music 0.853 0.000 0.554 ✓ +2026-07-13 08:30:03,161 | INFO | Musical instrument 0.426 0.000 0.277 ✓ +2026-07-13 08:30:03,161 | INFO | Plucked string instrument 0.197 0.000 0.128 ✓ +2026-07-13 08:30:03,167 | INFO | Guitar 0.147 0.000 0.096 ✗ +2026-07-13 08:30:03,167 | INFO | Folk music 0.064 0.000 0.041 ✗ +2026-07-13 08:30:03,167 | INFO | Tabla 0.041 0.000 0.027 ✗ +2026-07-13 08:30:03,168 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:03,192 | INFO | +[234.60s] AMBIENT | scene='' +2026-07-13 08:30:03,192 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,192 | INFO | Music 0.850 0.000 0.553 ✓ +2026-07-13 08:30:03,192 | INFO | Musical instrument 0.269 0.000 0.174 ✓ +2026-07-13 08:30:03,192 | INFO | Salsa music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:03,192 | INFO | Plucked string instrument 0.072 0.000 0.047 ✗ +2026-07-13 08:30:03,192 | INFO | Folk music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:03,192 | INFO | Guitar 0.062 0.000 0.040 ✗ +2026-07-13 08:30:03,192 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:03,217 | INFO | +[234.80s] AMBIENT | scene='' +2026-07-13 08:30:03,224 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,224 | INFO | Music 0.784 0.000 0.509 ✓ +2026-07-13 08:30:03,225 | INFO | Musical instrument 0.479 0.000 0.311 ✓ +2026-07-13 08:30:03,225 | INFO | Plucked string instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:30:03,225 | INFO | Guitar 0.114 0.000 0.074 ✗ +2026-07-13 08:30:03,225 | INFO | Keyboard (musical) 0.091 0.000 0.059 ✗ +2026-07-13 08:30:03,225 | INFO | Tabla 0.085 0.000 0.055 ✗ +2026-07-13 08:30:03,225 | INFO | → WINNER: Music (combined=0.509) +2026-07-13 08:30:03,251 | INFO | +[235.00s] AMBIENT | scene='' +2026-07-13 08:30:03,251 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,251 | INFO | Music 0.802 0.000 0.521 ✓ +2026-07-13 08:30:03,251 | INFO | Tabla 0.459 0.000 0.298 ✓ +2026-07-13 08:30:03,251 | INFO | Musical instrument 0.289 0.000 0.188 ✓ +2026-07-13 08:30:03,251 | INFO | Drum 0.205 0.000 0.134 ✓ +2026-07-13 08:30:03,251 | INFO | Percussion 0.203 0.000 0.132 ✓ +2026-07-13 08:30:03,251 | INFO | Middle Eastern music 0.124 0.000 0.081 ✗ +2026-07-13 08:30:03,251 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:30:03,279 | INFO | +[235.20s] AMBIENT | scene='' +2026-07-13 08:30:03,279 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,279 | INFO | Tabla 0.663 0.000 0.431 ✓ +2026-07-13 08:30:03,279 | INFO | Music 0.642 0.000 0.417 ✓ +2026-07-13 08:30:03,282 | INFO | Musical instrument 0.342 0.000 0.223 ✓ +2026-07-13 08:30:03,282 | INFO | Carnatic music 0.295 0.000 0.192 ✓ +2026-07-13 08:30:03,283 | INFO | Percussion 0.279 0.000 0.181 ✓ +2026-07-13 08:30:03,283 | INFO | Drum 0.223 0.000 0.145 ✓ +2026-07-13 08:30:03,283 | INFO | → WINNER: Tabla (combined=0.431) +2026-07-13 08:30:03,310 | INFO | +[235.40s] AMBIENT | scene='' +2026-07-13 08:30:03,310 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,310 | INFO | Tabla 0.724 0.000 0.471 ✓ +2026-07-13 08:30:03,310 | INFO | Music 0.708 0.000 0.460 ✓ +2026-07-13 08:30:03,310 | INFO | Musical instrument 0.359 0.000 0.233 ✓ +2026-07-13 08:30:03,310 | INFO | Percussion 0.339 0.000 0.220 ✓ +2026-07-13 08:30:03,310 | INFO | Drum 0.309 0.000 0.201 ✓ +2026-07-13 08:30:03,310 | INFO | Carnatic music 0.231 0.000 0.150 ✓ +2026-07-13 08:30:03,310 | INFO | → WINNER: Tabla (combined=0.471) +2026-07-13 08:30:03,339 | INFO | +[235.60s] AMBIENT | scene='' +2026-07-13 08:30:03,339 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,339 | INFO | Music 0.606 0.000 0.394 ✓ +2026-07-13 08:30:03,339 | INFO | Tabla 0.601 0.000 0.391 ✓ +2026-07-13 08:30:03,339 | INFO | Musical instrument 0.350 0.000 0.227 ✓ +2026-07-13 08:30:03,339 | INFO | Carnatic music 0.255 0.000 0.166 ✓ +2026-07-13 08:30:03,339 | INFO | Drum 0.217 0.000 0.141 ✓ +2026-07-13 08:30:03,339 | INFO | Percussion 0.214 0.000 0.139 ✓ +2026-07-13 08:30:03,339 | INFO | → WINNER: Music (combined=0.394) +2026-07-13 08:30:03,363 | INFO | +[235.80s] AMBIENT | scene='' +2026-07-13 08:30:03,363 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,363 | INFO | Music 0.742 0.000 0.482 ✓ +2026-07-13 08:30:03,363 | INFO | Carnatic music 0.351 0.000 0.228 ✓ +2026-07-13 08:30:03,363 | INFO | Tabla 0.345 0.000 0.224 ✓ +2026-07-13 08:30:03,363 | INFO | Musical instrument 0.305 0.000 0.198 ✓ +2026-07-13 08:30:03,363 | INFO | Sitar 0.166 0.000 0.108 ✗ +2026-07-13 08:30:03,363 | INFO | Classical music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:03,363 | INFO | → WINNER: Music (combined=0.482) +2026-07-13 08:30:03,396 | INFO | +[236.00s] AMBIENT | scene='' +2026-07-13 08:30:03,396 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,396 | INFO | Music 0.635 0.000 0.412 ✓ +2026-07-13 08:30:03,396 | INFO | Tabla 0.452 0.000 0.294 ✓ +2026-07-13 08:30:03,396 | INFO | Musical instrument 0.296 0.000 0.193 ✓ +2026-07-13 08:30:03,396 | INFO | Carnatic music 0.256 0.000 0.166 ✓ +2026-07-13 08:30:03,396 | INFO | Drum 0.177 0.000 0.115 ✗ +2026-07-13 08:30:03,396 | INFO | Percussion 0.171 0.000 0.111 ✗ +2026-07-13 08:30:03,396 | INFO | → WINNER: Music (combined=0.412) +2026-07-13 08:30:03,428 | INFO | +[236.20s] AMBIENT | scene='' +2026-07-13 08:30:03,428 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,428 | INFO | Music 0.713 0.000 0.464 ✓ +2026-07-13 08:30:03,428 | INFO | Tabla 0.519 0.000 0.338 ✓ +2026-07-13 08:30:03,428 | INFO | Musical instrument 0.354 0.000 0.230 ✓ +2026-07-13 08:30:03,428 | INFO | Sitar 0.227 0.000 0.148 ✓ +2026-07-13 08:30:03,428 | INFO | Percussion 0.218 0.000 0.142 ✓ +2026-07-13 08:30:03,428 | INFO | Drum 0.175 0.000 0.114 ✗ +2026-07-13 08:30:03,428 | INFO | → WINNER: Music (combined=0.464) +2026-07-13 08:30:03,456 | INFO | +[236.40s] AMBIENT | scene='' +2026-07-13 08:30:03,458 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,458 | INFO | Music 0.671 0.000 0.436 ✓ +2026-07-13 08:30:03,458 | INFO | Tabla 0.504 0.000 0.328 ✓ +2026-07-13 08:30:03,459 | INFO | Carnatic music 0.290 0.000 0.189 ✓ +2026-07-13 08:30:03,459 | INFO | Musical instrument 0.248 0.000 0.162 ✓ +2026-07-13 08:30:03,459 | INFO | Percussion 0.184 0.000 0.119 ✗ +2026-07-13 08:30:03,459 | INFO | Sitar 0.172 0.000 0.112 ✗ +2026-07-13 08:30:03,459 | INFO | → WINNER: Music (combined=0.436) +2026-07-13 08:30:03,478 | INFO | +[236.60s] AMBIENT | scene='' +2026-07-13 08:30:03,478 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,486 | INFO | Music 0.708 0.000 0.460 ✓ +2026-07-13 08:30:03,486 | INFO | Tabla 0.469 0.000 0.305 ✓ +2026-07-13 08:30:03,486 | INFO | Musical instrument 0.295 0.000 0.192 ✓ +2026-07-13 08:30:03,486 | INFO | Carnatic music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:03,486 | INFO | Percussion 0.183 0.000 0.119 ✗ +2026-07-13 08:30:03,486 | INFO | Sitar 0.143 0.000 0.093 ✗ +2026-07-13 08:30:03,486 | INFO | → WINNER: Music (combined=0.460) +2026-07-13 08:30:03,513 | INFO | +[236.80s] AMBIENT | scene='' +2026-07-13 08:30:03,514 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,514 | INFO | Music 0.807 0.000 0.525 ✓ +2026-07-13 08:30:03,514 | INFO | Musical instrument 0.366 0.000 0.238 ✓ +2026-07-13 08:30:03,517 | INFO | Tabla 0.208 0.000 0.135 ✓ +2026-07-13 08:30:03,517 | INFO | Plucked string instrument 0.119 0.000 0.077 ✗ +2026-07-13 08:30:03,517 | INFO | Percussion 0.112 0.000 0.073 ✗ +2026-07-13 08:30:03,517 | INFO | Carnatic music 0.095 0.000 0.061 ✗ +2026-07-13 08:30:03,517 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:03,543 | INFO | +[237.00s] AMBIENT | scene='' +2026-07-13 08:30:03,543 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,543 | INFO | Music 0.775 0.000 0.503 ✓ +2026-07-13 08:30:03,543 | INFO | Musical instrument 0.423 0.000 0.275 ✓ +2026-07-13 08:30:03,543 | INFO | Tabla 0.414 0.000 0.269 ✓ +2026-07-13 08:30:03,543 | INFO | Percussion 0.179 0.000 0.116 ✗ +2026-07-13 08:30:03,543 | INFO | Drum 0.163 0.000 0.106 ✗ +2026-07-13 08:30:03,543 | INFO | Plucked string instrument 0.115 0.000 0.075 ✗ +2026-07-13 08:30:03,543 | INFO | → WINNER: Music (combined=0.503) +2026-07-13 08:30:03,569 | INFO | +[237.20s] AMBIENT | scene='' +2026-07-13 08:30:03,569 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,569 | INFO | Music 0.839 0.000 0.545 ✓ +2026-07-13 08:30:03,569 | INFO | Musical instrument 0.576 0.000 0.374 ✓ +2026-07-13 08:30:03,569 | INFO | Plucked string instrument 0.286 0.000 0.186 ✓ +2026-07-13 08:30:03,575 | INFO | Guitar 0.207 0.000 0.135 ✓ +2026-07-13 08:30:03,575 | INFO | Tabla 0.150 0.000 0.097 ✗ +2026-07-13 08:30:03,575 | INFO | Percussion 0.088 0.000 0.057 ✗ +2026-07-13 08:30:03,576 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:03,601 | INFO | +[237.40s] AMBIENT | scene='' +2026-07-13 08:30:03,603 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,603 | INFO | Music 0.816 0.000 0.531 ✓ +2026-07-13 08:30:03,603 | INFO | Musical instrument 0.687 0.000 0.447 ✓ +2026-07-13 08:30:03,605 | INFO | Plucked string instrument 0.413 0.000 0.269 ✓ +2026-07-13 08:30:03,605 | INFO | Carnatic music 0.362 0.000 0.236 ✓ +2026-07-13 08:30:03,605 | INFO | Sitar 0.238 0.000 0.155 ✓ +2026-07-13 08:30:03,605 | INFO | Tabla 0.209 0.000 0.136 ✓ +2026-07-13 08:30:03,605 | INFO | → WINNER: Music (combined=0.531) +2026-07-13 08:30:03,633 | INFO | +[237.60s] AMBIENT | scene='' +2026-07-13 08:30:03,633 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,633 | INFO | Music 0.840 0.000 0.546 ✓ +2026-07-13 08:30:03,633 | INFO | Musical instrument 0.675 0.000 0.439 ✓ +2026-07-13 08:30:03,633 | INFO | Sitar 0.439 0.000 0.285 ✓ +2026-07-13 08:30:03,633 | INFO | Plucked string instrument 0.435 0.000 0.283 ✓ +2026-07-13 08:30:03,633 | INFO | Carnatic music 0.396 0.000 0.257 ✓ +2026-07-13 08:30:03,633 | INFO | Classical music 0.247 0.000 0.161 ✓ +2026-07-13 08:30:03,633 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:30:03,657 | INFO | +[237.80s] AMBIENT | scene='' +2026-07-13 08:30:03,664 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,664 | INFO | Music 0.872 0.000 0.567 ✓ +2026-07-13 08:30:03,664 | INFO | Musical instrument 0.719 0.000 0.467 ✓ +2026-07-13 08:30:03,664 | INFO | Carnatic music 0.592 0.000 0.385 ✓ +2026-07-13 08:30:03,664 | INFO | Plucked string instrument 0.414 0.000 0.269 ✓ +2026-07-13 08:30:03,664 | INFO | Classical music 0.325 0.000 0.211 ✓ +2026-07-13 08:30:03,664 | INFO | Sitar 0.292 0.000 0.190 ✓ +2026-07-13 08:30:03,664 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:03,689 | INFO | +[238.00s] AMBIENT | scene='' +2026-07-13 08:30:03,689 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,689 | INFO | Music 0.810 0.000 0.527 ✓ +2026-07-13 08:30:03,689 | INFO | Musical instrument 0.619 0.000 0.402 ✓ +2026-07-13 08:30:03,689 | INFO | Tabla 0.511 0.000 0.332 ✓ +2026-07-13 08:30:03,689 | INFO | Carnatic music 0.443 0.000 0.288 ✓ +2026-07-13 08:30:03,689 | INFO | Classical music 0.322 0.000 0.209 ✓ +2026-07-13 08:30:03,689 | INFO | Sitar 0.209 0.000 0.136 ✓ +2026-07-13 08:30:03,689 | INFO | → WINNER: Music (combined=0.527) +2026-07-13 08:30:03,719 | INFO | +[238.20s] AMBIENT | scene='' +2026-07-13 08:30:03,722 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,723 | INFO | Music 0.814 0.000 0.529 ✓ +2026-07-13 08:30:03,723 | INFO | Musical instrument 0.429 0.000 0.279 ✓ +2026-07-13 08:30:03,723 | INFO | Tabla 0.422 0.000 0.274 ✓ +2026-07-13 08:30:03,723 | INFO | Carnatic music 0.205 0.000 0.133 ✓ +2026-07-13 08:30:03,723 | INFO | Classical music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:03,723 | INFO | Percussion 0.142 0.000 0.092 ✗ +2026-07-13 08:30:03,723 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:03,746 | INFO | +[238.40s] AMBIENT | scene='' +2026-07-13 08:30:03,746 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,746 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:30:03,746 | INFO | Tabla 0.483 0.000 0.314 ✓ +2026-07-13 08:30:03,746 | INFO | Musical instrument 0.405 0.000 0.263 ✓ +2026-07-13 08:30:03,746 | INFO | Carnatic music 0.222 0.000 0.144 ✓ +2026-07-13 08:30:03,746 | INFO | Middle Eastern music 0.184 0.000 0.120 ✗ +2026-07-13 08:30:03,746 | INFO | Percussion 0.184 0.000 0.120 ✗ +2026-07-13 08:30:03,746 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:03,779 | INFO | +[238.60s] AMBIENT | scene='' +2026-07-13 08:30:03,779 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,779 | INFO | Tabla 0.736 0.000 0.479 ✓ +2026-07-13 08:30:03,779 | INFO | Music 0.703 0.000 0.457 ✓ +2026-07-13 08:30:03,779 | INFO | Musical instrument 0.324 0.000 0.210 ✓ +2026-07-13 08:30:03,779 | INFO | Percussion 0.320 0.000 0.208 ✓ +2026-07-13 08:30:03,779 | INFO | Drum 0.240 0.000 0.156 ✓ +2026-07-13 08:30:03,779 | INFO | Carnatic music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:03,779 | INFO | → WINNER: Tabla (combined=0.479) +2026-07-13 08:30:03,803 | INFO | +[238.80s] AMBIENT | scene='' +2026-07-13 08:30:03,803 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,803 | INFO | Music 0.736 0.000 0.478 ✓ +2026-07-13 08:30:03,803 | INFO | Tabla 0.514 0.000 0.334 ✓ +2026-07-13 08:30:03,803 | INFO | Musical instrument 0.278 0.000 0.180 ✓ +2026-07-13 08:30:03,803 | INFO | Percussion 0.206 0.000 0.134 ✓ +2026-07-13 08:30:03,803 | INFO | Sitar 0.204 0.000 0.132 ✓ +2026-07-13 08:30:03,803 | INFO | Drum 0.144 0.000 0.093 ✗ +2026-07-13 08:30:03,803 | INFO | → WINNER: Music (combined=0.478) +2026-07-13 08:30:03,837 | INFO | +[239.00s] AMBIENT | scene='' +2026-07-13 08:30:03,837 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,837 | INFO | Tabla 0.739 0.000 0.480 ✓ +2026-07-13 08:30:03,837 | INFO | Music 0.652 0.000 0.424 ✓ +2026-07-13 08:30:03,837 | INFO | Percussion 0.379 0.000 0.246 ✓ +2026-07-13 08:30:03,837 | INFO | Musical instrument 0.329 0.000 0.214 ✓ +2026-07-13 08:30:03,837 | INFO | Drum 0.259 0.000 0.168 ✓ +2026-07-13 08:30:03,837 | INFO | Sitar 0.117 0.000 0.076 ✗ +2026-07-13 08:30:03,837 | INFO | → WINNER: Tabla (combined=0.480) +2026-07-13 08:30:03,865 | INFO | +[239.20s] AMBIENT | scene='' +2026-07-13 08:30:03,865 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,865 | INFO | Music 0.694 0.000 0.451 ✓ +2026-07-13 08:30:03,865 | INFO | Tabla 0.490 0.000 0.319 ✓ +2026-07-13 08:30:03,865 | INFO | Percussion 0.226 0.000 0.147 ✓ +2026-07-13 08:30:03,865 | INFO | Drum 0.183 0.000 0.119 ✗ +2026-07-13 08:30:03,870 | INFO | Musical instrument 0.169 0.000 0.110 ✗ +2026-07-13 08:30:03,870 | INFO | Middle Eastern music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:03,870 | INFO | → WINNER: Music (combined=0.451) +2026-07-13 08:30:03,894 | INFO | +[239.40s] AMBIENT | scene='' +2026-07-13 08:30:03,894 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,894 | INFO | Music 0.648 0.000 0.421 ✓ +2026-07-13 08:30:03,894 | INFO | Tabla 0.495 0.000 0.322 ✓ +2026-07-13 08:30:03,894 | INFO | Percussion 0.218 0.000 0.142 ✓ +2026-07-13 08:30:03,894 | INFO | Drum 0.193 0.000 0.125 ✓ +2026-07-13 08:30:03,894 | INFO | Musical instrument 0.184 0.000 0.119 ✗ +2026-07-13 08:30:03,894 | INFO | Carnatic music 0.124 0.000 0.081 ✗ +2026-07-13 08:30:03,894 | INFO | → WINNER: Music (combined=0.421) +2026-07-13 08:30:03,918 | INFO | +[239.60s] AMBIENT | scene='' +2026-07-13 08:30:03,927 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,927 | INFO | Tabla 0.696 0.000 0.452 ✓ +2026-07-13 08:30:03,927 | INFO | Music 0.615 0.000 0.400 ✓ +2026-07-13 08:30:03,927 | INFO | Musical instrument 0.360 0.000 0.234 ✓ +2026-07-13 08:30:03,927 | INFO | Percussion 0.339 0.000 0.221 ✓ +2026-07-13 08:30:03,927 | INFO | Drum 0.296 0.000 0.192 ✓ +2026-07-13 08:30:03,927 | INFO | Classical music 0.218 0.000 0.142 ✓ +2026-07-13 08:30:03,927 | INFO | → WINNER: Tabla (combined=0.452) +2026-07-13 08:30:03,954 | INFO | +[239.80s] AMBIENT | scene='' +2026-07-13 08:30:03,954 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,954 | INFO | Music 0.603 0.000 0.392 ✓ +2026-07-13 08:30:03,954 | INFO | Tabla 0.518 0.000 0.337 ✓ +2026-07-13 08:30:03,954 | INFO | Carnatic music 0.436 0.000 0.283 ✓ +2026-07-13 08:30:03,954 | INFO | Musical instrument 0.282 0.000 0.183 ✓ +2026-07-13 08:30:03,954 | INFO | Classical music 0.219 0.000 0.142 ✓ +2026-07-13 08:30:03,954 | INFO | Percussion 0.155 0.000 0.101 ✗ +2026-07-13 08:30:03,954 | INFO | → WINNER: Music (combined=0.392) +2026-07-13 08:30:03,985 | INFO | +[240.00s] AMBIENT | scene='' +2026-07-13 08:30:03,985 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:03,986 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:03,986 | INFO | Tabla 0.597 0.000 0.388 ✓ +2026-07-13 08:30:03,986 | INFO | Musical instrument 0.526 0.000 0.342 ✓ +2026-07-13 08:30:03,986 | INFO | Carnatic music 0.442 0.000 0.287 ✓ +2026-07-13 08:30:03,986 | INFO | Classical music 0.307 0.000 0.200 ✓ +2026-07-13 08:30:03,986 | INFO | Sitar 0.205 0.000 0.134 ✓ +2026-07-13 08:30:03,986 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:04,013 | INFO | +[240.20s] AMBIENT | scene='' +2026-07-13 08:30:04,013 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,013 | INFO | Music 0.772 0.000 0.502 ✓ +2026-07-13 08:30:04,013 | INFO | Musical instrument 0.553 0.000 0.359 ✓ +2026-07-13 08:30:04,013 | INFO | Tabla 0.485 0.000 0.315 ✓ +2026-07-13 08:30:04,013 | INFO | Plucked string instrument 0.326 0.000 0.212 ✓ +2026-07-13 08:30:04,013 | INFO | Sitar 0.289 0.000 0.188 ✓ +2026-07-13 08:30:04,013 | INFO | Carnatic music 0.241 0.000 0.157 ✓ +2026-07-13 08:30:04,013 | INFO | → WINNER: Music (combined=0.502) +2026-07-13 08:30:04,043 | INFO | +[240.40s] AMBIENT | scene='' +2026-07-13 08:30:04,043 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,043 | INFO | Music 0.844 0.000 0.549 ✓ +2026-07-13 08:30:04,043 | INFO | Musical instrument 0.587 0.000 0.382 ✓ +2026-07-13 08:30:04,043 | INFO | Plucked string instrument 0.507 0.000 0.330 ✓ +2026-07-13 08:30:04,043 | INFO | Guitar 0.443 0.000 0.288 ✓ +2026-07-13 08:30:04,043 | INFO | Acoustic guitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:04,043 | INFO | Strum 0.129 0.000 0.084 ✗ +2026-07-13 08:30:04,043 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:04,070 | INFO | +[240.60s] AMBIENT | scene='' +2026-07-13 08:30:04,071 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,072 | INFO | Music 0.821 0.000 0.533 ✓ +2026-07-13 08:30:04,072 | INFO | Musical instrument 0.503 0.000 0.327 ✓ +2026-07-13 08:30:04,073 | INFO | Plucked string instrument 0.380 0.000 0.247 ✓ +2026-07-13 08:30:04,073 | INFO | Guitar 0.192 0.000 0.124 ✓ +2026-07-13 08:30:04,073 | INFO | Sitar 0.169 0.000 0.110 ✗ +2026-07-13 08:30:04,074 | INFO | Carnatic music 0.087 0.000 0.057 ✗ +2026-07-13 08:30:04,074 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:04,099 | INFO | +[240.80s] AMBIENT | scene='' +2026-07-13 08:30:04,099 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,099 | INFO | Music 0.786 0.000 0.511 ✓ +2026-07-13 08:30:04,099 | INFO | Musical instrument 0.494 0.000 0.321 ✓ +2026-07-13 08:30:04,099 | INFO | Plucked string instrument 0.318 0.000 0.207 ✓ +2026-07-13 08:30:04,099 | INFO | Sitar 0.311 0.000 0.202 ✓ +2026-07-13 08:30:04,099 | INFO | Carnatic music 0.180 0.000 0.117 ✗ +2026-07-13 08:30:04,099 | INFO | Classical music 0.119 0.000 0.077 ✗ +2026-07-13 08:30:04,099 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:04,131 | INFO | +[241.00s] AMBIENT | scene='' +2026-07-13 08:30:04,131 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,131 | INFO | Music 0.797 0.000 0.518 ✓ +2026-07-13 08:30:04,131 | INFO | Musical instrument 0.375 0.000 0.244 ✓ +2026-07-13 08:30:04,131 | INFO | Plucked string instrument 0.205 0.000 0.133 ✓ +2026-07-13 08:30:04,131 | INFO | Middle Eastern music 0.160 0.000 0.104 ✗ +2026-07-13 08:30:04,131 | INFO | Tabla 0.159 0.000 0.103 ✗ +2026-07-13 08:30:04,131 | INFO | Carnatic music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:04,131 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:04,164 | INFO | +[241.20s] AMBIENT | scene='' +2026-07-13 08:30:04,164 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,164 | INFO | Music 0.792 0.000 0.515 ✓ +2026-07-13 08:30:04,164 | INFO | Musical instrument 0.446 0.000 0.290 ✓ +2026-07-13 08:30:04,164 | INFO | Tabla 0.377 0.000 0.245 ✓ +2026-07-13 08:30:04,164 | INFO | Plucked string instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:04,164 | INFO | Percussion 0.141 0.000 0.092 ✗ +2026-07-13 08:30:04,164 | INFO | Sitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:04,164 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:04,190 | INFO | +[241.40s] AMBIENT | scene='' +2026-07-13 08:30:04,190 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,190 | INFO | Music 0.811 0.000 0.527 ✓ +2026-07-13 08:30:04,190 | INFO | Musical instrument 0.301 0.000 0.196 ✓ +2026-07-13 08:30:04,190 | INFO | Singing 0.150 0.000 0.098 ✗ +2026-07-13 08:30:04,190 | INFO | Tabla 0.129 0.000 0.084 ✗ +2026-07-13 08:30:04,190 | INFO | Percussion 0.112 0.000 0.073 ✗ +2026-07-13 08:30:04,190 | INFO | Middle Eastern music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:04,190 | INFO | → WINNER: Music (combined=0.527) +2026-07-13 08:30:04,223 | INFO | +[241.60s] AMBIENT | scene='' +2026-07-13 08:30:04,223 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,223 | INFO | Music 0.749 0.000 0.487 ✓ +2026-07-13 08:30:04,223 | INFO | Tabla 0.402 0.000 0.261 ✓ +2026-07-13 08:30:04,223 | INFO | Musical instrument 0.274 0.000 0.178 ✓ +2026-07-13 08:30:04,223 | INFO | Percussion 0.197 0.000 0.128 ✓ +2026-07-13 08:30:04,223 | INFO | Drum 0.196 0.000 0.128 ✓ +2026-07-13 08:30:04,223 | INFO | Singing 0.112 0.000 0.073 ✗ +2026-07-13 08:30:04,223 | INFO | → WINNER: Music (combined=0.487) +2026-07-13 08:30:04,252 | INFO | +[241.80s] AMBIENT | scene='' +2026-07-13 08:30:04,254 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,254 | INFO | Music 0.698 0.000 0.454 ✓ +2026-07-13 08:30:04,254 | INFO | Tabla 0.440 0.000 0.286 ✓ +2026-07-13 08:30:04,254 | INFO | Musical instrument 0.317 0.000 0.206 ✓ +2026-07-13 08:30:04,254 | INFO | Carnatic music 0.239 0.000 0.155 ✓ +2026-07-13 08:30:04,254 | INFO | Drum 0.205 0.000 0.133 ✓ +2026-07-13 08:30:04,254 | INFO | Percussion 0.197 0.000 0.128 ✓ +2026-07-13 08:30:04,254 | INFO | → WINNER: Music (combined=0.454) +2026-07-13 08:30:04,282 | INFO | +[242.00s] AMBIENT | scene='' +2026-07-13 08:30:04,282 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,282 | INFO | Music 0.725 0.000 0.471 ✓ +2026-07-13 08:30:04,282 | INFO | Tabla 0.587 0.000 0.382 ✓ +2026-07-13 08:30:04,282 | INFO | Musical instrument 0.431 0.000 0.280 ✓ +2026-07-13 08:30:04,282 | INFO | Carnatic music 0.298 0.000 0.194 ✓ +2026-07-13 08:30:04,282 | INFO | Drum 0.214 0.000 0.139 ✓ +2026-07-13 08:30:04,282 | INFO | Percussion 0.211 0.000 0.137 ✓ +2026-07-13 08:30:04,282 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:04,305 | INFO | +[242.20s] AMBIENT | scene='' +2026-07-13 08:30:04,311 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,311 | INFO | Music 0.825 0.000 0.536 ✓ +2026-07-13 08:30:04,311 | INFO | Musical instrument 0.389 0.000 0.253 ✓ +2026-07-13 08:30:04,311 | INFO | Tabla 0.353 0.000 0.229 ✓ +2026-07-13 08:30:04,313 | INFO | Plucked string instrument 0.170 0.000 0.111 ✗ +2026-07-13 08:30:04,313 | INFO | Percussion 0.148 0.000 0.096 ✗ +2026-07-13 08:30:04,313 | INFO | Folk music 0.121 0.000 0.079 ✗ +2026-07-13 08:30:04,313 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:04,335 | INFO | +[242.40s] AMBIENT | scene='' +2026-07-13 08:30:04,335 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,335 | INFO | Music 0.885 0.000 0.575 ✓ +2026-07-13 08:30:04,335 | INFO | Musical instrument 0.391 0.000 0.254 ✓ +2026-07-13 08:30:04,335 | INFO | Plucked string instrument 0.190 0.000 0.123 ✓ +2026-07-13 08:30:04,335 | INFO | Tabla 0.186 0.000 0.121 ✓ +2026-07-13 08:30:04,335 | INFO | Percussion 0.150 0.000 0.097 ✗ +2026-07-13 08:30:04,335 | INFO | Folk music 0.118 0.000 0.076 ✗ +2026-07-13 08:30:04,343 | INFO | → WINNER: Music (combined=0.575) +2026-07-13 08:30:04,369 | INFO | +[242.60s] AMBIENT | scene='' +2026-07-13 08:30:04,369 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,369 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:30:04,369 | INFO | Tabla 0.360 0.000 0.234 ✓ +2026-07-13 08:30:04,369 | INFO | Musical instrument 0.305 0.000 0.198 ✓ +2026-07-13 08:30:04,369 | INFO | Percussion 0.260 0.000 0.169 ✓ +2026-07-13 08:30:04,369 | INFO | Drum 0.155 0.000 0.101 ✗ +2026-07-13 08:30:04,369 | INFO | Wood block 0.133 0.000 0.086 ✗ +2026-07-13 08:30:04,369 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:04,393 | INFO | +[242.80s] AMBIENT | scene='' +2026-07-13 08:30:04,393 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,393 | INFO | Music 0.762 0.000 0.495 ✓ +2026-07-13 08:30:04,393 | INFO | Tabla 0.469 0.000 0.305 ✓ +2026-07-13 08:30:04,393 | INFO | Musical instrument 0.325 0.000 0.211 ✓ +2026-07-13 08:30:04,393 | INFO | Percussion 0.296 0.000 0.193 ✓ +2026-07-13 08:30:04,393 | INFO | Drum 0.176 0.000 0.115 ✗ +2026-07-13 08:30:04,393 | INFO | Plucked string instrument 0.091 0.000 0.059 ✗ +2026-07-13 08:30:04,400 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:04,424 | INFO | +[243.00s] AMBIENT | scene='' +2026-07-13 08:30:04,424 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,424 | INFO | Tabla 0.720 0.000 0.468 ✓ +2026-07-13 08:30:04,424 | INFO | Music 0.633 0.000 0.412 ✓ +2026-07-13 08:30:04,424 | INFO | Percussion 0.469 0.000 0.305 ✓ +2026-07-13 08:30:04,424 | INFO | Drum 0.325 0.000 0.211 ✓ +2026-07-13 08:30:04,424 | INFO | Musical instrument 0.306 0.000 0.199 ✓ +2026-07-13 08:30:04,424 | INFO | Wood block 0.042 0.000 0.027 ✗ +2026-07-13 08:30:04,424 | INFO | → WINNER: Tabla (combined=0.468) +2026-07-13 08:30:04,453 | INFO | +[243.20s] AMBIENT | scene='' +2026-07-13 08:30:04,453 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,456 | INFO | Tabla 0.779 0.000 0.506 ✓ +2026-07-13 08:30:04,456 | INFO | Music 0.625 0.000 0.406 ✓ +2026-07-13 08:30:04,456 | INFO | Percussion 0.434 0.000 0.282 ✓ +2026-07-13 08:30:04,456 | INFO | Musical instrument 0.342 0.000 0.223 ✓ +2026-07-13 08:30:04,456 | INFO | Drum 0.292 0.000 0.190 ✓ +2026-07-13 08:30:04,458 | INFO | Classical music 0.070 0.000 0.046 ✗ +2026-07-13 08:30:04,458 | INFO | → WINNER: Tabla (combined=0.506) +2026-07-13 08:30:04,481 | INFO | +[243.40s] AMBIENT | scene='' +2026-07-13 08:30:04,481 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,481 | INFO | Tabla 0.793 0.000 0.515 ✓ +2026-07-13 08:30:04,481 | INFO | Music 0.558 0.000 0.363 ✓ +2026-07-13 08:30:04,481 | INFO | Percussion 0.437 0.000 0.284 ✓ +2026-07-13 08:30:04,481 | INFO | Musical instrument 0.323 0.000 0.210 ✓ +2026-07-13 08:30:04,481 | INFO | Drum 0.323 0.000 0.210 ✓ +2026-07-13 08:30:04,481 | INFO | Classical music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:04,481 | INFO | → WINNER: Tabla (combined=0.515) +2026-07-13 08:30:04,514 | INFO | +[243.60s] AMBIENT | scene='' +2026-07-13 08:30:04,514 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,514 | INFO | Tabla 0.740 0.000 0.481 ✓ +2026-07-13 08:30:04,514 | INFO | Music 0.625 0.000 0.406 ✓ +2026-07-13 08:30:04,514 | INFO | Percussion 0.381 0.000 0.247 ✓ +2026-07-13 08:30:04,517 | INFO | Drum 0.312 0.000 0.203 ✓ +2026-07-13 08:30:04,517 | INFO | Musical instrument 0.304 0.000 0.198 ✓ +2026-07-13 08:30:04,517 | INFO | Carnatic music 0.109 0.000 0.071 ✗ +2026-07-13 08:30:04,518 | INFO | → WINNER: Tabla (combined=0.481) +2026-07-13 08:30:04,541 | INFO | +[243.80s] AMBIENT | scene='' +2026-07-13 08:30:04,541 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,546 | INFO | Music 0.572 0.000 0.372 ✓ +2026-07-13 08:30:04,546 | INFO | Tabla 0.454 0.000 0.295 ✓ +2026-07-13 08:30:04,546 | INFO | Percussion 0.224 0.000 0.145 ✓ +2026-07-13 08:30:04,546 | INFO | Carnatic music 0.214 0.000 0.139 ✓ +2026-07-13 08:30:04,546 | INFO | Musical instrument 0.213 0.000 0.139 ✓ +2026-07-13 08:30:04,546 | INFO | Drum 0.155 0.000 0.101 ✗ +2026-07-13 08:30:04,546 | INFO | → WINNER: Music (combined=0.372) +2026-07-13 08:30:04,573 | INFO | +[244.00s] AMBIENT | scene='' +2026-07-13 08:30:04,573 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,573 | INFO | Tabla 0.734 0.000 0.477 ✓ +2026-07-13 08:30:04,573 | INFO | Music 0.516 0.000 0.335 ✓ +2026-07-13 08:30:04,573 | INFO | Musical instrument 0.360 0.000 0.234 ✓ +2026-07-13 08:30:04,573 | INFO | Percussion 0.322 0.000 0.209 ✓ +2026-07-13 08:30:04,573 | INFO | Carnatic music 0.285 0.000 0.185 ✓ +2026-07-13 08:30:04,573 | INFO | Classical music 0.282 0.000 0.183 ✓ +2026-07-13 08:30:04,573 | INFO | → WINNER: Tabla (combined=0.477) +2026-07-13 08:30:04,595 | INFO | +[244.20s] AMBIENT | scene='' +2026-07-13 08:30:04,595 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,595 | INFO | Tabla 0.669 0.000 0.435 ✓ +2026-07-13 08:30:04,595 | INFO | Music 0.515 0.000 0.335 ✓ +2026-07-13 08:30:04,595 | INFO | Percussion 0.283 0.000 0.184 ✓ +2026-07-13 08:30:04,603 | INFO | Musical instrument 0.275 0.000 0.179 ✓ +2026-07-13 08:30:04,603 | INFO | Drum 0.214 0.000 0.139 ✓ +2026-07-13 08:30:04,604 | INFO | Carnatic music 0.213 0.000 0.139 ✓ +2026-07-13 08:30:04,604 | INFO | → WINNER: Tabla (combined=0.435) +2026-07-13 08:30:04,628 | INFO | +[244.40s] AMBIENT | scene='' +2026-07-13 08:30:04,628 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,628 | INFO | Tabla 0.725 0.000 0.471 ✓ +2026-07-13 08:30:04,628 | INFO | Music 0.471 0.000 0.306 ✓ +2026-07-13 08:30:04,628 | INFO | Percussion 0.353 0.000 0.230 ✓ +2026-07-13 08:30:04,628 | INFO | Musical instrument 0.267 0.000 0.173 ✓ +2026-07-13 08:30:04,628 | INFO | Drum 0.251 0.000 0.163 ✓ +2026-07-13 08:30:04,628 | INFO | Classical music 0.152 0.000 0.099 ✗ +2026-07-13 08:30:04,628 | INFO | → WINNER: Tabla (combined=0.471) +2026-07-13 08:30:04,658 | INFO | +[244.60s] AMBIENT | scene='' +2026-07-13 08:30:04,658 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,658 | INFO | Music 0.618 0.000 0.402 ✓ +2026-07-13 08:30:04,658 | INFO | Tabla 0.614 0.000 0.399 ✓ +2026-07-13 08:30:04,658 | INFO | Percussion 0.281 0.000 0.183 ✓ +2026-07-13 08:30:04,661 | INFO | Musical instrument 0.272 0.000 0.176 ✓ +2026-07-13 08:30:04,661 | INFO | Drum 0.249 0.000 0.162 ✓ +2026-07-13 08:30:04,661 | INFO | Classical music 0.069 0.000 0.044 ✗ +2026-07-13 08:30:04,661 | INFO | → WINNER: Music (combined=0.402) +2026-07-13 08:30:04,686 | INFO | +[244.80s] AMBIENT | scene='' +2026-07-13 08:30:04,686 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,686 | INFO | Music 0.765 0.000 0.497 ✓ +2026-07-13 08:30:04,686 | INFO | Tabla 0.676 0.000 0.439 ✓ +2026-07-13 08:30:04,689 | INFO | Musical instrument 0.371 0.000 0.241 ✓ +2026-07-13 08:30:04,689 | INFO | Percussion 0.331 0.000 0.215 ✓ +2026-07-13 08:30:04,689 | INFO | Drum 0.252 0.000 0.164 ✓ +2026-07-13 08:30:04,689 | INFO | Sitar 0.135 0.000 0.087 ✗ +2026-07-13 08:30:04,689 | INFO | → WINNER: Music (combined=0.497) +2026-07-13 08:30:04,713 | INFO | +[245.00s] AMBIENT | scene='' +2026-07-13 08:30:04,718 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,718 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:04,719 | INFO | Tabla 0.317 0.000 0.206 ✓ +2026-07-13 08:30:04,719 | INFO | Musical instrument 0.309 0.000 0.201 ✓ +2026-07-13 08:30:04,719 | INFO | Percussion 0.182 0.000 0.118 ✗ +2026-07-13 08:30:04,719 | INFO | Drum 0.133 0.000 0.086 ✗ +2026-07-13 08:30:04,719 | INFO | Plucked string instrument 0.127 0.000 0.083 ✗ +2026-07-13 08:30:04,719 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:04,743 | INFO | +[250.00s] AMBIENT | scene='' +2026-07-13 08:30:04,743 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,743 | INFO | Fowl 0.676 0.000 0.440 ✓ +2026-07-13 08:30:04,743 | INFO | Goose 0.385 0.000 0.251 ✓ +2026-07-13 08:30:04,743 | INFO | Honk 0.321 0.000 0.208 ✓ +2026-07-13 08:30:04,743 | INFO | Turkey 0.228 0.000 0.148 ✓ +2026-07-13 08:30:04,743 | INFO | Gobble 0.163 0.000 0.106 ✗ +2026-07-13 08:30:04,743 | INFO | Bird 0.125 0.000 0.082 ✗ +2026-07-13 08:30:04,751 | INFO | → WINNER: Fowl (combined=0.440) +2026-07-13 08:30:04,776 | INFO | +[250.20s] AMBIENT | scene='' +2026-07-13 08:30:04,776 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,776 | INFO | Fowl 0.523 0.000 0.340 ✓ +2026-07-13 08:30:04,776 | INFO | Goose 0.473 0.000 0.308 ✓ +2026-07-13 08:30:04,776 | INFO | Honk 0.411 0.000 0.267 ✓ +2026-07-13 08:30:04,776 | INFO | Animal 0.152 0.000 0.099 ✗ +2026-07-13 08:30:04,776 | INFO | Bird 0.088 0.000 0.057 ✗ +2026-07-13 08:30:04,776 | INFO | Music 0.076 0.000 0.049 ✗ +2026-07-13 08:30:04,776 | INFO | → WINNER: Fowl (combined=0.340) +2026-07-13 08:30:04,800 | INFO | +[250.40s] AMBIENT | scene='' +2026-07-13 08:30:04,800 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,808 | INFO | Goose 0.796 0.000 0.517 ✓ +2026-07-13 08:30:04,808 | INFO | Honk 0.710 0.000 0.461 ✓ +2026-07-13 08:30:04,808 | INFO | Fowl 0.700 0.000 0.455 ✓ +2026-07-13 08:30:04,808 | INFO | Duck 0.096 0.000 0.062 ✗ +2026-07-13 08:30:04,808 | INFO | Bird 0.090 0.000 0.059 ✗ +2026-07-13 08:30:04,808 | INFO | Bird vocalization, bird call, bird song 0.044 0.000 0.029 ✗ +2026-07-13 08:30:04,808 | INFO | → WINNER: Goose (combined=0.517) +2026-07-13 08:30:04,833 | INFO | +[250.60s] AMBIENT | scene='' +2026-07-13 08:30:04,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,833 | INFO | Goose 0.803 0.000 0.522 ✓ +2026-07-13 08:30:04,833 | INFO | Honk 0.741 0.000 0.482 ✓ +2026-07-13 08:30:04,833 | INFO | Fowl 0.659 0.000 0.429 ✓ +2026-07-13 08:30:04,833 | INFO | Bird 0.074 0.000 0.048 ✗ +2026-07-13 08:30:04,833 | INFO | Bird vocalization, bird call, bird song 0.039 0.000 0.025 ✗ +2026-07-13 08:30:04,833 | INFO | → WINNER: Goose (combined=0.522) +2026-07-13 08:30:04,861 | INFO | +[250.80s] AMBIENT | scene='' +2026-07-13 08:30:04,861 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,861 | INFO | Goose 0.623 0.000 0.405 ✓ +2026-07-13 08:30:04,865 | INFO | Honk 0.563 0.000 0.366 ✓ +2026-07-13 08:30:04,865 | INFO | Fowl 0.465 0.000 0.302 ✓ +2026-07-13 08:30:04,866 | INFO | Duck 0.147 0.000 0.096 ✗ +2026-07-13 08:30:04,866 | INFO | Bird 0.066 0.000 0.043 ✗ +2026-07-13 08:30:04,866 | INFO | → WINNER: Goose (combined=0.405) +2026-07-13 08:30:04,891 | INFO | +[251.00s] AMBIENT | scene='' +2026-07-13 08:30:04,891 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,891 | INFO | Goose 0.679 0.000 0.441 ✓ +2026-07-13 08:30:04,891 | INFO | Honk 0.647 0.000 0.421 ✓ +2026-07-13 08:30:04,891 | INFO | Fowl 0.472 0.000 0.307 ✓ +2026-07-13 08:30:04,891 | INFO | Duck 0.185 0.000 0.120 ✓ +2026-07-13 08:30:04,891 | INFO | Quack 0.105 0.000 0.068 ✗ +2026-07-13 08:30:04,891 | INFO | Bird 0.065 0.000 0.042 ✗ +2026-07-13 08:30:04,891 | INFO | → WINNER: Goose (combined=0.441) +2026-07-13 08:30:04,922 | INFO | +[251.20s] AMBIENT | scene='' +2026-07-13 08:30:04,922 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,923 | INFO | Goose 0.242 0.000 0.157 ✓ +2026-07-13 08:30:04,923 | INFO | Honk 0.228 0.000 0.148 ✓ +2026-07-13 08:30:04,923 | INFO | Animal 0.117 0.000 0.076 ✗ +2026-07-13 08:30:04,924 | INFO | Duck 0.114 0.000 0.074 ✗ +2026-07-13 08:30:04,924 | INFO | Bird 0.072 0.000 0.047 ✗ +2026-07-13 08:30:04,924 | INFO | Music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:04,924 | INFO | → WINNER: Goose (combined=0.157) +2026-07-13 08:30:04,949 | INFO | +[251.40s] AMBIENT | scene='' +2026-07-13 08:30:04,950 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,950 | INFO | Animal 0.112 0.000 0.072 ✗ +2026-07-13 08:30:04,950 | INFO | Music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:04,950 | INFO | Bird 0.096 0.000 0.063 ✗ +2026-07-13 08:30:04,950 | INFO | Chicken, rooster 0.090 0.000 0.059 ✗ +2026-07-13 08:30:04,950 | INFO | Cluck 0.071 0.000 0.046 ✗ +2026-07-13 08:30:04,950 | INFO | → no winner +2026-07-13 08:30:04,979 | INFO | +[251.60s] AMBIENT | scene='' +2026-07-13 08:30:04,979 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:04,979 | INFO | Animal 0.102 0.000 0.067 ✗ +2026-07-13 08:30:04,979 | INFO | Bird 0.098 0.000 0.064 ✗ +2026-07-13 08:30:04,979 | INFO | Music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:04,979 | INFO | → no winner +2026-07-13 08:30:05,003 | INFO | +[251.80s] AMBIENT | scene='' +2026-07-13 08:30:05,003 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,003 | INFO | Animal 0.164 0.000 0.107 ✗ +2026-07-13 08:30:05,003 | INFO | Bird 0.115 0.000 0.075 ✗ +2026-07-13 08:30:05,003 | INFO | Music 0.087 0.000 0.056 ✗ +2026-07-13 08:30:05,003 | INFO | → no winner +2026-07-13 08:30:05,037 | INFO | +[252.00s] AMBIENT | scene='' +2026-07-13 08:30:05,037 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,037 | INFO | Animal 0.209 0.000 0.136 ✓ +2026-07-13 08:30:05,037 | INFO | Bird 0.086 0.000 0.056 ✗ +2026-07-13 08:30:05,037 | INFO | Chicken, rooster 0.063 0.000 0.041 ✗ +2026-07-13 08:30:05,037 | INFO | → WINNER: Animal (combined=0.136) +2026-07-13 08:30:05,062 | INFO | +[252.20s] AMBIENT | scene='' +2026-07-13 08:30:05,062 | INFO | → no winner +2026-07-13 08:30:05,092 | INFO | +[252.40s] AMBIENT | scene='' +2026-07-13 08:30:05,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,093 | INFO | Animal 0.358 0.000 0.233 ✓ +2026-07-13 08:30:05,094 | INFO | Music 0.090 0.000 0.058 ✗ +2026-07-13 08:30:05,094 | INFO | Horse 0.054 0.000 0.035 ✗ +2026-07-13 08:30:05,094 | INFO | Bird 0.049 0.000 0.032 ✗ +2026-07-13 08:30:05,094 | INFO | → WINNER: Animal (combined=0.233) +2026-07-13 08:30:05,118 | INFO | +[252.60s] AMBIENT | scene='' +2026-07-13 08:30:05,118 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,118 | INFO | Animal 0.327 0.000 0.212 ✓ +2026-07-13 08:30:05,118 | INFO | Bird 0.303 0.000 0.197 ✓ +2026-07-13 08:30:05,118 | INFO | Chirp, tweet 0.121 0.000 0.079 ✗ +2026-07-13 08:30:05,118 | INFO | Squawk 0.114 0.000 0.074 ✗ +2026-07-13 08:30:05,118 | INFO | Domestic animals, pets 0.099 0.000 0.064 ✗ +2026-07-13 08:30:05,118 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.052 ✗ +2026-07-13 08:30:05,118 | INFO | → WINNER: Animal (combined=0.212) +2026-07-13 08:30:05,149 | INFO | +[252.80s] AMBIENT | scene='' +2026-07-13 08:30:05,149 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,149 | INFO | Livestock, farm animals, working animals 0.415 0.000 0.270 ✓ +2026-07-13 08:30:05,149 | INFO | Bird 0.409 0.000 0.266 ✓ +2026-07-13 08:30:05,149 | INFO | Animal 0.311 0.000 0.202 ✓ +2026-07-13 08:30:05,149 | INFO | Chirp, tweet 0.154 0.000 0.100 ✗ +2026-07-13 08:30:05,149 | INFO | Bird vocalization, bird call, bird song 0.109 0.000 0.071 ✗ +2026-07-13 08:30:05,149 | INFO | Duck 0.101 0.000 0.066 ✗ +2026-07-13 08:30:05,149 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.270) +2026-07-13 08:30:05,178 | INFO | +[253.00s] AMBIENT | scene='' +2026-07-13 08:30:05,178 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,178 | INFO | Animal 0.389 0.000 0.253 ✓ +2026-07-13 08:30:05,178 | INFO | Bird 0.234 0.000 0.152 ✓ +2026-07-13 08:30:05,178 | INFO | Duck 0.123 0.000 0.080 ✗ +2026-07-13 08:30:05,178 | INFO | Chirp, tweet 0.101 0.000 0.065 ✗ +2026-07-13 08:30:05,178 | INFO | Domestic animals, pets 0.093 0.000 0.060 ✗ +2026-07-13 08:30:05,178 | INFO | Outside, rural or natural 0.061 0.000 0.040 ✗ +2026-07-13 08:30:05,178 | INFO | → WINNER: Animal (combined=0.253) +2026-07-13 08:30:05,206 | INFO | +[253.20s] AMBIENT | scene='' +2026-07-13 08:30:05,206 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,206 | INFO | Animal 0.482 0.000 0.313 ✓ +2026-07-13 08:30:05,206 | INFO | Bird 0.260 0.000 0.169 ✓ +2026-07-13 08:30:05,206 | INFO | Domestic animals, pets 0.213 0.000 0.138 ✓ +2026-07-13 08:30:05,206 | INFO | Dog 0.117 0.000 0.076 ✗ +2026-07-13 08:30:05,206 | INFO | Livestock, farm animals, working animals 0.110 0.000 0.071 ✗ +2026-07-13 08:30:05,206 | INFO | Chirp, tweet 0.105 0.000 0.068 ✗ +2026-07-13 08:30:05,206 | INFO | → WINNER: Animal (combined=0.313) +2026-07-13 08:30:05,230 | INFO | +[253.40s] AMBIENT | scene='' +2026-07-13 08:30:05,230 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,230 | INFO | Animal 0.905 0.000 0.588 ✓ +2026-07-13 08:30:05,230 | INFO | Domestic animals, pets 0.832 0.000 0.541 ✓ +2026-07-13 08:30:05,230 | INFO | Dog 0.825 0.000 0.536 ✓ +2026-07-13 08:30:05,230 | INFO | Canidae, dogs, wolves 0.334 0.000 0.217 ✓ +2026-07-13 08:30:05,230 | INFO | Whimper (dog) 0.230 0.000 0.149 ✓ +2026-07-13 08:30:05,230 | INFO | Yip 0.111 0.000 0.072 ✗ +2026-07-13 08:30:05,238 | INFO | → WINNER: Animal (combined=0.588) +2026-07-13 08:30:05,263 | INFO | +[255.80s] AMBIENT | scene='' +2026-07-13 08:30:05,266 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,266 | INFO | Animal 0.240 0.000 0.156 ✓ +2026-07-13 08:30:05,266 | INFO | Bird 0.227 0.000 0.147 ✓ +2026-07-13 08:30:05,266 | INFO | Duck 0.202 0.000 0.132 ✓ +2026-07-13 08:30:05,266 | INFO | Chicken, rooster 0.080 0.000 0.052 ✗ +2026-07-13 08:30:05,266 | INFO | Chirp, tweet 0.077 0.000 0.050 ✗ +2026-07-13 08:30:05,266 | INFO | Bird vocalization, bird call, bird song 0.073 0.000 0.047 ✗ +2026-07-13 08:30:05,266 | INFO | → WINNER: Animal (combined=0.156) +2026-07-13 08:30:05,296 | INFO | +[256.00s] AMBIENT | scene='' +2026-07-13 08:30:05,296 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,296 | INFO | Animal 0.231 0.000 0.150 ✓ +2026-07-13 08:30:05,296 | INFO | Bird 0.151 0.000 0.098 ✗ +2026-07-13 08:30:05,296 | INFO | Duck 0.143 0.000 0.093 ✗ +2026-07-13 08:30:05,296 | INFO | Chicken, rooster 0.096 0.000 0.062 ✗ +2026-07-13 08:30:05,296 | INFO | Cluck 0.067 0.000 0.043 ✗ +2026-07-13 08:30:05,296 | INFO | Bird vocalization, bird call, bird song 0.042 0.000 0.028 ✗ +2026-07-13 08:30:05,296 | INFO | → WINNER: Animal (combined=0.150) +2026-07-13 08:30:05,323 | INFO | +[256.20s] AMBIENT | scene='' +2026-07-13 08:30:05,323 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,323 | INFO | Duck 0.395 0.000 0.257 ✓ +2026-07-13 08:30:05,323 | INFO | Animal 0.265 0.000 0.172 ✓ +2026-07-13 08:30:05,323 | INFO | Bird 0.240 0.000 0.156 ✓ +2026-07-13 08:30:05,328 | INFO | Quack 0.165 0.000 0.107 ✗ +2026-07-13 08:30:05,328 | INFO | Squawk 0.151 0.000 0.098 ✗ +2026-07-13 08:30:05,328 | INFO | Crow 0.044 0.000 0.029 ✗ +2026-07-13 08:30:05,328 | INFO | → WINNER: Duck (combined=0.257) +2026-07-13 08:30:05,354 | INFO | +[256.40s] AMBIENT | scene='' +2026-07-13 08:30:05,354 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,354 | INFO | Animal 0.339 0.000 0.220 ✓ +2026-07-13 08:30:05,354 | INFO | Duck 0.283 0.000 0.184 ✓ +2026-07-13 08:30:05,354 | INFO | Crow 0.251 0.000 0.163 ✓ +2026-07-13 08:30:05,354 | INFO | Bird 0.221 0.000 0.144 ✓ +2026-07-13 08:30:05,354 | INFO | Quack 0.171 0.000 0.111 ✗ +2026-07-13 08:30:05,354 | INFO | Caw 0.100 0.000 0.065 ✗ +2026-07-13 08:30:05,354 | INFO | → WINNER: Animal (combined=0.220) +2026-07-13 08:30:05,386 | INFO | +[256.60s] AMBIENT | scene='' +2026-07-13 08:30:05,386 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,386 | INFO | Duck 0.303 0.000 0.197 ✓ +2026-07-13 08:30:05,386 | INFO | Bird 0.260 0.000 0.169 ✓ +2026-07-13 08:30:05,386 | INFO | Animal 0.209 0.000 0.136 ✓ +2026-07-13 08:30:05,386 | INFO | Goose 0.140 0.000 0.091 ✗ +2026-07-13 08:30:05,386 | INFO | Quack 0.120 0.000 0.078 ✗ +2026-07-13 08:30:05,386 | INFO | Honk 0.110 0.000 0.072 ✗ +2026-07-13 08:30:05,386 | INFO | → WINNER: Duck (combined=0.197) +2026-07-13 08:30:05,410 | INFO | +[256.80s] AMBIENT | scene='' +2026-07-13 08:30:05,410 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,410 | INFO | Goose 0.513 0.000 0.334 ✓ +2026-07-13 08:30:05,410 | INFO | Fowl 0.446 0.000 0.290 ✓ +2026-07-13 08:30:05,410 | INFO | Honk 0.430 0.000 0.279 ✓ +2026-07-13 08:30:05,410 | INFO | Duck 0.358 0.000 0.233 ✓ +2026-07-13 08:30:05,418 | INFO | Bird 0.320 0.000 0.208 ✓ +2026-07-13 08:30:05,418 | INFO | Animal 0.157 0.000 0.102 ✗ +2026-07-13 08:30:05,418 | INFO | → WINNER: Goose (combined=0.334) +2026-07-13 08:30:05,443 | INFO | +[257.00s] AMBIENT | scene='' +2026-07-13 08:30:05,443 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,443 | INFO | Goose 0.328 0.000 0.213 ✓ +2026-07-13 08:30:05,446 | INFO | Duck 0.275 0.000 0.179 ✓ +2026-07-13 08:30:05,446 | INFO | Bird 0.258 0.000 0.168 ✓ +2026-07-13 08:30:05,446 | INFO | Honk 0.256 0.000 0.166 ✓ +2026-07-13 08:30:05,446 | INFO | Animal 0.199 0.000 0.129 ✓ +2026-07-13 08:30:05,446 | INFO | Quack 0.104 0.000 0.068 ✗ +2026-07-13 08:30:05,446 | INFO | → WINNER: Goose (combined=0.213) +2026-07-13 08:30:05,472 | INFO | +[257.20s] AMBIENT | scene='' +2026-07-13 08:30:05,472 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,472 | INFO | Animal 0.340 0.000 0.221 ✓ +2026-07-13 08:30:05,472 | INFO | Bird 0.267 0.000 0.174 ✓ +2026-07-13 08:30:05,475 | INFO | Crow 0.227 0.000 0.147 ✓ +2026-07-13 08:30:05,475 | INFO | Domestic animals, pets 0.091 0.000 0.059 ✗ +2026-07-13 08:30:05,475 | INFO | Caw 0.085 0.000 0.056 ✗ +2026-07-13 08:30:05,475 | INFO | Chicken, rooster 0.075 0.000 0.049 ✗ +2026-07-13 08:30:05,475 | INFO | → WINNER: Animal (combined=0.221) +2026-07-13 08:30:05,504 | INFO | +[257.40s] AMBIENT | scene='' +2026-07-13 08:30:05,504 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,504 | INFO | Animal 0.359 0.000 0.234 ✓ +2026-07-13 08:30:05,504 | INFO | Wild animals 0.211 0.000 0.137 ✓ +2026-07-13 08:30:05,504 | INFO | Roaring cats (lions, tigers) 0.117 0.000 0.076 ✗ +2026-07-13 08:30:05,504 | INFO | Music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:05,504 | INFO | Bird 0.061 0.000 0.040 ✗ +2026-07-13 08:30:05,504 | INFO | Outside, rural or natural 0.056 0.000 0.037 ✗ +2026-07-13 08:30:05,504 | INFO | → WINNER: Animal (combined=0.234) +2026-07-13 08:30:05,532 | INFO | +[257.60s] AMBIENT | scene='' +2026-07-13 08:30:05,534 | INFO | → no winner +2026-07-13 08:30:05,561 | INFO | +[257.80s] AMBIENT | scene='' +2026-07-13 08:30:05,561 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,561 | INFO | Animal 0.124 0.000 0.081 ✗ +2026-07-13 08:30:05,561 | INFO | Crow 0.059 0.000 0.039 ✗ +2026-07-13 08:30:05,561 | INFO | Crowd 0.048 0.000 0.031 ✗ +2026-07-13 08:30:05,561 | INFO | Caw 0.044 0.000 0.028 ✗ +2026-07-13 08:30:05,561 | INFO | → no winner +2026-07-13 08:30:05,590 | INFO | +[258.00s] AMBIENT | scene='' +2026-07-13 08:30:05,590 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,590 | INFO | Animal 0.170 0.000 0.110 ✗ +2026-07-13 08:30:05,590 | INFO | Crow 0.150 0.000 0.097 ✗ +2026-07-13 08:30:05,590 | INFO | Bird 0.120 0.000 0.078 ✗ +2026-07-13 08:30:05,590 | INFO | Caw 0.086 0.000 0.056 ✗ +2026-07-13 08:30:05,590 | INFO | Chicken, rooster 0.079 0.000 0.051 ✗ +2026-07-13 08:30:05,590 | INFO | → no winner +2026-07-13 08:30:05,614 | INFO | +[258.20s] AMBIENT | scene='' +2026-07-13 08:30:05,622 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,622 | INFO | Crow 0.689 0.000 0.448 ✓ +2026-07-13 08:30:05,622 | INFO | Caw 0.474 0.000 0.308 ✓ +2026-07-13 08:30:05,622 | INFO | Bird 0.299 0.000 0.195 ✓ +2026-07-13 08:30:05,622 | INFO | Animal 0.216 0.000 0.140 ✓ +2026-07-13 08:30:05,622 | INFO | Outside, rural or natural 0.052 0.000 0.034 ✗ +2026-07-13 08:30:05,622 | INFO | Bird vocalization, bird call, bird song 0.033 0.000 0.021 ✗ +2026-07-13 08:30:05,622 | INFO | → WINNER: Crow (combined=0.448) +2026-07-13 08:30:05,649 | INFO | +[258.40s] AMBIENT | scene='' +2026-07-13 08:30:05,649 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,649 | INFO | Crow 0.820 0.000 0.533 ✓ +2026-07-13 08:30:05,649 | INFO | Caw 0.620 0.000 0.403 ✓ +2026-07-13 08:30:05,649 | INFO | Bird 0.276 0.000 0.179 ✓ +2026-07-13 08:30:05,649 | INFO | Animal 0.199 0.000 0.129 ✓ +2026-07-13 08:30:05,649 | INFO | → WINNER: Crow (combined=0.533) +2026-07-13 08:30:05,679 | INFO | +[258.60s] AMBIENT | scene='' +2026-07-13 08:30:05,679 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,679 | INFO | Goose 0.539 0.000 0.350 ✓ +2026-07-13 08:30:05,679 | INFO | Honk 0.514 0.000 0.334 ✓ +2026-07-13 08:30:05,679 | INFO | Fowl 0.385 0.000 0.250 ✓ +2026-07-13 08:30:05,679 | INFO | Duck 0.355 0.000 0.231 ✓ +2026-07-13 08:30:05,679 | INFO | Bird 0.347 0.000 0.225 ✓ +2026-07-13 08:30:05,679 | INFO | Animal 0.137 0.000 0.089 ✗ +2026-07-13 08:30:05,679 | INFO | → WINNER: Goose (combined=0.350) +2026-07-13 08:30:05,703 | INFO | +[258.80s] AMBIENT | scene='' +2026-07-13 08:30:05,703 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,703 | INFO | Goose 0.510 0.000 0.331 ✓ +2026-07-13 08:30:05,703 | INFO | Fowl 0.479 0.000 0.311 ✓ +2026-07-13 08:30:05,703 | INFO | Honk 0.445 0.000 0.289 ✓ +2026-07-13 08:30:05,703 | INFO | Bird 0.308 0.000 0.200 ✓ +2026-07-13 08:30:05,703 | INFO | Duck 0.244 0.000 0.159 ✓ +2026-07-13 08:30:05,703 | INFO | Animal 0.122 0.000 0.079 ✗ +2026-07-13 08:30:05,703 | INFO | → WINNER: Goose (combined=0.331) +2026-07-13 08:30:05,735 | INFO | +[259.00s] AMBIENT | scene='' +2026-07-13 08:30:05,735 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,735 | INFO | Goose 0.513 0.000 0.333 ✓ +2026-07-13 08:30:05,735 | INFO | Fowl 0.486 0.000 0.316 ✓ +2026-07-13 08:30:05,735 | INFO | Honk 0.439 0.000 0.286 ✓ +2026-07-13 08:30:05,735 | INFO | Duck 0.230 0.000 0.149 ✓ +2026-07-13 08:30:05,735 | INFO | Bird 0.198 0.000 0.129 ✓ +2026-07-13 08:30:05,735 | INFO | Animal 0.152 0.000 0.099 ✗ +2026-07-13 08:30:05,735 | INFO | → WINNER: Goose (combined=0.333) +2026-07-13 08:30:05,759 | INFO | +[259.20s] AMBIENT | scene='' +2026-07-13 08:30:05,759 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,759 | INFO | Goose 0.494 0.000 0.321 ✓ +2026-07-13 08:30:05,759 | INFO | Duck 0.464 0.000 0.302 ✓ +2026-07-13 08:30:05,759 | INFO | Honk 0.381 0.000 0.247 ✓ +2026-07-13 08:30:05,759 | INFO | Bird 0.291 0.000 0.189 ✓ +2026-07-13 08:30:05,759 | INFO | Animal 0.179 0.000 0.116 ✗ +2026-07-13 08:30:05,759 | INFO | Quack 0.150 0.000 0.097 ✗ +2026-07-13 08:30:05,768 | INFO | → WINNER: Goose (combined=0.321) +2026-07-13 08:30:05,793 | INFO | +[259.40s] AMBIENT | scene='' +2026-07-13 08:30:05,793 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,793 | INFO | Goose 0.601 0.000 0.391 ✓ +2026-07-13 08:30:05,793 | INFO | Fowl 0.533 0.000 0.347 ✓ +2026-07-13 08:30:05,793 | INFO | Honk 0.503 0.000 0.327 ✓ +2026-07-13 08:30:05,793 | INFO | Duck 0.170 0.000 0.111 ✗ +2026-07-13 08:30:05,793 | INFO | Bird 0.146 0.000 0.095 ✗ +2026-07-13 08:30:05,793 | INFO | Animal 0.109 0.000 0.071 ✗ +2026-07-13 08:30:05,793 | INFO | → WINNER: Goose (combined=0.391) +2026-07-13 08:30:05,817 | INFO | +[259.60s] AMBIENT | scene='' +2026-07-13 08:30:05,817 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,817 | INFO | Duck 0.324 0.000 0.211 ✓ +2026-07-13 08:30:05,817 | INFO | Goose 0.262 0.000 0.170 ✓ +2026-07-13 08:30:05,817 | INFO | Honk 0.226 0.000 0.147 ✓ +2026-07-13 08:30:05,817 | INFO | Animal 0.181 0.000 0.118 ✗ +2026-07-13 08:30:05,817 | INFO | Quack 0.170 0.000 0.110 ✗ +2026-07-13 08:30:05,817 | INFO | Bird 0.115 0.000 0.075 ✗ +2026-07-13 08:30:05,817 | INFO | → WINNER: Duck (combined=0.211) +2026-07-13 08:30:05,847 | INFO | +[259.80s] AMBIENT | scene='' +2026-07-13 08:30:05,850 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,850 | INFO | Duck 0.428 0.000 0.279 ✓ +2026-07-13 08:30:05,850 | INFO | Goose 0.286 0.000 0.186 ✓ +2026-07-13 08:30:05,850 | INFO | Quack 0.266 0.000 0.173 ✓ +2026-07-13 08:30:05,850 | INFO | Animal 0.236 0.000 0.153 ✓ +2026-07-13 08:30:05,850 | INFO | Honk 0.226 0.000 0.147 ✓ +2026-07-13 08:30:05,850 | INFO | Bird 0.175 0.000 0.114 ✗ +2026-07-13 08:30:05,852 | INFO | → WINNER: Duck (combined=0.279) +2026-07-13 08:30:05,875 | INFO | +[260.00s] AMBIENT | scene='' +2026-07-13 08:30:05,875 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,875 | INFO | Duck 0.303 0.000 0.197 ✓ +2026-07-13 08:30:05,880 | INFO | Goose 0.222 0.000 0.144 ✓ +2026-07-13 08:30:05,880 | INFO | Honk 0.197 0.000 0.128 ✓ +2026-07-13 08:30:05,880 | INFO | Quack 0.172 0.000 0.112 ✗ +2026-07-13 08:30:05,880 | INFO | Animal 0.167 0.000 0.108 ✗ +2026-07-13 08:30:05,880 | INFO | Bird 0.091 0.000 0.059 ✗ +2026-07-13 08:30:05,880 | INFO | → WINNER: Duck (combined=0.197) +2026-07-13 08:30:05,907 | INFO | +[260.20s] AMBIENT | scene='' +2026-07-13 08:30:05,907 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,907 | INFO | Duck 0.436 0.000 0.283 ✓ +2026-07-13 08:30:05,907 | INFO | Quack 0.326 0.000 0.212 ✓ +2026-07-13 08:30:05,907 | INFO | Animal 0.243 0.000 0.158 ✓ +2026-07-13 08:30:05,907 | INFO | Goose 0.112 0.000 0.073 ✗ +2026-07-13 08:30:05,907 | INFO | Honk 0.109 0.000 0.071 ✗ +2026-07-13 08:30:05,907 | INFO | Bird 0.082 0.000 0.053 ✗ +2026-07-13 08:30:05,907 | INFO | → WINNER: Duck (combined=0.283) +2026-07-13 08:30:05,935 | INFO | +[260.40s] AMBIENT | scene='' +2026-07-13 08:30:05,935 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,935 | INFO | Animal 0.413 0.000 0.268 ✓ +2026-07-13 08:30:05,935 | INFO | Duck 0.257 0.000 0.167 ✓ +2026-07-13 08:30:05,935 | INFO | Domestic animals, pets 0.244 0.000 0.159 ✓ +2026-07-13 08:30:05,935 | INFO | Dog 0.214 0.000 0.139 ✓ +2026-07-13 08:30:05,939 | INFO | Quack 0.161 0.000 0.104 ✗ +2026-07-13 08:30:05,939 | INFO | Goose 0.159 0.000 0.103 ✗ +2026-07-13 08:30:05,939 | INFO | → WINNER: Animal (combined=0.268) +2026-07-13 08:30:05,964 | INFO | +[260.60s] AMBIENT | scene='' +2026-07-13 08:30:05,964 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,964 | INFO | Animal 0.331 0.000 0.215 ✓ +2026-07-13 08:30:05,964 | INFO | Domestic animals, pets 0.179 0.000 0.117 ✗ +2026-07-13 08:30:05,964 | INFO | Bird 0.151 0.000 0.098 ✗ +2026-07-13 08:30:05,964 | INFO | Duck 0.130 0.000 0.084 ✗ +2026-07-13 08:30:05,964 | INFO | Dog 0.121 0.000 0.079 ✗ +2026-07-13 08:30:05,964 | INFO | Goose 0.101 0.000 0.065 ✗ +2026-07-13 08:30:05,964 | INFO | → WINNER: Animal (combined=0.215) +2026-07-13 08:30:05,991 | INFO | +[260.80s] AMBIENT | scene='' +2026-07-13 08:30:05,991 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:05,991 | INFO | Fowl 0.530 0.000 0.345 ✓ +2026-07-13 08:30:05,997 | INFO | Goose 0.487 0.000 0.317 ✓ +2026-07-13 08:30:05,997 | INFO | Honk 0.395 0.000 0.257 ✓ +2026-07-13 08:30:05,997 | INFO | Duck 0.268 0.000 0.174 ✓ +2026-07-13 08:30:05,997 | INFO | Bird 0.245 0.000 0.159 ✓ +2026-07-13 08:30:05,997 | INFO | Animal 0.141 0.000 0.092 ✗ +2026-07-13 08:30:05,997 | INFO | → WINNER: Fowl (combined=0.345) +2026-07-13 08:30:06,024 | INFO | +[261.00s] AMBIENT | scene='' +2026-07-13 08:30:06,024 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,024 | INFO | Goose 0.366 0.000 0.238 ✓ +2026-07-13 08:30:06,024 | INFO | Honk 0.300 0.000 0.195 ✓ +2026-07-13 08:30:06,024 | INFO | Bird 0.281 0.000 0.182 ✓ +2026-07-13 08:30:06,024 | INFO | Animal 0.167 0.000 0.108 ✗ +2026-07-13 08:30:06,024 | INFO | Crow 0.151 0.000 0.098 ✗ +2026-07-13 08:30:06,024 | INFO | Duck 0.149 0.000 0.097 ✗ +2026-07-13 08:30:06,024 | INFO | → WINNER: Goose (combined=0.238) +2026-07-13 08:30:06,053 | INFO | +[261.20s] AMBIENT | scene='' +2026-07-13 08:30:06,053 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,053 | INFO | Crow 0.646 0.000 0.420 ✓ +2026-07-13 08:30:06,053 | INFO | Caw 0.408 0.000 0.266 ✓ +2026-07-13 08:30:06,055 | INFO | Bird 0.347 0.000 0.225 ✓ +2026-07-13 08:30:06,055 | INFO | Animal 0.260 0.000 0.169 ✓ +2026-07-13 08:30:06,055 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:30:06,055 | INFO | Bird vocalization, bird call, bird song 0.045 0.000 0.029 ✗ +2026-07-13 08:30:06,055 | INFO | → WINNER: Crow (combined=0.420) +2026-07-13 08:30:06,081 | INFO | +[261.40s] AMBIENT | scene='' +2026-07-13 08:30:06,081 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,081 | INFO | Bird 0.309 0.000 0.201 ✓ +2026-07-13 08:30:06,081 | INFO | Duck 0.233 0.000 0.151 ✓ +2026-07-13 08:30:06,081 | INFO | Animal 0.215 0.000 0.140 ✓ +2026-07-13 08:30:06,081 | INFO | Crow 0.166 0.000 0.108 ✗ +2026-07-13 08:30:06,081 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.052 ✗ +2026-07-13 08:30:06,081 | INFO | Caw 0.069 0.000 0.045 ✗ +2026-07-13 08:30:06,081 | INFO | → WINNER: Bird (combined=0.201) +2026-07-13 08:30:06,109 | INFO | +[261.60s] AMBIENT | scene='' +2026-07-13 08:30:06,109 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,109 | INFO | Crow 0.433 0.000 0.281 ✓ +2026-07-13 08:30:06,109 | INFO | Bird 0.382 0.000 0.248 ✓ +2026-07-13 08:30:06,109 | INFO | Animal 0.213 0.000 0.138 ✓ +2026-07-13 08:30:06,109 | INFO | Caw 0.198 0.000 0.129 ✓ +2026-07-13 08:30:06,109 | INFO | Duck 0.131 0.000 0.085 ✗ +2026-07-13 08:30:06,109 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:06,109 | INFO | → WINNER: Crow (combined=0.281) +2026-07-13 08:30:06,138 | INFO | +[261.80s] AMBIENT | scene='' +2026-07-13 08:30:06,138 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,138 | INFO | Crow 0.306 0.000 0.199 ✓ +2026-07-13 08:30:06,138 | INFO | Bird 0.274 0.000 0.178 ✓ +2026-07-13 08:30:06,138 | INFO | Animal 0.258 0.000 0.168 ✓ +2026-07-13 08:30:06,138 | INFO | Caw 0.163 0.000 0.106 ✗ +2026-07-13 08:30:06,138 | INFO | Duck 0.134 0.000 0.087 ✗ +2026-07-13 08:30:06,138 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.061 ✗ +2026-07-13 08:30:06,138 | INFO | → WINNER: Crow (combined=0.199) +2026-07-13 08:30:06,162 | INFO | +[262.00s] AMBIENT | scene='' +2026-07-13 08:30:06,162 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,162 | INFO | Animal 0.228 0.000 0.148 ✓ +2026-07-13 08:30:06,162 | INFO | Bird 0.172 0.000 0.112 ✗ +2026-07-13 08:30:06,162 | INFO | Duck 0.119 0.000 0.077 ✗ +2026-07-13 08:30:06,162 | INFO | Bird vocalization, bird call, bird song 0.056 0.000 0.036 ✗ +2026-07-13 08:30:06,170 | INFO | → WINNER: Animal (combined=0.148) +2026-07-13 08:30:06,195 | INFO | +[262.20s] AMBIENT | scene='' +2026-07-13 08:30:06,195 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,195 | INFO | Bird 0.270 0.000 0.176 ✓ +2026-07-13 08:30:06,195 | INFO | Goose 0.148 0.000 0.096 ✗ +2026-07-13 08:30:06,195 | INFO | Animal 0.133 0.000 0.087 ✗ +2026-07-13 08:30:06,195 | INFO | Duck 0.122 0.000 0.080 ✗ +2026-07-13 08:30:06,195 | INFO | Bird vocalization, bird call, bird song 0.112 0.000 0.073 ✗ +2026-07-13 08:30:06,195 | INFO | Honk 0.104 0.000 0.068 ✗ +2026-07-13 08:30:06,195 | INFO | → WINNER: Bird (combined=0.176) +2026-07-13 08:30:06,225 | INFO | +[262.40s] AMBIENT | scene='' +2026-07-13 08:30:06,225 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,225 | INFO | Bird 0.263 0.000 0.171 ✓ +2026-07-13 08:30:06,225 | INFO | Animal 0.179 0.000 0.117 ✗ +2026-07-13 08:30:06,225 | INFO | Goose 0.174 0.000 0.113 ✗ +2026-07-13 08:30:06,225 | INFO | Crow 0.156 0.000 0.101 ✗ +2026-07-13 08:30:06,225 | INFO | Honk 0.130 0.000 0.085 ✗ +2026-07-13 08:30:06,225 | INFO | Duck 0.118 0.000 0.077 ✗ +2026-07-13 08:30:06,227 | INFO | → WINNER: Bird (combined=0.171) +2026-07-13 08:30:06,251 | INFO | +[262.60s] AMBIENT | scene='' +2026-07-13 08:30:06,251 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,251 | INFO | Goose 0.280 0.000 0.182 ✓ +2026-07-13 08:30:06,251 | INFO | Honk 0.264 0.000 0.172 ✓ +2026-07-13 08:30:06,251 | INFO | Crow 0.255 0.000 0.166 ✓ +2026-07-13 08:30:06,251 | INFO | Bird 0.166 0.000 0.108 ✗ +2026-07-13 08:30:06,256 | INFO | Animal 0.164 0.000 0.106 ✗ +2026-07-13 08:30:06,256 | INFO | Duck 0.153 0.000 0.099 ✗ +2026-07-13 08:30:06,256 | INFO | → WINNER: Goose (combined=0.182) +2026-07-13 08:30:06,276 | INFO | +[262.80s] AMBIENT | scene='' +2026-07-13 08:30:06,276 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,276 | INFO | Crow 0.256 0.000 0.167 ✓ +2026-07-13 08:30:06,276 | INFO | Animal 0.161 0.000 0.104 ✗ +2026-07-13 08:30:06,276 | INFO | Bird 0.153 0.000 0.100 ✗ +2026-07-13 08:30:06,276 | INFO | Caw 0.127 0.000 0.082 ✗ +2026-07-13 08:30:06,276 | INFO | Goose 0.111 0.000 0.072 ✗ +2026-07-13 08:30:06,284 | INFO | Honk 0.103 0.000 0.067 ✗ +2026-07-13 08:30:06,285 | INFO | → WINNER: Crow (combined=0.167) +2026-07-13 08:30:06,309 | INFO | +[263.00s] AMBIENT | scene='' +2026-07-13 08:30:06,309 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,309 | INFO | Bird 0.045 0.000 0.029 ✗ +2026-07-13 08:30:06,309 | INFO | → no winner +2026-07-13 08:30:06,340 | INFO | +[263.20s] AMBIENT | scene='' +2026-07-13 08:30:06,340 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,341 | INFO | Squeal 0.118 0.000 0.077 ✗ +2026-07-13 08:30:06,342 | INFO | → no winner +2026-07-13 08:30:06,366 | INFO | +[263.40s] AMBIENT | scene='' +2026-07-13 08:30:06,366 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,366 | INFO | Squeal 0.119 0.000 0.077 ✗ +2026-07-13 08:30:06,366 | INFO | → no winner +2026-07-13 08:30:06,391 | INFO | +[263.60s] AMBIENT | scene='' +2026-07-13 08:30:06,391 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,391 | INFO | Animal 0.144 0.000 0.094 ✗ +2026-07-13 08:30:06,391 | INFO | Frog 0.072 0.000 0.047 ✗ +2026-07-13 08:30:06,391 | INFO | Rodents, rats, mice 0.053 0.000 0.034 ✗ +2026-07-13 08:30:06,391 | INFO | → no winner +2026-07-13 08:30:06,423 | INFO | +[263.80s] AMBIENT | scene='' +2026-07-13 08:30:06,423 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,423 | INFO | Animal 0.224 0.000 0.145 ✓ +2026-07-13 08:30:06,423 | INFO | Frog 0.108 0.000 0.070 ✗ +2026-07-13 08:30:06,423 | INFO | Bird 0.075 0.000 0.049 ✗ +2026-07-13 08:30:06,423 | INFO | Bird vocalization, bird call, bird song 0.033 0.000 0.022 ✗ +2026-07-13 08:30:06,423 | INFO | → WINNER: Animal (combined=0.145) +2026-07-13 08:30:06,452 | INFO | +[264.00s] AMBIENT | scene='' +2026-07-13 08:30:06,454 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,454 | INFO | Animal 0.272 0.000 0.177 ✓ +2026-07-13 08:30:06,455 | INFO | Bird 0.152 0.000 0.099 ✗ +2026-07-13 08:30:06,455 | INFO | Chirp, tweet 0.141 0.000 0.092 ✗ +2026-07-13 08:30:06,455 | INFO | Bird vocalization, bird call, bird song 0.095 0.000 0.062 ✗ +2026-07-13 08:30:06,455 | INFO | Rodents, rats, mice 0.082 0.000 0.053 ✗ +2026-07-13 08:30:06,455 | INFO | Outside, rural or natural 0.076 0.000 0.049 ✗ +2026-07-13 08:30:06,455 | INFO | → WINNER: Animal (combined=0.177) +2026-07-13 08:30:06,487 | INFO | +[264.20s] AMBIENT | scene='' +2026-07-13 08:30:06,487 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,487 | INFO | Animal 0.356 0.000 0.231 ✓ +2026-07-13 08:30:06,487 | INFO | Bird 0.145 0.000 0.095 ✗ +2026-07-13 08:30:06,487 | INFO | Wild animals 0.113 0.000 0.074 ✗ +2026-07-13 08:30:06,487 | INFO | Environmental noise 0.097 0.000 0.063 ✗ +2026-07-13 08:30:06,487 | INFO | Outside, rural or natural 0.096 0.000 0.062 ✗ +2026-07-13 08:30:06,487 | INFO | Chirp, tweet 0.092 0.000 0.060 ✗ +2026-07-13 08:30:06,491 | INFO | → WINNER: Animal (combined=0.231) +2026-07-13 08:30:06,512 | INFO | +[264.40s] AMBIENT | scene='' +2026-07-13 08:30:06,512 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,512 | INFO | Bird 0.343 0.000 0.223 ✓ +2026-07-13 08:30:06,512 | INFO | Animal 0.337 0.000 0.219 ✓ +2026-07-13 08:30:06,512 | INFO | Chirp, tweet 0.271 0.000 0.176 ✓ +2026-07-13 08:30:06,512 | INFO | Duck 0.247 0.000 0.160 ✓ +2026-07-13 08:30:06,512 | INFO | Bird vocalization, bird call, bird song 0.195 0.000 0.127 ✓ +2026-07-13 08:30:06,512 | INFO | Outside, rural or natural 0.093 0.000 0.060 ✗ +2026-07-13 08:30:06,512 | INFO | → WINNER: Bird (combined=0.223) +2026-07-13 08:30:06,544 | INFO | +[264.60s] AMBIENT | scene='' +2026-07-13 08:30:06,544 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,545 | INFO | Bird 0.340 0.000 0.221 ✓ +2026-07-13 08:30:06,545 | INFO | Animal 0.308 0.000 0.201 ✓ +2026-07-13 08:30:06,545 | INFO | Chirp, tweet 0.243 0.000 0.158 ✓ +2026-07-13 08:30:06,545 | INFO | Duck 0.218 0.000 0.142 ✓ +2026-07-13 08:30:06,545 | INFO | Bird vocalization, bird call, bird song 0.184 0.000 0.120 ✗ +2026-07-13 08:30:06,545 | INFO | Outside, rural or natural 0.122 0.000 0.079 ✗ +2026-07-13 08:30:06,545 | INFO | → WINNER: Bird (combined=0.221) +2026-07-13 08:30:06,569 | INFO | +[264.80s] AMBIENT | scene='' +2026-07-13 08:30:06,569 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,569 | INFO | Bird 0.168 0.000 0.109 ✗ +2026-07-13 08:30:06,569 | INFO | Animal 0.141 0.000 0.092 ✗ +2026-07-13 08:30:06,569 | INFO | Chirp, tweet 0.096 0.000 0.062 ✗ +2026-07-13 08:30:06,569 | INFO | Bird vocalization, bird call, bird song 0.086 0.000 0.056 ✗ +2026-07-13 08:30:06,569 | INFO | Outside, rural or natural 0.064 0.000 0.041 ✗ +2026-07-13 08:30:06,569 | INFO | → no winner +2026-07-13 08:30:06,598 | INFO | +[265.00s] AMBIENT | scene='' +2026-07-13 08:30:06,598 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,598 | INFO | Bird 0.052 0.000 0.034 ✗ +2026-07-13 08:30:06,598 | INFO | → no winner +2026-07-13 08:30:06,627 | INFO | +[265.20s] AMBIENT | scene='' +2026-07-13 08:30:06,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,627 | INFO | Animal 0.095 0.000 0.061 ✗ +2026-07-13 08:30:06,629 | INFO | Squeal 0.054 0.000 0.035 ✗ +2026-07-13 08:30:06,629 | INFO | Bird 0.049 0.000 0.032 ✗ +2026-07-13 08:30:06,629 | INFO | → no winner +2026-07-13 08:30:06,652 | INFO | +[265.40s] AMBIENT | scene='' +2026-07-13 08:30:06,652 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,652 | INFO | Animal 0.136 0.000 0.088 ✗ +2026-07-13 08:30:06,652 | INFO | Bird 0.069 0.000 0.045 ✗ +2026-07-13 08:30:06,652 | INFO | Rodents, rats, mice 0.065 0.000 0.042 ✗ +2026-07-13 08:30:06,652 | INFO | Bird vocalization, bird call, bird song 0.028 0.000 0.018 ✗ +2026-07-13 08:30:06,652 | INFO | → no winner +2026-07-13 08:30:06,684 | INFO | +[265.60s] AMBIENT | scene='' +2026-07-13 08:30:06,684 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,684 | INFO | Animal 0.097 0.000 0.063 ✗ +2026-07-13 08:30:06,684 | INFO | Squeal 0.079 0.000 0.051 ✗ +2026-07-13 08:30:06,684 | INFO | Squawk 0.053 0.000 0.034 ✗ +2026-07-13 08:30:06,684 | INFO | Bird 0.038 0.000 0.025 ✗ +2026-07-13 08:30:06,684 | INFO | → no winner +2026-07-13 08:30:06,709 | INFO | +[265.80s] AMBIENT | scene='' +2026-07-13 08:30:06,709 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,709 | INFO | Bird 0.180 0.000 0.117 ✗ +2026-07-13 08:30:06,709 | INFO | Outside, rural or natural 0.134 0.000 0.087 ✗ +2026-07-13 08:30:06,709 | INFO | Animal 0.111 0.000 0.072 ✗ +2026-07-13 08:30:06,709 | INFO | Rodents, rats, mice 0.107 0.000 0.069 ✗ +2026-07-13 08:30:06,709 | INFO | Squawk 0.104 0.000 0.068 ✗ +2026-07-13 08:30:06,709 | INFO | Chirp, tweet 0.061 0.000 0.040 ✗ +2026-07-13 08:30:06,709 | INFO | → no winner +2026-07-13 08:30:06,741 | INFO | +[266.00s] AMBIENT | scene='' +2026-07-13 08:30:06,742 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,743 | INFO | Squeal 0.276 0.000 0.179 ✓ +2026-07-13 08:30:06,743 | INFO | Squawk 0.177 0.000 0.115 ✗ +2026-07-13 08:30:06,743 | INFO | Animal 0.144 0.000 0.093 ✗ +2026-07-13 08:30:06,743 | INFO | Outside, rural or natural 0.067 0.000 0.043 ✗ +2026-07-13 08:30:06,743 | INFO | Bird 0.057 0.000 0.037 ✗ +2026-07-13 08:30:06,743 | INFO | → WINNER: Squeal (combined=0.179) +2026-07-13 08:30:06,768 | INFO | +[266.20s] AMBIENT | scene='' +2026-07-13 08:30:06,768 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,768 | INFO | Animal 0.345 0.000 0.224 ✓ +2026-07-13 08:30:06,768 | INFO | Squeal 0.076 0.000 0.050 ✗ +2026-07-13 08:30:06,768 | INFO | Rodents, rats, mice 0.075 0.000 0.049 ✗ +2026-07-13 08:30:06,768 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:30:06,768 | INFO | Bird 0.043 0.000 0.028 ✗ +2026-07-13 08:30:06,768 | INFO | → WINNER: Animal (combined=0.224) +2026-07-13 08:30:06,796 | INFO | +[266.40s] AMBIENT | scene='' +2026-07-13 08:30:06,796 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,796 | INFO | Bird 0.215 0.000 0.140 ✓ +2026-07-13 08:30:06,796 | INFO | Animal 0.197 0.000 0.128 ✓ +2026-07-13 08:30:06,796 | INFO | Chirp, tweet 0.068 0.000 0.044 ✗ +2026-07-13 08:30:06,800 | INFO | Chicken, rooster 0.068 0.000 0.044 ✗ +2026-07-13 08:30:06,801 | INFO | Bird vocalization, bird call, bird song 0.067 0.000 0.044 ✗ +2026-07-13 08:30:06,801 | INFO | → WINNER: Bird (combined=0.140) +2026-07-13 08:30:06,826 | INFO | +[266.60s] AMBIENT | scene='' +2026-07-13 08:30:06,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,826 | INFO | Bird 0.252 0.000 0.164 ✓ +2026-07-13 08:30:06,826 | INFO | Animal 0.165 0.000 0.107 ✗ +2026-07-13 08:30:06,826 | INFO | Duck 0.121 0.000 0.079 ✗ +2026-07-13 08:30:06,826 | INFO | Chicken, rooster 0.107 0.000 0.069 ✗ +2026-07-13 08:30:06,826 | INFO | Bird vocalization, bird call, bird song 0.101 0.000 0.065 ✗ +2026-07-13 08:30:06,826 | INFO | Chirp, tweet 0.094 0.000 0.061 ✗ +2026-07-13 08:30:06,826 | INFO | → WINNER: Bird (combined=0.164) +2026-07-13 08:30:06,858 | INFO | +[266.80s] AMBIENT | scene='' +2026-07-13 08:30:06,858 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,858 | INFO | Chicken, rooster 0.382 0.000 0.248 ✓ +2026-07-13 08:30:06,858 | INFO | Cluck 0.283 0.000 0.184 ✓ +2026-07-13 08:30:06,858 | INFO | Bird 0.280 0.000 0.182 ✓ +2026-07-13 08:30:06,858 | INFO | Animal 0.154 0.000 0.100 ✗ +2026-07-13 08:30:06,858 | INFO | Chirp, tweet 0.084 0.000 0.055 ✗ +2026-07-13 08:30:06,858 | INFO | Bird vocalization, bird call, bird song 0.084 0.000 0.055 ✗ +2026-07-13 08:30:06,858 | INFO | → WINNER: Chicken, rooster (combined=0.248) +2026-07-13 08:30:06,882 | INFO | +[267.00s] AMBIENT | scene='' +2026-07-13 08:30:06,882 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,882 | INFO | Bird 0.312 0.000 0.203 ✓ +2026-07-13 08:30:06,882 | INFO | Animal 0.234 0.000 0.152 ✓ +2026-07-13 08:30:06,882 | INFO | Chirp, tweet 0.158 0.000 0.102 ✗ +2026-07-13 08:30:06,882 | INFO | Bird vocalization, bird call, bird song 0.157 0.000 0.102 ✗ +2026-07-13 08:30:06,891 | INFO | Chicken, rooster 0.142 0.000 0.093 ✗ +2026-07-13 08:30:06,891 | INFO | Domestic animals, pets 0.098 0.000 0.064 ✗ +2026-07-13 08:30:06,891 | INFO | → WINNER: Bird (combined=0.203) +2026-07-13 08:30:06,917 | INFO | +[267.20s] AMBIENT | scene='' +2026-07-13 08:30:06,917 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,922 | INFO | Bird 0.323 0.000 0.210 ✓ +2026-07-13 08:30:06,922 | INFO | Chirp, tweet 0.267 0.000 0.173 ✓ +2026-07-13 08:30:06,922 | INFO | Bird vocalization, bird call, bird song 0.249 0.000 0.162 ✓ +2026-07-13 08:30:06,923 | INFO | Environmental noise 0.230 0.000 0.149 ✓ +2026-07-13 08:30:06,923 | INFO | Animal 0.143 0.000 0.093 ✗ +2026-07-13 08:30:06,923 | INFO | Outside, rural or natural 0.085 0.000 0.055 ✗ +2026-07-13 08:30:06,923 | INFO | → WINNER: Bird (combined=0.210) +2026-07-13 08:30:06,949 | INFO | +[267.40s] AMBIENT | scene='' +2026-07-13 08:30:06,949 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,949 | INFO | Bird 0.333 0.000 0.216 ✓ +2026-07-13 08:30:06,949 | INFO | Chirp, tweet 0.308 0.000 0.200 ✓ +2026-07-13 08:30:06,949 | INFO | Bird vocalization, bird call, bird song 0.231 0.000 0.150 ✓ +2026-07-13 08:30:06,949 | INFO | Animal 0.164 0.000 0.106 ✗ +2026-07-13 08:30:06,949 | INFO | Environmental noise 0.119 0.000 0.077 ✗ +2026-07-13 08:30:06,949 | INFO | Outside, rural or natural 0.087 0.000 0.057 ✗ +2026-07-13 08:30:06,949 | INFO | → WINNER: Bird (combined=0.216) +2026-07-13 08:30:06,972 | INFO | +[267.60s] AMBIENT | scene='' +2026-07-13 08:30:06,980 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:06,980 | INFO | Bird 0.196 0.000 0.127 ✓ +2026-07-13 08:30:06,980 | INFO | Chirp, tweet 0.158 0.000 0.103 ✗ +2026-07-13 08:30:06,980 | INFO | Bird vocalization, bird call, bird song 0.115 0.000 0.074 ✗ +2026-07-13 08:30:06,981 | INFO | Animal 0.109 0.000 0.071 ✗ +2026-07-13 08:30:06,982 | INFO | Mouse 0.087 0.000 0.057 ✗ +2026-07-13 08:30:06,982 | INFO | → WINNER: Bird (combined=0.127) +2026-07-13 08:30:07,006 | INFO | +[267.80s] AMBIENT | scene='' +2026-07-13 08:30:07,006 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,006 | INFO | Bird 0.208 0.000 0.135 ✓ +2026-07-13 08:30:07,006 | INFO | Chirp, tweet 0.141 0.000 0.091 ✗ +2026-07-13 08:30:07,006 | INFO | Cricket 0.140 0.000 0.091 ✗ +2026-07-13 08:30:07,006 | INFO | Bird vocalization, bird call, bird song 0.117 0.000 0.076 ✗ +2026-07-13 08:30:07,006 | INFO | Insect 0.113 0.000 0.073 ✗ +2026-07-13 08:30:07,006 | INFO | Animal 0.105 0.000 0.068 ✗ +2026-07-13 08:30:07,006 | INFO | → WINNER: Bird (combined=0.135) +2026-07-13 08:30:07,029 | INFO | +[268.00s] AMBIENT | scene='' +2026-07-13 08:30:07,029 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,038 | INFO | Mouse 0.164 0.000 0.107 ✗ +2026-07-13 08:30:07,038 | INFO | Animal 0.155 0.000 0.101 ✗ +2026-07-13 08:30:07,039 | INFO | Bird 0.149 0.000 0.097 ✗ +2026-07-13 08:30:07,039 | INFO | Rodents, rats, mice 0.075 0.000 0.049 ✗ +2026-07-13 08:30:07,040 | INFO | Chirp, tweet 0.059 0.000 0.038 ✗ +2026-07-13 08:30:07,040 | INFO | Bird vocalization, bird call, bird song 0.059 0.000 0.038 ✗ +2026-07-13 08:30:07,040 | INFO | → no winner +2026-07-13 08:30:07,079 | INFO | +[268.20s] AMBIENT | scene='' +2026-07-13 08:30:07,079 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,079 | INFO | Bird 0.169 0.000 0.110 ✗ +2026-07-13 08:30:07,079 | INFO | Rodents, rats, mice 0.161 0.000 0.105 ✗ +2026-07-13 08:30:07,079 | INFO | Animal 0.129 0.000 0.084 ✗ +2026-07-13 08:30:07,079 | INFO | Chirp, tweet 0.115 0.000 0.075 ✗ +2026-07-13 08:30:07,079 | INFO | Bird vocalization, bird call, bird song 0.095 0.000 0.062 ✗ +2026-07-13 08:30:07,079 | INFO | Patter 0.072 0.000 0.047 ✗ +2026-07-13 08:30:07,083 | INFO | → no winner +2026-07-13 08:30:07,129 | INFO | +[268.40s] AMBIENT | scene='' +2026-07-13 08:30:07,129 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,129 | INFO | Bird 0.266 0.000 0.173 ✓ +2026-07-13 08:30:07,129 | INFO | Animal 0.262 0.000 0.170 ✓ +2026-07-13 08:30:07,129 | INFO | Chirp, tweet 0.187 0.000 0.122 ✓ +2026-07-13 08:30:07,129 | INFO | Bird vocalization, bird call, bird song 0.157 0.000 0.102 ✗ +2026-07-13 08:30:07,129 | INFO | Outside, rural or natural 0.139 0.000 0.090 ✗ +2026-07-13 08:30:07,129 | INFO | Duck 0.099 0.000 0.065 ✗ +2026-07-13 08:30:07,129 | INFO | → WINNER: Bird (combined=0.173) +2026-07-13 08:30:07,187 | INFO | +[268.60s] AMBIENT | scene='' +2026-07-13 08:30:07,187 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,187 | INFO | Bird 0.222 0.000 0.144 ✓ +2026-07-13 08:30:07,187 | INFO | Squawk 0.178 0.000 0.116 ✗ +2026-07-13 08:30:07,187 | INFO | Outside, rural or natural 0.163 0.000 0.106 ✗ +2026-07-13 08:30:07,187 | INFO | Animal 0.163 0.000 0.106 ✗ +2026-07-13 08:30:07,187 | INFO | Duck 0.138 0.000 0.090 ✗ +2026-07-13 08:30:07,187 | INFO | Chirp, tweet 0.085 0.000 0.055 ✗ +2026-07-13 08:30:07,187 | INFO | → WINNER: Bird (combined=0.144) +2026-07-13 08:30:07,237 | INFO | +[268.80s] AMBIENT | scene='' +2026-07-13 08:30:07,237 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,237 | INFO | Bird 0.276 0.000 0.179 ✓ +2026-07-13 08:30:07,237 | INFO | Duck 0.179 0.000 0.116 ✗ +2026-07-13 08:30:07,245 | INFO | Animal 0.171 0.000 0.111 ✗ +2026-07-13 08:30:07,245 | INFO | Squawk 0.153 0.000 0.100 ✗ +2026-07-13 08:30:07,245 | INFO | Outside, rural or natural 0.138 0.000 0.090 ✗ +2026-07-13 08:30:07,245 | INFO | Chirp, tweet 0.126 0.000 0.082 ✗ +2026-07-13 08:30:07,245 | INFO | → WINNER: Bird (combined=0.179) +2026-07-13 08:30:07,277 | INFO | +[269.00s] AMBIENT | scene='' +2026-07-13 08:30:07,277 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,277 | INFO | Bird 0.363 0.000 0.236 ✓ +2026-07-13 08:30:07,277 | INFO | Chirp, tweet 0.240 0.000 0.156 ✓ +2026-07-13 08:30:07,277 | INFO | Animal 0.217 0.000 0.141 ✓ +2026-07-13 08:30:07,277 | INFO | Bird vocalization, bird call, bird song 0.192 0.000 0.125 ✓ +2026-07-13 08:30:07,277 | INFO | Outside, rural or natural 0.142 0.000 0.092 ✗ +2026-07-13 08:30:07,277 | INFO | Duck 0.135 0.000 0.087 ✗ +2026-07-13 08:30:07,277 | INFO | → WINNER: Bird (combined=0.236) +2026-07-13 08:30:07,306 | INFO | +[269.20s] AMBIENT | scene='' +2026-07-13 08:30:07,310 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,310 | INFO | Animal 0.253 0.000 0.165 ✓ +2026-07-13 08:30:07,310 | INFO | Bird 0.216 0.000 0.141 ✓ +2026-07-13 08:30:07,310 | INFO | Rodents, rats, mice 0.147 0.000 0.096 ✗ +2026-07-13 08:30:07,310 | INFO | Chirp, tweet 0.097 0.000 0.063 ✗ +2026-07-13 08:30:07,310 | INFO | Outside, rural or natural 0.088 0.000 0.058 ✗ +2026-07-13 08:30:07,310 | INFO | Bird vocalization, bird call, bird song 0.083 0.000 0.054 ✗ +2026-07-13 08:30:07,310 | INFO | → WINNER: Animal (combined=0.165) +2026-07-13 08:30:07,338 | INFO | +[269.40s] AMBIENT | scene='' +2026-07-13 08:30:07,341 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,341 | INFO | Animal 0.372 0.000 0.242 ✓ +2026-07-13 08:30:07,341 | INFO | Bird 0.166 0.000 0.108 ✗ +2026-07-13 08:30:07,341 | INFO | Rodents, rats, mice 0.102 0.000 0.066 ✗ +2026-07-13 08:30:07,341 | INFO | Chicken, rooster 0.087 0.000 0.057 ✗ +2026-07-13 08:30:07,341 | INFO | Outside, rural or natural 0.064 0.000 0.042 ✗ +2026-07-13 08:30:07,341 | INFO | Bird vocalization, bird call, bird song 0.050 0.000 0.033 ✗ +2026-07-13 08:30:07,343 | INFO | → WINNER: Animal (combined=0.242) +2026-07-13 08:30:07,370 | INFO | +[269.60s] AMBIENT | scene='' +2026-07-13 08:30:07,370 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,370 | INFO | Animal 0.432 0.000 0.281 ✓ +2026-07-13 08:30:07,370 | INFO | Bird 0.109 0.000 0.071 ✗ +2026-07-13 08:30:07,370 | INFO | Domestic animals, pets 0.102 0.000 0.067 ✗ +2026-07-13 08:30:07,370 | INFO | Outside, rural or natural 0.061 0.000 0.040 ✗ +2026-07-13 08:30:07,370 | INFO | Bird vocalization, bird call, bird song 0.034 0.000 0.022 ✗ +2026-07-13 08:30:07,374 | INFO | → WINNER: Animal (combined=0.281) +2026-07-13 08:30:07,400 | INFO | +[269.80s] AMBIENT | scene='' +2026-07-13 08:30:07,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,400 | INFO | Bird 0.214 0.000 0.139 ✓ +2026-07-13 08:30:07,400 | INFO | Animal 0.169 0.000 0.110 ✗ +2026-07-13 08:30:07,400 | INFO | Chicken, rooster 0.126 0.000 0.082 ✗ +2026-07-13 08:30:07,400 | INFO | Cluck 0.103 0.000 0.067 ✗ +2026-07-13 08:30:07,400 | INFO | Bird vocalization, bird call, bird song 0.096 0.000 0.062 ✗ +2026-07-13 08:30:07,400 | INFO | Chirp, tweet 0.088 0.000 0.057 ✗ +2026-07-13 08:30:07,400 | INFO | → WINNER: Bird (combined=0.139) +2026-07-13 08:30:07,431 | INFO | +[270.00s] AMBIENT | scene='' +2026-07-13 08:30:07,431 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,431 | INFO | Alarm 0.160 0.000 0.104 ✗ +2026-07-13 08:30:07,431 | INFO | Squawk 0.110 0.000 0.072 ✗ +2026-07-13 08:30:07,433 | INFO | Bird 0.087 0.000 0.057 ✗ +2026-07-13 08:30:07,433 | INFO | Bird vocalization, bird call, bird song 0.032 0.000 0.021 ✗ +2026-07-13 08:30:07,433 | INFO | → no winner +2026-07-13 08:30:07,459 | INFO | +[270.20s] AMBIENT | scene='' +2026-07-13 08:30:07,459 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,459 | INFO | Alarm 0.281 0.000 0.182 ✓ +2026-07-13 08:30:07,459 | INFO | Music 0.061 0.000 0.040 ✗ +2026-07-13 08:30:07,459 | INFO | Alarm clock 0.053 0.000 0.034 ✗ +2026-07-13 08:30:07,459 | INFO | Fire alarm 0.046 0.000 0.030 ✗ +2026-07-13 08:30:07,459 | INFO | Bird 0.044 0.000 0.029 ✗ +2026-07-13 08:30:07,459 | INFO | → WINNER: Alarm (combined=0.182) +2026-07-13 08:30:07,488 | INFO | +[270.40s] AMBIENT | scene='' +2026-07-13 08:30:07,488 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,488 | INFO | Alarm 0.202 0.000 0.131 ✓ +2026-07-13 08:30:07,488 | INFO | Bird 0.073 0.000 0.047 ✗ +2026-07-13 08:30:07,488 | INFO | Fire alarm 0.053 0.000 0.034 ✗ +2026-07-13 08:30:07,488 | INFO | → WINNER: Alarm (combined=0.131) +2026-07-13 08:30:07,516 | INFO | +[270.60s] AMBIENT | scene='' +2026-07-13 08:30:07,516 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,516 | INFO | Alarm 0.214 0.000 0.139 ✓ +2026-07-13 08:30:07,516 | INFO | Bird 0.122 0.000 0.080 ✗ +2026-07-13 08:30:07,516 | INFO | Animal 0.090 0.000 0.059 ✗ +2026-07-13 08:30:07,516 | INFO | Music 0.060 0.000 0.039 ✗ +2026-07-13 08:30:07,516 | INFO | Fire alarm 0.047 0.000 0.030 ✗ +2026-07-13 08:30:07,516 | INFO | Bird vocalization, bird call, bird song 0.037 0.000 0.024 ✗ +2026-07-13 08:30:07,516 | INFO | → WINNER: Alarm (combined=0.139) +2026-07-13 08:30:07,540 | INFO | +[270.80s] AMBIENT | scene='' +2026-07-13 08:30:07,540 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,540 | INFO | Bird 0.289 0.000 0.188 ✓ +2026-07-13 08:30:07,540 | INFO | Animal 0.132 0.000 0.086 ✗ +2026-07-13 08:30:07,540 | INFO | Duck 0.104 0.000 0.068 ✗ +2026-07-13 08:30:07,540 | INFO | Squawk 0.093 0.000 0.061 ✗ +2026-07-13 08:30:07,540 | INFO | Chirp, tweet 0.090 0.000 0.059 ✗ +2026-07-13 08:30:07,540 | INFO | Bird vocalization, bird call, bird song 0.087 0.000 0.057 ✗ +2026-07-13 08:30:07,540 | INFO | → WINNER: Bird (combined=0.188) +2026-07-13 08:30:07,572 | INFO | +[271.00s] AMBIENT | scene='' +2026-07-13 08:30:07,572 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,572 | INFO | Duck 0.342 0.000 0.222 ✓ +2026-07-13 08:30:07,572 | INFO | Bird 0.232 0.000 0.150 ✓ +2026-07-13 08:30:07,572 | INFO | Animal 0.229 0.000 0.149 ✓ +2026-07-13 08:30:07,572 | INFO | Quack 0.163 0.000 0.106 ✗ +2026-07-13 08:30:07,572 | INFO | Chicken, rooster 0.081 0.000 0.053 ✗ +2026-07-13 08:30:07,572 | INFO | Chirp, tweet 0.073 0.000 0.047 ✗ +2026-07-13 08:30:07,572 | INFO | → WINNER: Duck (combined=0.222) +2026-07-13 08:30:07,599 | INFO | +[271.20s] AMBIENT | scene='' +2026-07-13 08:30:07,599 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,605 | INFO | Duck 0.515 0.000 0.335 ✓ +2026-07-13 08:30:07,605 | INFO | Animal 0.327 0.000 0.213 ✓ +2026-07-13 08:30:07,605 | INFO | Quack 0.254 0.000 0.165 ✓ +2026-07-13 08:30:07,606 | INFO | Bird 0.248 0.000 0.161 ✓ +2026-07-13 08:30:07,606 | INFO | Squawk 0.094 0.000 0.061 ✗ +2026-07-13 08:30:07,606 | INFO | Bird vocalization, bird call, bird song 0.053 0.000 0.035 ✗ +2026-07-13 08:30:07,606 | INFO | → WINNER: Duck (combined=0.335) +2026-07-13 08:30:07,633 | INFO | +[273.80s] AMBIENT | scene='' +2026-07-13 08:30:07,633 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,633 | INFO | Bird 0.258 0.000 0.168 ✓ +2026-07-13 08:30:07,633 | INFO | Animal 0.196 0.000 0.128 ✓ +2026-07-13 08:30:07,633 | INFO | Chirp, tweet 0.113 0.000 0.073 ✗ +2026-07-13 08:30:07,633 | INFO | Bird vocalization, bird call, bird song 0.092 0.000 0.060 ✗ +2026-07-13 08:30:07,633 | INFO | → WINNER: Bird (combined=0.168) +2026-07-13 08:30:07,660 | INFO | +[274.00s] AMBIENT | scene='' +2026-07-13 08:30:07,662 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,662 | INFO | Animal 0.206 0.000 0.134 ✓ +2026-07-13 08:30:07,662 | INFO | Bird 0.191 0.000 0.124 ✓ +2026-07-13 08:30:07,662 | INFO | Duck 0.100 0.000 0.065 ✗ +2026-07-13 08:30:07,662 | INFO | Frog 0.089 0.000 0.058 ✗ +2026-07-13 08:30:07,662 | INFO | Bird vocalization, bird call, bird song 0.036 0.000 0.024 ✗ +2026-07-13 08:30:07,664 | INFO | → WINNER: Animal (combined=0.134) +2026-07-13 08:30:07,687 | INFO | +[274.20s] AMBIENT | scene='' +2026-07-13 08:30:07,687 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,687 | INFO | Animal 0.198 0.000 0.129 ✓ +2026-07-13 08:30:07,687 | INFO | Bird 0.129 0.000 0.084 ✗ +2026-07-13 08:30:07,687 | INFO | Frog 0.091 0.000 0.059 ✗ +2026-07-13 08:30:07,687 | INFO | → WINNER: Animal (combined=0.129) +2026-07-13 08:30:07,715 | INFO | +[274.40s] AMBIENT | scene='' +2026-07-13 08:30:07,718 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,718 | INFO | Fowl 0.567 0.000 0.369 ✓ +2026-07-13 08:30:07,718 | INFO | Goose 0.263 0.000 0.171 ✓ +2026-07-13 08:30:07,719 | INFO | Honk 0.241 0.000 0.157 ✓ +2026-07-13 08:30:07,719 | INFO | Turkey 0.219 0.000 0.142 ✓ +2026-07-13 08:30:07,719 | INFO | Bird 0.180 0.000 0.117 ✗ +2026-07-13 08:30:07,719 | INFO | Gobble 0.148 0.000 0.096 ✗ +2026-07-13 08:30:07,719 | INFO | → WINNER: Fowl (combined=0.369) +2026-07-13 08:30:07,746 | INFO | +[274.60s] AMBIENT | scene='' +2026-07-13 08:30:07,746 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,747 | INFO | Animal 0.540 0.000 0.351 ✓ +2026-07-13 08:30:07,747 | INFO | Dog 0.363 0.000 0.236 ✓ +2026-07-13 08:30:07,747 | INFO | Domestic animals, pets 0.336 0.000 0.218 ✓ +2026-07-13 08:30:07,747 | INFO | Bow-wow 0.175 0.000 0.114 ✗ +2026-07-13 08:30:07,747 | INFO | Yip 0.073 0.000 0.048 ✗ +2026-07-13 08:30:07,747 | INFO | Pig 0.058 0.000 0.038 ✗ +2026-07-13 08:30:07,747 | INFO | → WINNER: Animal (combined=0.351) +2026-07-13 08:30:07,775 | INFO | +[274.80s] AMBIENT | scene='' +2026-07-13 08:30:07,775 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,775 | INFO | Chuckle, chortle 0.287 0.000 0.187 ✓ +2026-07-13 08:30:07,775 | INFO | Laughter 0.263 0.000 0.171 ✓ +2026-07-13 08:30:07,776 | INFO | Snicker 0.244 0.000 0.158 ✓ +2026-07-13 08:30:07,776 | INFO | Animal 0.159 0.000 0.103 ✗ +2026-07-13 08:30:07,776 | INFO | Domestic animals, pets 0.117 0.000 0.076 ✗ +2026-07-13 08:30:07,776 | INFO | Giggle 0.088 0.000 0.057 ✗ +2026-07-13 08:30:07,776 | INFO | → WINNER: Chuckle, chortle (combined=0.187) +2026-07-13 08:30:07,801 | INFO | +[275.00s] AMBIENT | scene='' +2026-07-13 08:30:07,801 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,801 | INFO | Animal 0.441 0.000 0.286 ✓ +2026-07-13 08:30:07,801 | INFO | Domestic animals, pets 0.220 0.000 0.143 ✓ +2026-07-13 08:30:07,801 | INFO | Dog 0.143 0.000 0.093 ✗ +2026-07-13 08:30:07,805 | INFO | Bird 0.118 0.000 0.077 ✗ +2026-07-13 08:30:07,805 | INFO | Chuckle, chortle 0.039 0.000 0.025 ✗ +2026-07-13 08:30:07,806 | INFO | Laughter 0.029 0.000 0.019 ✗ +2026-07-13 08:30:07,806 | INFO | → WINNER: Animal (combined=0.286) +2026-07-13 08:30:07,829 | INFO | +[275.20s] AMBIENT | scene='' +2026-07-13 08:30:07,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,834 | INFO | Animal 0.394 0.000 0.256 ✓ +2026-07-13 08:30:07,835 | INFO | Domestic animals, pets 0.191 0.000 0.124 ✓ +2026-07-13 08:30:07,835 | INFO | Bird 0.149 0.000 0.097 ✗ +2026-07-13 08:30:07,835 | INFO | Rodents, rats, mice 0.060 0.000 0.039 ✗ +2026-07-13 08:30:07,835 | INFO | → WINNER: Animal (combined=0.256) +2026-07-13 08:30:07,858 | INFO | +[275.40s] AMBIENT | scene='' +2026-07-13 08:30:07,858 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,858 | INFO | Animal 0.321 0.000 0.209 ✓ +2026-07-13 08:30:07,858 | INFO | Bird 0.164 0.000 0.106 ✗ +2026-07-13 08:30:07,858 | INFO | Domestic animals, pets 0.104 0.000 0.068 ✗ +2026-07-13 08:30:07,858 | INFO | Rodents, rats, mice 0.071 0.000 0.046 ✗ +2026-07-13 08:30:07,858 | INFO | → WINNER: Animal (combined=0.209) +2026-07-13 08:30:07,889 | INFO | +[275.60s] AMBIENT | scene='' +2026-07-13 08:30:07,889 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,889 | INFO | Animal 0.433 0.000 0.281 ✓ +2026-07-13 08:30:07,891 | INFO | Bird 0.298 0.000 0.194 ✓ +2026-07-13 08:30:07,891 | INFO | Duck 0.140 0.000 0.091 ✗ +2026-07-13 08:30:07,891 | INFO | Domestic animals, pets 0.118 0.000 0.076 ✗ +2026-07-13 08:30:07,891 | INFO | Outside, rural or natural 0.067 0.000 0.044 ✗ +2026-07-13 08:30:07,891 | INFO | Bird vocalization, bird call, bird song 0.065 0.000 0.042 ✗ +2026-07-13 08:30:07,891 | INFO | → WINNER: Animal (combined=0.281) +2026-07-13 08:30:07,916 | INFO | +[275.80s] AMBIENT | scene='' +2026-07-13 08:30:07,916 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,920 | INFO | Bird 0.340 0.000 0.221 ✓ +2026-07-13 08:30:07,920 | INFO | Animal 0.320 0.000 0.208 ✓ +2026-07-13 08:30:07,920 | INFO | Duck 0.139 0.000 0.091 ✗ +2026-07-13 08:30:07,920 | INFO | Domestic animals, pets 0.100 0.000 0.065 ✗ +2026-07-13 08:30:07,920 | INFO | Bird vocalization, bird call, bird song 0.081 0.000 0.052 ✗ +2026-07-13 08:30:07,920 | INFO | Chirp, tweet 0.074 0.000 0.048 ✗ +2026-07-13 08:30:07,920 | INFO | → WINNER: Bird (combined=0.221) +2026-07-13 08:30:07,946 | INFO | +[276.00s] AMBIENT | scene='' +2026-07-13 08:30:07,948 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,949 | INFO | Animal 0.452 0.000 0.294 ✓ +2026-07-13 08:30:07,950 | INFO | Bird 0.259 0.000 0.168 ✓ +2026-07-13 08:30:07,950 | INFO | Domestic animals, pets 0.114 0.000 0.074 ✗ +2026-07-13 08:30:07,950 | INFO | Bird vocalization, bird call, bird song 0.099 0.000 0.064 ✗ +2026-07-13 08:30:07,950 | INFO | Chirp, tweet 0.087 0.000 0.057 ✗ +2026-07-13 08:30:07,950 | INFO | Outside, rural or natural 0.062 0.000 0.041 ✗ +2026-07-13 08:30:07,950 | INFO | → WINNER: Animal (combined=0.294) +2026-07-13 08:30:07,973 | INFO | +[276.20s] AMBIENT | scene='' +2026-07-13 08:30:07,973 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:07,973 | INFO | Animal 0.723 0.000 0.470 ✓ +2026-07-13 08:30:07,973 | INFO | Domestic animals, pets 0.613 0.000 0.399 ✓ +2026-07-13 08:30:07,973 | INFO | Dog 0.603 0.000 0.392 ✓ +2026-07-13 08:30:07,981 | INFO | Bow-wow 0.407 0.000 0.265 ✓ +2026-07-13 08:30:07,981 | INFO | Whimper (dog) 0.261 0.000 0.170 ✓ +2026-07-13 08:30:07,981 | INFO | Yip 0.224 0.000 0.146 ✓ +2026-07-13 08:30:07,981 | INFO | → WINNER: Animal (combined=0.470) +2026-07-13 08:30:08,005 | INFO | +[281.20s] AMBIENT | scene='' +2026-07-13 08:30:08,005 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,005 | INFO | Animal 0.295 0.000 0.192 ✓ +2026-07-13 08:30:08,005 | INFO | Bird 0.165 0.000 0.107 ✗ +2026-07-13 08:30:08,005 | INFO | Music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:08,005 | INFO | Bird vocalization, bird call, bird song 0.075 0.000 0.049 ✗ +2026-07-13 08:30:08,005 | INFO | Chirp, tweet 0.062 0.000 0.041 ✗ +2026-07-13 08:30:08,005 | INFO | Outside, rural or natural 0.052 0.000 0.034 ✗ +2026-07-13 08:30:08,005 | INFO | → WINNER: Animal (combined=0.192) +2026-07-13 08:30:08,039 | INFO | +[287.20s] AMBIENT | scene='' +2026-07-13 08:30:08,039 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,039 | INFO | Animal 0.442 0.000 0.287 ✓ +2026-07-13 08:30:08,039 | INFO | Goat 0.217 0.000 0.141 ✓ +2026-07-13 08:30:08,039 | INFO | Bird 0.186 0.000 0.121 ✓ +2026-07-13 08:30:08,039 | INFO | Domestic animals, pets 0.163 0.000 0.106 ✗ +2026-07-13 08:30:08,039 | INFO | Sheep 0.078 0.000 0.051 ✗ +2026-07-13 08:30:08,039 | INFO | Rodents, rats, mice 0.065 0.000 0.042 ✗ +2026-07-13 08:30:08,039 | INFO | → WINNER: Animal (combined=0.287) +2026-07-13 08:30:08,067 | INFO | +[287.40s] AMBIENT | scene='' +2026-07-13 08:30:08,067 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,067 | INFO | Owl 0.392 0.000 0.255 ✓ +2026-07-13 08:30:08,067 | INFO | Bird 0.316 0.000 0.205 ✓ +2026-07-13 08:30:08,067 | INFO | Animal 0.242 0.000 0.157 ✓ +2026-07-13 08:30:08,067 | INFO | Bird vocalization, bird call, bird song 0.212 0.000 0.138 ✓ +2026-07-13 08:30:08,067 | INFO | Chirp, tweet 0.156 0.000 0.101 ✗ +2026-07-13 08:30:08,071 | INFO | Rodents, rats, mice 0.100 0.000 0.065 ✗ +2026-07-13 08:30:08,071 | INFO | → WINNER: Owl (combined=0.255) +2026-07-13 08:30:08,097 | INFO | +[293.00s] AMBIENT | scene='' +2026-07-13 08:30:08,097 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,097 | INFO | Animal 0.238 0.000 0.154 ✓ +2026-07-13 08:30:08,097 | INFO | Bird 0.074 0.000 0.048 ✗ +2026-07-13 08:30:08,097 | INFO | → WINNER: Animal (combined=0.154) +2026-07-13 08:30:08,127 | INFO | +[293.20s] AMBIENT | scene='' +2026-07-13 08:30:08,127 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,130 | INFO | Duck 0.576 0.000 0.374 ✓ +2026-07-13 08:30:08,130 | INFO | Animal 0.542 0.000 0.352 ✓ +2026-07-13 08:30:08,130 | INFO | Quack 0.325 0.000 0.211 ✓ +2026-07-13 08:30:08,130 | INFO | Bird 0.239 0.000 0.155 ✓ +2026-07-13 08:30:08,130 | INFO | Livestock, farm animals, working animals 0.130 0.000 0.084 ✗ +2026-07-13 08:30:08,130 | INFO | Goose 0.098 0.000 0.063 ✗ +2026-07-13 08:30:08,130 | INFO | → WINNER: Duck (combined=0.374) +2026-07-13 08:30:08,152 | INFO | +[293.40s] AMBIENT | scene='' +2026-07-13 08:30:08,152 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,152 | INFO | Duck 0.576 0.000 0.374 ✓ +2026-07-13 08:30:08,152 | INFO | Animal 0.377 0.000 0.245 ✓ +2026-07-13 08:30:08,152 | INFO | Bird 0.359 0.000 0.233 ✓ +2026-07-13 08:30:08,152 | INFO | Quack 0.282 0.000 0.183 ✓ +2026-07-13 08:30:08,152 | INFO | Goose 0.125 0.000 0.081 ✗ +2026-07-13 08:30:08,152 | INFO | Bird vocalization, bird call, bird song 0.087 0.000 0.057 ✗ +2026-07-13 08:30:08,152 | INFO | → WINNER: Duck (combined=0.374) +2026-07-13 08:30:08,184 | INFO | +[293.60s] AMBIENT | scene='' +2026-07-13 08:30:08,184 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,184 | INFO | Duck 0.360 0.000 0.234 ✓ +2026-07-13 08:30:08,184 | INFO | Bird 0.355 0.000 0.231 ✓ +2026-07-13 08:30:08,188 | INFO | Animal 0.284 0.000 0.185 ✓ +2026-07-13 08:30:08,188 | INFO | Goose 0.186 0.000 0.121 ✓ +2026-07-13 08:30:08,189 | INFO | Honk 0.139 0.000 0.090 ✗ +2026-07-13 08:30:08,189 | INFO | Domestic animals, pets 0.120 0.000 0.078 ✗ +2026-07-13 08:30:08,189 | INFO | → WINNER: Duck (combined=0.234) +2026-07-13 08:30:08,233 | INFO | +[351.60s] AMBIENT | scene='' +2026-07-13 08:30:08,233 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,233 | INFO | Music 0.275 0.000 0.179 ✓ +2026-07-13 08:30:08,233 | INFO | Train 0.068 0.000 0.044 ✗ +2026-07-13 08:30:08,242 | INFO | → WINNER: Music (combined=0.179) +2026-07-13 08:30:08,276 | INFO | +[351.80s] AMBIENT | scene='' +2026-07-13 08:30:08,276 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,276 | INFO | Music 0.258 0.000 0.168 ✓ +2026-07-13 08:30:08,276 | INFO | Train 0.062 0.000 0.040 ✗ +2026-07-13 08:30:08,276 | INFO | → WINNER: Music (combined=0.168) +2026-07-13 08:30:08,334 | INFO | +[352.00s] AMBIENT | scene='' +2026-07-13 08:30:08,334 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,334 | INFO | Music 0.281 0.000 0.182 ✓ +2026-07-13 08:30:08,334 | INFO | → WINNER: Music (combined=0.182) +2026-07-13 08:30:08,394 | INFO | +[352.20s] AMBIENT | scene='' +2026-07-13 08:30:08,394 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,394 | INFO | Music 0.507 0.000 0.330 ✓ +2026-07-13 08:30:08,394 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:08,394 | INFO | → WINNER: Music (combined=0.330) +2026-07-13 08:30:08,448 | INFO | +[352.40s] AMBIENT | scene='' +2026-07-13 08:30:08,448 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,448 | INFO | Music 0.402 0.000 0.261 ✓ +2026-07-13 08:30:08,448 | INFO | Musical instrument 0.058 0.000 0.038 ✗ +2026-07-13 08:30:08,448 | INFO | Vehicle 0.054 0.000 0.035 ✗ +2026-07-13 08:30:08,448 | INFO | → WINNER: Music (combined=0.261) +2026-07-13 08:30:08,483 | INFO | +[352.60s] AMBIENT | scene='' +2026-07-13 08:30:08,483 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,486 | INFO | Music 0.437 0.000 0.284 ✓ +2026-07-13 08:30:08,486 | INFO | Musical instrument 0.071 0.000 0.046 ✗ +2026-07-13 08:30:08,486 | INFO | → WINNER: Music (combined=0.284) +2026-07-13 08:30:08,515 | INFO | +[352.80s] AMBIENT | scene='' +2026-07-13 08:30:08,515 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,515 | INFO | Music 0.560 0.000 0.364 ✓ +2026-07-13 08:30:08,517 | INFO | Musical instrument 0.127 0.000 0.082 ✗ +2026-07-13 08:30:08,517 | INFO | → WINNER: Music (combined=0.364) +2026-07-13 08:30:08,541 | INFO | +[353.00s] AMBIENT | scene='' +2026-07-13 08:30:08,541 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,541 | INFO | Music 0.633 0.000 0.411 ✓ +2026-07-13 08:30:08,541 | INFO | Musical instrument 0.208 0.000 0.135 ✓ +2026-07-13 08:30:08,541 | INFO | Violin, fiddle 0.061 0.000 0.040 ✗ +2026-07-13 08:30:08,541 | INFO | Wind instrument, woodwind instrument 0.048 0.000 0.032 ✗ +2026-07-13 08:30:08,541 | INFO | → WINNER: Music (combined=0.411) +2026-07-13 08:30:08,572 | INFO | +[353.20s] AMBIENT | scene='' +2026-07-13 08:30:08,573 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,573 | INFO | Music 0.738 0.000 0.480 ✓ +2026-07-13 08:30:08,573 | INFO | Musical instrument 0.289 0.000 0.188 ✓ +2026-07-13 08:30:08,573 | INFO | Wind instrument, woodwind instrument 0.151 0.000 0.098 ✗ +2026-07-13 08:30:08,573 | INFO | Traditional music 0.131 0.000 0.085 ✗ +2026-07-13 08:30:08,573 | INFO | Violin, fiddle 0.122 0.000 0.079 ✗ +2026-07-13 08:30:08,573 | INFO | Flute 0.075 0.000 0.049 ✗ +2026-07-13 08:30:08,573 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:08,599 | INFO | +[353.40s] AMBIENT | scene='' +2026-07-13 08:30:08,599 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,599 | INFO | Music 0.681 0.000 0.443 ✓ +2026-07-13 08:30:08,599 | INFO | Musical instrument 0.235 0.000 0.153 ✓ +2026-07-13 08:30:08,599 | INFO | Wind instrument, woodwind instrument 0.189 0.000 0.123 ✓ +2026-07-13 08:30:08,599 | INFO | Flute 0.079 0.000 0.051 ✗ +2026-07-13 08:30:08,599 | INFO | Traditional music 0.073 0.000 0.048 ✗ +2026-07-13 08:30:08,599 | INFO | Music of Bollywood 0.049 0.000 0.032 ✗ +2026-07-13 08:30:08,599 | INFO | → WINNER: Music (combined=0.443) +2026-07-13 08:30:08,628 | INFO | +[353.60s] AMBIENT | scene='' +2026-07-13 08:30:08,628 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,628 | INFO | Music 0.813 0.000 0.529 ✓ +2026-07-13 08:30:08,628 | INFO | Musical instrument 0.267 0.000 0.173 ✓ +2026-07-13 08:30:08,628 | INFO | Music of Bollywood 0.135 0.000 0.088 ✗ +2026-07-13 08:30:08,628 | INFO | Folk music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:08,628 | INFO | Traditional music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:08,628 | INFO | Wind instrument, woodwind instrument 0.086 0.000 0.056 ✗ +2026-07-13 08:30:08,628 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:08,656 | INFO | +[353.80s] AMBIENT | scene='' +2026-07-13 08:30:08,656 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,656 | INFO | Music 0.875 0.000 0.569 ✓ +2026-07-13 08:30:08,658 | INFO | Musical instrument 0.546 0.000 0.355 ✓ +2026-07-13 08:30:08,658 | INFO | Plucked string instrument 0.241 0.000 0.157 ✓ +2026-07-13 08:30:08,658 | INFO | Traditional music 0.124 0.000 0.081 ✗ +2026-07-13 08:30:08,658 | INFO | Sitar 0.124 0.000 0.081 ✗ +2026-07-13 08:30:08,660 | INFO | Carnatic music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:08,660 | INFO | → WINNER: Music (combined=0.569) +2026-07-13 08:30:08,687 | INFO | +[354.00s] AMBIENT | scene='' +2026-07-13 08:30:08,687 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,688 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:08,688 | INFO | Musical instrument 0.423 0.000 0.275 ✓ +2026-07-13 08:30:08,688 | INFO | Animal 0.219 0.000 0.142 ✓ +2026-07-13 08:30:08,688 | INFO | Plucked string instrument 0.205 0.000 0.133 ✓ +2026-07-13 08:30:08,688 | INFO | Dog 0.168 0.000 0.109 ✗ +2026-07-13 08:30:08,688 | INFO | Guitar 0.161 0.000 0.104 ✗ +2026-07-13 08:30:08,688 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:08,712 | INFO | +[354.20s] AMBIENT | scene='' +2026-07-13 08:30:08,715 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,715 | INFO | Howl 0.469 0.000 0.305 ✓ +2026-07-13 08:30:08,715 | INFO | Music 0.455 0.000 0.295 ✓ +2026-07-13 08:30:08,715 | INFO | Animal 0.417 0.000 0.271 ✓ +2026-07-13 08:30:08,715 | INFO | Domestic animals, pets 0.358 0.000 0.233 ✓ +2026-07-13 08:30:08,715 | INFO | Dog 0.331 0.000 0.215 ✓ +2026-07-13 08:30:08,715 | INFO | Musical instrument 0.260 0.000 0.169 ✓ +2026-07-13 08:30:08,718 | INFO | → WINNER: Howl (combined=0.305) +2026-07-13 08:30:08,744 | INFO | +[354.40s] AMBIENT | scene='' +2026-07-13 08:30:08,744 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,744 | INFO | Howl 0.708 0.000 0.460 ✓ +2026-07-13 08:30:08,744 | INFO | Animal 0.609 0.000 0.396 ✓ +2026-07-13 08:30:08,744 | INFO | Dog 0.532 0.000 0.346 ✓ +2026-07-13 08:30:08,744 | INFO | Domestic animals, pets 0.532 0.000 0.346 ✓ +2026-07-13 08:30:08,744 | INFO | Canidae, dogs, wolves 0.337 0.000 0.219 ✓ +2026-07-13 08:30:08,744 | INFO | Yip 0.080 0.000 0.052 ✗ +2026-07-13 08:30:08,744 | INFO | → WINNER: Howl (combined=0.460) +2026-07-13 08:30:08,774 | INFO | +[354.60s] AMBIENT | scene='' +2026-07-13 08:30:08,776 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,776 | INFO | Howl 0.766 0.000 0.498 ✓ +2026-07-13 08:30:08,776 | INFO | Animal 0.690 0.000 0.448 ✓ +2026-07-13 08:30:08,776 | INFO | Dog 0.614 0.000 0.399 ✓ +2026-07-13 08:30:08,776 | INFO | Domestic animals, pets 0.561 0.000 0.365 ✓ +2026-07-13 08:30:08,776 | INFO | Canidae, dogs, wolves 0.434 0.000 0.282 ✓ +2026-07-13 08:30:08,776 | INFO | Yip 0.097 0.000 0.063 ✗ +2026-07-13 08:30:08,776 | INFO | → WINNER: Howl (combined=0.498) +2026-07-13 08:30:08,800 | INFO | +[354.80s] AMBIENT | scene='' +2026-07-13 08:30:08,800 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,800 | INFO | Howl 0.720 0.000 0.468 ✓ +2026-07-13 08:30:08,807 | INFO | Animal 0.572 0.000 0.372 ✓ +2026-07-13 08:30:08,807 | INFO | Dog 0.537 0.000 0.349 ✓ +2026-07-13 08:30:08,807 | INFO | Domestic animals, pets 0.496 0.000 0.322 ✓ +2026-07-13 08:30:08,807 | INFO | Canidae, dogs, wolves 0.334 0.000 0.217 ✓ +2026-07-13 08:30:08,807 | INFO | Whimper (dog) 0.105 0.000 0.069 ✗ +2026-07-13 08:30:08,809 | INFO | → WINNER: Howl (combined=0.468) +2026-07-13 08:30:08,834 | INFO | +[355.00s] AMBIENT | scene='' +2026-07-13 08:30:08,834 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,834 | INFO | Howl 0.767 0.000 0.498 ✓ +2026-07-13 08:30:08,834 | INFO | Animal 0.690 0.000 0.448 ✓ +2026-07-13 08:30:08,834 | INFO | Dog 0.585 0.000 0.380 ✓ +2026-07-13 08:30:08,834 | INFO | Domestic animals, pets 0.537 0.000 0.349 ✓ +2026-07-13 08:30:08,834 | INFO | Canidae, dogs, wolves 0.467 0.000 0.304 ✓ +2026-07-13 08:30:08,834 | INFO | Whimper (dog) 0.094 0.000 0.061 ✗ +2026-07-13 08:30:08,834 | INFO | → WINNER: Howl (combined=0.498) +2026-07-13 08:30:08,860 | INFO | +[355.20s] AMBIENT | scene='' +2026-07-13 08:30:08,860 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,860 | INFO | Howl 0.828 0.000 0.538 ✓ +2026-07-13 08:30:08,860 | INFO | Animal 0.751 0.000 0.488 ✓ +2026-07-13 08:30:08,860 | INFO | Dog 0.651 0.000 0.423 ✓ +2026-07-13 08:30:08,860 | INFO | Domestic animals, pets 0.613 0.000 0.398 ✓ +2026-07-13 08:30:08,860 | INFO | Canidae, dogs, wolves 0.530 0.000 0.345 ✓ +2026-07-13 08:30:08,860 | INFO | Whimper (dog) 0.101 0.000 0.066 ✗ +2026-07-13 08:30:08,860 | INFO | → WINNER: Howl (combined=0.538) +2026-07-13 08:30:08,891 | INFO | +[355.40s] AMBIENT | scene='' +2026-07-13 08:30:08,893 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,893 | INFO | Howl 0.656 0.000 0.426 ✓ +2026-07-13 08:30:08,893 | INFO | Animal 0.539 0.000 0.350 ✓ +2026-07-13 08:30:08,893 | INFO | Dog 0.428 0.000 0.278 ✓ +2026-07-13 08:30:08,893 | INFO | Domestic animals, pets 0.423 0.000 0.275 ✓ +2026-07-13 08:30:08,893 | INFO | Canidae, dogs, wolves 0.261 0.000 0.169 ✓ +2026-07-13 08:30:08,895 | INFO | Music 0.124 0.000 0.081 ✗ +2026-07-13 08:30:08,895 | INFO | → WINNER: Howl (combined=0.426) +2026-07-13 08:30:08,918 | INFO | +[355.60s] AMBIENT | scene='' +2026-07-13 08:30:08,923 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,923 | INFO | Animal 0.422 0.000 0.274 ✓ +2026-07-13 08:30:08,923 | INFO | Domestic animals, pets 0.365 0.000 0.237 ✓ +2026-07-13 08:30:08,923 | INFO | Dog 0.128 0.000 0.083 ✗ +2026-07-13 08:30:08,923 | INFO | Cat 0.108 0.000 0.070 ✗ +2026-07-13 08:30:08,923 | INFO | Canidae, dogs, wolves 0.103 0.000 0.067 ✗ +2026-07-13 08:30:08,923 | INFO | → WINNER: Animal (combined=0.274) +2026-07-13 08:30:08,952 | INFO | +[355.80s] AMBIENT | scene='' +2026-07-13 08:30:08,952 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,952 | INFO | Animal 0.661 0.000 0.430 ✓ +2026-07-13 08:30:08,952 | INFO | Domestic animals, pets 0.514 0.000 0.334 ✓ +2026-07-13 08:30:08,952 | INFO | Howl 0.456 0.000 0.296 ✓ +2026-07-13 08:30:08,952 | INFO | Dog 0.396 0.000 0.258 ✓ +2026-07-13 08:30:08,952 | INFO | Canidae, dogs, wolves 0.273 0.000 0.178 ✓ +2026-07-13 08:30:08,952 | INFO | → WINNER: Animal (combined=0.430) +2026-07-13 08:30:08,980 | INFO | +[356.00s] AMBIENT | scene='' +2026-07-13 08:30:08,980 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:08,980 | INFO | Animal 0.619 0.000 0.403 ✓ +2026-07-13 08:30:08,980 | INFO | Howl 0.609 0.000 0.396 ✓ +2026-07-13 08:30:08,980 | INFO | Dog 0.524 0.000 0.341 ✓ +2026-07-13 08:30:08,980 | INFO | Domestic animals, pets 0.483 0.000 0.314 ✓ +2026-07-13 08:30:08,980 | INFO | Canidae, dogs, wolves 0.383 0.000 0.249 ✓ +2026-07-13 08:30:08,980 | INFO | Yip 0.065 0.000 0.043 ✗ +2026-07-13 08:30:08,980 | INFO | → WINNER: Animal (combined=0.403) +2026-07-13 08:30:09,007 | INFO | +[356.20s] AMBIENT | scene='' +2026-07-13 08:30:09,007 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,007 | INFO | Animal 0.468 0.000 0.304 ✓ +2026-07-13 08:30:09,007 | INFO | Howl 0.412 0.000 0.268 ✓ +2026-07-13 08:30:09,007 | INFO | Domestic animals, pets 0.390 0.000 0.253 ✓ +2026-07-13 08:30:09,007 | INFO | Dog 0.358 0.000 0.233 ✓ +2026-07-13 08:30:09,007 | INFO | Canidae, dogs, wolves 0.187 0.000 0.121 ✓ +2026-07-13 08:30:09,007 | INFO | Music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:09,007 | INFO | → WINNER: Animal (combined=0.304) +2026-07-13 08:30:09,038 | INFO | +[356.40s] AMBIENT | scene='' +2026-07-13 08:30:09,038 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,038 | INFO | Animal 0.432 0.000 0.281 ✓ +2026-07-13 08:30:09,038 | INFO | Howl 0.377 0.000 0.245 ✓ +2026-07-13 08:30:09,038 | INFO | Domestic animals, pets 0.314 0.000 0.204 ✓ +2026-07-13 08:30:09,040 | INFO | Dog 0.288 0.000 0.187 ✓ +2026-07-13 08:30:09,040 | INFO | Wind instrument, woodwind instrument 0.155 0.000 0.101 ✗ +2026-07-13 08:30:09,040 | INFO | Canidae, dogs, wolves 0.117 0.000 0.076 ✗ +2026-07-13 08:30:09,040 | INFO | → WINNER: Animal (combined=0.281) +2026-07-13 08:30:09,066 | INFO | +[356.60s] AMBIENT | scene='' +2026-07-13 08:30:09,066 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,066 | INFO | Howl 0.743 0.000 0.483 ✓ +2026-07-13 08:30:09,066 | INFO | Animal 0.676 0.000 0.439 ✓ +2026-07-13 08:30:09,066 | INFO | Domestic animals, pets 0.582 0.000 0.378 ✓ +2026-07-13 08:30:09,066 | INFO | Dog 0.582 0.000 0.378 ✓ +2026-07-13 08:30:09,066 | INFO | Canidae, dogs, wolves 0.318 0.000 0.206 ✓ +2026-07-13 08:30:09,066 | INFO | Yip 0.156 0.000 0.101 ✗ +2026-07-13 08:30:09,066 | INFO | → WINNER: Howl (combined=0.483) +2026-07-13 08:30:09,096 | INFO | +[356.80s] AMBIENT | scene='' +2026-07-13 08:30:09,096 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,097 | INFO | Howl 0.842 0.000 0.547 ✓ +2026-07-13 08:30:09,097 | INFO | Animal 0.732 0.000 0.476 ✓ +2026-07-13 08:30:09,098 | INFO | Dog 0.633 0.000 0.411 ✓ +2026-07-13 08:30:09,098 | INFO | Domestic animals, pets 0.564 0.000 0.366 ✓ +2026-07-13 08:30:09,098 | INFO | Canidae, dogs, wolves 0.403 0.000 0.262 ✓ +2026-07-13 08:30:09,098 | INFO | Music 0.122 0.000 0.079 ✗ +2026-07-13 08:30:09,100 | INFO | → WINNER: Howl (combined=0.547) +2026-07-13 08:30:09,119 | INFO | +[357.00s] AMBIENT | scene='' +2026-07-13 08:30:09,119 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,119 | INFO | Howl 0.869 0.000 0.565 ✓ +2026-07-13 08:30:09,119 | INFO | Animal 0.704 0.000 0.458 ✓ +2026-07-13 08:30:09,127 | INFO | Dog 0.604 0.000 0.393 ✓ +2026-07-13 08:30:09,128 | INFO | Domestic animals, pets 0.558 0.000 0.362 ✓ +2026-07-13 08:30:09,128 | INFO | Canidae, dogs, wolves 0.516 0.000 0.336 ✓ +2026-07-13 08:30:09,128 | INFO | Yip 0.103 0.000 0.067 ✗ +2026-07-13 08:30:09,128 | INFO | → WINNER: Howl (combined=0.565) +2026-07-13 08:30:09,152 | INFO | +[357.20s] AMBIENT | scene='' +2026-07-13 08:30:09,152 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,152 | INFO | Howl 0.890 0.000 0.579 ✓ +2026-07-13 08:30:09,152 | INFO | Animal 0.824 0.000 0.535 ✓ +2026-07-13 08:30:09,152 | INFO | Dog 0.700 0.000 0.455 ✓ +2026-07-13 08:30:09,152 | INFO | Domestic animals, pets 0.610 0.000 0.397 ✓ +2026-07-13 08:30:09,152 | INFO | Canidae, dogs, wolves 0.605 0.000 0.393 ✓ +2026-07-13 08:30:09,152 | INFO | Yip 0.058 0.000 0.037 ✗ +2026-07-13 08:30:09,152 | INFO | → WINNER: Howl (combined=0.579) +2026-07-13 08:30:09,178 | INFO | +[357.40s] AMBIENT | scene='' +2026-07-13 08:30:09,178 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,178 | INFO | Howl 0.842 0.000 0.547 ✓ +2026-07-13 08:30:09,178 | INFO | Animal 0.731 0.000 0.475 ✓ +2026-07-13 08:30:09,178 | INFO | Canidae, dogs, wolves 0.644 0.000 0.418 ✓ +2026-07-13 08:30:09,178 | INFO | Dog 0.639 0.000 0.416 ✓ +2026-07-13 08:30:09,178 | INFO | Domestic animals, pets 0.521 0.000 0.339 ✓ +2026-07-13 08:30:09,186 | INFO | → WINNER: Howl (combined=0.547) +2026-07-13 08:30:09,211 | INFO | +[357.60s] AMBIENT | scene='' +2026-07-13 08:30:09,211 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,211 | INFO | Howl 0.655 0.000 0.425 ✓ +2026-07-13 08:30:09,211 | INFO | Animal 0.484 0.000 0.315 ✓ +2026-07-13 08:30:09,211 | INFO | Canidae, dogs, wolves 0.399 0.000 0.260 ✓ +2026-07-13 08:30:09,211 | INFO | Dog 0.368 0.000 0.239 ✓ +2026-07-13 08:30:09,211 | INFO | Domestic animals, pets 0.332 0.000 0.216 ✓ +2026-07-13 08:30:09,211 | INFO | Music 0.072 0.000 0.046 ✗ +2026-07-13 08:30:09,211 | INFO | → WINNER: Howl (combined=0.425) +2026-07-13 08:30:09,241 | INFO | +[357.80s] AMBIENT | scene='' +2026-07-13 08:30:09,241 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,241 | INFO | Howl 0.658 0.000 0.428 ✓ +2026-07-13 08:30:09,241 | INFO | Animal 0.594 0.000 0.386 ✓ +2026-07-13 08:30:09,243 | INFO | Canidae, dogs, wolves 0.397 0.000 0.258 ✓ +2026-07-13 08:30:09,243 | INFO | Dog 0.369 0.000 0.240 ✓ +2026-07-13 08:30:09,243 | INFO | Domestic animals, pets 0.336 0.000 0.218 ✓ +2026-07-13 08:30:09,243 | INFO | Whale vocalization 0.053 0.000 0.035 ✗ +2026-07-13 08:30:09,243 | INFO | → WINNER: Howl (combined=0.428) +2026-07-13 08:30:09,270 | INFO | +[358.00s] AMBIENT | scene='' +2026-07-13 08:30:09,270 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,270 | INFO | Music 0.191 0.000 0.124 ✓ +2026-07-13 08:30:09,270 | INFO | Animal 0.159 0.000 0.103 ✗ +2026-07-13 08:30:09,270 | INFO | → WINNER: Music (combined=0.124) +2026-07-13 08:30:09,300 | INFO | +[358.20s] AMBIENT | scene='' +2026-07-13 08:30:09,300 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,300 | INFO | Music 0.469 0.000 0.305 ✓ +2026-07-13 08:30:09,300 | INFO | → WINNER: Music (combined=0.305) +2026-07-13 08:30:09,334 | INFO | +[378.80s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,334 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,334 | INFO | Animal 0.120 0.000 0.078 ✗ +2026-07-13 08:30:09,334 | INFO | Shofar 0.067 0.000 0.044 ✗ +2026-07-13 08:30:09,334 | INFO | Wind instrument, woodwind instrument 0.036 0.000 0.024 ✗ +2026-07-13 08:30:09,334 | INFO | → no winner +2026-07-13 08:30:09,361 | INFO | +[379.00s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,363 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,363 | INFO | Animal 0.146 0.000 0.095 ✗ +2026-07-13 08:30:09,363 | INFO | Music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:09,363 | INFO | Shofar 0.055 0.000 0.036 ✗ +2026-07-13 08:30:09,363 | INFO | Wind instrument, woodwind instrument 0.053 0.000 0.034 ✗ +2026-07-13 08:30:09,363 | INFO | → no winner +2026-07-13 08:30:09,392 | INFO | +[379.20s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,392 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,392 | INFO | Music 0.206 0.000 0.134 ✓ +2026-07-13 08:30:09,392 | INFO | Animal 0.117 0.000 0.076 ✗ +2026-07-13 08:30:09,392 | INFO | → WINNER: Music (combined=0.134) +2026-07-13 08:30:09,419 | INFO | +[379.40s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,419 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,419 | INFO | Music 0.473 0.000 0.307 ✓ +2026-07-13 08:30:09,419 | INFO | Humming 0.137 0.314 0.199 ✓ +2026-07-13 08:30:09,419 | INFO | → WINNER: Music (combined=0.307) +2026-07-13 08:30:09,449 | INFO | +[379.60s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,449 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,449 | INFO | Music 0.450 0.000 0.292 ✓ +2026-07-13 08:30:09,449 | INFO | Humming 0.101 0.314 0.175 ✓ +2026-07-13 08:30:09,449 | INFO | → WINNER: Music (combined=0.292) +2026-07-13 08:30:09,479 | INFO | +[379.80s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,479 | INFO | Animal 0.363 0.000 0.236 ✓ +2026-07-13 08:30:09,479 | INFO | Cat 0.150 0.000 0.097 ✗ +2026-07-13 08:30:09,479 | INFO | Domestic animals, pets 0.142 0.000 0.092 ✗ +2026-07-13 08:30:09,482 | INFO | Music 0.128 0.000 0.083 ✗ +2026-07-13 08:30:09,482 | INFO | → WINNER: Animal (combined=0.236) +2026-07-13 08:30:09,507 | INFO | +[380.00s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-07-13 08:30:09,509 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,509 | INFO | Insect 0.267 0.360 0.299 ✓ +2026-07-13 08:30:09,509 | INFO | Fly, housefly 0.135 0.282 0.186 ✓ +2026-07-13 08:30:09,509 | INFO | Animal 0.246 0.000 0.160 ✓ +2026-07-13 08:30:09,509 | INFO | Civil defense siren 0.058 0.000 0.037 ✗ +2026-07-13 08:30:09,509 | INFO | Siren 0.057 0.000 0.037 ✗ +2026-07-13 08:30:09,509 | INFO | → WINNER: Insect (combined=0.299) +2026-07-13 08:30:09,539 | INFO | +[386.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,539 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,539 | INFO | Music 0.405 0.000 0.263 ✓ +2026-07-13 08:30:09,539 | INFO | Bird 0.153 0.305 0.206 ✓ +2026-07-13 08:30:09,539 | INFO | Bird vocalization, bird call, bird song 0.084 0.317 0.165 ✓ +2026-07-13 08:30:09,539 | INFO | Chirp, tweet 0.079 0.000 0.052 ✗ +2026-07-13 08:30:09,539 | INFO | → WINNER: Music (combined=0.263) +2026-07-13 08:30:09,567 | INFO | +[386.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,569 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,569 | INFO | Insect 0.215 0.364 0.267 ✓ +2026-07-13 08:30:09,569 | INFO | Wind instrument, woodwind instrument 0.104 0.311 0.176 ✓ +2026-07-13 08:30:09,569 | INFO | Music 0.225 0.000 0.146 ✓ +2026-07-13 08:30:09,571 | INFO | Whale vocalization 0.208 0.000 0.135 ✓ +2026-07-13 08:30:09,571 | INFO | Theremin 0.150 0.000 0.098 ✗ +2026-07-13 08:30:09,571 | INFO | Shofar 0.109 0.000 0.071 ✗ +2026-07-13 08:30:09,571 | INFO | → WINNER: Insect (combined=0.267) +2026-07-13 08:30:09,598 | INFO | +[386.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,598 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,598 | INFO | Wind instrument, woodwind instrument 0.372 0.311 0.351 ✓ +2026-07-13 08:30:09,598 | INFO | Music 0.531 0.000 0.345 ✓ +2026-07-13 08:30:09,598 | INFO | Flute 0.494 0.000 0.321 ✓ +2026-07-13 08:30:09,598 | INFO | Musical instrument 0.191 0.000 0.124 ✓ +2026-07-13 08:30:09,598 | INFO | Shofar 0.111 0.000 0.072 ✗ +2026-07-13 08:30:09,598 | INFO | → WINNER: Wind instrument, woodwind instrument (combined=0.351) +2026-07-13 08:30:09,622 | INFO | +[386.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,622 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,622 | INFO | Flute 0.471 0.000 0.306 ✓ +2026-07-13 08:30:09,622 | INFO | Music 0.448 0.000 0.291 ✓ +2026-07-13 08:30:09,622 | INFO | Wind instrument, woodwind instrument 0.202 0.311 0.240 ✓ +2026-07-13 08:30:09,622 | INFO | Musical instrument 0.101 0.000 0.066 ✗ +2026-07-13 08:30:09,622 | INFO | → WINNER: Flute (combined=0.306) +2026-07-13 08:30:09,656 | INFO | +[387.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,680 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,680 | INFO | Music 0.238 0.000 0.155 ✓ +2026-07-13 08:30:09,680 | INFO | Wind instrument, woodwind instrument 0.033 0.311 0.130 ✓ +2026-07-13 08:30:09,680 | INFO | Animal 0.133 0.000 0.086 ✗ +2026-07-13 08:30:09,680 | INFO | → WINNER: Music (combined=0.155) +2026-07-13 08:30:09,711 | INFO | +[387.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,711 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,714 | INFO | Animal 0.265 0.000 0.172 ✓ +2026-07-13 08:30:09,714 | INFO | Music 0.239 0.000 0.155 ✓ +2026-07-13 08:30:09,714 | INFO | Bird 0.059 0.305 0.146 ✓ +2026-07-13 08:30:09,714 | INFO | Domestic animals, pets 0.090 0.000 0.059 ✗ +2026-07-13 08:30:09,714 | INFO | → WINNER: Animal (combined=0.172) +2026-07-13 08:30:09,740 | INFO | +[387.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,740 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,740 | INFO | Animal 0.226 0.000 0.147 ✓ +2026-07-13 08:30:09,740 | INFO | Bird 0.048 0.305 0.138 ✓ +2026-07-13 08:30:09,740 | INFO | Music 0.095 0.000 0.061 ✗ +2026-07-13 08:30:09,744 | INFO | Whale vocalization 0.071 0.000 0.046 ✗ +2026-07-13 08:30:09,744 | INFO | → WINNER: Animal (combined=0.147) +2026-07-13 08:30:09,771 | INFO | +[391.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,771 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,771 | INFO | Animal 0.331 0.000 0.215 ✓ +2026-07-13 08:30:09,771 | INFO | Bird 0.166 0.305 0.215 ✓ +2026-07-13 08:30:09,771 | INFO | Bird vocalization, bird call, bird song 0.050 0.317 0.143 ✓ +2026-07-13 08:30:09,771 | INFO | Domestic animals, pets 0.117 0.000 0.076 ✗ +2026-07-13 08:30:09,771 | INFO | Chicken, rooster 0.115 0.000 0.075 ✗ +2026-07-13 08:30:09,771 | INFO | Cat 0.092 0.000 0.060 ✗ +2026-07-13 08:30:09,771 | INFO | → WINNER: Animal (combined=0.215) +2026-07-13 08:30:09,798 | INFO | +[391.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,800 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,800 | INFO | Bird 0.154 0.305 0.207 ✓ +2026-07-13 08:30:09,800 | INFO | Chicken, rooster 0.222 0.000 0.144 ✓ +2026-07-13 08:30:09,800 | INFO | Bird vocalization, bird call, bird song 0.039 0.317 0.136 ✓ +2026-07-13 08:30:09,800 | INFO | Animal 0.134 0.000 0.087 ✗ +2026-07-13 08:30:09,800 | INFO | Cluck 0.130 0.000 0.085 ✗ +2026-07-13 08:30:09,800 | INFO | Music 0.087 0.000 0.056 ✗ +2026-07-13 08:30:09,800 | INFO | → WINNER: Bird (combined=0.207) +2026-07-13 08:30:09,829 | INFO | +[391.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,829 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,829 | INFO | Bird 0.199 0.305 0.236 ✓ +2026-07-13 08:30:09,829 | INFO | Music 0.298 0.000 0.193 ✓ +2026-07-13 08:30:09,829 | INFO | Wind instrument, woodwind instrument 0.097 0.311 0.172 ✓ +2026-07-13 08:30:09,829 | INFO | Bird vocalization, bird call, bird song 0.051 0.317 0.144 ✓ +2026-07-13 08:30:09,829 | INFO | Chicken, rooster 0.174 0.000 0.113 ✗ +2026-07-13 08:30:09,829 | INFO | Animal 0.128 0.000 0.083 ✗ +2026-07-13 08:30:09,829 | INFO | → WINNER: Bird (combined=0.236) +2026-07-13 08:30:09,856 | INFO | +[391.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,856 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,856 | INFO | Music 0.621 0.000 0.403 ✓ +2026-07-13 08:30:09,856 | INFO | Wind instrument, woodwind instrument 0.078 0.311 0.160 ✓ +2026-07-13 08:30:09,856 | INFO | Bird 0.040 0.305 0.133 ✓ +2026-07-13 08:30:09,856 | INFO | Flute 0.168 0.000 0.110 ✗ +2026-07-13 08:30:09,856 | INFO | Musical instrument 0.149 0.000 0.097 ✗ +2026-07-13 08:30:09,856 | INFO | Violin, fiddle 0.142 0.000 0.092 ✗ +2026-07-13 08:30:09,856 | INFO | → WINNER: Music (combined=0.403) +2026-07-13 08:30:09,914 | INFO | +[392.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,914 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,914 | INFO | Music 0.689 0.000 0.448 ✓ +2026-07-13 08:30:09,914 | INFO | Wind instrument, woodwind instrument 0.122 0.311 0.188 ✓ +2026-07-13 08:30:09,914 | INFO | Flute 0.285 0.000 0.185 ✓ +2026-07-13 08:30:09,914 | INFO | Musical instrument 0.233 0.000 0.152 ✓ +2026-07-13 08:30:09,914 | INFO | Bird 0.033 0.305 0.128 ✓ +2026-07-13 08:30:09,919 | INFO | Violin, fiddle 0.143 0.000 0.093 ✗ +2026-07-13 08:30:09,919 | INFO | → WINNER: Music (combined=0.448) +2026-07-13 08:30:09,969 | INFO | +[392.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:09,969 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:09,977 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:09,977 | INFO | Flute 0.382 0.000 0.248 ✓ +2026-07-13 08:30:09,977 | INFO | Musical instrument 0.301 0.000 0.196 ✓ +2026-07-13 08:30:09,977 | INFO | Wind instrument, woodwind instrument 0.099 0.311 0.173 ✓ +2026-07-13 08:30:09,977 | INFO | Violin, fiddle 0.142 0.000 0.092 ✗ +2026-07-13 08:30:09,977 | INFO | Classical music 0.081 0.000 0.052 ✗ +2026-07-13 08:30:09,977 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:10,035 | INFO | +[392.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:10,035 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,035 | INFO | Music 0.753 0.000 0.490 ✓ +2026-07-13 08:30:10,035 | INFO | Wind instrument, woodwind instrument 0.040 0.311 0.135 ✓ +2026-07-13 08:30:10,035 | INFO | Musical instrument 0.186 0.000 0.121 ✓ +2026-07-13 08:30:10,035 | INFO | Flute 0.116 0.000 0.075 ✗ +2026-07-13 08:30:10,035 | INFO | → WINNER: Music (combined=0.490) +2026-07-13 08:30:10,073 | INFO | +[392.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:10,075 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,075 | INFO | Music 0.383 0.000 0.249 ✓ +2026-07-13 08:30:10,075 | INFO | → WINNER: Music (combined=0.249) +2026-07-13 08:30:10,102 | INFO | +[392.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:10,102 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,102 | INFO | Music 0.413 0.000 0.268 ✓ +2026-07-13 08:30:10,102 | INFO | → WINNER: Music (combined=0.268) +2026-07-13 08:30:10,133 | INFO | +[393.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-07-13 08:30:10,134 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,134 | INFO | Music 0.421 0.000 0.274 ✓ +2026-07-13 08:30:10,134 | INFO | Musical instrument 0.114 0.000 0.074 ✗ +2026-07-13 08:30:10,134 | INFO | → WINNER: Music (combined=0.274) +2026-07-13 08:30:10,160 | INFO | +[393.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,160 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,160 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:10,160 | INFO | Musical instrument 0.483 0.000 0.314 ✓ +2026-07-13 08:30:10,160 | INFO | Plucked string instrument 0.314 0.000 0.204 ✓ +2026-07-13 08:30:10,160 | INFO | Guitar 0.226 0.000 0.147 ✓ +2026-07-13 08:30:10,160 | INFO | Sitar 0.121 0.000 0.079 ✗ +2026-07-13 08:30:10,160 | INFO | Animal 0.115 0.000 0.075 ✗ +2026-07-13 08:30:10,160 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:10,189 | INFO | +[393.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,189 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,189 | INFO | Music 0.808 0.000 0.525 ✓ +2026-07-13 08:30:10,189 | INFO | Musical instrument 0.298 0.000 0.194 ✓ +2026-07-13 08:30:10,189 | INFO | Plucked string instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:10,189 | INFO | Guitar 0.079 0.000 0.051 ✗ +2026-07-13 08:30:10,189 | INFO | Sitar 0.054 0.000 0.035 ✗ +2026-07-13 08:30:10,189 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:10,219 | INFO | +[393.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,219 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,219 | INFO | Music 0.762 0.000 0.495 ✓ +2026-07-13 08:30:10,219 | INFO | Musical instrument 0.293 0.000 0.191 ✓ +2026-07-13 08:30:10,219 | INFO | Carnatic music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:10,219 | INFO | Sitar 0.100 0.000 0.065 ✗ +2026-07-13 08:30:10,219 | INFO | Plucked string instrument 0.062 0.000 0.040 ✗ +2026-07-13 08:30:10,219 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:10,245 | INFO | +[393.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,245 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,245 | INFO | Music 0.791 0.000 0.514 ✓ +2026-07-13 08:30:10,245 | INFO | Sitar 0.718 0.000 0.467 ✓ +2026-07-13 08:30:10,245 | INFO | Carnatic music 0.463 0.000 0.301 ✓ +2026-07-13 08:30:10,245 | INFO | Musical instrument 0.358 0.000 0.233 ✓ +2026-07-13 08:30:10,245 | INFO | Plucked string instrument 0.209 0.000 0.136 ✓ +2026-07-13 08:30:10,245 | INFO | Classical music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:10,245 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:10,270 | INFO | +[394.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,270 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,270 | INFO | Music 0.779 0.000 0.507 ✓ +2026-07-13 08:30:10,270 | INFO | Sitar 0.570 0.000 0.370 ✓ +2026-07-13 08:30:10,270 | INFO | Carnatic music 0.467 0.000 0.304 ✓ +2026-07-13 08:30:10,270 | INFO | Musical instrument 0.430 0.000 0.280 ✓ +2026-07-13 08:30:10,270 | INFO | Classical music 0.200 0.000 0.130 ✓ +2026-07-13 08:30:10,277 | INFO | Plucked string instrument 0.162 0.000 0.105 ✗ +2026-07-13 08:30:10,277 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:10,304 | INFO | +[399.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,304 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,304 | INFO | Music 0.782 0.000 0.508 ✓ +2026-07-13 08:30:10,304 | INFO | Sitar 0.697 0.000 0.453 ✓ +2026-07-13 08:30:10,304 | INFO | Musical instrument 0.438 0.000 0.284 ✓ +2026-07-13 08:30:10,304 | INFO | Carnatic music 0.284 0.000 0.185 ✓ +2026-07-13 08:30:10,304 | INFO | Plucked string instrument 0.260 0.000 0.169 ✓ +2026-07-13 08:30:10,304 | INFO | Classical music 0.190 0.000 0.123 ✓ +2026-07-13 08:30:10,304 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:10,335 | INFO | +[399.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,335 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,337 | INFO | Music 0.814 0.000 0.529 ✓ +2026-07-13 08:30:10,337 | INFO | Sitar 0.732 0.000 0.476 ✓ +2026-07-13 08:30:10,337 | INFO | Musical instrument 0.536 0.000 0.349 ✓ +2026-07-13 08:30:10,337 | INFO | Plucked string instrument 0.363 0.000 0.236 ✓ +2026-07-13 08:30:10,337 | INFO | Carnatic music 0.323 0.000 0.210 ✓ +2026-07-13 08:30:10,337 | INFO | Classical music 0.203 0.000 0.132 ✓ +2026-07-13 08:30:10,337 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:10,360 | INFO | +[399.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,360 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,360 | INFO | Music 0.835 0.000 0.543 ✓ +2026-07-13 08:30:10,360 | INFO | Sitar 0.718 0.000 0.467 ✓ +2026-07-13 08:30:10,360 | INFO | Musical instrument 0.561 0.000 0.365 ✓ +2026-07-13 08:30:10,360 | INFO | Plucked string instrument 0.396 0.000 0.258 ✓ +2026-07-13 08:30:10,360 | INFO | Carnatic music 0.233 0.000 0.152 ✓ +2026-07-13 08:30:10,360 | INFO | Classical music 0.169 0.000 0.110 ✗ +2026-07-13 08:30:10,360 | INFO | → WINNER: Music (combined=0.543) +2026-07-13 08:30:10,394 | INFO | +[400.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,394 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,394 | INFO | Music 0.795 0.000 0.517 ✓ +2026-07-13 08:30:10,394 | INFO | Sitar 0.603 0.000 0.392 ✓ +2026-07-13 08:30:10,394 | INFO | Musical instrument 0.421 0.000 0.274 ✓ +2026-07-13 08:30:10,397 | INFO | Plucked string instrument 0.328 0.000 0.213 ✓ +2026-07-13 08:30:10,397 | INFO | Carnatic music 0.194 0.000 0.126 ✓ +2026-07-13 08:30:10,397 | INFO | Classical music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:10,397 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:10,417 | INFO | +[400.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,425 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,425 | INFO | Music 0.771 0.000 0.501 ✓ +2026-07-13 08:30:10,425 | INFO | Sitar 0.638 0.000 0.415 ✓ +2026-07-13 08:30:10,425 | INFO | Musical instrument 0.354 0.000 0.230 ✓ +2026-07-13 08:30:10,425 | INFO | Plucked string instrument 0.262 0.000 0.170 ✓ +2026-07-13 08:30:10,425 | INFO | Carnatic music 0.220 0.000 0.143 ✓ +2026-07-13 08:30:10,425 | INFO | Classical music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:10,425 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:10,452 | INFO | +[400.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,452 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,457 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:10,457 | INFO | Sitar 0.390 0.000 0.254 ✓ +2026-07-13 08:30:10,458 | INFO | Musical instrument 0.381 0.000 0.248 ✓ +2026-07-13 08:30:10,458 | INFO | Plucked string instrument 0.302 0.000 0.197 ✓ +2026-07-13 08:30:10,458 | INFO | Guitar 0.132 0.000 0.086 ✗ +2026-07-13 08:30:10,459 | INFO | Carnatic music 0.113 0.000 0.074 ✗ +2026-07-13 08:30:10,459 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:10,483 | INFO | +[400.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,483 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,483 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:10,483 | INFO | Musical instrument 0.418 0.000 0.272 ✓ +2026-07-13 08:30:10,483 | INFO | Sitar 0.318 0.000 0.206 ✓ +2026-07-13 08:30:10,483 | INFO | Plucked string instrument 0.263 0.000 0.171 ✓ +2026-07-13 08:30:10,483 | INFO | Guitar 0.141 0.000 0.092 ✗ +2026-07-13 08:30:10,483 | INFO | Carnatic music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:10,483 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:10,508 | INFO | +[400.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,508 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,508 | INFO | Music 0.757 0.000 0.492 ✓ +2026-07-13 08:30:10,516 | INFO | Musical instrument 0.466 0.000 0.303 ✓ +2026-07-13 08:30:10,516 | INFO | Traditional music 0.155 0.000 0.101 ✗ +2026-07-13 08:30:10,516 | INFO | Plucked string instrument 0.152 0.000 0.099 ✗ +2026-07-13 08:30:10,516 | INFO | Saxophone 0.136 0.000 0.088 ✗ +2026-07-13 08:30:10,516 | INFO | Brass instrument 0.124 0.000 0.081 ✗ +2026-07-13 08:30:10,516 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:30:10,541 | INFO | +[401.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,541 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,541 | INFO | Music 0.775 0.000 0.504 ✓ +2026-07-13 08:30:10,541 | INFO | Musical instrument 0.514 0.000 0.334 ✓ +2026-07-13 08:30:10,541 | INFO | Plucked string instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:10,541 | INFO | Guitar 0.171 0.000 0.111 ✗ +2026-07-13 08:30:10,541 | INFO | Traditional music 0.113 0.000 0.074 ✗ +2026-07-13 08:30:10,541 | INFO | Clarinet 0.095 0.000 0.061 ✗ +2026-07-13 08:30:10,541 | INFO | → WINNER: Music (combined=0.504) +2026-07-13 08:30:10,572 | INFO | +[401.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,573 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,573 | INFO | Music 0.742 0.000 0.482 ✓ +2026-07-13 08:30:10,573 | INFO | Musical instrument 0.527 0.000 0.343 ✓ +2026-07-13 08:30:10,573 | INFO | Plucked string instrument 0.252 0.000 0.164 ✓ +2026-07-13 08:30:10,573 | INFO | Guitar 0.222 0.000 0.144 ✓ +2026-07-13 08:30:10,573 | INFO | Banjo 0.080 0.000 0.052 ✗ +2026-07-13 08:30:10,574 | INFO | Mandolin 0.079 0.000 0.051 ✗ +2026-07-13 08:30:10,574 | INFO | → WINNER: Music (combined=0.482) +2026-07-13 08:30:10,598 | INFO | +[401.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,598 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,598 | INFO | Music 0.824 0.000 0.535 ✓ +2026-07-13 08:30:10,598 | INFO | Musical instrument 0.524 0.000 0.341 ✓ +2026-07-13 08:30:10,598 | INFO | Traditional music 0.233 0.000 0.151 ✓ +2026-07-13 08:30:10,598 | INFO | Plucked string instrument 0.216 0.000 0.140 ✓ +2026-07-13 08:30:10,598 | INFO | Guitar 0.127 0.000 0.083 ✗ +2026-07-13 08:30:10,598 | INFO | Sitar 0.122 0.000 0.080 ✗ +2026-07-13 08:30:10,598 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:10,627 | INFO | +[401.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,627 | INFO | Music 0.824 0.000 0.536 ✓ +2026-07-13 08:30:10,627 | INFO | Sitar 0.444 0.000 0.288 ✓ +2026-07-13 08:30:10,627 | INFO | Musical instrument 0.439 0.000 0.285 ✓ +2026-07-13 08:30:10,627 | INFO | Plucked string instrument 0.305 0.000 0.198 ✓ +2026-07-13 08:30:10,631 | INFO | Traditional music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:10,632 | INFO | Zither 0.106 0.000 0.069 ✗ +2026-07-13 08:30:10,632 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:10,655 | INFO | +[401.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,655 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,655 | INFO | Music 0.818 0.000 0.532 ✓ +2026-07-13 08:30:10,655 | INFO | Musical instrument 0.561 0.000 0.365 ✓ +2026-07-13 08:30:10,655 | INFO | Plucked string instrument 0.445 0.000 0.289 ✓ +2026-07-13 08:30:10,655 | INFO | Sitar 0.318 0.000 0.207 ✓ +2026-07-13 08:30:10,655 | INFO | Guitar 0.260 0.000 0.169 ✓ +2026-07-13 08:30:10,655 | INFO | Carnatic music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:10,655 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:10,685 | INFO | +[402.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,688 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,688 | INFO | Music 0.771 0.000 0.501 ✓ +2026-07-13 08:30:10,688 | INFO | Sitar 0.681 0.000 0.443 ✓ +2026-07-13 08:30:10,688 | INFO | Musical instrument 0.423 0.000 0.275 ✓ +2026-07-13 08:30:10,688 | INFO | Tabla 0.356 0.000 0.231 ✓ +2026-07-13 08:30:10,688 | INFO | Carnatic music 0.328 0.000 0.213 ✓ +2026-07-13 08:30:10,688 | INFO | Plucked string instrument 0.286 0.000 0.186 ✓ +2026-07-13 08:30:10,688 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:10,716 | INFO | +[402.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,716 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,716 | INFO | Music 0.801 0.000 0.520 ✓ +2026-07-13 08:30:10,716 | INFO | Musical instrument 0.586 0.000 0.381 ✓ +2026-07-13 08:30:10,716 | INFO | Plucked string instrument 0.427 0.000 0.277 ✓ +2026-07-13 08:30:10,716 | INFO | Guitar 0.284 0.000 0.185 ✓ +2026-07-13 08:30:10,716 | INFO | Carnatic music 0.165 0.000 0.107 ✗ +2026-07-13 08:30:10,716 | INFO | Sitar 0.138 0.000 0.090 ✗ +2026-07-13 08:30:10,716 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:10,741 | INFO | +[402.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,745 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,746 | INFO | Music 0.819 0.000 0.532 ✓ +2026-07-13 08:30:10,746 | INFO | Musical instrument 0.526 0.000 0.342 ✓ +2026-07-13 08:30:10,746 | INFO | Plucked string instrument 0.388 0.000 0.252 ✓ +2026-07-13 08:30:10,746 | INFO | Sitar 0.265 0.000 0.172 ✓ +2026-07-13 08:30:10,746 | INFO | Carnatic music 0.194 0.000 0.126 ✓ +2026-07-13 08:30:10,746 | INFO | Guitar 0.156 0.000 0.102 ✗ +2026-07-13 08:30:10,746 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:10,775 | INFO | +[402.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,775 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,775 | INFO | Music 0.838 0.000 0.544 ✓ +2026-07-13 08:30:10,775 | INFO | Musical instrument 0.542 0.000 0.353 ✓ +2026-07-13 08:30:10,775 | INFO | Sitar 0.525 0.000 0.341 ✓ +2026-07-13 08:30:10,775 | INFO | Plucked string instrument 0.449 0.000 0.292 ✓ +2026-07-13 08:30:10,775 | INFO | Carnatic music 0.246 0.000 0.160 ✓ +2026-07-13 08:30:10,775 | INFO | Tabla 0.120 0.000 0.078 ✗ +2026-07-13 08:30:10,775 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:30:10,804 | INFO | +[402.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,806 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,806 | INFO | Music 0.860 0.000 0.559 ✓ +2026-07-13 08:30:10,806 | INFO | Musical instrument 0.595 0.000 0.387 ✓ +2026-07-13 08:30:10,806 | INFO | Plucked string instrument 0.487 0.000 0.317 ✓ +2026-07-13 08:30:10,806 | INFO | Sitar 0.391 0.000 0.254 ✓ +2026-07-13 08:30:10,806 | INFO | Guitar 0.223 0.000 0.145 ✓ +2026-07-13 08:30:10,806 | INFO | Carnatic music 0.141 0.000 0.092 ✗ +2026-07-13 08:30:10,806 | INFO | → WINNER: Music (combined=0.559) +2026-07-13 08:30:10,830 | INFO | +[403.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,830 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,836 | INFO | Music 0.815 0.000 0.530 ✓ +2026-07-13 08:30:10,836 | INFO | Musical instrument 0.373 0.000 0.243 ✓ +2026-07-13 08:30:10,836 | INFO | Sitar 0.328 0.000 0.213 ✓ +2026-07-13 08:30:10,836 | INFO | Plucked string instrument 0.304 0.000 0.197 ✓ +2026-07-13 08:30:10,836 | INFO | Guitar 0.133 0.000 0.086 ✗ +2026-07-13 08:30:10,836 | INFO | Banjo 0.123 0.000 0.080 ✗ +2026-07-13 08:30:10,836 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:10,860 | INFO | +[403.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,860 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,860 | INFO | Music 0.821 0.000 0.534 ✓ +2026-07-13 08:30:10,860 | INFO | Musical instrument 0.515 0.000 0.335 ✓ +2026-07-13 08:30:10,860 | INFO | Sitar 0.409 0.000 0.266 ✓ +2026-07-13 08:30:10,860 | INFO | Plucked string instrument 0.322 0.000 0.209 ✓ +2026-07-13 08:30:10,860 | INFO | Guitar 0.144 0.000 0.094 ✗ +2026-07-13 08:30:10,860 | INFO | Bowed string instrument 0.088 0.000 0.057 ✗ +2026-07-13 08:30:10,860 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:10,891 | INFO | +[403.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,893 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,893 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:10,893 | INFO | Musical instrument 0.590 0.000 0.384 ✓ +2026-07-13 08:30:10,893 | INFO | Plucked string instrument 0.505 0.000 0.328 ✓ +2026-07-13 08:30:10,893 | INFO | Guitar 0.411 0.000 0.267 ✓ +2026-07-13 08:30:10,893 | INFO | Acoustic guitar 0.145 0.000 0.094 ✗ +2026-07-13 08:30:10,893 | INFO | Strum 0.136 0.000 0.088 ✗ +2026-07-13 08:30:10,893 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:10,920 | INFO | +[403.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,920 | INFO | Music 0.830 0.000 0.539 ✓ +2026-07-13 08:30:10,920 | INFO | Musical instrument 0.540 0.000 0.351 ✓ +2026-07-13 08:30:10,920 | INFO | Plucked string instrument 0.384 0.000 0.250 ✓ +2026-07-13 08:30:10,920 | INFO | Guitar 0.270 0.000 0.175 ✓ +2026-07-13 08:30:10,920 | INFO | Zither 0.197 0.000 0.128 ✓ +2026-07-13 08:30:10,920 | INFO | Mandolin 0.115 0.000 0.074 ✗ +2026-07-13 08:30:10,920 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:10,945 | INFO | +[403.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,951 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,951 | INFO | Music 0.887 0.000 0.576 ✓ +2026-07-13 08:30:10,951 | INFO | Musical instrument 0.667 0.000 0.434 ✓ +2026-07-13 08:30:10,951 | INFO | Plucked string instrument 0.600 0.000 0.390 ✓ +2026-07-13 08:30:10,951 | INFO | Guitar 0.556 0.000 0.361 ✓ +2026-07-13 08:30:10,951 | INFO | Strum 0.226 0.000 0.147 ✓ +2026-07-13 08:30:10,951 | INFO | Acoustic guitar 0.222 0.000 0.144 ✓ +2026-07-13 08:30:10,951 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:10,977 | INFO | +[404.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:10,977 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:10,977 | INFO | Music 0.840 0.000 0.546 ✓ +2026-07-13 08:30:10,977 | INFO | Musical instrument 0.680 0.000 0.442 ✓ +2026-07-13 08:30:10,977 | INFO | Plucked string instrument 0.586 0.000 0.381 ✓ +2026-07-13 08:30:10,977 | INFO | Guitar 0.461 0.000 0.300 ✓ +2026-07-13 08:30:10,977 | INFO | Acoustic guitar 0.196 0.000 0.128 ✓ +2026-07-13 08:30:10,977 | INFO | Strum 0.171 0.000 0.111 ✗ +2026-07-13 08:30:10,983 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:30:11,009 | INFO | +[404.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,009 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,009 | INFO | Music 0.866 0.000 0.563 ✓ +2026-07-13 08:30:11,009 | INFO | Musical instrument 0.758 0.000 0.493 ✓ +2026-07-13 08:30:11,009 | INFO | Plucked string instrument 0.702 0.000 0.456 ✓ +2026-07-13 08:30:11,009 | INFO | Guitar 0.508 0.000 0.330 ✓ +2026-07-13 08:30:11,009 | INFO | Banjo 0.224 0.000 0.145 ✓ +2026-07-13 08:30:11,009 | INFO | Acoustic guitar 0.167 0.000 0.108 ✗ +2026-07-13 08:30:11,009 | INFO | → WINNER: Music (combined=0.563) +2026-07-13 08:30:11,036 | INFO | +[404.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,036 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,036 | INFO | Music 0.785 0.000 0.510 ✓ +2026-07-13 08:30:11,036 | INFO | Musical instrument 0.477 0.000 0.310 ✓ +2026-07-13 08:30:11,036 | INFO | Sitar 0.444 0.000 0.288 ✓ +2026-07-13 08:30:11,036 | INFO | Plucked string instrument 0.364 0.000 0.237 ✓ +2026-07-13 08:30:11,036 | INFO | Carnatic music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:11,036 | INFO | Tabla 0.109 0.000 0.071 ✗ +2026-07-13 08:30:11,036 | INFO | → WINNER: Music (combined=0.510) +2026-07-13 08:30:11,067 | INFO | +[404.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,067 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,067 | INFO | Music 0.781 0.000 0.507 ✓ +2026-07-13 08:30:11,067 | INFO | Sitar 0.612 0.000 0.398 ✓ +2026-07-13 08:30:11,067 | INFO | Musical instrument 0.580 0.000 0.377 ✓ +2026-07-13 08:30:11,067 | INFO | Plucked string instrument 0.377 0.000 0.245 ✓ +2026-07-13 08:30:11,067 | INFO | Tabla 0.203 0.000 0.132 ✓ +2026-07-13 08:30:11,067 | INFO | Bowed string instrument 0.170 0.000 0.111 ✗ +2026-07-13 08:30:11,067 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:11,098 | INFO | +[404.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,098 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,101 | INFO | Music 0.790 0.000 0.513 ✓ +2026-07-13 08:30:11,101 | INFO | Sitar 0.480 0.000 0.312 ✓ +2026-07-13 08:30:11,101 | INFO | Musical instrument 0.443 0.000 0.288 ✓ +2026-07-13 08:30:11,101 | INFO | Plucked string instrument 0.298 0.000 0.194 ✓ +2026-07-13 08:30:11,101 | INFO | Traditional music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:11,101 | INFO | Carnatic music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:11,101 | INFO | → WINNER: Music (combined=0.513) +2026-07-13 08:30:11,125 | INFO | +[405.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,125 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,125 | INFO | Music 0.840 0.000 0.546 ✓ +2026-07-13 08:30:11,131 | INFO | Sitar 0.540 0.000 0.351 ✓ +2026-07-13 08:30:11,131 | INFO | Musical instrument 0.497 0.000 0.323 ✓ +2026-07-13 08:30:11,131 | INFO | Plucked string instrument 0.354 0.000 0.230 ✓ +2026-07-13 08:30:11,131 | INFO | Carnatic music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:11,131 | INFO | Traditional music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:11,131 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:30:11,155 | INFO | +[405.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,155 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,155 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:30:11,155 | INFO | Musical instrument 0.414 0.000 0.269 ✓ +2026-07-13 08:30:11,155 | INFO | Plucked string instrument 0.272 0.000 0.177 ✓ +2026-07-13 08:30:11,155 | INFO | Sitar 0.212 0.000 0.138 ✓ +2026-07-13 08:30:11,155 | INFO | Guitar 0.137 0.000 0.089 ✗ +2026-07-13 08:30:11,155 | INFO | Carnatic music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:11,155 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:11,188 | INFO | +[405.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,188 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,188 | INFO | Music 0.858 0.000 0.557 ✓ +2026-07-13 08:30:11,188 | INFO | Musical instrument 0.365 0.000 0.237 ✓ +2026-07-13 08:30:11,190 | INFO | Plucked string instrument 0.247 0.000 0.161 ✓ +2026-07-13 08:30:11,190 | INFO | Sitar 0.144 0.000 0.094 ✗ +2026-07-13 08:30:11,190 | INFO | Guitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:11,190 | INFO | Middle Eastern music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:11,190 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:11,216 | INFO | +[405.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,216 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,216 | INFO | Music 0.857 0.000 0.557 ✓ +2026-07-13 08:30:11,216 | INFO | Musical instrument 0.271 0.000 0.176 ✓ +2026-07-13 08:30:11,216 | INFO | Plucked string instrument 0.187 0.000 0.121 ✓ +2026-07-13 08:30:11,216 | INFO | Guitar 0.102 0.000 0.066 ✗ +2026-07-13 08:30:11,216 | INFO | Middle Eastern music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:11,216 | INFO | Sitar 0.083 0.000 0.054 ✗ +2026-07-13 08:30:11,216 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:11,245 | INFO | +[405.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,245 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,245 | INFO | Music 0.852 0.000 0.554 ✓ +2026-07-13 08:30:11,245 | INFO | Musical instrument 0.178 0.000 0.116 ✗ +2026-07-13 08:30:11,245 | INFO | Middle Eastern music 0.155 0.000 0.101 ✗ +2026-07-13 08:30:11,245 | INFO | Folk music 0.110 0.000 0.071 ✗ +2026-07-13 08:30:11,245 | INFO | Plucked string instrument 0.093 0.000 0.061 ✗ +2026-07-13 08:30:11,245 | INFO | Singing 0.079 0.000 0.051 ✗ +2026-07-13 08:30:11,245 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:11,278 | INFO | +[406.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,278 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,278 | INFO | Music 0.847 0.000 0.551 ✓ +2026-07-13 08:30:11,278 | INFO | Musical instrument 0.233 0.000 0.152 ✓ +2026-07-13 08:30:11,278 | INFO | Middle Eastern music 0.167 0.000 0.108 ✗ +2026-07-13 08:30:11,278 | INFO | Sitar 0.128 0.000 0.083 ✗ +2026-07-13 08:30:11,278 | INFO | Tabla 0.111 0.000 0.072 ✗ +2026-07-13 08:30:11,278 | INFO | Folk music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:11,278 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:11,303 | INFO | +[406.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,303 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,303 | INFO | Music 0.888 0.000 0.577 ✓ +2026-07-13 08:30:11,303 | INFO | Musical instrument 0.263 0.000 0.171 ✓ +2026-07-13 08:30:11,303 | INFO | Plucked string instrument 0.132 0.000 0.086 ✗ +2026-07-13 08:30:11,303 | INFO | Guitar 0.104 0.000 0.068 ✗ +2026-07-13 08:30:11,303 | INFO | → WINNER: Music (combined=0.577) +2026-07-13 08:30:11,336 | INFO | +[406.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,336 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,336 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:30:11,336 | INFO | Musical instrument 0.386 0.000 0.251 ✓ +2026-07-13 08:30:11,336 | INFO | Plucked string instrument 0.227 0.000 0.147 ✓ +2026-07-13 08:30:11,336 | INFO | Guitar 0.190 0.000 0.123 ✓ +2026-07-13 08:30:11,336 | INFO | Strum 0.066 0.000 0.043 ✗ +2026-07-13 08:30:11,336 | INFO | Acoustic guitar 0.055 0.000 0.036 ✗ +2026-07-13 08:30:11,336 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:11,365 | INFO | +[406.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,367 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,367 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:11,367 | INFO | Musical instrument 0.201 0.000 0.131 ✓ +2026-07-13 08:30:11,368 | INFO | Plucked string instrument 0.086 0.000 0.056 ✗ +2026-07-13 08:30:11,368 | INFO | Guitar 0.071 0.000 0.046 ✗ +2026-07-13 08:30:11,368 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:11,393 | INFO | +[406.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,393 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,393 | INFO | Music 0.796 0.000 0.517 ✓ +2026-07-13 08:30:11,393 | INFO | Musical instrument 0.255 0.000 0.166 ✓ +2026-07-13 08:30:11,393 | INFO | Plucked string instrument 0.124 0.000 0.081 ✗ +2026-07-13 08:30:11,393 | INFO | Guitar 0.100 0.000 0.065 ✗ +2026-07-13 08:30:11,393 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:11,417 | INFO | +[407.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-07-13 08:30:11,426 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,426 | INFO | Music 0.377 0.000 0.245 ✓ +2026-07-13 08:30:11,426 | INFO | → WINNER: Music (combined=0.245) +2026-07-13 08:30:11,450 | INFO | +[420.40s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-07-13 08:30:11,450 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,450 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:11,459 | INFO | Musical instrument 0.206 0.000 0.134 ✓ +2026-07-13 08:30:11,459 | INFO | Plucked string instrument 0.080 0.000 0.052 ✗ +2026-07-13 08:30:11,459 | INFO | Middle Eastern music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:11,459 | INFO | Guitar 0.058 0.000 0.038 ✗ +2026-07-13 08:30:11,459 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:11,484 | INFO | +[420.60s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-07-13 08:30:11,484 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,484 | INFO | Music 0.818 0.000 0.532 ✓ +2026-07-13 08:30:11,484 | INFO | Sitar 0.052 0.000 0.034 ✗ +2026-07-13 08:30:11,484 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:11,566 | INFO | +[588.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-07-13 08:30:11,566 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,566 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:11,566 | INFO | Musical instrument 0.318 0.000 0.207 ✓ +2026-07-13 08:30:11,566 | INFO | Plucked string instrument 0.148 0.000 0.097 ✗ +2026-07-13 08:30:11,566 | INFO | Guitar 0.117 0.000 0.076 ✗ +2026-07-13 08:30:11,566 | INFO | Traditional music 0.064 0.000 0.041 ✗ +2026-07-13 08:30:11,566 | INFO | Tabla 0.050 0.000 0.032 ✗ +2026-07-13 08:30:11,566 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:11,594 | INFO | +[588.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-07-13 08:30:11,594 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,594 | INFO | Music 0.852 0.000 0.554 ✓ +2026-07-13 08:30:11,594 | INFO | Musical instrument 0.263 0.000 0.171 ✓ +2026-07-13 08:30:11,599 | INFO | Drum 0.091 0.000 0.059 ✗ +2026-07-13 08:30:11,599 | INFO | Percussion 0.069 0.000 0.045 ✗ +2026-07-13 08:30:11,599 | INFO | Plucked string instrument 0.054 0.000 0.035 ✗ +2026-07-13 08:30:11,599 | INFO | Tabla 0.054 0.000 0.035 ✗ +2026-07-13 08:30:11,599 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:11,617 | INFO | +[588.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-07-13 08:30:11,626 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,626 | INFO | Music 0.894 0.000 0.581 ✓ +2026-07-13 08:30:11,626 | INFO | Musical instrument 0.391 0.000 0.254 ✓ +2026-07-13 08:30:11,626 | INFO | Plucked string instrument 0.134 0.000 0.087 ✗ +2026-07-13 08:30:11,626 | INFO | Drum 0.111 0.000 0.072 ✗ +2026-07-13 08:30:11,626 | INFO | Guitar 0.100 0.000 0.065 ✗ +2026-07-13 08:30:11,626 | INFO | Percussion 0.097 0.000 0.063 ✗ +2026-07-13 08:30:11,626 | INFO | → WINNER: Music (combined=0.581) +2026-07-13 08:30:11,659 | INFO | +[588.80s] AMBIENT | scene='' +2026-07-13 08:30:11,659 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,659 | INFO | Music 0.841 0.000 0.547 ✓ +2026-07-13 08:30:11,659 | INFO | Musical instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:11,659 | INFO | Drum 0.129 0.000 0.084 ✗ +2026-07-13 08:30:11,659 | INFO | Percussion 0.114 0.000 0.074 ✗ +2026-07-13 08:30:11,667 | INFO | Tabla 0.073 0.000 0.048 ✗ +2026-07-13 08:30:11,667 | INFO | Wood block 0.064 0.000 0.042 ✗ +2026-07-13 08:30:11,667 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:11,734 | INFO | +[589.00s] AMBIENT | scene='' +2026-07-13 08:30:11,734 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,734 | INFO | Music 0.839 0.000 0.545 ✓ +2026-07-13 08:30:11,734 | INFO | Musical instrument 0.355 0.000 0.231 ✓ +2026-07-13 08:30:11,737 | INFO | Plucked string instrument 0.137 0.000 0.089 ✗ +2026-07-13 08:30:11,737 | INFO | Percussion 0.113 0.000 0.073 ✗ +2026-07-13 08:30:11,737 | INFO | Guitar 0.094 0.000 0.061 ✗ +2026-07-13 08:30:11,737 | INFO | Tabla 0.091 0.000 0.059 ✗ +2026-07-13 08:30:11,737 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:11,801 | INFO | +[589.20s] AMBIENT | scene='' +2026-07-13 08:30:11,801 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,801 | INFO | Music 0.857 0.000 0.557 ✓ +2026-07-13 08:30:11,801 | INFO | Musical instrument 0.360 0.000 0.234 ✓ +2026-07-13 08:30:11,801 | INFO | Plucked string instrument 0.158 0.000 0.103 ✗ +2026-07-13 08:30:11,801 | INFO | Guitar 0.103 0.000 0.067 ✗ +2026-07-13 08:30:11,801 | INFO | Percussion 0.067 0.000 0.043 ✗ +2026-07-13 08:30:11,808 | INFO | Wood block 0.038 0.000 0.025 ✗ +2026-07-13 08:30:11,808 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:11,865 | INFO | +[589.40s] AMBIENT | scene='' +2026-07-13 08:30:11,866 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,866 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:11,866 | INFO | Musical instrument 0.516 0.000 0.335 ✓ +2026-07-13 08:30:11,866 | INFO | Plucked string instrument 0.300 0.000 0.195 ✓ +2026-07-13 08:30:11,866 | INFO | Guitar 0.178 0.000 0.116 ✗ +2026-07-13 08:30:11,866 | INFO | Percussion 0.093 0.000 0.060 ✗ +2026-07-13 08:30:11,866 | INFO | Tabla 0.091 0.000 0.059 ✗ +2026-07-13 08:30:11,866 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:11,890 | INFO | +[589.60s] AMBIENT | scene='' +2026-07-13 08:30:11,890 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,890 | INFO | Music 0.909 0.000 0.591 ✓ +2026-07-13 08:30:11,890 | INFO | Musical instrument 0.748 0.000 0.486 ✓ +2026-07-13 08:30:11,899 | INFO | Plucked string instrument 0.673 0.000 0.438 ✓ +2026-07-13 08:30:11,899 | INFO | Guitar 0.462 0.000 0.300 ✓ +2026-07-13 08:30:11,899 | INFO | Mandolin 0.147 0.000 0.095 ✗ +2026-07-13 08:30:11,900 | INFO | Acoustic guitar 0.129 0.000 0.084 ✗ +2026-07-13 08:30:11,900 | INFO | → WINNER: Music (combined=0.591) +2026-07-13 08:30:11,924 | INFO | +[589.80s] AMBIENT | scene='' +2026-07-13 08:30:11,927 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,927 | INFO | Music 0.878 0.000 0.571 ✓ +2026-07-13 08:30:11,929 | INFO | Musical instrument 0.569 0.000 0.370 ✓ +2026-07-13 08:30:11,929 | INFO | Plucked string instrument 0.486 0.000 0.316 ✓ +2026-07-13 08:30:11,929 | INFO | Guitar 0.323 0.000 0.210 ✓ +2026-07-13 08:30:11,929 | INFO | Acoustic guitar 0.105 0.000 0.068 ✗ +2026-07-13 08:30:11,929 | INFO | Mandolin 0.097 0.000 0.063 ✗ +2026-07-13 08:30:11,929 | INFO | → WINNER: Music (combined=0.571) +2026-07-13 08:30:11,957 | INFO | +[590.00s] AMBIENT | scene='' +2026-07-13 08:30:11,957 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,957 | INFO | Music 0.887 0.000 0.577 ✓ +2026-07-13 08:30:11,957 | INFO | Musical instrument 0.641 0.000 0.417 ✓ +2026-07-13 08:30:11,957 | INFO | Plucked string instrument 0.495 0.000 0.322 ✓ +2026-07-13 08:30:11,957 | INFO | Guitar 0.342 0.000 0.222 ✓ +2026-07-13 08:30:11,957 | INFO | Sitar 0.091 0.000 0.059 ✗ +2026-07-13 08:30:11,957 | INFO | Acoustic guitar 0.087 0.000 0.056 ✗ +2026-07-13 08:30:11,957 | INFO | → WINNER: Music (combined=0.577) +2026-07-13 08:30:11,981 | INFO | +[590.20s] AMBIENT | scene='' +2026-07-13 08:30:11,981 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:11,981 | INFO | Music 0.886 0.000 0.576 ✓ +2026-07-13 08:30:11,981 | INFO | Musical instrument 0.468 0.000 0.304 ✓ +2026-07-13 08:30:11,981 | INFO | Plucked string instrument 0.273 0.000 0.177 ✓ +2026-07-13 08:30:11,981 | INFO | Guitar 0.215 0.000 0.140 ✓ +2026-07-13 08:30:11,981 | INFO | Strum 0.066 0.000 0.043 ✗ +2026-07-13 08:30:11,981 | INFO | Acoustic guitar 0.065 0.000 0.042 ✗ +2026-07-13 08:30:11,981 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:12,014 | INFO | +[590.40s] AMBIENT | scene='' +2026-07-13 08:30:12,014 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,014 | INFO | Music 0.887 0.000 0.576 ✓ +2026-07-13 08:30:12,016 | INFO | Musical instrument 0.173 0.000 0.112 ✗ +2026-07-13 08:30:12,016 | INFO | Middle Eastern music 0.159 0.000 0.103 ✗ +2026-07-13 08:30:12,016 | INFO | Folk music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:12,017 | INFO | Traditional music 0.073 0.000 0.047 ✗ +2026-07-13 08:30:12,017 | INFO | Drum 0.055 0.000 0.035 ✗ +2026-07-13 08:30:12,017 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:12,039 | INFO | +[590.60s] AMBIENT | scene='' +2026-07-13 08:30:12,039 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,039 | INFO | Music 0.866 0.000 0.563 ✓ +2026-07-13 08:30:12,039 | INFO | Middle Eastern music 0.216 0.000 0.140 ✓ +2026-07-13 08:30:12,039 | INFO | Musical instrument 0.193 0.000 0.125 ✓ +2026-07-13 08:30:12,039 | INFO | Folk music 0.166 0.000 0.108 ✗ +2026-07-13 08:30:12,039 | INFO | Traditional music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:12,039 | INFO | Drum 0.096 0.000 0.062 ✗ +2026-07-13 08:30:12,039 | INFO | → WINNER: Music (combined=0.563) +2026-07-13 08:30:12,072 | INFO | +[590.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,072 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,072 | INFO | Music 0.871 0.000 0.566 ✓ +2026-07-13 08:30:12,072 | INFO | Musical instrument 0.173 0.000 0.113 ✗ +2026-07-13 08:30:12,072 | INFO | Middle Eastern music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:12,072 | INFO | → WINNER: Music (combined=0.566) +2026-07-13 08:30:12,099 | INFO | +[591.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,099 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,099 | INFO | Music 0.873 0.000 0.568 ✓ +2026-07-13 08:30:12,099 | INFO | Musical instrument 0.248 0.000 0.161 ✓ +2026-07-13 08:30:12,099 | INFO | Plucked string instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:12,099 | INFO | Guitar 0.096 0.000 0.062 ✗ +2026-07-13 08:30:12,105 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:12,129 | INFO | +[591.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,129 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,129 | INFO | Music 0.767 0.000 0.499 ✓ +2026-07-13 08:30:12,129 | INFO | Musical instrument 0.156 0.000 0.101 ✗ +2026-07-13 08:30:12,129 | INFO | Plucked string instrument 0.066 0.000 0.043 ✗ +2026-07-13 08:30:12,129 | INFO | Guitar 0.066 0.000 0.043 ✗ +2026-07-13 08:30:12,129 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:12,154 | INFO | +[591.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,154 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,154 | INFO | Music 0.869 0.000 0.565 ✓ +2026-07-13 08:30:12,162 | INFO | Musical instrument 0.343 0.000 0.223 ✓ +2026-07-13 08:30:12,163 | INFO | Guitar 0.205 0.000 0.133 ✓ +2026-07-13 08:30:12,163 | INFO | Plucked string instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:12,163 | INFO | Strum 0.073 0.000 0.047 ✗ +2026-07-13 08:30:12,163 | INFO | Acoustic guitar 0.058 0.000 0.038 ✗ +2026-07-13 08:30:12,163 | INFO | → WINNER: Music (combined=0.565) +2026-07-13 08:30:12,187 | INFO | +[591.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,187 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,187 | INFO | Music 0.847 0.000 0.550 ✓ +2026-07-13 08:30:12,187 | INFO | Musical instrument 0.264 0.000 0.171 ✓ +2026-07-13 08:30:12,187 | INFO | Guitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:12,187 | INFO | Plucked string instrument 0.129 0.000 0.084 ✗ +2026-07-13 08:30:12,187 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:12,211 | INFO | +[591.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,211 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,220 | INFO | Music 0.588 0.000 0.382 ✓ +2026-07-13 08:30:12,220 | INFO | Musical instrument 0.104 0.000 0.068 ✗ +2026-07-13 08:30:12,220 | INFO | → WINNER: Music (combined=0.382) +2026-07-13 08:30:12,244 | INFO | +[592.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,244 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,244 | INFO | Music 0.886 0.000 0.576 ✓ +2026-07-13 08:30:12,244 | INFO | Musical instrument 0.424 0.000 0.275 ✓ +2026-07-13 08:30:12,252 | INFO | Plucked string instrument 0.295 0.000 0.192 ✓ +2026-07-13 08:30:12,252 | INFO | Guitar 0.227 0.000 0.148 ✓ +2026-07-13 08:30:12,252 | INFO | Middle Eastern music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:12,252 | INFO | Strum 0.073 0.000 0.047 ✗ +2026-07-13 08:30:12,252 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:12,279 | INFO | +[592.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,279 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,279 | INFO | Music 0.844 0.000 0.549 ✓ +2026-07-13 08:30:12,279 | INFO | Musical instrument 0.326 0.000 0.212 ✓ +2026-07-13 08:30:12,279 | INFO | Plucked string instrument 0.174 0.000 0.113 ✗ +2026-07-13 08:30:12,279 | INFO | Middle Eastern music 0.127 0.000 0.082 ✗ +2026-07-13 08:30:12,279 | INFO | Guitar 0.096 0.000 0.062 ✗ +2026-07-13 08:30:12,279 | INFO | Folk music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:12,279 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:12,301 | INFO | +[592.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,309 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,309 | INFO | Music 0.856 0.000 0.557 ✓ +2026-07-13 08:30:12,309 | INFO | Musical instrument 0.334 0.000 0.217 ✓ +2026-07-13 08:30:12,309 | INFO | Plucked string instrument 0.201 0.000 0.131 ✓ +2026-07-13 08:30:12,309 | INFO | Guitar 0.190 0.000 0.123 ✓ +2026-07-13 08:30:12,309 | INFO | Strum 0.059 0.000 0.038 ✗ +2026-07-13 08:30:12,309 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:12,334 | INFO | +[592.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,334 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,334 | INFO | Music 0.873 0.000 0.568 ✓ +2026-07-13 08:30:12,334 | INFO | Musical instrument 0.270 0.000 0.176 ✓ +2026-07-13 08:30:12,342 | INFO | Plucked string instrument 0.129 0.000 0.084 ✗ +2026-07-13 08:30:12,342 | INFO | Guitar 0.093 0.000 0.060 ✗ +2026-07-13 08:30:12,343 | INFO | Middle Eastern music 0.087 0.000 0.057 ✗ +2026-07-13 08:30:12,343 | INFO | Sitar 0.056 0.000 0.036 ✗ +2026-07-13 08:30:12,343 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:12,367 | INFO | +[592.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,367 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,367 | INFO | Music 0.864 0.000 0.562 ✓ +2026-07-13 08:30:12,367 | INFO | Musical instrument 0.214 0.000 0.139 ✓ +2026-07-13 08:30:12,367 | INFO | Middle Eastern music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:12,367 | INFO | Plucked string instrument 0.067 0.000 0.044 ✗ +2026-07-13 08:30:12,367 | INFO | Guitar 0.054 0.000 0.035 ✗ +2026-07-13 08:30:12,367 | INFO | → WINNER: Music (combined=0.562) +2026-07-13 08:30:12,392 | INFO | +[593.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,400 | INFO | Music 0.879 0.000 0.572 ✓ +2026-07-13 08:30:12,400 | INFO | Musical instrument 0.232 0.000 0.150 ✓ +2026-07-13 08:30:12,400 | INFO | Plucked string instrument 0.081 0.000 0.053 ✗ +2026-07-13 08:30:12,400 | INFO | Guitar 0.073 0.000 0.047 ✗ +2026-07-13 08:30:12,400 | INFO | → WINNER: Music (combined=0.572) +2026-07-13 08:30:12,424 | INFO | +[593.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,424 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,424 | INFO | Music 0.864 0.000 0.561 ✓ +2026-07-13 08:30:12,424 | INFO | Musical instrument 0.367 0.000 0.238 ✓ +2026-07-13 08:30:12,424 | INFO | Plucked string instrument 0.138 0.000 0.090 ✗ +2026-07-13 08:30:12,424 | INFO | Guitar 0.107 0.000 0.070 ✗ +2026-07-13 08:30:12,424 | INFO | Drum 0.080 0.000 0.052 ✗ +2026-07-13 08:30:12,424 | INFO | Percussion 0.078 0.000 0.051 ✗ +2026-07-13 08:30:12,424 | INFO | → WINNER: Music (combined=0.561) +2026-07-13 08:30:12,449 | INFO | +[593.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,449 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,449 | INFO | Music 0.908 0.000 0.590 ✓ +2026-07-13 08:30:12,457 | INFO | Musical instrument 0.654 0.000 0.425 ✓ +2026-07-13 08:30:12,457 | INFO | Plucked string instrument 0.454 0.000 0.295 ✓ +2026-07-13 08:30:12,457 | INFO | Guitar 0.425 0.000 0.277 ✓ +2026-07-13 08:30:12,457 | INFO | Strum 0.118 0.000 0.076 ✗ +2026-07-13 08:30:12,457 | INFO | Acoustic guitar 0.100 0.000 0.065 ✗ +2026-07-13 08:30:12,457 | INFO | → WINNER: Music (combined=0.590) +2026-07-13 08:30:12,485 | INFO | +[593.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,485 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,485 | INFO | Music 0.906 0.000 0.589 ✓ +2026-07-13 08:30:12,485 | INFO | Musical instrument 0.727 0.000 0.473 ✓ +2026-07-13 08:30:12,485 | INFO | Guitar 0.640 0.000 0.416 ✓ +2026-07-13 08:30:12,485 | INFO | Plucked string instrument 0.628 0.000 0.408 ✓ +2026-07-13 08:30:12,485 | INFO | Acoustic guitar 0.209 0.000 0.136 ✓ +2026-07-13 08:30:12,485 | INFO | Strum 0.169 0.000 0.110 ✗ +2026-07-13 08:30:12,485 | INFO | → WINNER: Music (combined=0.589) +2026-07-13 08:30:12,506 | INFO | +[593.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,506 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,506 | INFO | Music 0.874 0.000 0.568 ✓ +2026-07-13 08:30:12,515 | INFO | Musical instrument 0.532 0.000 0.346 ✓ +2026-07-13 08:30:12,515 | INFO | Plucked string instrument 0.213 0.000 0.139 ✓ +2026-07-13 08:30:12,515 | INFO | Guitar 0.171 0.000 0.111 ✗ +2026-07-13 08:30:12,515 | INFO | Drum 0.159 0.000 0.104 ✗ +2026-07-13 08:30:12,515 | INFO | Percussion 0.133 0.000 0.086 ✗ +2026-07-13 08:30:12,515 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:12,539 | INFO | +[594.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,539 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,539 | INFO | Music 0.868 0.000 0.564 ✓ +2026-07-13 08:30:12,539 | INFO | Musical instrument 0.508 0.000 0.330 ✓ +2026-07-13 08:30:12,539 | INFO | Plucked string instrument 0.189 0.000 0.123 ✓ +2026-07-13 08:30:12,539 | INFO | Guitar 0.187 0.000 0.122 ✓ +2026-07-13 08:30:12,539 | INFO | Drum 0.087 0.000 0.056 ✗ +2026-07-13 08:30:12,539 | INFO | Percussion 0.083 0.000 0.054 ✗ +2026-07-13 08:30:12,539 | INFO | → WINNER: Music (combined=0.564) +2026-07-13 08:30:12,569 | INFO | +[594.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,570 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,571 | INFO | Music 0.882 0.000 0.573 ✓ +2026-07-13 08:30:12,571 | INFO | Musical instrument 0.459 0.000 0.298 ✓ +2026-07-13 08:30:12,572 | INFO | Plucked string instrument 0.263 0.000 0.171 ✓ +2026-07-13 08:30:12,572 | INFO | Guitar 0.237 0.000 0.154 ✓ +2026-07-13 08:30:12,573 | INFO | Acoustic guitar 0.066 0.000 0.043 ✗ +2026-07-13 08:30:12,573 | INFO | Strum 0.061 0.000 0.040 ✗ +2026-07-13 08:30:12,574 | INFO | → WINNER: Music (combined=0.573) +2026-07-13 08:30:12,600 | INFO | +[594.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,600 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,600 | INFO | Music 0.885 0.000 0.575 ✓ +2026-07-13 08:30:12,600 | INFO | Musical instrument 0.440 0.000 0.286 ✓ +2026-07-13 08:30:12,600 | INFO | Plucked string instrument 0.167 0.000 0.109 ✗ +2026-07-13 08:30:12,600 | INFO | Guitar 0.154 0.000 0.100 ✗ +2026-07-13 08:30:12,600 | INFO | Drum 0.127 0.000 0.083 ✗ +2026-07-13 08:30:12,600 | INFO | Percussion 0.113 0.000 0.073 ✗ +2026-07-13 08:30:12,600 | INFO | → WINNER: Music (combined=0.575) +2026-07-13 08:30:12,630 | INFO | +[594.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,630 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,630 | INFO | Music 0.892 0.000 0.580 ✓ +2026-07-13 08:30:12,630 | INFO | Musical instrument 0.338 0.000 0.220 ✓ +2026-07-13 08:30:12,630 | INFO | Plucked string instrument 0.117 0.000 0.076 ✗ +2026-07-13 08:30:12,630 | INFO | Guitar 0.113 0.000 0.073 ✗ +2026-07-13 08:30:12,630 | INFO | → WINNER: Music (combined=0.580) +2026-07-13 08:30:12,655 | INFO | +[594.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,655 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,655 | INFO | Music 0.885 0.000 0.576 ✓ +2026-07-13 08:30:12,655 | INFO | Musical instrument 0.274 0.000 0.178 ✓ +2026-07-13 08:30:12,655 | INFO | Plucked string instrument 0.077 0.000 0.050 ✗ +2026-07-13 08:30:12,655 | INFO | Guitar 0.076 0.000 0.049 ✗ +2026-07-13 08:30:12,655 | INFO | Percussion 0.054 0.000 0.035 ✗ +2026-07-13 08:30:12,663 | INFO | Drum 0.053 0.000 0.034 ✗ +2026-07-13 08:30:12,663 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:12,689 | INFO | +[595.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,689 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,689 | INFO | Music 0.915 0.000 0.595 ✓ +2026-07-13 08:30:12,689 | INFO | Musical instrument 0.403 0.000 0.262 ✓ +2026-07-13 08:30:12,689 | INFO | Guitar 0.093 0.000 0.060 ✗ +2026-07-13 08:30:12,689 | INFO | Plucked string instrument 0.087 0.000 0.057 ✗ +2026-07-13 08:30:12,689 | INFO | Drum 0.055 0.000 0.036 ✗ +2026-07-13 08:30:12,689 | INFO | → WINNER: Music (combined=0.595) +2026-07-13 08:30:12,713 | INFO | +[595.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,713 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,713 | INFO | Music 0.909 0.000 0.591 ✓ +2026-07-13 08:30:12,713 | INFO | Musical instrument 0.393 0.000 0.256 ✓ +2026-07-13 08:30:12,713 | INFO | Drum 0.077 0.000 0.050 ✗ +2026-07-13 08:30:12,713 | INFO | Guitar 0.070 0.000 0.045 ✗ +2026-07-13 08:30:12,720 | INFO | Plucked string instrument 0.063 0.000 0.041 ✗ +2026-07-13 08:30:12,720 | INFO | Percussion 0.058 0.000 0.038 ✗ +2026-07-13 08:30:12,720 | INFO | → WINNER: Music (combined=0.591) +2026-07-13 08:30:12,745 | INFO | +[595.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,745 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,745 | INFO | Music 0.904 0.000 0.588 ✓ +2026-07-13 08:30:12,745 | INFO | Musical instrument 0.264 0.000 0.172 ✓ +2026-07-13 08:30:12,745 | INFO | Drum 0.087 0.000 0.056 ✗ +2026-07-13 08:30:12,745 | INFO | Wood block 0.082 0.000 0.053 ✗ +2026-07-13 08:30:12,745 | INFO | Percussion 0.077 0.000 0.050 ✗ +2026-07-13 08:30:12,745 | INFO | Plucked string instrument 0.052 0.000 0.034 ✗ +2026-07-13 08:30:12,745 | INFO | → WINNER: Music (combined=0.588) +2026-07-13 08:30:12,778 | INFO | +[595.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,778 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,778 | INFO | Music 0.896 0.000 0.583 ✓ +2026-07-13 08:30:12,778 | INFO | Musical instrument 0.286 0.000 0.186 ✓ +2026-07-13 08:30:12,778 | INFO | Guitar 0.083 0.000 0.054 ✗ +2026-07-13 08:30:12,778 | INFO | Wood block 0.083 0.000 0.054 ✗ +2026-07-13 08:30:12,778 | INFO | Plucked string instrument 0.081 0.000 0.052 ✗ +2026-07-13 08:30:12,778 | INFO | Percussion 0.079 0.000 0.051 ✗ +2026-07-13 08:30:12,778 | INFO | → WINNER: Music (combined=0.583) +2026-07-13 08:30:12,802 | INFO | +[595.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,802 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,802 | INFO | Music 0.893 0.000 0.580 ✓ +2026-07-13 08:30:12,802 | INFO | Musical instrument 0.254 0.000 0.165 ✓ +2026-07-13 08:30:12,810 | INFO | Plucked string instrument 0.081 0.000 0.053 ✗ +2026-07-13 08:30:12,811 | INFO | Guitar 0.081 0.000 0.052 ✗ +2026-07-13 08:30:12,811 | INFO | Percussion 0.072 0.000 0.047 ✗ +2026-07-13 08:30:12,811 | INFO | Wood block 0.070 0.000 0.045 ✗ +2026-07-13 08:30:12,811 | INFO | → WINNER: Music (combined=0.580) +2026-07-13 08:30:12,836 | INFO | +[596.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,836 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,836 | INFO | Music 0.871 0.000 0.566 ✓ +2026-07-13 08:30:12,836 | INFO | Musical instrument 0.335 0.000 0.217 ✓ +2026-07-13 08:30:12,836 | INFO | Plucked string instrument 0.147 0.000 0.096 ✗ +2026-07-13 08:30:12,836 | INFO | Guitar 0.109 0.000 0.071 ✗ +2026-07-13 08:30:12,836 | INFO | Middle Eastern music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:12,836 | INFO | Traditional music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:12,836 | INFO | → WINNER: Music (combined=0.566) +2026-07-13 08:30:12,860 | INFO | +[596.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,860 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,860 | INFO | Music 0.903 0.000 0.587 ✓ +2026-07-13 08:30:12,868 | INFO | Musical instrument 0.367 0.000 0.238 ✓ +2026-07-13 08:30:12,868 | INFO | Plucked string instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:12,869 | INFO | Guitar 0.145 0.000 0.094 ✗ +2026-07-13 08:30:12,869 | INFO | Strum 0.054 0.000 0.035 ✗ +2026-07-13 08:30:12,869 | INFO | → WINNER: Music (combined=0.587) +2026-07-13 08:30:12,893 | INFO | +[596.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,893 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,893 | INFO | Music 0.909 0.000 0.591 ✓ +2026-07-13 08:30:12,893 | INFO | Musical instrument 0.440 0.000 0.286 ✓ +2026-07-13 08:30:12,893 | INFO | Plucked string instrument 0.263 0.000 0.171 ✓ +2026-07-13 08:30:12,893 | INFO | Guitar 0.226 0.000 0.147 ✓ +2026-07-13 08:30:12,893 | INFO | Strum 0.070 0.000 0.045 ✗ +2026-07-13 08:30:12,893 | INFO | Acoustic guitar 0.068 0.000 0.044 ✗ +2026-07-13 08:30:12,900 | INFO | → WINNER: Music (combined=0.591) +2026-07-13 08:30:12,927 | INFO | +[596.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,927 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,927 | INFO | Music 0.900 0.000 0.585 ✓ +2026-07-13 08:30:12,927 | INFO | Musical instrument 0.368 0.000 0.239 ✓ +2026-07-13 08:30:12,927 | INFO | Plucked string instrument 0.185 0.000 0.120 ✓ +2026-07-13 08:30:12,927 | INFO | Guitar 0.138 0.000 0.090 ✗ +2026-07-13 08:30:12,927 | INFO | Sitar 0.052 0.000 0.034 ✗ +2026-07-13 08:30:12,927 | INFO | Tabla 0.031 0.000 0.020 ✗ +2026-07-13 08:30:12,927 | INFO | → WINNER: Music (combined=0.585) +2026-07-13 08:30:12,950 | INFO | +[596.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,958 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,958 | INFO | Music 0.906 0.000 0.589 ✓ +2026-07-13 08:30:12,958 | INFO | Musical instrument 0.411 0.000 0.267 ✓ +2026-07-13 08:30:12,958 | INFO | Guitar 0.285 0.000 0.185 ✓ +2026-07-13 08:30:12,958 | INFO | Plucked string instrument 0.277 0.000 0.180 ✓ +2026-07-13 08:30:12,958 | INFO | Strum 0.081 0.000 0.053 ✗ +2026-07-13 08:30:12,958 | INFO | Acoustic guitar 0.080 0.000 0.052 ✗ +2026-07-13 08:30:12,958 | INFO | → WINNER: Music (combined=0.589) +2026-07-13 08:30:12,982 | INFO | +[597.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:12,982 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:12,982 | INFO | Music 0.920 0.000 0.598 ✓ +2026-07-13 08:30:12,982 | INFO | Musical instrument 0.379 0.000 0.247 ✓ +2026-07-13 08:30:12,982 | INFO | Plucked string instrument 0.206 0.000 0.134 ✓ +2026-07-13 08:30:12,982 | INFO | Guitar 0.189 0.000 0.123 ✓ +2026-07-13 08:30:12,982 | INFO | → WINNER: Music (combined=0.598) +2026-07-13 08:30:13,012 | INFO | +[597.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,012 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,012 | INFO | Music 0.932 0.000 0.606 ✓ +2026-07-13 08:30:13,012 | INFO | Musical instrument 0.259 0.000 0.169 ✓ +2026-07-13 08:30:13,015 | INFO | Guitar 0.108 0.000 0.070 ✗ +2026-07-13 08:30:13,015 | INFO | Plucked string instrument 0.102 0.000 0.066 ✗ +2026-07-13 08:30:13,015 | INFO | → WINNER: Music (combined=0.606) +2026-07-13 08:30:13,039 | INFO | +[597.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,039 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,039 | INFO | Music 0.885 0.000 0.576 ✓ +2026-07-13 08:30:13,039 | INFO | Musical instrument 0.497 0.000 0.323 ✓ +2026-07-13 08:30:13,039 | INFO | Plucked string instrument 0.343 0.000 0.223 ✓ +2026-07-13 08:30:13,039 | INFO | Guitar 0.305 0.000 0.198 ✓ +2026-07-13 08:30:13,039 | INFO | Acoustic guitar 0.067 0.000 0.044 ✗ +2026-07-13 08:30:13,039 | INFO | Strum 0.067 0.000 0.043 ✗ +2026-07-13 08:30:13,039 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:13,065 | INFO | +[597.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,072 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,072 | INFO | Music 0.894 0.000 0.581 ✓ +2026-07-13 08:30:13,072 | INFO | Musical instrument 0.341 0.000 0.222 ✓ +2026-07-13 08:30:13,072 | INFO | Plucked string instrument 0.133 0.000 0.086 ✗ +2026-07-13 08:30:13,072 | INFO | Guitar 0.123 0.000 0.080 ✗ +2026-07-13 08:30:13,074 | INFO | → WINNER: Music (combined=0.581) +2026-07-13 08:30:13,098 | INFO | +[597.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,098 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,100 | INFO | Music 0.863 0.000 0.561 ✓ +2026-07-13 08:30:13,100 | INFO | Musical instrument 0.385 0.000 0.250 ✓ +2026-07-13 08:30:13,100 | INFO | Plucked string instrument 0.253 0.000 0.164 ✓ +2026-07-13 08:30:13,100 | INFO | Guitar 0.183 0.000 0.119 ✗ +2026-07-13 08:30:13,100 | INFO | Banjo 0.061 0.000 0.040 ✗ +2026-07-13 08:30:13,100 | INFO | Sitar 0.033 0.000 0.021 ✗ +2026-07-13 08:30:13,100 | INFO | → WINNER: Music (combined=0.561) +2026-07-13 08:30:13,122 | INFO | +[598.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,122 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,122 | INFO | Music 0.833 0.000 0.541 ✓ +2026-07-13 08:30:13,122 | INFO | Musical instrument 0.329 0.000 0.214 ✓ +2026-07-13 08:30:13,122 | INFO | Plucked string instrument 0.221 0.000 0.144 ✓ +2026-07-13 08:30:13,122 | INFO | Guitar 0.172 0.000 0.112 ✗ +2026-07-13 08:30:13,122 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:13,155 | INFO | +[598.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,155 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,155 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:30:13,155 | INFO | Musical instrument 0.245 0.000 0.159 ✓ +2026-07-13 08:30:13,155 | INFO | Plucked string instrument 0.129 0.000 0.084 ✗ +2026-07-13 08:30:13,155 | INFO | Guitar 0.102 0.000 0.066 ✗ +2026-07-13 08:30:13,155 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:13,180 | INFO | +[598.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,180 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,180 | INFO | Music 0.815 0.000 0.529 ✓ +2026-07-13 08:30:13,180 | INFO | Musical instrument 0.297 0.000 0.193 ✓ +2026-07-13 08:30:13,180 | INFO | Plucked string instrument 0.172 0.000 0.112 ✗ +2026-07-13 08:30:13,180 | INFO | Guitar 0.144 0.000 0.093 ✗ +2026-07-13 08:30:13,180 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:13,205 | INFO | +[598.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,205 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,212 | INFO | Music 0.839 0.000 0.545 ✓ +2026-07-13 08:30:13,212 | INFO | Musical instrument 0.376 0.000 0.245 ✓ +2026-07-13 08:30:13,212 | INFO | Plucked string instrument 0.273 0.000 0.177 ✓ +2026-07-13 08:30:13,213 | INFO | Guitar 0.207 0.000 0.135 ✓ +2026-07-13 08:30:13,213 | INFO | Banjo 0.098 0.000 0.063 ✗ +2026-07-13 08:30:13,213 | INFO | Bluegrass 0.081 0.000 0.052 ✗ +2026-07-13 08:30:13,213 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:13,237 | INFO | +[598.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,237 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,237 | INFO | Music 0.874 0.000 0.568 ✓ +2026-07-13 08:30:13,237 | INFO | Musical instrument 0.401 0.000 0.261 ✓ +2026-07-13 08:30:13,237 | INFO | Plucked string instrument 0.276 0.000 0.180 ✓ +2026-07-13 08:30:13,237 | INFO | Guitar 0.233 0.000 0.152 ✓ +2026-07-13 08:30:13,237 | INFO | Strum 0.061 0.000 0.040 ✗ +2026-07-13 08:30:13,237 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:13,262 | INFO | +[599.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,262 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,262 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:13,262 | INFO | Musical instrument 0.386 0.000 0.251 ✓ +2026-07-13 08:30:13,262 | INFO | Plucked string instrument 0.276 0.000 0.179 ✓ +2026-07-13 08:30:13,270 | INFO | Guitar 0.246 0.000 0.160 ✓ +2026-07-13 08:30:13,270 | INFO | Country 0.077 0.000 0.050 ✗ +2026-07-13 08:30:13,270 | INFO | Strum 0.066 0.000 0.043 ✗ +2026-07-13 08:30:13,270 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:13,295 | INFO | +[599.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,295 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,295 | INFO | Music 0.797 0.000 0.518 ✓ +2026-07-13 08:30:13,295 | INFO | Musical instrument 0.580 0.000 0.377 ✓ +2026-07-13 08:30:13,295 | INFO | Plucked string instrument 0.480 0.000 0.312 ✓ +2026-07-13 08:30:13,295 | INFO | Guitar 0.465 0.000 0.302 ✓ +2026-07-13 08:30:13,300 | INFO | Acoustic guitar 0.108 0.000 0.070 ✗ +2026-07-13 08:30:13,300 | INFO | Strum 0.101 0.000 0.066 ✗ +2026-07-13 08:30:13,300 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:13,327 | INFO | +[599.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,327 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,327 | INFO | Music 0.834 0.000 0.542 ✓ +2026-07-13 08:30:13,327 | INFO | Musical instrument 0.632 0.000 0.411 ✓ +2026-07-13 08:30:13,327 | INFO | Plucked string instrument 0.511 0.000 0.332 ✓ +2026-07-13 08:30:13,327 | INFO | Sitar 0.346 0.000 0.225 ✓ +2026-07-13 08:30:13,327 | INFO | Guitar 0.285 0.000 0.185 ✓ +2026-07-13 08:30:13,327 | INFO | Carnatic music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:13,327 | INFO | → WINNER: Music (combined=0.542) +2026-07-13 08:30:13,352 | INFO | +[599.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,352 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,352 | INFO | Music 0.772 0.000 0.501 ✓ +2026-07-13 08:30:13,352 | INFO | Sitar 0.584 0.000 0.380 ✓ +2026-07-13 08:30:13,352 | INFO | Musical instrument 0.538 0.000 0.350 ✓ +2026-07-13 08:30:13,352 | INFO | Plucked string instrument 0.385 0.000 0.250 ✓ +2026-07-13 08:30:13,352 | INFO | Carnatic music 0.320 0.000 0.208 ✓ +2026-07-13 08:30:13,352 | INFO | Classical music 0.159 0.000 0.103 ✗ +2026-07-13 08:30:13,352 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:13,385 | INFO | +[599.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,387 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,387 | INFO | Music 0.736 0.000 0.478 ✓ +2026-07-13 08:30:13,387 | INFO | Musical instrument 0.548 0.000 0.356 ✓ +2026-07-13 08:30:13,387 | INFO | Plucked string instrument 0.454 0.000 0.295 ✓ +2026-07-13 08:30:13,387 | INFO | Guitar 0.256 0.000 0.167 ✓ +2026-07-13 08:30:13,387 | INFO | Sitar 0.186 0.000 0.121 ✓ +2026-07-13 08:30:13,387 | INFO | Carnatic music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:13,387 | INFO | → WINNER: Music (combined=0.478) +2026-07-13 08:30:13,410 | INFO | +[600.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,410 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,410 | INFO | Music 0.901 0.000 0.586 ✓ +2026-07-13 08:30:13,410 | INFO | Musical instrument 0.789 0.000 0.513 ✓ +2026-07-13 08:30:13,410 | INFO | Plucked string instrument 0.681 0.000 0.442 ✓ +2026-07-13 08:30:13,410 | INFO | Guitar 0.407 0.000 0.265 ✓ +2026-07-13 08:30:13,410 | INFO | Sitar 0.374 0.000 0.243 ✓ +2026-07-13 08:30:13,410 | INFO | Carnatic music 0.265 0.000 0.172 ✓ +2026-07-13 08:30:13,410 | INFO | → WINNER: Music (combined=0.586) +2026-07-13 08:30:13,443 | INFO | +[602.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,445 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,446 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:13,446 | INFO | Musical instrument 0.464 0.000 0.301 ✓ +2026-07-13 08:30:13,446 | INFO | Carnatic music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:13,446 | INFO | Traditional music 0.136 0.000 0.088 ✗ +2026-07-13 08:30:13,446 | INFO | Middle Eastern music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:13,446 | INFO | Folk music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:13,446 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:13,476 | INFO | +[602.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,476 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,476 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:30:13,476 | INFO | Musical instrument 0.480 0.000 0.312 ✓ +2026-07-13 08:30:13,476 | INFO | Plucked string instrument 0.187 0.000 0.122 ✓ +2026-07-13 08:30:13,476 | INFO | Guitar 0.127 0.000 0.082 ✗ +2026-07-13 08:30:13,476 | INFO | Traditional music 0.121 0.000 0.078 ✗ +2026-07-13 08:30:13,476 | INFO | Folk music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:13,476 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:13,500 | INFO | +[603.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,500 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,500 | INFO | Music 0.768 0.000 0.499 ✓ +2026-07-13 08:30:13,500 | INFO | Sitar 0.387 0.000 0.252 ✓ +2026-07-13 08:30:13,500 | INFO | Musical instrument 0.350 0.000 0.228 ✓ +2026-07-13 08:30:13,500 | INFO | Carnatic music 0.228 0.000 0.148 ✓ +2026-07-13 08:30:13,500 | INFO | Plucked string instrument 0.153 0.000 0.099 ✗ +2026-07-13 08:30:13,500 | INFO | Tabla 0.106 0.000 0.069 ✗ +2026-07-13 08:30:13,500 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:13,534 | INFO | +[603.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,534 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,534 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:13,534 | INFO | Sitar 0.748 0.000 0.486 ✓ +2026-07-13 08:30:13,536 | INFO | Musical instrument 0.442 0.000 0.287 ✓ +2026-07-13 08:30:13,536 | INFO | Carnatic music 0.314 0.000 0.204 ✓ +2026-07-13 08:30:13,536 | INFO | Plucked string instrument 0.271 0.000 0.176 ✓ +2026-07-13 08:30:13,536 | INFO | Tabla 0.181 0.000 0.118 ✗ +2026-07-13 08:30:13,536 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:13,558 | INFO | +[603.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,558 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,558 | INFO | Music 0.756 0.000 0.491 ✓ +2026-07-13 08:30:13,558 | INFO | Musical instrument 0.363 0.000 0.236 ✓ +2026-07-13 08:30:13,558 | INFO | Plucked string instrument 0.229 0.000 0.149 ✓ +2026-07-13 08:30:13,558 | INFO | Sitar 0.147 0.000 0.096 ✗ +2026-07-13 08:30:13,558 | INFO | Guitar 0.125 0.000 0.081 ✗ +2026-07-13 08:30:13,558 | INFO | Carnatic music 0.072 0.000 0.046 ✗ +2026-07-13 08:30:13,558 | INFO | → WINNER: Music (combined=0.491) +2026-07-13 08:30:13,592 | INFO | +[603.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,592 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,592 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:30:13,592 | INFO | Sitar 0.775 0.000 0.504 ✓ +2026-07-13 08:30:13,592 | INFO | Musical instrument 0.514 0.000 0.334 ✓ +2026-07-13 08:30:13,592 | INFO | Plucked string instrument 0.345 0.000 0.224 ✓ +2026-07-13 08:30:13,592 | INFO | Carnatic music 0.186 0.000 0.121 ✓ +2026-07-13 08:30:13,592 | INFO | Classical music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:13,592 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:13,616 | INFO | +[603.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,616 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,616 | INFO | Music 0.864 0.000 0.561 ✓ +2026-07-13 08:30:13,616 | INFO | Musical instrument 0.609 0.000 0.396 ✓ +2026-07-13 08:30:13,616 | INFO | Plucked string instrument 0.446 0.000 0.290 ✓ +2026-07-13 08:30:13,616 | INFO | Guitar 0.287 0.000 0.186 ✓ +2026-07-13 08:30:13,616 | INFO | Sitar 0.247 0.000 0.161 ✓ +2026-07-13 08:30:13,616 | INFO | Carnatic music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:13,624 | INFO | → WINNER: Music (combined=0.561) +2026-07-13 08:30:13,648 | INFO | +[604.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,648 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,648 | INFO | Music 0.874 0.000 0.568 ✓ +2026-07-13 08:30:13,648 | INFO | Musical instrument 0.524 0.000 0.341 ✓ +2026-07-13 08:30:13,648 | INFO | Plucked string instrument 0.282 0.000 0.183 ✓ +2026-07-13 08:30:13,648 | INFO | Guitar 0.280 0.000 0.182 ✓ +2026-07-13 08:30:13,648 | INFO | Acoustic guitar 0.063 0.000 0.041 ✗ +2026-07-13 08:30:13,648 | INFO | Strum 0.057 0.000 0.037 ✗ +2026-07-13 08:30:13,648 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:13,673 | INFO | +[604.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,673 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,673 | INFO | Music 0.889 0.000 0.578 ✓ +2026-07-13 08:30:13,673 | INFO | Musical instrument 0.553 0.000 0.359 ✓ +2026-07-13 08:30:13,673 | INFO | Plucked string instrument 0.341 0.000 0.221 ✓ +2026-07-13 08:30:13,673 | INFO | Guitar 0.301 0.000 0.196 ✓ +2026-07-13 08:30:13,673 | INFO | Acoustic guitar 0.073 0.000 0.048 ✗ +2026-07-13 08:30:13,673 | INFO | Strum 0.071 0.000 0.046 ✗ +2026-07-13 08:30:13,673 | INFO | → WINNER: Music (combined=0.578) +2026-07-13 08:30:13,706 | INFO | +[604.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,706 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,706 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:13,706 | INFO | Musical instrument 0.626 0.000 0.407 ✓ +2026-07-13 08:30:13,706 | INFO | Plucked string instrument 0.513 0.000 0.334 ✓ +2026-07-13 08:30:13,706 | INFO | Guitar 0.505 0.000 0.328 ✓ +2026-07-13 08:30:13,706 | INFO | Strum 0.154 0.000 0.100 ✗ +2026-07-13 08:30:13,706 | INFO | Electric guitar 0.137 0.000 0.089 ✗ +2026-07-13 08:30:13,706 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:13,730 | INFO | +[604.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,730 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,730 | INFO | Music 0.773 0.000 0.503 ✓ +2026-07-13 08:30:13,730 | INFO | Musical instrument 0.259 0.000 0.168 ✓ +2026-07-13 08:30:13,730 | INFO | Plucked string instrument 0.128 0.000 0.083 ✗ +2026-07-13 08:30:13,730 | INFO | Guitar 0.120 0.000 0.078 ✗ +2026-07-13 08:30:13,730 | INFO | → WINNER: Music (combined=0.503) +2026-07-13 08:30:13,764 | INFO | +[604.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-07-13 08:30:13,799 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,799 | INFO | Music 0.824 0.000 0.536 ✓ +2026-07-13 08:30:13,799 | INFO | Musical instrument 0.402 0.000 0.261 ✓ +2026-07-13 08:30:13,799 | INFO | Plucked string instrument 0.226 0.000 0.147 ✓ +2026-07-13 08:30:13,801 | INFO | Guitar 0.169 0.000 0.110 ✗ +2026-07-13 08:30:13,801 | INFO | Singing 0.091 0.000 0.059 ✗ +2026-07-13 08:30:13,801 | INFO | Carnatic music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:13,801 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:13,822 | INFO | +[605.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:13,830 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,830 | INFO | Music 0.701 0.000 0.456 ✓ +2026-07-13 08:30:13,830 | INFO | Musical instrument 0.275 0.000 0.179 ✓ +2026-07-13 08:30:13,830 | INFO | Tabla 0.199 0.000 0.129 ✓ +2026-07-13 08:30:13,830 | INFO | Carnatic music 0.187 0.000 0.121 ✓ +2026-07-13 08:30:13,830 | INFO | Classical music 0.084 0.000 0.055 ✗ +2026-07-13 08:30:13,830 | INFO | Percussion 0.070 0.000 0.045 ✗ +2026-07-13 08:30:13,830 | INFO | → WINNER: Music (combined=0.456) +2026-07-13 08:30:13,863 | INFO | +[605.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:13,863 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,863 | INFO | Music 0.777 0.000 0.505 ✓ +2026-07-13 08:30:13,863 | INFO | Carnatic music 0.495 0.000 0.322 ✓ +2026-07-13 08:30:13,863 | INFO | Musical instrument 0.459 0.000 0.298 ✓ +2026-07-13 08:30:13,863 | INFO | Tabla 0.297 0.000 0.193 ✓ +2026-07-13 08:30:13,863 | INFO | Sitar 0.297 0.000 0.193 ✓ +2026-07-13 08:30:13,863 | INFO | Classical music 0.256 0.000 0.166 ✓ +2026-07-13 08:30:13,863 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:13,919 | INFO | +[605.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:13,919 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,919 | INFO | Music 0.806 0.000 0.524 ✓ +2026-07-13 08:30:13,919 | INFO | Sitar 0.683 0.000 0.444 ✓ +2026-07-13 08:30:13,919 | INFO | Musical instrument 0.660 0.000 0.429 ✓ +2026-07-13 08:30:13,919 | INFO | Classical music 0.595 0.000 0.387 ✓ +2026-07-13 08:30:13,919 | INFO | Carnatic music 0.532 0.000 0.346 ✓ +2026-07-13 08:30:13,919 | INFO | Plucked string instrument 0.353 0.000 0.230 ✓ +2026-07-13 08:30:13,919 | INFO | → WINNER: Music (combined=0.524) +2026-07-13 08:30:13,979 | INFO | +[605.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:13,979 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:13,979 | INFO | Music 0.789 0.000 0.513 ✓ +2026-07-13 08:30:13,979 | INFO | Sitar 0.781 0.000 0.508 ✓ +2026-07-13 08:30:13,979 | INFO | Musical instrument 0.651 0.000 0.423 ✓ +2026-07-13 08:30:13,979 | INFO | Carnatic music 0.517 0.000 0.336 ✓ +2026-07-13 08:30:13,979 | INFO | Classical music 0.458 0.000 0.297 ✓ +2026-07-13 08:30:13,979 | INFO | Plucked string instrument 0.380 0.000 0.247 ✓ +2026-07-13 08:30:13,979 | INFO | → WINNER: Music (combined=0.513) +2026-07-13 08:30:14,037 | INFO | +[605.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,037 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,037 | INFO | Music 0.796 0.000 0.517 ✓ +2026-07-13 08:30:14,037 | INFO | Sitar 0.759 0.000 0.493 ✓ +2026-07-13 08:30:14,037 | INFO | Musical instrument 0.605 0.000 0.393 ✓ +2026-07-13 08:30:14,037 | INFO | Carnatic music 0.471 0.000 0.306 ✓ +2026-07-13 08:30:14,037 | INFO | Classical music 0.455 0.000 0.296 ✓ +2026-07-13 08:30:14,037 | INFO | Bowed string instrument 0.350 0.000 0.228 ✓ +2026-07-13 08:30:14,037 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:14,078 | INFO | +[606.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,078 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,078 | INFO | Music 0.709 0.000 0.461 ✓ +2026-07-13 08:30:14,078 | INFO | Musical instrument 0.598 0.000 0.389 ✓ +2026-07-13 08:30:14,078 | INFO | Carnatic music 0.353 0.000 0.230 ✓ +2026-07-13 08:30:14,078 | INFO | Classical music 0.298 0.000 0.194 ✓ +2026-07-13 08:30:14,078 | INFO | Bowed string instrument 0.291 0.000 0.189 ✓ +2026-07-13 08:30:14,078 | INFO | Tabla 0.192 0.000 0.124 ✓ +2026-07-13 08:30:14,078 | INFO | → WINNER: Music (combined=0.461) +2026-07-13 08:30:14,102 | INFO | +[606.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,102 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,102 | INFO | Music 0.775 0.000 0.504 ✓ +2026-07-13 08:30:14,102 | INFO | Musical instrument 0.651 0.000 0.423 ✓ +2026-07-13 08:30:14,102 | INFO | Carnatic music 0.303 0.000 0.197 ✓ +2026-07-13 08:30:14,102 | INFO | Plucked string instrument 0.271 0.000 0.176 ✓ +2026-07-13 08:30:14,111 | INFO | Classical music 0.152 0.000 0.099 ✗ +2026-07-13 08:30:14,111 | INFO | Tabla 0.148 0.000 0.096 ✗ +2026-07-13 08:30:14,111 | INFO | → WINNER: Music (combined=0.504) +2026-07-13 08:30:14,135 | INFO | +[606.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,135 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,135 | INFO | Music 0.787 0.000 0.512 ✓ +2026-07-13 08:30:14,135 | INFO | Musical instrument 0.595 0.000 0.387 ✓ +2026-07-13 08:30:14,135 | INFO | Plucked string instrument 0.248 0.000 0.161 ✓ +2026-07-13 08:30:14,135 | INFO | Carnatic music 0.194 0.000 0.126 ✓ +2026-07-13 08:30:14,135 | INFO | Tabla 0.162 0.000 0.105 ✗ +2026-07-13 08:30:14,135 | INFO | Guitar 0.138 0.000 0.089 ✗ +2026-07-13 08:30:14,135 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:14,160 | INFO | +[606.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,160 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,160 | INFO | Music 0.855 0.000 0.556 ✓ +2026-07-13 08:30:14,160 | INFO | Musical instrument 0.645 0.000 0.419 ✓ +2026-07-13 08:30:14,167 | INFO | Plucked string instrument 0.443 0.000 0.288 ✓ +2026-07-13 08:30:14,167 | INFO | Guitar 0.295 0.000 0.192 ✓ +2026-07-13 08:30:14,168 | INFO | Sitar 0.162 0.000 0.105 ✗ +2026-07-13 08:30:14,168 | INFO | Tabla 0.153 0.000 0.100 ✗ +2026-07-13 08:30:14,168 | INFO | → WINNER: Music (combined=0.556) +2026-07-13 08:30:14,194 | INFO | +[606.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,194 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,194 | INFO | Music 0.816 0.000 0.530 ✓ +2026-07-13 08:30:14,194 | INFO | Sitar 0.627 0.000 0.408 ✓ +2026-07-13 08:30:14,194 | INFO | Musical instrument 0.539 0.000 0.350 ✓ +2026-07-13 08:30:14,194 | INFO | Plucked string instrument 0.408 0.000 0.265 ✓ +2026-07-13 08:30:14,194 | INFO | Tabla 0.250 0.000 0.163 ✓ +2026-07-13 08:30:14,194 | INFO | Carnatic music 0.176 0.000 0.114 ✗ +2026-07-13 08:30:14,194 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:14,219 | INFO | +[607.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,219 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,219 | INFO | Music 0.788 0.000 0.512 ✓ +2026-07-13 08:30:14,219 | INFO | Sitar 0.680 0.000 0.442 ✓ +2026-07-13 08:30:14,226 | INFO | Musical instrument 0.480 0.000 0.312 ✓ +2026-07-13 08:30:14,227 | INFO | Plucked string instrument 0.368 0.000 0.239 ✓ +2026-07-13 08:30:14,227 | INFO | Tabla 0.214 0.000 0.139 ✓ +2026-07-13 08:30:14,227 | INFO | Carnatic music 0.135 0.000 0.088 ✗ +2026-07-13 08:30:14,227 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:14,252 | INFO | +[607.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,252 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,252 | INFO | Music 0.853 0.000 0.555 ✓ +2026-07-13 08:30:14,252 | INFO | Musical instrument 0.566 0.000 0.368 ✓ +2026-07-13 08:30:14,252 | INFO | Plucked string instrument 0.471 0.000 0.306 ✓ +2026-07-13 08:30:14,252 | INFO | Sitar 0.350 0.000 0.228 ✓ +2026-07-13 08:30:14,252 | INFO | Guitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:14,252 | INFO | Carnatic music 0.109 0.000 0.071 ✗ +2026-07-13 08:30:14,252 | INFO | → WINNER: Music (combined=0.555) +2026-07-13 08:30:14,283 | INFO | +[607.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,284 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,284 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:14,285 | INFO | Musical instrument 0.546 0.000 0.355 ✓ +2026-07-13 08:30:14,285 | INFO | Plucked string instrument 0.438 0.000 0.285 ✓ +2026-07-13 08:30:14,285 | INFO | Sitar 0.367 0.000 0.238 ✓ +2026-07-13 08:30:14,285 | INFO | Guitar 0.144 0.000 0.093 ✗ +2026-07-13 08:30:14,285 | INFO | Carnatic music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:14,285 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:14,309 | INFO | +[607.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,309 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,309 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:14,309 | INFO | Musical instrument 0.552 0.000 0.359 ✓ +2026-07-13 08:30:14,309 | INFO | Plucked string instrument 0.397 0.000 0.258 ✓ +2026-07-13 08:30:14,309 | INFO | Guitar 0.185 0.000 0.120 ✓ +2026-07-13 08:30:14,309 | INFO | Sitar 0.150 0.000 0.098 ✗ +2026-07-13 08:30:14,309 | INFO | Ukulele 0.134 0.000 0.087 ✗ +2026-07-13 08:30:14,309 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:14,342 | INFO | +[607.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,343 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,343 | INFO | Music 0.877 0.000 0.570 ✓ +2026-07-13 08:30:14,343 | INFO | Musical instrument 0.591 0.000 0.384 ✓ +2026-07-13 08:30:14,343 | INFO | Plucked string instrument 0.484 0.000 0.314 ✓ +2026-07-13 08:30:14,343 | INFO | Guitar 0.238 0.000 0.155 ✓ +2026-07-13 08:30:14,343 | INFO | Sitar 0.191 0.000 0.124 ✓ +2026-07-13 08:30:14,343 | INFO | Carnatic music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:14,343 | INFO | → WINNER: Music (combined=0.570) +2026-07-13 08:30:14,371 | INFO | +[608.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,371 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,371 | INFO | Music 0.864 0.000 0.562 ✓ +2026-07-13 08:30:14,373 | INFO | Musical instrument 0.698 0.000 0.454 ✓ +2026-07-13 08:30:14,373 | INFO | Carnatic music 0.523 0.000 0.340 ✓ +2026-07-13 08:30:14,373 | INFO | Plucked string instrument 0.488 0.000 0.317 ✓ +2026-07-13 08:30:14,373 | INFO | Sitar 0.486 0.000 0.316 ✓ +2026-07-13 08:30:14,373 | INFO | Classical music 0.344 0.000 0.224 ✓ +2026-07-13 08:30:14,373 | INFO | → WINNER: Music (combined=0.562) +2026-07-13 08:30:14,400 | INFO | +[608.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,402 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,402 | INFO | Music 0.797 0.000 0.518 ✓ +2026-07-13 08:30:14,402 | INFO | Musical instrument 0.628 0.000 0.408 ✓ +2026-07-13 08:30:14,402 | INFO | Carnatic music 0.513 0.000 0.333 ✓ +2026-07-13 08:30:14,402 | INFO | Classical music 0.411 0.000 0.267 ✓ +2026-07-13 08:30:14,402 | INFO | Sitar 0.383 0.000 0.249 ✓ +2026-07-13 08:30:14,402 | INFO | Tabla 0.311 0.000 0.202 ✓ +2026-07-13 08:30:14,402 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:14,434 | INFO | +[608.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,436 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,436 | INFO | Music 0.853 0.000 0.554 ✓ +2026-07-13 08:30:14,436 | INFO | Musical instrument 0.670 0.000 0.435 ✓ +2026-07-13 08:30:14,437 | INFO | Carnatic music 0.406 0.000 0.264 ✓ +2026-07-13 08:30:14,437 | INFO | Plucked string instrument 0.337 0.000 0.219 ✓ +2026-07-13 08:30:14,437 | INFO | Classical music 0.230 0.000 0.150 ✓ +2026-07-13 08:30:14,437 | INFO | Sitar 0.187 0.000 0.122 ✓ +2026-07-13 08:30:14,437 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:14,492 | INFO | +[608.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,492 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,492 | INFO | Music 0.898 0.000 0.584 ✓ +2026-07-13 08:30:14,492 | INFO | Musical instrument 0.716 0.000 0.466 ✓ +2026-07-13 08:30:14,492 | INFO | Plucked string instrument 0.412 0.000 0.268 ✓ +2026-07-13 08:30:14,492 | INFO | Guitar 0.283 0.000 0.184 ✓ +2026-07-13 08:30:14,492 | INFO | Carnatic music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:14,492 | INFO | Traditional music 0.073 0.000 0.047 ✗ +2026-07-13 08:30:14,492 | INFO | → WINNER: Music (combined=0.584) +2026-07-13 08:30:14,548 | INFO | +[608.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,548 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,548 | INFO | Music 0.890 0.000 0.578 ✓ +2026-07-13 08:30:14,548 | INFO | Musical instrument 0.782 0.000 0.508 ✓ +2026-07-13 08:30:14,548 | INFO | Plucked string instrument 0.729 0.000 0.474 ✓ +2026-07-13 08:30:14,548 | INFO | Guitar 0.707 0.000 0.459 ✓ +2026-07-13 08:30:14,548 | INFO | Acoustic guitar 0.244 0.000 0.159 ✓ +2026-07-13 08:30:14,548 | INFO | Strum 0.220 0.000 0.143 ✓ +2026-07-13 08:30:14,548 | INFO | → WINNER: Music (combined=0.578) +2026-07-13 08:30:14,602 | INFO | +[609.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,602 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,602 | INFO | Music 0.889 0.000 0.578 ✓ +2026-07-13 08:30:14,602 | INFO | Musical instrument 0.724 0.000 0.471 ✓ +2026-07-13 08:30:14,602 | INFO | Plucked string instrument 0.647 0.000 0.421 ✓ +2026-07-13 08:30:14,602 | INFO | Guitar 0.621 0.000 0.403 ✓ +2026-07-13 08:30:14,602 | INFO | Electric guitar 0.207 0.000 0.135 ✓ +2026-07-13 08:30:14,606 | INFO | Strum 0.184 0.000 0.119 ✗ +2026-07-13 08:30:14,606 | INFO | → WINNER: Music (combined=0.578) +2026-07-13 08:30:14,656 | INFO | +[609.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,656 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,656 | INFO | Music 0.799 0.000 0.520 ✓ +2026-07-13 08:30:14,656 | INFO | Musical instrument 0.420 0.000 0.273 ✓ +2026-07-13 08:30:14,656 | INFO | Sitar 0.418 0.000 0.272 ✓ +2026-07-13 08:30:14,656 | INFO | Plucked string instrument 0.279 0.000 0.181 ✓ +2026-07-13 08:30:14,656 | INFO | Carnatic music 0.161 0.000 0.105 ✗ +2026-07-13 08:30:14,656 | INFO | Guitar 0.113 0.000 0.073 ✗ +2026-07-13 08:30:14,656 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:14,688 | INFO | +[609.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,688 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,688 | INFO | Music 0.799 0.000 0.519 ✓ +2026-07-13 08:30:14,688 | INFO | Musical instrument 0.484 0.000 0.315 ✓ +2026-07-13 08:30:14,688 | INFO | Plucked string instrument 0.324 0.000 0.210 ✓ +2026-07-13 08:30:14,688 | INFO | Sitar 0.280 0.000 0.182 ✓ +2026-07-13 08:30:14,688 | INFO | Guitar 0.165 0.000 0.107 ✗ +2026-07-13 08:30:14,688 | INFO | Carnatic music 0.118 0.000 0.077 ✗ +2026-07-13 08:30:14,688 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:14,714 | INFO | +[609.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,714 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,714 | INFO | Music 0.800 0.000 0.520 ✓ +2026-07-13 08:30:14,714 | INFO | Musical instrument 0.461 0.000 0.299 ✓ +2026-07-13 08:30:14,714 | INFO | Sitar 0.407 0.000 0.265 ✓ +2026-07-13 08:30:14,714 | INFO | Plucked string instrument 0.346 0.000 0.225 ✓ +2026-07-13 08:30:14,721 | INFO | Mandolin 0.118 0.000 0.077 ✗ +2026-07-13 08:30:14,721 | INFO | Guitar 0.117 0.000 0.076 ✗ +2026-07-13 08:30:14,721 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:14,745 | INFO | +[609.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,745 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,745 | INFO | Music 0.799 0.000 0.520 ✓ +2026-07-13 08:30:14,745 | INFO | Musical instrument 0.604 0.000 0.392 ✓ +2026-07-13 08:30:14,745 | INFO | Sitar 0.513 0.000 0.333 ✓ +2026-07-13 08:30:14,745 | INFO | Plucked string instrument 0.479 0.000 0.311 ✓ +2026-07-13 08:30:14,745 | INFO | Guitar 0.167 0.000 0.108 ✗ +2026-07-13 08:30:14,745 | INFO | Carnatic music 0.156 0.000 0.101 ✗ +2026-07-13 08:30:14,745 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:14,770 | INFO | +[610.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-07-13 08:30:14,770 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,778 | INFO | Music 0.801 0.000 0.521 ✓ +2026-07-13 08:30:14,778 | INFO | Musical instrument 0.526 0.000 0.342 ✓ +2026-07-13 08:30:14,778 | INFO | Plucked string instrument 0.404 0.000 0.263 ✓ +2026-07-13 08:30:14,779 | INFO | Sitar 0.362 0.000 0.235 ✓ +2026-07-13 08:30:14,779 | INFO | Guitar 0.177 0.000 0.115 ✗ +2026-07-13 08:30:14,779 | INFO | Banjo 0.129 0.000 0.084 ✗ +2026-07-13 08:30:14,779 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:30:14,804 | INFO | +[615.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:14,804 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,804 | INFO | Music 0.725 0.000 0.471 ✓ +2026-07-13 08:30:14,804 | INFO | Musical instrument 0.432 0.000 0.281 ✓ +2026-07-13 08:30:14,804 | INFO | Sitar 0.378 0.000 0.246 ✓ +2026-07-13 08:30:14,804 | INFO | Plucked string instrument 0.182 0.000 0.118 ✗ +2026-07-13 08:30:14,804 | INFO | Carnatic music 0.147 0.000 0.096 ✗ +2026-07-13 08:30:14,804 | INFO | Classical music 0.133 0.000 0.087 ✗ +2026-07-13 08:30:14,804 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:14,836 | INFO | +[615.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:14,836 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,836 | INFO | Music 0.758 0.000 0.493 ✓ +2026-07-13 08:30:14,836 | INFO | Sitar 0.496 0.000 0.322 ✓ +2026-07-13 08:30:14,836 | INFO | Musical instrument 0.392 0.000 0.255 ✓ +2026-07-13 08:30:14,836 | INFO | Plucked string instrument 0.227 0.000 0.148 ✓ +2026-07-13 08:30:14,836 | INFO | Traditional music 0.124 0.000 0.081 ✗ +2026-07-13 08:30:14,836 | INFO | Bowed string instrument 0.113 0.000 0.073 ✗ +2026-07-13 08:30:14,836 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:14,886 | INFO | +[616.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:14,886 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,886 | INFO | Music 0.831 0.000 0.540 ✓ +2026-07-13 08:30:14,886 | INFO | Musical instrument 0.575 0.000 0.374 ✓ +2026-07-13 08:30:14,886 | INFO | Sitar 0.474 0.000 0.308 ✓ +2026-07-13 08:30:14,886 | INFO | Plucked string instrument 0.373 0.000 0.242 ✓ +2026-07-13 08:30:14,886 | INFO | Carnatic music 0.199 0.000 0.129 ✓ +2026-07-13 08:30:14,886 | INFO | Guitar 0.165 0.000 0.107 ✗ +2026-07-13 08:30:14,886 | INFO | → WINNER: Music (combined=0.540) +2026-07-13 08:30:14,936 | INFO | +[616.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:14,936 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,936 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:30:14,936 | INFO | Musical instrument 0.678 0.000 0.441 ✓ +2026-07-13 08:30:14,936 | INFO | Plucked string instrument 0.574 0.000 0.373 ✓ +2026-07-13 08:30:14,943 | INFO | Guitar 0.396 0.000 0.258 ✓ +2026-07-13 08:30:14,943 | INFO | Sitar 0.248 0.000 0.161 ✓ +2026-07-13 08:30:14,943 | INFO | Carnatic music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:14,943 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:14,993 | INFO | +[616.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:14,993 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:14,993 | INFO | Music 0.883 0.000 0.574 ✓ +2026-07-13 08:30:14,993 | INFO | Musical instrument 0.747 0.000 0.485 ✓ +2026-07-13 08:30:14,993 | INFO | Carnatic music 0.663 0.000 0.431 ✓ +2026-07-13 08:30:14,993 | INFO | Plucked string instrument 0.573 0.000 0.373 ✓ +2026-07-13 08:30:14,993 | INFO | Sitar 0.571 0.000 0.371 ✓ +2026-07-13 08:30:14,993 | INFO | Classical music 0.434 0.000 0.282 ✓ +2026-07-13 08:30:14,993 | INFO | → WINNER: Music (combined=0.574) +2026-07-13 08:30:15,050 | INFO | +[616.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,050 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,050 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:30:15,050 | INFO | Carnatic music 0.650 0.000 0.422 ✓ +2026-07-13 08:30:15,050 | INFO | Musical instrument 0.575 0.000 0.374 ✓ +2026-07-13 08:30:15,050 | INFO | Sitar 0.389 0.000 0.253 ✓ +2026-07-13 08:30:15,050 | INFO | Classical music 0.346 0.000 0.225 ✓ +2026-07-13 08:30:15,050 | INFO | Plucked string instrument 0.294 0.000 0.191 ✓ +2026-07-13 08:30:15,050 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:15,082 | INFO | +[616.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,082 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,083 | INFO | Music 0.823 0.000 0.535 ✓ +2026-07-13 08:30:15,084 | INFO | Carnatic music 0.664 0.000 0.431 ✓ +2026-07-13 08:30:15,084 | INFO | Musical instrument 0.642 0.000 0.417 ✓ +2026-07-13 08:30:15,084 | INFO | Classical music 0.411 0.000 0.267 ✓ +2026-07-13 08:30:15,084 | INFO | Tabla 0.305 0.000 0.198 ✓ +2026-07-13 08:30:15,084 | INFO | Sitar 0.300 0.000 0.195 ✓ +2026-07-13 08:30:15,084 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:15,108 | INFO | +[617.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,108 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,108 | INFO | Music 0.873 0.000 0.567 ✓ +2026-07-13 08:30:15,116 | INFO | Musical instrument 0.782 0.000 0.509 ✓ +2026-07-13 08:30:15,116 | INFO | Sitar 0.775 0.000 0.504 ✓ +2026-07-13 08:30:15,117 | INFO | Carnatic music 0.575 0.000 0.374 ✓ +2026-07-13 08:30:15,117 | INFO | Plucked string instrument 0.564 0.000 0.366 ✓ +2026-07-13 08:30:15,117 | INFO | Classical music 0.439 0.000 0.285 ✓ +2026-07-13 08:30:15,117 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:15,139 | INFO | +[617.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,139 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,139 | INFO | Music 0.825 0.000 0.536 ✓ +2026-07-13 08:30:15,139 | INFO | Sitar 0.759 0.000 0.493 ✓ +2026-07-13 08:30:15,139 | INFO | Musical instrument 0.530 0.000 0.344 ✓ +2026-07-13 08:30:15,139 | INFO | Plucked string instrument 0.361 0.000 0.234 ✓ +2026-07-13 08:30:15,139 | INFO | Carnatic music 0.270 0.000 0.175 ✓ +2026-07-13 08:30:15,139 | INFO | Classical music 0.185 0.000 0.121 ✓ +2026-07-13 08:30:15,139 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:15,172 | INFO | +[617.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,173 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,173 | INFO | Music 0.873 0.000 0.568 ✓ +2026-07-13 08:30:15,173 | INFO | Sitar 0.739 0.000 0.480 ✓ +2026-07-13 08:30:15,173 | INFO | Musical instrument 0.637 0.000 0.414 ✓ +2026-07-13 08:30:15,173 | INFO | Plucked string instrument 0.546 0.000 0.355 ✓ +2026-07-13 08:30:15,173 | INFO | Carnatic music 0.290 0.000 0.189 ✓ +2026-07-13 08:30:15,173 | INFO | Bowed string instrument 0.154 0.000 0.100 ✗ +2026-07-13 08:30:15,173 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:15,197 | INFO | +[617.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,197 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,204 | INFO | Music 0.879 0.000 0.571 ✓ +2026-07-13 08:30:15,204 | INFO | Sitar 0.809 0.000 0.526 ✓ +2026-07-13 08:30:15,204 | INFO | Musical instrument 0.637 0.000 0.414 ✓ +2026-07-13 08:30:15,204 | INFO | Plucked string instrument 0.496 0.000 0.322 ✓ +2026-07-13 08:30:15,204 | INFO | Carnatic music 0.349 0.000 0.227 ✓ +2026-07-13 08:30:15,204 | INFO | Classical music 0.195 0.000 0.127 ✓ +2026-07-13 08:30:15,205 | INFO | → WINNER: Music (combined=0.571) +2026-07-13 08:30:15,230 | INFO | +[617.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,230 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,230 | INFO | Music 0.828 0.000 0.538 ✓ +2026-07-13 08:30:15,230 | INFO | Musical instrument 0.500 0.000 0.325 ✓ +2026-07-13 08:30:15,230 | INFO | Sitar 0.368 0.000 0.239 ✓ +2026-07-13 08:30:15,230 | INFO | Plucked string instrument 0.356 0.000 0.231 ✓ +2026-07-13 08:30:15,230 | INFO | Carnatic music 0.147 0.000 0.096 ✗ +2026-07-13 08:30:15,230 | INFO | Guitar 0.145 0.000 0.095 ✗ +2026-07-13 08:30:15,230 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:15,254 | INFO | +[618.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,260 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,260 | INFO | Music 0.884 0.000 0.575 ✓ +2026-07-13 08:30:15,261 | INFO | Musical instrument 0.726 0.000 0.472 ✓ +2026-07-13 08:30:15,261 | INFO | Plucked string instrument 0.615 0.000 0.400 ✓ +2026-07-13 08:30:15,262 | INFO | Guitar 0.299 0.000 0.195 ✓ +2026-07-13 08:30:15,262 | INFO | Sitar 0.137 0.000 0.089 ✗ +2026-07-13 08:30:15,262 | INFO | Tabla 0.100 0.000 0.065 ✗ +2026-07-13 08:30:15,262 | INFO | → WINNER: Music (combined=0.575) +2026-07-13 08:30:15,290 | INFO | +[618.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,290 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,290 | INFO | Music 0.887 0.000 0.577 ✓ +2026-07-13 08:30:15,290 | INFO | Musical instrument 0.720 0.000 0.468 ✓ +2026-07-13 08:30:15,290 | INFO | Plucked string instrument 0.536 0.000 0.348 ✓ +2026-07-13 08:30:15,290 | INFO | Guitar 0.452 0.000 0.294 ✓ +2026-07-13 08:30:15,290 | INFO | Acoustic guitar 0.107 0.000 0.070 ✗ +2026-07-13 08:30:15,290 | INFO | Strum 0.100 0.000 0.065 ✗ +2026-07-13 08:30:15,290 | INFO | → WINNER: Music (combined=0.577) +2026-07-13 08:30:15,312 | INFO | +[618.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,312 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,320 | INFO | Music 0.827 0.000 0.538 ✓ +2026-07-13 08:30:15,320 | INFO | Musical instrument 0.734 0.000 0.477 ✓ +2026-07-13 08:30:15,320 | INFO | Plucked string instrument 0.390 0.000 0.253 ✓ +2026-07-13 08:30:15,320 | INFO | Guitar 0.364 0.000 0.236 ✓ +2026-07-13 08:30:15,320 | INFO | Keyboard (musical) 0.254 0.000 0.165 ✓ +2026-07-13 08:30:15,320 | INFO | Piano 0.207 0.000 0.134 ✓ +2026-07-13 08:30:15,320 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:15,345 | INFO | +[618.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,345 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,345 | INFO | Music 0.808 0.000 0.525 ✓ +2026-07-13 08:30:15,345 | INFO | Musical instrument 0.637 0.000 0.414 ✓ +2026-07-13 08:30:15,345 | INFO | Plucked string instrument 0.356 0.000 0.232 ✓ +2026-07-13 08:30:15,345 | INFO | Guitar 0.275 0.000 0.179 ✓ +2026-07-13 08:30:15,345 | INFO | Keyboard (musical) 0.107 0.000 0.070 ✗ +2026-07-13 08:30:15,345 | INFO | Acoustic guitar 0.088 0.000 0.057 ✗ +2026-07-13 08:30:15,345 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:15,372 | INFO | +[618.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,372 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,376 | INFO | Music 0.896 0.000 0.583 ✓ +2026-07-13 08:30:15,376 | INFO | Musical instrument 0.809 0.000 0.526 ✓ +2026-07-13 08:30:15,376 | INFO | Plucked string instrument 0.734 0.000 0.477 ✓ +2026-07-13 08:30:15,376 | INFO | Guitar 0.700 0.000 0.455 ✓ +2026-07-13 08:30:15,376 | INFO | Acoustic guitar 0.299 0.000 0.194 ✓ +2026-07-13 08:30:15,378 | INFO | Strum 0.282 0.000 0.183 ✓ +2026-07-13 08:30:15,378 | INFO | → WINNER: Music (combined=0.583) +2026-07-13 08:30:15,404 | INFO | +[619.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,404 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,404 | INFO | Music 0.879 0.000 0.572 ✓ +2026-07-13 08:30:15,404 | INFO | Musical instrument 0.656 0.000 0.426 ✓ +2026-07-13 08:30:15,404 | INFO | Plucked string instrument 0.255 0.000 0.166 ✓ +2026-07-13 08:30:15,404 | INFO | Carnatic music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:15,404 | INFO | Tabla 0.181 0.000 0.118 ✗ +2026-07-13 08:30:15,404 | INFO | Classical music 0.176 0.000 0.114 ✗ +2026-07-13 08:30:15,404 | INFO | → WINNER: Music (combined=0.572) +2026-07-13 08:30:15,435 | INFO | +[619.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,435 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,435 | INFO | Music 0.876 0.000 0.569 ✓ +2026-07-13 08:30:15,435 | INFO | Musical instrument 0.687 0.000 0.446 ✓ +2026-07-13 08:30:15,435 | INFO | Plucked string instrument 0.292 0.000 0.190 ✓ +2026-07-13 08:30:15,435 | INFO | Carnatic music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:15,435 | INFO | Classical music 0.175 0.000 0.114 ✗ +2026-07-13 08:30:15,435 | INFO | Guitar 0.159 0.000 0.103 ✗ +2026-07-13 08:30:15,435 | INFO | → WINNER: Music (combined=0.569) +2026-07-13 08:30:15,460 | INFO | +[619.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,460 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,468 | INFO | Music 0.898 0.000 0.584 ✓ +2026-07-13 08:30:15,468 | INFO | Musical instrument 0.483 0.000 0.314 ✓ +2026-07-13 08:30:15,469 | INFO | Carnatic music 0.411 0.000 0.267 ✓ +2026-07-13 08:30:15,469 | INFO | Sitar 0.345 0.000 0.224 ✓ +2026-07-13 08:30:15,469 | INFO | Classical music 0.199 0.000 0.130 ✓ +2026-07-13 08:30:15,469 | INFO | Plucked string instrument 0.146 0.000 0.095 ✗ +2026-07-13 08:30:15,470 | INFO | → WINNER: Music (combined=0.584) +2026-07-13 08:30:15,494 | INFO | +[619.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,494 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,494 | INFO | Music 0.838 0.000 0.544 ✓ +2026-07-13 08:30:15,494 | INFO | Sitar 0.330 0.000 0.214 ✓ +2026-07-13 08:30:15,494 | INFO | Carnatic music 0.325 0.000 0.211 ✓ +2026-07-13 08:30:15,494 | INFO | Musical instrument 0.297 0.000 0.193 ✓ +2026-07-13 08:30:15,494 | INFO | Middle Eastern music 0.190 0.000 0.124 ✓ +2026-07-13 08:30:15,494 | INFO | Folk music 0.149 0.000 0.097 ✗ +2026-07-13 08:30:15,494 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:30:15,518 | INFO | +[619.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,518 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,518 | INFO | Music 0.746 0.000 0.485 ✓ +2026-07-13 08:30:15,518 | INFO | Carnatic music 0.332 0.000 0.216 ✓ +2026-07-13 08:30:15,518 | INFO | Sitar 0.262 0.000 0.171 ✓ +2026-07-13 08:30:15,518 | INFO | Musical instrument 0.174 0.000 0.113 ✗ +2026-07-13 08:30:15,518 | INFO | Middle Eastern music 0.168 0.000 0.109 ✗ +2026-07-13 08:30:15,518 | INFO | Tabla 0.133 0.000 0.086 ✗ +2026-07-13 08:30:15,518 | INFO | → WINNER: Music (combined=0.485) +2026-07-13 08:30:15,551 | INFO | +[620.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,551 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,551 | INFO | Music 0.781 0.000 0.507 ✓ +2026-07-13 08:30:15,551 | INFO | Sitar 0.604 0.000 0.393 ✓ +2026-07-13 08:30:15,551 | INFO | Tabla 0.385 0.000 0.251 ✓ +2026-07-13 08:30:15,551 | INFO | Carnatic music 0.356 0.000 0.232 ✓ +2026-07-13 08:30:15,551 | INFO | Musical instrument 0.268 0.000 0.174 ✓ +2026-07-13 08:30:15,551 | INFO | Classical music 0.164 0.000 0.106 ✗ +2026-07-13 08:30:15,551 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:15,575 | INFO | +[620.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,575 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,575 | INFO | Music 0.742 0.000 0.483 ✓ +2026-07-13 08:30:15,575 | INFO | Tabla 0.372 0.000 0.241 ✓ +2026-07-13 08:30:15,575 | INFO | Sitar 0.330 0.000 0.214 ✓ +2026-07-13 08:30:15,575 | INFO | Carnatic music 0.271 0.000 0.176 ✓ +2026-07-13 08:30:15,575 | INFO | Musical instrument 0.171 0.000 0.111 ✗ +2026-07-13 08:30:15,575 | INFO | Drum 0.091 0.000 0.059 ✗ +2026-07-13 08:30:15,582 | INFO | → WINNER: Music (combined=0.483) +2026-07-13 08:30:15,607 | INFO | +[620.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,607 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,607 | INFO | Music 0.738 0.000 0.480 ✓ +2026-07-13 08:30:15,607 | INFO | Musical instrument 0.397 0.000 0.258 ✓ +2026-07-13 08:30:15,607 | INFO | Tabla 0.272 0.000 0.177 ✓ +2026-07-13 08:30:15,607 | INFO | Sitar 0.188 0.000 0.122 ✓ +2026-07-13 08:30:15,607 | INFO | Carnatic music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:15,607 | INFO | Plucked string instrument 0.114 0.000 0.074 ✗ +2026-07-13 08:30:15,607 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:15,633 | INFO | +[620.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,636 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,636 | INFO | Music 0.736 0.000 0.478 ✓ +2026-07-13 08:30:15,636 | INFO | Musical instrument 0.494 0.000 0.321 ✓ +2026-07-13 08:30:15,636 | INFO | Tabla 0.369 0.000 0.240 ✓ +2026-07-13 08:30:15,636 | INFO | Sitar 0.255 0.000 0.166 ✓ +2026-07-13 08:30:15,636 | INFO | Carnatic music 0.210 0.000 0.137 ✓ +2026-07-13 08:30:15,636 | INFO | Percussion 0.147 0.000 0.096 ✗ +2026-07-13 08:30:15,636 | INFO | → WINNER: Music (combined=0.478) +2026-07-13 08:30:15,659 | INFO | +[620.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,659 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,659 | INFO | Music 0.795 0.000 0.517 ✓ +2026-07-13 08:30:15,659 | INFO | Musical instrument 0.312 0.000 0.203 ✓ +2026-07-13 08:30:15,659 | INFO | Tabla 0.149 0.000 0.097 ✗ +2026-07-13 08:30:15,665 | INFO | Drum 0.118 0.000 0.077 ✗ +2026-07-13 08:30:15,665 | INFO | Percussion 0.098 0.000 0.064 ✗ +2026-07-13 08:30:15,665 | INFO | Folk music 0.076 0.000 0.049 ✗ +2026-07-13 08:30:15,665 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:15,689 | INFO | +[621.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,689 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,689 | INFO | Music 0.777 0.000 0.505 ✓ +2026-07-13 08:30:15,689 | INFO | Musical instrument 0.331 0.000 0.215 ✓ +2026-07-13 08:30:15,689 | INFO | Tabla 0.223 0.000 0.145 ✓ +2026-07-13 08:30:15,689 | INFO | Drum 0.153 0.000 0.100 ✗ +2026-07-13 08:30:15,689 | INFO | Percussion 0.146 0.000 0.095 ✗ +2026-07-13 08:30:15,689 | INFO | Folk music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:15,689 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:15,722 | INFO | +[621.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,722 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,722 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:15,722 | INFO | Tabla 0.657 0.000 0.427 ✓ +2026-07-13 08:30:15,722 | INFO | Musical instrument 0.448 0.000 0.291 ✓ +2026-07-13 08:30:15,722 | INFO | Sitar 0.393 0.000 0.256 ✓ +2026-07-13 08:30:15,722 | INFO | Drum 0.245 0.000 0.159 ✓ +2026-07-13 08:30:15,722 | INFO | Percussion 0.232 0.000 0.150 ✓ +2026-07-13 08:30:15,722 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:15,751 | INFO | +[621.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,751 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,753 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:30:15,753 | INFO | Musical instrument 0.433 0.000 0.282 ✓ +2026-07-13 08:30:15,753 | INFO | Tabla 0.249 0.000 0.162 ✓ +2026-07-13 08:30:15,753 | INFO | Drum 0.213 0.000 0.139 ✓ +2026-07-13 08:30:15,753 | INFO | Percussion 0.147 0.000 0.095 ✗ +2026-07-13 08:30:15,753 | INFO | Carnatic music 0.115 0.000 0.075 ✗ +2026-07-13 08:30:15,753 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:15,778 | INFO | +[621.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,778 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,778 | INFO | Music 0.853 0.000 0.554 ✓ +2026-07-13 08:30:15,778 | INFO | Musical instrument 0.518 0.000 0.337 ✓ +2026-07-13 08:30:15,778 | INFO | Tabla 0.191 0.000 0.124 ✓ +2026-07-13 08:30:15,778 | INFO | Plucked string instrument 0.152 0.000 0.099 ✗ +2026-07-13 08:30:15,778 | INFO | Drum 0.150 0.000 0.098 ✗ +2026-07-13 08:30:15,778 | INFO | Percussion 0.132 0.000 0.086 ✗ +2026-07-13 08:30:15,778 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:15,805 | INFO | +[621.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,805 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,805 | INFO | Music 0.751 0.000 0.488 ✓ +2026-07-13 08:30:15,805 | INFO | Musical instrument 0.543 0.000 0.353 ✓ +2026-07-13 08:30:15,805 | INFO | Tabla 0.315 0.000 0.205 ✓ +2026-07-13 08:30:15,811 | INFO | Percussion 0.177 0.000 0.115 ✗ +2026-07-13 08:30:15,811 | INFO | Drum 0.154 0.000 0.100 ✗ +2026-07-13 08:30:15,811 | INFO | Plucked string instrument 0.147 0.000 0.096 ✗ +2026-07-13 08:30:15,811 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:15,837 | INFO | +[622.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,837 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,837 | INFO | Music 0.706 0.000 0.459 ✓ +2026-07-13 08:30:15,837 | INFO | Musical instrument 0.493 0.000 0.321 ✓ +2026-07-13 08:30:15,837 | INFO | Brass instrument 0.364 0.000 0.237 ✓ +2026-07-13 08:30:15,837 | INFO | Percussion 0.159 0.000 0.103 ✗ +2026-07-13 08:30:15,837 | INFO | Saxophone 0.151 0.000 0.098 ✗ +2026-07-13 08:30:15,837 | INFO | Tabla 0.124 0.000 0.080 ✗ +2026-07-13 08:30:15,837 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:15,866 | INFO | +[622.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,866 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,866 | INFO | Music 0.753 0.000 0.489 ✓ +2026-07-13 08:30:15,866 | INFO | Musical instrument 0.499 0.000 0.324 ✓ +2026-07-13 08:30:15,869 | INFO | Tabla 0.247 0.000 0.160 ✓ +2026-07-13 08:30:15,869 | INFO | Sitar 0.170 0.000 0.110 ✗ +2026-07-13 08:30:15,869 | INFO | Bowed string instrument 0.168 0.000 0.109 ✗ +2026-07-13 08:30:15,869 | INFO | Carnatic music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:15,871 | INFO | → WINNER: Music (combined=0.489) +2026-07-13 08:30:15,894 | INFO | +[622.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,894 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,894 | INFO | Music 0.815 0.000 0.530 ✓ +2026-07-13 08:30:15,894 | INFO | Musical instrument 0.453 0.000 0.294 ✓ +2026-07-13 08:30:15,894 | INFO | Plucked string instrument 0.165 0.000 0.107 ✗ +2026-07-13 08:30:15,894 | INFO | Guitar 0.116 0.000 0.075 ✗ +2026-07-13 08:30:15,894 | INFO | Sitar 0.048 0.000 0.031 ✗ +2026-07-13 08:30:15,894 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:15,926 | INFO | +[622.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,928 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,928 | INFO | Music 0.856 0.000 0.556 ✓ +2026-07-13 08:30:15,928 | INFO | Musical instrument 0.695 0.000 0.452 ✓ +2026-07-13 08:30:15,928 | INFO | Guitar 0.578 0.000 0.376 ✓ +2026-07-13 08:30:15,928 | INFO | Plucked string instrument 0.553 0.000 0.359 ✓ +2026-07-13 08:30:15,928 | INFO | Acoustic guitar 0.141 0.000 0.092 ✗ +2026-07-13 08:30:15,928 | INFO | Strum 0.112 0.000 0.073 ✗ +2026-07-13 08:30:15,928 | INFO | → WINNER: Music (combined=0.556) +2026-07-13 08:30:15,951 | INFO | +[622.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,951 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,959 | INFO | Music 0.823 0.000 0.535 ✓ +2026-07-13 08:30:15,959 | INFO | Musical instrument 0.501 0.000 0.326 ✓ +2026-07-13 08:30:15,959 | INFO | Guitar 0.433 0.000 0.281 ✓ +2026-07-13 08:30:15,959 | INFO | Plucked string instrument 0.416 0.000 0.270 ✓ +2026-07-13 08:30:15,959 | INFO | Acoustic guitar 0.145 0.000 0.094 ✗ +2026-07-13 08:30:15,959 | INFO | Strum 0.135 0.000 0.088 ✗ +2026-07-13 08:30:15,959 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:15,984 | INFO | +[623.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-07-13 08:30:15,984 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:15,984 | INFO | Music 0.816 0.000 0.530 ✓ +2026-07-13 08:30:15,984 | INFO | Musical instrument 0.277 0.000 0.180 ✓ +2026-07-13 08:30:15,984 | INFO | Plucked string instrument 0.265 0.000 0.172 ✓ +2026-07-13 08:30:15,984 | INFO | Guitar 0.252 0.000 0.164 ✓ +2026-07-13 08:30:15,984 | INFO | Animal 0.215 0.000 0.140 ✓ +2026-07-13 08:30:15,984 | INFO | Horse 0.107 0.000 0.070 ✗ +2026-07-13 08:30:15,984 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:16,015 | INFO | +[623.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,017 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,017 | INFO | Music 0.179 0.000 0.116 ✗ +2026-07-13 08:30:16,017 | INFO | Animal 0.147 0.000 0.096 ✗ +2026-07-13 08:30:16,017 | INFO | Horse 0.056 0.000 0.037 ✗ +2026-07-13 08:30:16,017 | INFO | Walk, footsteps 0.056 0.000 0.036 ✗ +2026-07-13 08:30:16,017 | INFO | → no winner +2026-07-13 08:30:16,041 | INFO | +[623.40s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,041 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,041 | INFO | Mechanisms 0.379 0.000 0.246 ✓ +2026-07-13 08:30:16,041 | INFO | Animal 0.275 0.000 0.179 ✓ +2026-07-13 08:30:16,041 | INFO | Ratchet, pawl 0.264 0.000 0.171 ✓ +2026-07-13 08:30:16,041 | INFO | Gears 0.235 0.000 0.153 ✓ +2026-07-13 08:30:16,041 | INFO | Horse 0.191 0.000 0.124 ✓ +2026-07-13 08:30:16,041 | INFO | Clip-clop 0.190 0.000 0.123 ✓ +2026-07-13 08:30:16,041 | INFO | → WINNER: Mechanisms (combined=0.246) +2026-07-13 08:30:16,068 | INFO | +[623.60s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,073 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,074 | INFO | Animal 0.212 0.000 0.138 ✓ +2026-07-13 08:30:16,074 | INFO | Horse 0.096 0.000 0.062 ✗ +2026-07-13 08:30:16,074 | INFO | Clip-clop 0.093 0.000 0.061 ✗ +2026-07-13 08:30:16,074 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:16,074 | INFO | Walk, footsteps 0.032 0.000 0.021 ✗ +2026-07-13 08:30:16,074 | INFO | → WINNER: Animal (combined=0.138) +2026-07-13 08:30:16,097 | INFO | +[623.80s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,097 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,097 | INFO | Animal 0.663 0.000 0.431 ✓ +2026-07-13 08:30:16,105 | INFO | Horse 0.359 0.000 0.234 ✓ +2026-07-13 08:30:16,105 | INFO | Clip-clop 0.251 0.000 0.163 ✓ +2026-07-13 08:30:16,105 | INFO | Domestic animals, pets 0.093 0.000 0.061 ✗ +2026-07-13 08:30:16,105 | INFO | Walk, footsteps 0.088 0.000 0.057 ✗ +2026-07-13 08:30:16,107 | INFO | Outside, rural or natural 0.073 0.000 0.048 ✗ +2026-07-13 08:30:16,107 | INFO | → WINNER: Animal (combined=0.431) +2026-07-13 08:30:16,130 | INFO | +[624.00s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,130 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,130 | INFO | Animal 0.461 0.000 0.300 ✓ +2026-07-13 08:30:16,130 | INFO | Horse 0.289 0.000 0.188 ✓ +2026-07-13 08:30:16,130 | INFO | Clip-clop 0.250 0.000 0.163 ✓ +2026-07-13 08:30:16,130 | INFO | Outside, rural or natural 0.075 0.000 0.049 ✗ +2026-07-13 08:30:16,130 | INFO | Walk, footsteps 0.068 0.000 0.044 ✗ +2026-07-13 08:30:16,130 | INFO | → WINNER: Animal (combined=0.300) +2026-07-13 08:30:16,162 | INFO | +[624.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,163 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,163 | INFO | Horse 0.628 0.000 0.408 ✓ +2026-07-13 08:30:16,163 | INFO | Animal 0.623 0.000 0.405 ✓ +2026-07-13 08:30:16,163 | INFO | Clip-clop 0.550 0.000 0.357 ✓ +2026-07-13 08:30:16,163 | INFO | Neigh, whinny 0.106 0.000 0.069 ✗ +2026-07-13 08:30:16,163 | INFO | Outside, rural or natural 0.073 0.000 0.048 ✗ +2026-07-13 08:30:16,163 | INFO | Walk, footsteps 0.034 0.000 0.022 ✗ +2026-07-13 08:30:16,163 | INFO | → WINNER: Horse (combined=0.408) +2026-07-13 08:30:16,188 | INFO | +[624.40s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,195 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,195 | INFO | Animal 0.557 0.000 0.362 ✓ +2026-07-13 08:30:16,195 | INFO | Horse 0.426 0.000 0.277 ✓ +2026-07-13 08:30:16,195 | INFO | Clip-clop 0.349 0.000 0.227 ✓ +2026-07-13 08:30:16,195 | INFO | Outside, rural or natural 0.076 0.000 0.049 ✗ +2026-07-13 08:30:16,195 | INFO | Vehicle 0.075 0.000 0.049 ✗ +2026-07-13 08:30:16,195 | INFO | Walk, footsteps 0.034 0.000 0.022 ✗ +2026-07-13 08:30:16,195 | INFO | → WINNER: Animal (combined=0.362) +2026-07-13 08:30:16,219 | INFO | +[627.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,219 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,219 | INFO | Bird 0.086 0.286 0.156 ✓ +2026-07-13 08:30:16,219 | INFO | Animal 0.227 0.000 0.148 ✓ +2026-07-13 08:30:16,219 | INFO | Turkey 0.176 0.000 0.114 ✗ +2026-07-13 08:30:16,219 | INFO | Gobble 0.128 0.000 0.083 ✗ +2026-07-13 08:30:16,219 | INFO | → WINNER: Bird (combined=0.156) +2026-07-13 08:30:16,252 | INFO | +[627.40s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,253 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,253 | INFO | Bird 0.142 0.286 0.193 ✓ +2026-07-13 08:30:16,254 | INFO | Bird vocalization, bird call, bird song 0.080 0.310 0.161 ✓ +2026-07-13 08:30:16,254 | INFO | Animal 0.132 0.000 0.086 ✗ +2026-07-13 08:30:16,254 | INFO | Environmental noise 0.096 0.000 0.062 ✗ +2026-07-13 08:30:16,255 | INFO | Chirp, tweet 0.077 0.000 0.050 ✗ +2026-07-13 08:30:16,255 | INFO | Outside, rural or natural 0.057 0.000 0.037 ✗ +2026-07-13 08:30:16,255 | INFO | → WINNER: Bird (combined=0.193) +2026-07-13 08:30:16,277 | INFO | +[627.60s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,277 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,277 | INFO | Bird 0.101 0.286 0.165 ✓ +2026-07-13 08:30:16,277 | INFO | Bird vocalization, bird call, bird song 0.043 0.310 0.137 ✓ +2026-07-13 08:30:16,277 | INFO | Animal 0.121 0.000 0.079 ✗ +2026-07-13 08:30:16,277 | INFO | → WINNER: Bird (combined=0.165) +2026-07-13 08:30:16,305 | INFO | +[627.80s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-07-13 08:30:16,305 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,305 | INFO | Bird 0.095 0.286 0.162 ✓ +2026-07-13 08:30:16,310 | INFO | Bird vocalization, bird call, bird song 0.039 0.310 0.134 ✓ +2026-07-13 08:30:16,310 | INFO | Animal 0.136 0.000 0.088 ✗ +2026-07-13 08:30:16,310 | INFO | Rodents, rats, mice 0.052 0.000 0.034 ✗ +2026-07-13 08:30:16,310 | INFO | → WINNER: Bird (combined=0.162) +2026-07-13 08:30:16,343 | INFO | +[651.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,343 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,343 | INFO | Animal 0.485 0.000 0.315 ✓ +2026-07-13 08:30:16,343 | INFO | Bird 0.304 0.000 0.197 ✓ +2026-07-13 08:30:16,343 | INFO | Domestic animals, pets 0.220 0.000 0.143 ✓ +2026-07-13 08:30:16,343 | INFO | Dog 0.141 0.000 0.092 ✗ +2026-07-13 08:30:16,343 | INFO | Bird vocalization, bird call, bird song 0.088 0.000 0.057 ✗ +2026-07-13 08:30:16,343 | INFO | Chirp, tweet 0.086 0.000 0.056 ✗ +2026-07-13 08:30:16,343 | INFO | → WINNER: Animal (combined=0.315) +2026-07-13 08:30:16,367 | INFO | +[651.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,367 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,367 | INFO | Animal 0.488 0.000 0.317 ✓ +2026-07-13 08:30:16,367 | INFO | Bird 0.268 0.000 0.174 ✓ +2026-07-13 08:30:16,367 | INFO | Domestic animals, pets 0.189 0.000 0.123 ✓ +2026-07-13 08:30:16,367 | INFO | Dog 0.128 0.000 0.083 ✗ +2026-07-13 08:30:16,367 | INFO | Chicken, rooster 0.081 0.000 0.053 ✗ +2026-07-13 08:30:16,367 | INFO | Bird vocalization, bird call, bird song 0.076 0.000 0.050 ✗ +2026-07-13 08:30:16,367 | INFO | → WINNER: Animal (combined=0.317) +2026-07-13 08:30:16,400 | INFO | +[651.40s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,400 | INFO | Animal 0.511 0.000 0.332 ✓ +2026-07-13 08:30:16,400 | INFO | Bird 0.200 0.000 0.130 ✓ +2026-07-13 08:30:16,400 | INFO | Domestic animals, pets 0.191 0.000 0.124 ✓ +2026-07-13 08:30:16,400 | INFO | Dog 0.141 0.000 0.092 ✗ +2026-07-13 08:30:16,400 | INFO | Outside, rural or natural 0.065 0.000 0.043 ✗ +2026-07-13 08:30:16,403 | INFO | Bird vocalization, bird call, bird song 0.065 0.000 0.042 ✗ +2026-07-13 08:30:16,403 | INFO | → WINNER: Animal (combined=0.332) +2026-07-13 08:30:16,427 | INFO | +[651.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,427 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,427 | INFO | Bird 0.222 0.000 0.144 ✓ +2026-07-13 08:30:16,427 | INFO | Animal 0.193 0.000 0.125 ✓ +2026-07-13 08:30:16,427 | INFO | Bird vocalization, bird call, bird song 0.109 0.000 0.071 ✗ +2026-07-13 08:30:16,427 | INFO | Chirp, tweet 0.095 0.000 0.062 ✗ +2026-07-13 08:30:16,427 | INFO | Environmental noise 0.071 0.000 0.046 ✗ +2026-07-13 08:30:16,427 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:30:16,427 | INFO | → WINNER: Bird (combined=0.144) +2026-07-13 08:30:16,458 | INFO | +[651.80s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,458 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,458 | INFO | Animal 0.213 0.000 0.139 ✓ +2026-07-13 08:30:16,458 | INFO | Bird 0.199 0.000 0.129 ✓ +2026-07-13 08:30:16,458 | INFO | Environmental noise 0.120 0.000 0.078 ✗ +2026-07-13 08:30:16,458 | INFO | Bird vocalization, bird call, bird song 0.102 0.000 0.066 ✗ +2026-07-13 08:30:16,458 | INFO | Chirp, tweet 0.101 0.000 0.065 ✗ +2026-07-13 08:30:16,458 | INFO | Outside, rural or natural 0.071 0.000 0.046 ✗ +2026-07-13 08:30:16,458 | INFO | → WINNER: Animal (combined=0.139) +2026-07-13 08:30:16,485 | INFO | +[652.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,516 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,516 | INFO | Bird 0.150 0.000 0.097 ✗ +2026-07-13 08:30:16,516 | INFO | Animal 0.101 0.000 0.066 ✗ +2026-07-13 08:30:16,516 | INFO | Bird vocalization, bird call, bird song 0.072 0.000 0.047 ✗ +2026-07-13 08:30:16,516 | INFO | Chirp, tweet 0.067 0.000 0.044 ✗ +2026-07-13 08:30:16,516 | INFO | → no winner +2026-07-13 08:30:16,539 | INFO | +[652.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,548 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,548 | INFO | Bird 0.221 0.000 0.144 ✓ +2026-07-13 08:30:16,548 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:30:16,548 | INFO | Bird vocalization, bird call, bird song 0.098 0.000 0.064 ✗ +2026-07-13 08:30:16,548 | INFO | Chirp, tweet 0.092 0.000 0.060 ✗ +2026-07-13 08:30:16,548 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:16,548 | INFO | Environmental noise 0.058 0.000 0.038 ✗ +2026-07-13 08:30:16,548 | INFO | → WINNER: Bird (combined=0.144) +2026-07-13 08:30:16,573 | INFO | +[652.40s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,573 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,573 | INFO | Animal 0.144 0.000 0.094 ✗ +2026-07-13 08:30:16,573 | INFO | Bird 0.109 0.000 0.071 ✗ +2026-07-13 08:30:16,573 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:16,573 | INFO | Bird vocalization, bird call, bird song 0.035 0.000 0.023 ✗ +2026-07-13 08:30:16,573 | INFO | → no winner +2026-07-13 08:30:16,598 | INFO | +[652.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,606 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,607 | INFO | Animal 0.101 0.000 0.066 ✗ +2026-07-13 08:30:16,607 | INFO | Bird 0.064 0.000 0.041 ✗ +2026-07-13 08:30:16,607 | INFO | → no winner +2026-07-13 08:30:16,629 | INFO | +[652.80s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,629 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,629 | INFO | Animal 0.132 0.000 0.086 ✗ +2026-07-13 08:30:16,638 | INFO | Vehicle 0.073 0.000 0.047 ✗ +2026-07-13 08:30:16,638 | INFO | Bird 0.038 0.000 0.025 ✗ +2026-07-13 08:30:16,639 | INFO | → no winner +2026-07-13 08:30:16,672 | INFO | +[653.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,672 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,672 | INFO | Chicken, rooster 0.244 0.000 0.159 ✓ +2026-07-13 08:30:16,672 | INFO | Animal 0.215 0.000 0.140 ✓ +2026-07-13 08:30:16,672 | INFO | Bird 0.197 0.000 0.128 ✓ +2026-07-13 08:30:16,672 | INFO | Cluck 0.150 0.000 0.098 ✗ +2026-07-13 08:30:16,672 | INFO | Outside, rural or natural 0.056 0.000 0.037 ✗ +2026-07-13 08:30:16,679 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.033 ✗ +2026-07-13 08:30:16,679 | INFO | → WINNER: Chicken, rooster (combined=0.159) +2026-07-13 08:30:16,737 | INFO | +[653.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,737 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,737 | INFO | Animal 0.229 0.000 0.149 ✓ +2026-07-13 08:30:16,737 | INFO | Bird 0.192 0.000 0.124 ✓ +2026-07-13 08:30:16,737 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:30:16,737 | INFO | Chicken, rooster 0.070 0.000 0.045 ✗ +2026-07-13 08:30:16,737 | INFO | Environmental noise 0.069 0.000 0.045 ✗ +2026-07-13 08:30:16,737 | INFO | Bird vocalization, bird call, bird song 0.066 0.000 0.043 ✗ +2026-07-13 08:30:16,737 | INFO | → WINNER: Animal (combined=0.149) +2026-07-13 08:30:16,795 | INFO | +[653.40s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,795 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,795 | INFO | Animal 0.283 0.000 0.184 ✓ +2026-07-13 08:30:16,795 | INFO | Bird 0.198 0.000 0.129 ✓ +2026-07-13 08:30:16,795 | INFO | Environmental noise 0.095 0.000 0.062 ✗ +2026-07-13 08:30:16,795 | INFO | Outside, rural or natural 0.090 0.000 0.058 ✗ +2026-07-13 08:30:16,795 | INFO | Bird vocalization, bird call, bird song 0.065 0.000 0.042 ✗ +2026-07-13 08:30:16,795 | INFO | Chirp, tweet 0.055 0.000 0.036 ✗ +2026-07-13 08:30:16,795 | INFO | → WINNER: Animal (combined=0.184) +2026-07-13 08:30:16,852 | INFO | +[656.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,852 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,852 | INFO | Animal 0.533 0.000 0.346 ✓ +2026-07-13 08:30:16,860 | INFO | Wild animals 0.407 0.000 0.265 ✓ +2026-07-13 08:30:16,860 | INFO | Roaring cats (lions, tigers) 0.244 0.000 0.159 ✓ +2026-07-13 08:30:16,860 | INFO | Horse 0.060 0.000 0.039 ✗ +2026-07-13 08:30:16,860 | INFO | → WINNER: Animal (combined=0.346) +2026-07-13 08:30:16,886 | INFO | +[656.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-07-13 08:30:16,886 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,886 | INFO | Animal 0.483 0.000 0.314 ✓ +2026-07-13 08:30:16,886 | INFO | Wild animals 0.320 0.000 0.208 ✓ +2026-07-13 08:30:16,893 | INFO | Roaring cats (lions, tigers) 0.188 0.000 0.122 ✓ +2026-07-13 08:30:16,893 | INFO | Boat, Water vehicle 0.040 0.240 0.110 ✗ +2026-07-13 08:30:16,893 | INFO | Vehicle 0.060 0.000 0.039 ✗ +2026-07-13 08:30:16,894 | INFO | Rodents, rats, mice 0.054 0.000 0.035 ✗ +2026-07-13 08:30:16,894 | INFO | → WINNER: Animal (combined=0.314) +2026-07-13 08:30:16,920 | INFO | +[656.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:16,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,920 | INFO | Animal 0.265 0.000 0.172 ✓ +2026-07-13 08:30:16,920 | INFO | Bird 0.114 0.273 0.170 ✓ +2026-07-13 08:30:16,920 | INFO | Boat, Water vehicle 0.041 0.294 0.130 ✓ +2026-07-13 08:30:16,920 | INFO | Bird vocalization, bird call, bird song 0.031 0.273 0.116 ✗ +2026-07-13 08:30:16,920 | INFO | Vehicle 0.066 0.000 0.043 ✗ +2026-07-13 08:30:16,920 | INFO | Rodents, rats, mice 0.062 0.000 0.040 ✗ +2026-07-13 08:30:16,920 | INFO | → WINNER: Animal (combined=0.172) +2026-07-13 08:30:16,951 | INFO | +[660.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:16,951 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,951 | INFO | Animal 0.460 0.000 0.299 ✓ +2026-07-13 08:30:16,951 | INFO | Bird 0.060 0.273 0.135 ✓ +2026-07-13 08:30:16,951 | INFO | Outside, rural or natural 0.117 0.000 0.076 ✗ +2026-07-13 08:30:16,951 | INFO | Wild animals 0.092 0.000 0.060 ✗ +2026-07-13 08:30:16,951 | INFO | Vehicle 0.087 0.000 0.057 ✗ +2026-07-13 08:30:16,951 | INFO | → WINNER: Animal (combined=0.299) +2026-07-13 08:30:16,976 | INFO | +[661.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:16,976 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:16,976 | INFO | Animal 0.438 0.000 0.285 ✓ +2026-07-13 08:30:16,976 | INFO | Bird 0.075 0.273 0.144 ✓ +2026-07-13 08:30:16,976 | INFO | Outside, rural or natural 0.115 0.000 0.074 ✗ +2026-07-13 08:30:16,983 | INFO | Horse 0.104 0.000 0.068 ✗ +2026-07-13 08:30:16,983 | INFO | Clip-clop 0.101 0.000 0.066 ✗ +2026-07-13 08:30:16,983 | INFO | Walk, footsteps 0.056 0.000 0.036 ✗ +2026-07-13 08:30:16,983 | INFO | → WINNER: Animal (combined=0.285) +2026-07-13 08:30:17,007 | INFO | +[661.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,007 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,007 | INFO | Animal 0.315 0.000 0.205 ✓ +2026-07-13 08:30:17,007 | INFO | Bird 0.068 0.273 0.139 ✓ +2026-07-13 08:30:17,007 | INFO | Duck 0.183 0.000 0.119 ✗ +2026-07-13 08:30:17,007 | INFO | Quack 0.091 0.000 0.059 ✗ +2026-07-13 08:30:17,007 | INFO | Outside, rural or natural 0.075 0.000 0.049 ✗ +2026-07-13 08:30:17,007 | INFO | → WINNER: Animal (combined=0.205) +2026-07-13 08:30:17,032 | INFO | +[661.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,032 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,032 | INFO | Animal 0.244 0.000 0.159 ✓ +2026-07-13 08:30:17,032 | INFO | Bird 0.047 0.273 0.126 ✓ +2026-07-13 08:30:17,032 | INFO | Vehicle 0.061 0.000 0.040 ✗ +2026-07-13 08:30:17,032 | INFO | Horse 0.056 0.000 0.036 ✗ +2026-07-13 08:30:17,032 | INFO | Outside, rural or natural 0.053 0.000 0.035 ✗ +2026-07-13 08:30:17,032 | INFO | → WINNER: Animal (combined=0.159) +2026-07-13 08:30:17,065 | INFO | +[661.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,066 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,066 | INFO | Animal 0.236 0.000 0.153 ✓ +2026-07-13 08:30:17,066 | INFO | Rodents, rats, mice 0.105 0.000 0.068 ✗ +2026-07-13 08:30:17,066 | INFO | Squeal 0.098 0.000 0.064 ✗ +2026-07-13 08:30:17,066 | INFO | Outside, rural or natural 0.075 0.000 0.049 ✗ +2026-07-13 08:30:17,066 | INFO | Horse 0.064 0.000 0.041 ✗ +2026-07-13 08:30:17,066 | INFO | → WINNER: Animal (combined=0.153) +2026-07-13 08:30:17,090 | INFO | +[661.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,090 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,090 | INFO | Bird 0.111 0.273 0.168 ✓ +2026-07-13 08:30:17,098 | INFO | Bird vocalization, bird call, bird song 0.035 0.273 0.118 ✗ +2026-07-13 08:30:17,098 | INFO | Rodents, rats, mice 0.164 0.000 0.106 ✗ +2026-07-13 08:30:17,098 | INFO | Animal 0.124 0.000 0.081 ✗ +2026-07-13 08:30:17,098 | INFO | Outside, rural or natural 0.075 0.000 0.049 ✗ +2026-07-13 08:30:17,098 | INFO | Chirp, tweet 0.059 0.000 0.039 ✗ +2026-07-13 08:30:17,098 | INFO | → WINNER: Bird (combined=0.168) +2026-07-13 08:30:17,123 | INFO | +[662.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,123 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,123 | INFO | Animal 0.254 0.000 0.165 ✓ +2026-07-13 08:30:17,123 | INFO | Bird 0.049 0.273 0.127 ✓ +2026-07-13 08:30:17,123 | INFO | Rodents, rats, mice 0.086 0.000 0.056 ✗ +2026-07-13 08:30:17,123 | INFO | Horse 0.078 0.000 0.051 ✗ +2026-07-13 08:30:17,123 | INFO | → WINNER: Animal (combined=0.165) +2026-07-13 08:30:17,148 | INFO | +[662.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,148 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,156 | INFO | Bird 0.140 0.273 0.186 ✓ +2026-07-13 08:30:17,156 | INFO | Animal 0.278 0.000 0.181 ✓ +2026-07-13 08:30:17,157 | INFO | Bird vocalization, bird call, bird song 0.044 0.273 0.124 ✓ +2026-07-13 08:30:17,157 | INFO | Horse 0.067 0.000 0.043 ✗ +2026-07-13 08:30:17,157 | INFO | Rodents, rats, mice 0.059 0.000 0.039 ✗ +2026-07-13 08:30:17,157 | INFO | Chirp, tweet 0.053 0.000 0.034 ✗ +2026-07-13 08:30:17,157 | INFO | → WINNER: Bird (combined=0.186) +2026-07-13 08:30:17,180 | INFO | +[662.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,180 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,180 | INFO | Animal 0.329 0.000 0.214 ✓ +2026-07-13 08:30:17,180 | INFO | Bird 0.178 0.273 0.211 ✓ +2026-07-13 08:30:17,180 | INFO | Bird vocalization, bird call, bird song 0.029 0.273 0.115 ✗ +2026-07-13 08:30:17,187 | INFO | Chicken, rooster 0.169 0.000 0.110 ✗ +2026-07-13 08:30:17,187 | INFO | Duck 0.166 0.000 0.108 ✗ +2026-07-13 08:30:17,187 | INFO | Livestock, farm animals, working animals 0.101 0.000 0.066 ✗ +2026-07-13 08:30:17,187 | INFO | → WINNER: Animal (combined=0.214) +2026-07-13 08:30:17,214 | INFO | +[662.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,215 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,215 | INFO | Animal 0.371 0.000 0.241 ✓ +2026-07-13 08:30:17,215 | INFO | Bird 0.103 0.273 0.162 ✓ +2026-07-13 08:30:17,215 | INFO | Horse 0.127 0.000 0.082 ✗ +2026-07-13 08:30:17,215 | INFO | Clip-clop 0.099 0.000 0.064 ✗ +2026-07-13 08:30:17,215 | INFO | Duck 0.091 0.000 0.059 ✗ +2026-07-13 08:30:17,215 | INFO | Chicken, rooster 0.061 0.000 0.040 ✗ +2026-07-13 08:30:17,215 | INFO | → WINNER: Animal (combined=0.241) +2026-07-13 08:30:17,245 | INFO | +[662.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,245 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,246 | INFO | Animal 0.423 0.000 0.275 ✓ +2026-07-13 08:30:17,246 | INFO | Bird 0.188 0.273 0.218 ✓ +2026-07-13 08:30:17,246 | INFO | Duck 0.284 0.000 0.184 ✓ +2026-07-13 08:30:17,246 | INFO | Chicken, rooster 0.207 0.000 0.134 ✓ +2026-07-13 08:30:17,246 | INFO | Bird vocalization, bird call, bird song 0.036 0.273 0.119 ✗ +2026-07-13 08:30:17,246 | INFO | Livestock, farm animals, working animals 0.130 0.000 0.085 ✗ +2026-07-13 08:30:17,246 | INFO | → WINNER: Animal (combined=0.275) +2026-07-13 08:30:17,272 | INFO | +[663.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,272 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,272 | INFO | Bird 0.234 0.273 0.247 ✓ +2026-07-13 08:30:17,272 | INFO | Animal 0.300 0.000 0.195 ✓ +2026-07-13 08:30:17,272 | INFO | Duck 0.268 0.000 0.174 ✓ +2026-07-13 08:30:17,272 | INFO | Bird vocalization, bird call, bird song 0.076 0.273 0.145 ✓ +2026-07-13 08:30:17,272 | INFO | Chicken, rooster 0.168 0.000 0.109 ✗ +2026-07-13 08:30:17,272 | INFO | Quack 0.096 0.000 0.062 ✗ +2026-07-13 08:30:17,272 | INFO | → WINNER: Bird (combined=0.247) +2026-07-13 08:30:17,303 | INFO | +[663.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,304 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,304 | INFO | Bird 0.229 0.273 0.244 ✓ +2026-07-13 08:30:17,304 | INFO | Bird vocalization, bird call, bird song 0.133 0.273 0.182 ✓ +2026-07-13 08:30:17,304 | INFO | Animal 0.257 0.000 0.167 ✓ +2026-07-13 08:30:17,304 | INFO | Chirp, tweet 0.200 0.000 0.130 ✓ +2026-07-13 08:30:17,304 | INFO | Duck 0.117 0.000 0.076 ✗ +2026-07-13 08:30:17,304 | INFO | Outside, rural or natural 0.073 0.000 0.047 ✗ +2026-07-13 08:30:17,304 | INFO | → WINNER: Bird (combined=0.244) +2026-07-13 08:30:17,328 | INFO | +[663.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,328 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,328 | INFO | Bird 0.278 0.273 0.276 ✓ +2026-07-13 08:30:17,328 | INFO | Bird vocalization, bird call, bird song 0.152 0.273 0.194 ✓ +2026-07-13 08:30:17,328 | INFO | Animal 0.248 0.000 0.162 ✓ +2026-07-13 08:30:17,328 | INFO | Chirp, tweet 0.208 0.000 0.135 ✓ +2026-07-13 08:30:17,328 | INFO | Duck 0.186 0.000 0.121 ✓ +2026-07-13 08:30:17,328 | INFO | Outside, rural or natural 0.072 0.000 0.047 ✗ +2026-07-13 08:30:17,335 | INFO | → WINNER: Bird (combined=0.276) +2026-07-13 08:30:17,360 | INFO | +[663.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,360 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,360 | INFO | Bird 0.331 0.273 0.310 ✓ +2026-07-13 08:30:17,360 | INFO | Bird vocalization, bird call, bird song 0.177 0.273 0.211 ✓ +2026-07-13 08:30:17,360 | INFO | Chirp, tweet 0.255 0.000 0.166 ✓ +2026-07-13 08:30:17,360 | INFO | Animal 0.246 0.000 0.160 ✓ +2026-07-13 08:30:17,360 | INFO | Outside, rural or natural 0.085 0.000 0.055 ✗ +2026-07-13 08:30:17,360 | INFO | → WINNER: Bird (combined=0.310) +2026-07-13 08:30:17,389 | INFO | +[663.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,389 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,389 | INFO | Bird 0.263 0.273 0.266 ✓ +2026-07-13 08:30:17,389 | INFO | Animal 0.359 0.000 0.234 ✓ +2026-07-13 08:30:17,389 | INFO | Bird vocalization, bird call, bird song 0.087 0.273 0.152 ✓ +2026-07-13 08:30:17,392 | INFO | Chirp, tweet 0.122 0.000 0.080 ✗ +2026-07-13 08:30:17,392 | INFO | Rodents, rats, mice 0.086 0.000 0.056 ✗ +2026-07-13 08:30:17,393 | INFO | Outside, rural or natural 0.068 0.000 0.044 ✗ +2026-07-13 08:30:17,393 | INFO | → WINNER: Bird (combined=0.266) +2026-07-13 08:30:17,417 | INFO | +[664.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,417 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,417 | INFO | Squawk 0.314 0.000 0.204 ✓ +2026-07-13 08:30:17,417 | INFO | Bird 0.121 0.273 0.174 ✓ +2026-07-13 08:30:17,417 | INFO | Animal 0.214 0.000 0.139 ✓ +2026-07-13 08:30:17,417 | INFO | Bird vocalization, bird call, bird song 0.030 0.273 0.115 ✗ +2026-07-13 08:30:17,417 | INFO | Outside, rural or natural 0.141 0.000 0.091 ✗ +2026-07-13 08:30:17,417 | INFO | Rodents, rats, mice 0.073 0.000 0.047 ✗ +2026-07-13 08:30:17,417 | INFO | → WINNER: Squawk (combined=0.204) +2026-07-13 08:30:17,443 | INFO | +[664.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,443 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,450 | INFO | Squawk 0.257 0.000 0.167 ✓ +2026-07-13 08:30:17,450 | INFO | Bird 0.102 0.273 0.162 ✓ +2026-07-13 08:30:17,450 | INFO | Animal 0.161 0.000 0.105 ✗ +2026-07-13 08:30:17,450 | INFO | Outside, rural or natural 0.157 0.000 0.102 ✗ +2026-07-13 08:30:17,450 | INFO | Rodents, rats, mice 0.081 0.000 0.053 ✗ +2026-07-13 08:30:17,450 | INFO | Patter 0.057 0.000 0.037 ✗ +2026-07-13 08:30:17,450 | INFO | → WINNER: Squawk (combined=0.167) +2026-07-13 08:30:17,475 | INFO | +[664.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,475 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,478 | INFO | Bird 0.225 0.273 0.241 ✓ +2026-07-13 08:30:17,478 | INFO | Squawk 0.240 0.000 0.156 ✓ +2026-07-13 08:30:17,478 | INFO | Bird vocalization, bird call, bird song 0.079 0.273 0.147 ✓ +2026-07-13 08:30:17,478 | INFO | Animal 0.219 0.000 0.143 ✓ +2026-07-13 08:30:17,478 | INFO | Outside, rural or natural 0.189 0.000 0.123 ✓ +2026-07-13 08:30:17,478 | INFO | Duck 0.161 0.000 0.104 ✗ +2026-07-13 08:30:17,478 | INFO | → WINNER: Bird (combined=0.241) +2026-07-13 08:30:17,507 | INFO | +[664.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,507 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,507 | INFO | Bird 0.216 0.273 0.236 ✓ +2026-07-13 08:30:17,507 | INFO | Squawk 0.309 0.000 0.201 ✓ +2026-07-13 08:30:17,507 | INFO | Outside, rural or natural 0.265 0.000 0.172 ✓ +2026-07-13 08:30:17,507 | INFO | Bird vocalization, bird call, bird song 0.045 0.273 0.125 ✓ +2026-07-13 08:30:17,507 | INFO | Animal 0.153 0.000 0.100 ✗ +2026-07-13 08:30:17,507 | INFO | Squeal 0.064 0.000 0.042 ✗ +2026-07-13 08:30:17,507 | INFO | → WINNER: Bird (combined=0.236) +2026-07-13 08:30:17,531 | INFO | +[664.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,531 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,531 | INFO | Bird 0.224 0.273 0.241 ✓ +2026-07-13 08:30:17,531 | INFO | Bird vocalization, bird call, bird song 0.086 0.273 0.151 ✓ +2026-07-13 08:30:17,531 | INFO | Animal 0.219 0.000 0.143 ✓ +2026-07-13 08:30:17,531 | INFO | Duck 0.179 0.000 0.116 ✗ +2026-07-13 08:30:17,531 | INFO | Outside, rural or natural 0.128 0.000 0.083 ✗ +2026-07-13 08:30:17,531 | INFO | Chirp, tweet 0.113 0.000 0.074 ✗ +2026-07-13 08:30:17,531 | INFO | → WINNER: Bird (combined=0.241) +2026-07-13 08:30:17,563 | INFO | +[665.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,564 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,566 | INFO | Bird 0.349 0.273 0.323 ✓ +2026-07-13 08:30:17,566 | INFO | Bird vocalization, bird call, bird song 0.174 0.273 0.209 ✓ +2026-07-13 08:30:17,566 | INFO | Animal 0.253 0.000 0.165 ✓ +2026-07-13 08:30:17,566 | INFO | Chirp, tweet 0.222 0.000 0.144 ✓ +2026-07-13 08:30:17,568 | INFO | Duck 0.168 0.000 0.109 ✗ +2026-07-13 08:30:17,568 | INFO | Environmental noise 0.115 0.000 0.075 ✗ +2026-07-13 08:30:17,568 | INFO | → WINNER: Bird (combined=0.323) +2026-07-13 08:30:17,588 | INFO | +[665.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,597 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,597 | INFO | Bird 0.196 0.273 0.223 ✓ +2026-07-13 08:30:17,597 | INFO | Animal 0.291 0.000 0.189 ✓ +2026-07-13 08:30:17,597 | INFO | Bird vocalization, bird call, bird song 0.083 0.273 0.149 ✓ +2026-07-13 08:30:17,597 | INFO | Duck 0.146 0.000 0.095 ✗ +2026-07-13 08:30:17,597 | INFO | Outside, rural or natural 0.093 0.000 0.061 ✗ +2026-07-13 08:30:17,597 | INFO | Chirp, tweet 0.092 0.000 0.060 ✗ +2026-07-13 08:30:17,597 | INFO | → WINNER: Bird (combined=0.223) +2026-07-13 08:30:17,621 | INFO | +[665.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,621 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,621 | INFO | Bird 0.207 0.273 0.230 ✓ +2026-07-13 08:30:17,621 | INFO | Animal 0.309 0.000 0.201 ✓ +2026-07-13 08:30:17,621 | INFO | Bird vocalization, bird call, bird song 0.091 0.273 0.155 ✓ +2026-07-13 08:30:17,621 | INFO | Outside, rural or natural 0.104 0.000 0.068 ✗ +2026-07-13 08:30:17,621 | INFO | Chirp, tweet 0.100 0.000 0.065 ✗ +2026-07-13 08:30:17,621 | INFO | Environmental noise 0.088 0.000 0.057 ✗ +2026-07-13 08:30:17,621 | INFO | → WINNER: Bird (combined=0.230) +2026-07-13 08:30:17,655 | INFO | +[665.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,655 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,655 | INFO | Bird 0.190 0.273 0.219 ✓ +2026-07-13 08:30:17,655 | INFO | Animal 0.242 0.000 0.157 ✓ +2026-07-13 08:30:17,655 | INFO | Bird vocalization, bird call, bird song 0.069 0.273 0.140 ✓ +2026-07-13 08:30:17,655 | INFO | Duck 0.122 0.000 0.080 ✗ +2026-07-13 08:30:17,655 | INFO | Rodents, rats, mice 0.116 0.000 0.075 ✗ +2026-07-13 08:30:17,655 | INFO | Outside, rural or natural 0.085 0.000 0.055 ✗ +2026-07-13 08:30:17,655 | INFO | → WINNER: Bird (combined=0.219) +2026-07-13 08:30:17,678 | INFO | +[665.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,678 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,686 | INFO | Animal 0.391 0.000 0.254 ✓ +2026-07-13 08:30:17,686 | INFO | Bird 0.087 0.273 0.152 ✓ +2026-07-13 08:30:17,686 | INFO | Rodents, rats, mice 0.179 0.000 0.116 ✗ +2026-07-13 08:30:17,687 | INFO | Duck 0.115 0.000 0.075 ✗ +2026-07-13 08:30:17,687 | INFO | Domestic animals, pets 0.097 0.000 0.063 ✗ +2026-07-13 08:30:17,687 | INFO | Outside, rural or natural 0.063 0.000 0.041 ✗ +2026-07-13 08:30:17,687 | INFO | → WINNER: Animal (combined=0.254) +2026-07-13 08:30:17,714 | INFO | +[666.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,714 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,714 | INFO | Bird 0.209 0.273 0.232 ✓ +2026-07-13 08:30:17,714 | INFO | Animal 0.217 0.000 0.141 ✓ +2026-07-13 08:30:17,714 | INFO | Duck 0.209 0.000 0.136 ✓ +2026-07-13 08:30:17,714 | INFO | Bird vocalization, bird call, bird song 0.044 0.273 0.124 ✓ +2026-07-13 08:30:17,719 | INFO | Squawk 0.172 0.000 0.112 ✗ +2026-07-13 08:30:17,719 | INFO | Outside, rural or natural 0.096 0.000 0.063 ✗ +2026-07-13 08:30:17,719 | INFO | → WINNER: Bird (combined=0.232) +2026-07-13 08:30:17,744 | INFO | +[666.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,744 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,744 | INFO | Bird 0.106 0.273 0.164 ✓ +2026-07-13 08:30:17,744 | INFO | Animal 0.209 0.000 0.136 ✓ +2026-07-13 08:30:17,744 | INFO | Alarm 0.103 0.000 0.067 ✗ +2026-07-13 08:30:17,744 | INFO | Squawk 0.065 0.000 0.042 ✗ +2026-07-13 08:30:17,744 | INFO | Rodents, rats, mice 0.059 0.000 0.038 ✗ +2026-07-13 08:30:17,744 | INFO | → WINNER: Bird (combined=0.164) +2026-07-13 08:30:17,772 | INFO | +[666.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,776 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,776 | INFO | Bird 0.263 0.273 0.266 ✓ +2026-07-13 08:30:17,777 | INFO | Squawk 0.330 0.000 0.214 ✓ +2026-07-13 08:30:17,777 | INFO | Bird vocalization, bird call, bird song 0.061 0.273 0.135 ✓ +2026-07-13 08:30:17,777 | INFO | Duck 0.181 0.000 0.118 ✗ +2026-07-13 08:30:17,777 | INFO | Animal 0.165 0.000 0.107 ✗ +2026-07-13 08:30:17,777 | INFO | Chirp, tweet 0.069 0.000 0.045 ✗ +2026-07-13 08:30:17,777 | INFO | → WINNER: Bird (combined=0.266) +2026-07-13 08:30:17,801 | INFO | +[666.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,801 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,801 | INFO | Bird 0.278 0.273 0.276 ✓ +2026-07-13 08:30:17,801 | INFO | Bird vocalization, bird call, bird song 0.059 0.273 0.134 ✓ +2026-07-13 08:30:17,801 | INFO | Chicken, rooster 0.122 0.000 0.079 ✗ +2026-07-13 08:30:17,801 | INFO | Animal 0.094 0.000 0.061 ✗ +2026-07-13 08:30:17,801 | INFO | Alarm 0.093 0.000 0.060 ✗ +2026-07-13 08:30:17,801 | INFO | Chirp, tweet 0.070 0.000 0.046 ✗ +2026-07-13 08:30:17,801 | INFO | → WINNER: Bird (combined=0.276) +2026-07-13 08:30:17,833 | INFO | +[666.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,833 | INFO | Bird 0.330 0.273 0.310 ✓ +2026-07-13 08:30:17,833 | INFO | Bird vocalization, bird call, bird song 0.119 0.273 0.173 ✓ +2026-07-13 08:30:17,833 | INFO | Animal 0.177 0.000 0.115 ✗ +2026-07-13 08:30:17,833 | INFO | Chirp, tweet 0.142 0.000 0.092 ✗ +2026-07-13 08:30:17,833 | INFO | Bird flight, flapping wings 0.064 0.000 0.042 ✗ +2026-07-13 08:30:17,833 | INFO | Outside, rural or natural 0.052 0.000 0.034 ✗ +2026-07-13 08:30:17,833 | INFO | → WINNER: Bird (combined=0.310) +2026-07-13 08:30:17,859 | INFO | +[667.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,859 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,859 | INFO | Bird 0.322 0.273 0.305 ✓ +2026-07-13 08:30:17,859 | INFO | Chicken, rooster 0.374 0.000 0.243 ✓ +2026-07-13 08:30:17,859 | INFO | Bird vocalization, bird call, bird song 0.115 0.273 0.170 ✓ +2026-07-13 08:30:17,859 | INFO | Cluck 0.240 0.000 0.156 ✓ +2026-07-13 08:30:17,859 | INFO | Animal 0.145 0.000 0.094 ✗ +2026-07-13 08:30:17,866 | INFO | Chirp, tweet 0.140 0.000 0.091 ✗ +2026-07-13 08:30:17,866 | INFO | → WINNER: Bird (combined=0.305) +2026-07-13 08:30:17,892 | INFO | +[667.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-07-13 08:30:17,892 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,892 | INFO | Bird 0.275 0.273 0.274 ✓ +2026-07-13 08:30:17,892 | INFO | Chicken, rooster 0.328 0.000 0.213 ✓ +2026-07-13 08:30:17,892 | INFO | Animal 0.211 0.000 0.137 ✓ +2026-07-13 08:30:17,892 | INFO | Bird vocalization, bird call, bird song 0.062 0.273 0.136 ✓ +2026-07-13 08:30:17,892 | INFO | Cluck 0.188 0.000 0.122 ✓ +2026-07-13 08:30:17,892 | INFO | Livestock, farm animals, working animals 0.122 0.000 0.079 ✗ +2026-07-13 08:30:17,892 | INFO | → WINNER: Bird (combined=0.274) +2026-07-13 08:30:17,920 | INFO | +[667.40s] AMBIENT | scene='' +2026-07-13 08:30:17,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,920 | INFO | Duck 0.347 0.000 0.226 ✓ +2026-07-13 08:30:17,920 | INFO | Animal 0.229 0.000 0.149 ✓ +2026-07-13 08:30:17,924 | INFO | Bird 0.210 0.000 0.136 ✓ +2026-07-13 08:30:17,924 | INFO | Quack 0.166 0.000 0.108 ✗ +2026-07-13 08:30:17,924 | INFO | Chicken, rooster 0.063 0.000 0.041 ✗ +2026-07-13 08:30:17,924 | INFO | Outside, rural or natural 0.057 0.000 0.037 ✗ +2026-07-13 08:30:17,924 | INFO | → WINNER: Duck (combined=0.226) +2026-07-13 08:30:17,949 | INFO | +[667.60s] AMBIENT | scene='' +2026-07-13 08:30:17,949 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,949 | INFO | Animal 0.270 0.000 0.175 ✓ +2026-07-13 08:30:17,949 | INFO | Bird 0.178 0.000 0.116 ✗ +2026-07-13 08:30:17,949 | INFO | Vehicle 0.110 0.000 0.072 ✗ +2026-07-13 08:30:17,949 | INFO | Outside, rural or natural 0.091 0.000 0.059 ✗ +2026-07-13 08:30:17,949 | INFO | Chirp, tweet 0.073 0.000 0.048 ✗ +2026-07-13 08:30:17,949 | INFO | Bird vocalization, bird call, bird song 0.064 0.000 0.041 ✗ +2026-07-13 08:30:17,949 | INFO | → WINNER: Animal (combined=0.175) +2026-07-13 08:30:17,980 | INFO | +[667.80s] AMBIENT | scene='' +2026-07-13 08:30:17,980 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:17,982 | INFO | Duck 0.410 0.000 0.267 ✓ +2026-07-13 08:30:17,982 | INFO | Bird 0.294 0.000 0.191 ✓ +2026-07-13 08:30:17,982 | INFO | Animal 0.286 0.000 0.186 ✓ +2026-07-13 08:30:17,982 | INFO | Quack 0.156 0.000 0.101 ✗ +2026-07-13 08:30:17,982 | INFO | Chirp, tweet 0.086 0.000 0.056 ✗ +2026-07-13 08:30:17,982 | INFO | Bird vocalization, bird call, bird song 0.067 0.000 0.043 ✗ +2026-07-13 08:30:17,982 | INFO | → WINNER: Duck (combined=0.267) +2026-07-13 08:30:18,007 | INFO | +[668.00s] AMBIENT | scene='' +2026-07-13 08:30:18,007 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,007 | INFO | Duck 0.476 0.000 0.309 ✓ +2026-07-13 08:30:18,007 | INFO | Bird 0.444 0.000 0.289 ✓ +2026-07-13 08:30:18,007 | INFO | Animal 0.273 0.000 0.178 ✓ +2026-07-13 08:30:18,007 | INFO | Quack 0.145 0.000 0.094 ✗ +2026-07-13 08:30:18,007 | INFO | Chirp, tweet 0.135 0.000 0.088 ✗ +2026-07-13 08:30:18,007 | INFO | Livestock, farm animals, working animals 0.132 0.000 0.086 ✗ +2026-07-13 08:30:18,007 | INFO | → WINNER: Duck (combined=0.309) +2026-07-13 08:30:18,035 | INFO | +[668.20s] AMBIENT | scene='' +2026-07-13 08:30:18,039 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,039 | INFO | Bird 0.441 0.000 0.287 ✓ +2026-07-13 08:30:18,039 | INFO | Duck 0.378 0.000 0.246 ✓ +2026-07-13 08:30:18,039 | INFO | Animal 0.330 0.000 0.215 ✓ +2026-07-13 08:30:18,039 | INFO | Chirp, tweet 0.179 0.000 0.116 ✗ +2026-07-13 08:30:18,039 | INFO | Domestic animals, pets 0.145 0.000 0.094 ✗ +2026-07-13 08:30:18,039 | INFO | Bird vocalization, bird call, bird song 0.119 0.000 0.078 ✗ +2026-07-13 08:30:18,039 | INFO | → WINNER: Bird (combined=0.287) +2026-07-13 08:30:18,064 | INFO | +[668.40s] AMBIENT | scene='' +2026-07-13 08:30:18,064 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,064 | INFO | Bird 0.460 0.000 0.299 ✓ +2026-07-13 08:30:18,064 | INFO | Animal 0.362 0.000 0.235 ✓ +2026-07-13 08:30:18,064 | INFO | Duck 0.287 0.000 0.187 ✓ +2026-07-13 08:30:18,064 | INFO | Chirp, tweet 0.188 0.000 0.122 ✓ +2026-07-13 08:30:18,064 | INFO | Domestic animals, pets 0.164 0.000 0.107 ✗ +2026-07-13 08:30:18,064 | INFO | Livestock, farm animals, working animals 0.149 0.000 0.097 ✗ +2026-07-13 08:30:18,064 | INFO | → WINNER: Bird (combined=0.299) +2026-07-13 08:30:18,096 | INFO | +[668.60s] AMBIENT | scene='' +2026-07-13 08:30:18,099 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,100 | INFO | Animal 0.418 0.000 0.272 ✓ +2026-07-13 08:30:18,100 | INFO | Bird 0.390 0.000 0.253 ✓ +2026-07-13 08:30:18,100 | INFO | Duck 0.283 0.000 0.184 ✓ +2026-07-13 08:30:18,100 | INFO | Chirp, tweet 0.173 0.000 0.112 ✗ +2026-07-13 08:30:18,100 | INFO | Domestic animals, pets 0.133 0.000 0.086 ✗ +2026-07-13 08:30:18,100 | INFO | Bird vocalization, bird call, bird song 0.115 0.000 0.075 ✗ +2026-07-13 08:30:18,100 | INFO | → WINNER: Animal (combined=0.272) +2026-07-13 08:30:18,120 | INFO | +[668.80s] AMBIENT | scene='' +2026-07-13 08:30:18,120 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,120 | INFO | Duck 0.304 0.000 0.197 ✓ +2026-07-13 08:30:18,129 | INFO | Bird 0.282 0.000 0.183 ✓ +2026-07-13 08:30:18,129 | INFO | Animal 0.282 0.000 0.183 ✓ +2026-07-13 08:30:18,129 | INFO | Chicken, rooster 0.123 0.000 0.080 ✗ +2026-07-13 08:30:18,129 | INFO | Music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:18,129 | INFO | Quack 0.101 0.000 0.066 ✗ +2026-07-13 08:30:18,129 | INFO | → WINNER: Duck (combined=0.197) +2026-07-13 08:30:18,154 | INFO | +[669.00s] AMBIENT | scene='' +2026-07-13 08:30:18,154 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,154 | INFO | Music 0.464 0.000 0.302 ✓ +2026-07-13 08:30:18,154 | INFO | Bird 0.289 0.000 0.188 ✓ +2026-07-13 08:30:18,154 | INFO | Animal 0.168 0.000 0.109 ✗ +2026-07-13 08:30:18,154 | INFO | Duck 0.152 0.000 0.099 ✗ +2026-07-13 08:30:18,154 | INFO | Chirp, tweet 0.149 0.000 0.097 ✗ +2026-07-13 08:30:18,154 | INFO | Bird vocalization, bird call, bird song 0.112 0.000 0.072 ✗ +2026-07-13 08:30:18,154 | INFO | → WINNER: Music (combined=0.302) +2026-07-13 08:30:18,184 | INFO | +[669.20s] AMBIENT | scene='' +2026-07-13 08:30:18,184 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,186 | INFO | Music 0.629 0.000 0.409 ✓ +2026-07-13 08:30:18,186 | INFO | Bird 0.184 0.000 0.119 ✗ +2026-07-13 08:30:18,187 | INFO | Animal 0.157 0.000 0.102 ✗ +2026-07-13 08:30:18,187 | INFO | Chirp, tweet 0.110 0.000 0.071 ✗ +2026-07-13 08:30:18,187 | INFO | Musical instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:18,187 | INFO | Bird vocalization, bird call, bird song 0.092 0.000 0.060 ✗ +2026-07-13 08:30:18,187 | INFO | → WINNER: Music (combined=0.409) +2026-07-13 08:30:18,211 | INFO | +[669.40s] AMBIENT | scene='' +2026-07-13 08:30:18,211 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,211 | INFO | Bird 0.178 0.000 0.116 ✗ +2026-07-13 08:30:18,211 | INFO | Music 0.172 0.000 0.112 ✗ +2026-07-13 08:30:18,211 | INFO | Animal 0.131 0.000 0.085 ✗ +2026-07-13 08:30:18,211 | INFO | Chirp, tweet 0.083 0.000 0.054 ✗ +2026-07-13 08:30:18,211 | INFO | Bird vocalization, bird call, bird song 0.071 0.000 0.046 ✗ +2026-07-13 08:30:18,211 | INFO | → no winner +2026-07-13 08:30:18,243 | INFO | +[669.60s] AMBIENT | scene='' +2026-07-13 08:30:18,243 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,243 | INFO | Bird 0.324 0.000 0.211 ✓ +2026-07-13 08:30:18,243 | INFO | Chirp, tweet 0.269 0.000 0.175 ✓ +2026-07-13 08:30:18,243 | INFO | Bird vocalization, bird call, bird song 0.192 0.000 0.125 ✓ +2026-07-13 08:30:18,243 | INFO | Animal 0.162 0.000 0.105 ✗ +2026-07-13 08:30:18,243 | INFO | Duck 0.098 0.000 0.064 ✗ +2026-07-13 08:30:18,243 | INFO | Outside, rural or natural 0.091 0.000 0.059 ✗ +2026-07-13 08:30:18,243 | INFO | → WINNER: Bird (combined=0.211) +2026-07-13 08:30:18,272 | INFO | +[669.80s] AMBIENT | scene='' +2026-07-13 08:30:18,272 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,272 | INFO | Bird 0.225 0.000 0.146 ✓ +2026-07-13 08:30:18,272 | INFO | Chirp, tweet 0.148 0.000 0.096 ✗ +2026-07-13 08:30:18,272 | INFO | Bird vocalization, bird call, bird song 0.136 0.000 0.088 ✗ +2026-07-13 08:30:18,272 | INFO | Animal 0.127 0.000 0.083 ✗ +2026-07-13 08:30:18,275 | INFO | Rodents, rats, mice 0.126 0.000 0.082 ✗ +2026-07-13 08:30:18,275 | INFO | Vehicle 0.063 0.000 0.041 ✗ +2026-07-13 08:30:18,275 | INFO | → WINNER: Bird (combined=0.146) +2026-07-13 08:30:18,300 | INFO | +[670.00s] AMBIENT | scene='' +2026-07-13 08:30:18,300 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,300 | INFO | Bird 0.258 0.000 0.167 ✓ +2026-07-13 08:30:18,300 | INFO | Animal 0.229 0.000 0.149 ✓ +2026-07-13 08:30:18,300 | INFO | Rodents, rats, mice 0.126 0.000 0.082 ✗ +2026-07-13 08:30:18,300 | INFO | Outside, rural or natural 0.102 0.000 0.066 ✗ +2026-07-13 08:30:18,300 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.058 ✗ +2026-07-13 08:30:18,300 | INFO | Chirp, tweet 0.085 0.000 0.055 ✗ +2026-07-13 08:30:18,300 | INFO | → WINNER: Bird (combined=0.167) +2026-07-13 08:30:18,325 | INFO | +[670.20s] AMBIENT | scene='' +2026-07-13 08:30:18,325 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,325 | INFO | Rodents, rats, mice 0.287 0.000 0.187 ✓ +2026-07-13 08:30:18,332 | INFO | Bird 0.228 0.000 0.148 ✓ +2026-07-13 08:30:18,332 | INFO | Animal 0.200 0.000 0.130 ✓ +2026-07-13 08:30:18,332 | INFO | Duck 0.141 0.000 0.091 ✗ +2026-07-13 08:30:18,333 | INFO | Patter 0.097 0.000 0.063 ✗ +2026-07-13 08:30:18,333 | INFO | Outside, rural or natural 0.073 0.000 0.048 ✗ +2026-07-13 08:30:18,334 | INFO | → WINNER: Rodents, rats, mice (combined=0.187) +2026-07-13 08:30:18,357 | INFO | +[670.40s] AMBIENT | scene='' +2026-07-13 08:30:18,357 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,357 | INFO | Rodents, rats, mice 0.277 0.000 0.180 ✓ +2026-07-13 08:30:18,357 | INFO | Animal 0.273 0.000 0.178 ✓ +2026-07-13 08:30:18,357 | INFO | Bird 0.172 0.000 0.112 ✗ +2026-07-13 08:30:18,357 | INFO | Patter 0.127 0.000 0.083 ✗ +2026-07-13 08:30:18,357 | INFO | Vehicle 0.096 0.000 0.063 ✗ +2026-07-13 08:30:18,357 | INFO | Mouse 0.073 0.000 0.047 ✗ +2026-07-13 08:30:18,357 | INFO | → WINNER: Rodents, rats, mice (combined=0.180) +2026-07-13 08:30:18,382 | INFO | +[670.60s] AMBIENT | scene='' +2026-07-13 08:30:18,382 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,390 | INFO | Animal 0.286 0.000 0.186 ✓ +2026-07-13 08:30:18,390 | INFO | Bird 0.216 0.000 0.140 ✓ +2026-07-13 08:30:18,390 | INFO | Chirp, tweet 0.092 0.000 0.060 ✗ +2026-07-13 08:30:18,390 | INFO | Bird vocalization, bird call, bird song 0.091 0.000 0.059 ✗ +2026-07-13 08:30:18,390 | INFO | Rodents, rats, mice 0.089 0.000 0.058 ✗ +2026-07-13 08:30:18,390 | INFO | Outside, rural or natural 0.083 0.000 0.054 ✗ +2026-07-13 08:30:18,390 | INFO | → WINNER: Animal (combined=0.186) +2026-07-13 08:30:18,415 | INFO | +[670.80s] AMBIENT | scene='' +2026-07-13 08:30:18,415 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,415 | INFO | Animal 0.292 0.000 0.190 ✓ +2026-07-13 08:30:18,415 | INFO | Bird 0.228 0.000 0.148 ✓ +2026-07-13 08:30:18,415 | INFO | Duck 0.142 0.000 0.093 ✗ +2026-07-13 08:30:18,415 | INFO | Chirp, tweet 0.120 0.000 0.078 ✗ +2026-07-13 08:30:18,415 | INFO | Bird vocalization, bird call, bird song 0.103 0.000 0.067 ✗ +2026-07-13 08:30:18,415 | INFO | Outside, rural or natural 0.101 0.000 0.065 ✗ +2026-07-13 08:30:18,415 | INFO | → WINNER: Animal (combined=0.190) +2026-07-13 08:30:18,448 | INFO | +[671.00s] AMBIENT | scene='' +2026-07-13 08:30:18,448 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,448 | INFO | Bird 0.291 0.000 0.189 ✓ +2026-07-13 08:30:18,448 | INFO | Duck 0.243 0.000 0.158 ✓ +2026-07-13 08:30:18,448 | INFO | Chicken, rooster 0.228 0.000 0.148 ✓ +2026-07-13 08:30:18,448 | INFO | Animal 0.221 0.000 0.143 ✓ +2026-07-13 08:30:18,448 | INFO | Cluck 0.129 0.000 0.084 ✗ +2026-07-13 08:30:18,448 | INFO | Chirp, tweet 0.119 0.000 0.077 ✗ +2026-07-13 08:30:18,448 | INFO | → WINNER: Bird (combined=0.189) +2026-07-13 08:30:18,473 | INFO | +[671.20s] AMBIENT | scene='' +2026-07-13 08:30:18,473 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,473 | INFO | Animal 0.419 0.000 0.273 ✓ +2026-07-13 08:30:18,473 | INFO | Duck 0.291 0.000 0.189 ✓ +2026-07-13 08:30:18,473 | INFO | Bird 0.216 0.000 0.141 ✓ +2026-07-13 08:30:18,473 | INFO | Chicken, rooster 0.186 0.000 0.121 ✓ +2026-07-13 08:30:18,473 | INFO | Livestock, farm animals, working animals 0.110 0.000 0.071 ✗ +2026-07-13 08:30:18,473 | INFO | Quack 0.100 0.000 0.065 ✗ +2026-07-13 08:30:18,473 | INFO | → WINNER: Animal (combined=0.273) +2026-07-13 08:30:18,505 | INFO | +[671.40s] AMBIENT | scene='' +2026-07-13 08:30:18,505 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,505 | INFO | Duck 0.619 0.000 0.403 ✓ +2026-07-13 08:30:18,505 | INFO | Animal 0.451 0.000 0.293 ✓ +2026-07-13 08:30:18,505 | INFO | Quack 0.283 0.000 0.184 ✓ +2026-07-13 08:30:18,505 | INFO | Bird 0.243 0.000 0.158 ✓ +2026-07-13 08:30:18,508 | INFO | Squawk 0.088 0.000 0.057 ✗ +2026-07-13 08:30:18,508 | INFO | Chicken, rooster 0.057 0.000 0.037 ✗ +2026-07-13 08:30:18,508 | INFO | → WINNER: Duck (combined=0.403) +2026-07-13 08:30:18,534 | INFO | +[671.60s] AMBIENT | scene='' +2026-07-13 08:30:18,534 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,534 | INFO | Animal 0.279 0.000 0.181 ✓ +2026-07-13 08:30:18,534 | INFO | Duck 0.223 0.000 0.145 ✓ +2026-07-13 08:30:18,534 | INFO | Bird 0.152 0.000 0.099 ✗ +2026-07-13 08:30:18,534 | INFO | Quack 0.112 0.000 0.073 ✗ +2026-07-13 08:30:18,534 | INFO | Chicken, rooster 0.079 0.000 0.051 ✗ +2026-07-13 08:30:18,534 | INFO | Cluck 0.055 0.000 0.036 ✗ +2026-07-13 08:30:18,534 | INFO | → WINNER: Animal (combined=0.181) +2026-07-13 08:30:18,562 | INFO | +[671.80s] AMBIENT | scene='' +2026-07-13 08:30:18,562 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,562 | INFO | Animal 0.295 0.000 0.192 ✓ +2026-07-13 08:30:18,562 | INFO | Duck 0.238 0.000 0.154 ✓ +2026-07-13 08:30:18,562 | INFO | Quack 0.108 0.000 0.070 ✗ +2026-07-13 08:30:18,562 | INFO | Bird 0.091 0.000 0.059 ✗ +2026-07-13 08:30:18,562 | INFO | Rodents, rats, mice 0.052 0.000 0.034 ✗ +2026-07-13 08:30:18,566 | INFO | → WINNER: Animal (combined=0.192) +2026-07-13 08:30:18,587 | INFO | +[672.00s] AMBIENT | scene='' +2026-07-13 08:30:18,587 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,587 | INFO | Animal 0.339 0.000 0.220 ✓ +2026-07-13 08:30:18,587 | INFO | Duck 0.175 0.000 0.114 ✗ +2026-07-13 08:30:18,587 | INFO | Bird 0.081 0.000 0.053 ✗ +2026-07-13 08:30:18,587 | INFO | → WINNER: Animal (combined=0.220) +2026-07-13 08:30:18,618 | INFO | +[672.20s] AMBIENT | scene='' +2026-07-13 08:30:18,620 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,620 | INFO | Animal 0.295 0.000 0.192 ✓ +2026-07-13 08:30:18,620 | INFO | Bird 0.132 0.000 0.086 ✗ +2026-07-13 08:30:18,620 | INFO | Chicken, rooster 0.071 0.000 0.046 ✗ +2026-07-13 08:30:18,620 | INFO | Horse 0.066 0.000 0.043 ✗ +2026-07-13 08:30:18,623 | INFO | Vehicle 0.060 0.000 0.039 ✗ +2026-07-13 08:30:18,623 | INFO | Outside, rural or natural 0.058 0.000 0.038 ✗ +2026-07-13 08:30:18,623 | INFO | → WINNER: Animal (combined=0.192) +2026-07-13 08:30:18,647 | INFO | +[672.40s] AMBIENT | scene='' +2026-07-13 08:30:18,647 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,647 | INFO | Animal 0.334 0.000 0.217 ✓ +2026-07-13 08:30:18,647 | INFO | Horse 0.089 0.000 0.058 ✗ +2026-07-13 08:30:18,647 | INFO | Bird 0.078 0.000 0.051 ✗ +2026-07-13 08:30:18,647 | INFO | Clip-clop 0.074 0.000 0.048 ✗ +2026-07-13 08:30:18,647 | INFO | Rodents, rats, mice 0.064 0.000 0.042 ✗ +2026-07-13 08:30:18,654 | INFO | Patter 0.060 0.000 0.039 ✗ +2026-07-13 08:30:18,654 | INFO | → WINNER: Animal (combined=0.217) +2026-07-13 08:30:18,678 | INFO | +[672.60s] AMBIENT | scene='' +2026-07-13 08:30:18,678 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,678 | INFO | Animal 0.408 0.000 0.265 ✓ +2026-07-13 08:30:18,678 | INFO | Horse 0.179 0.000 0.116 ✗ +2026-07-13 08:30:18,678 | INFO | Clip-clop 0.152 0.000 0.099 ✗ +2026-07-13 08:30:18,678 | INFO | Bird 0.108 0.000 0.070 ✗ +2026-07-13 08:30:18,678 | INFO | Outside, rural or natural 0.091 0.000 0.059 ✗ +2026-07-13 08:30:18,678 | INFO | Vehicle 0.075 0.000 0.049 ✗ +2026-07-13 08:30:18,678 | INFO | → WINNER: Animal (combined=0.265) +2026-07-13 08:30:18,708 | INFO | +[672.80s] AMBIENT | scene='' +2026-07-13 08:30:18,708 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,708 | INFO | Animal 0.340 0.000 0.221 ✓ +2026-07-13 08:30:18,708 | INFO | Clip-clop 0.177 0.000 0.115 ✗ +2026-07-13 08:30:18,708 | INFO | Horse 0.174 0.000 0.113 ✗ +2026-07-13 08:30:18,708 | INFO | Vehicle 0.106 0.000 0.069 ✗ +2026-07-13 08:30:18,708 | INFO | Bird 0.081 0.000 0.053 ✗ +2026-07-13 08:30:18,708 | INFO | Boat, Water vehicle 0.072 0.000 0.047 ✗ +2026-07-13 08:30:18,708 | INFO | → WINNER: Animal (combined=0.221) +2026-07-13 08:30:18,736 | INFO | +[673.00s] AMBIENT | scene='' +2026-07-13 08:30:18,736 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,736 | INFO | Animal 0.170 0.000 0.111 ✗ +2026-07-13 08:30:18,736 | INFO | Vehicle 0.099 0.000 0.064 ✗ +2026-07-13 08:30:18,736 | INFO | Clip-clop 0.074 0.000 0.048 ✗ +2026-07-13 08:30:18,736 | INFO | Horse 0.064 0.000 0.041 ✗ +2026-07-13 08:30:18,736 | INFO | Walk, footsteps 0.037 0.000 0.024 ✗ +2026-07-13 08:30:18,736 | INFO | → no winner +2026-07-13 08:30:18,761 | INFO | +[673.20s] AMBIENT | scene='' +2026-07-13 08:30:18,761 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,761 | INFO | Animal 0.190 0.000 0.124 ✓ +2026-07-13 08:30:18,761 | INFO | Rodents, rats, mice 0.065 0.000 0.042 ✗ +2026-07-13 08:30:18,761 | INFO | Bird 0.050 0.000 0.033 ✗ +2026-07-13 08:30:18,761 | INFO | → WINNER: Animal (combined=0.124) +2026-07-13 08:30:18,788 | INFO | +[673.40s] AMBIENT | scene='' +2026-07-13 08:30:18,794 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,794 | INFO | Water 0.136 0.000 0.089 ✗ +2026-07-13 08:30:18,794 | INFO | Liquid 0.085 0.000 0.055 ✗ +2026-07-13 08:30:18,795 | INFO | Drip 0.072 0.000 0.047 ✗ +2026-07-13 08:30:18,795 | INFO | Fill (with liquid) 0.062 0.000 0.041 ✗ +2026-07-13 08:30:18,795 | INFO | → no winner +2026-07-13 08:30:18,821 | INFO | +[673.60s] AMBIENT | scene='' +2026-07-13 08:30:18,821 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,821 | INFO | Liquid 0.166 0.000 0.108 ✗ +2026-07-13 08:30:18,821 | INFO | Boat, Water vehicle 0.123 0.000 0.080 ✗ +2026-07-13 08:30:18,821 | INFO | Rowboat, canoe, kayak 0.119 0.000 0.077 ✗ +2026-07-13 08:30:18,821 | INFO | Water 0.102 0.000 0.066 ✗ +2026-07-13 08:30:18,821 | INFO | Vehicle 0.101 0.000 0.066 ✗ +2026-07-13 08:30:18,821 | INFO | Drip 0.100 0.000 0.065 ✗ +2026-07-13 08:30:18,821 | INFO | → no winner +2026-07-13 08:30:18,850 | INFO | +[678.20s] AMBIENT | scene='' +2026-07-13 08:30:18,850 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,850 | INFO | Music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:18,850 | INFO | → no winner +2026-07-13 08:30:18,878 | INFO | +[678.40s] AMBIENT | scene='' +2026-07-13 08:30:18,878 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,878 | INFO | Noise 0.090 0.000 0.059 ✗ +2026-07-13 08:30:18,878 | INFO | → no winner +2026-07-13 08:30:18,906 | INFO | +[678.60s] AMBIENT | scene='' +2026-07-13 08:30:18,906 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,906 | INFO | Frog 0.074 0.000 0.048 ✗ +2026-07-13 08:30:18,906 | INFO | Alarm 0.053 0.000 0.034 ✗ +2026-07-13 08:30:18,908 | INFO | → no winner +2026-07-13 08:30:18,939 | INFO | +[691.00s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:30:18,939 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,939 | INFO | Bird 0.239 0.325 0.269 ✓ +2026-07-13 08:30:18,939 | INFO | Bird vocalization, bird call, bird song 0.105 0.337 0.186 ✓ +2026-07-13 08:30:18,939 | INFO | Environmental noise 0.069 0.390 0.181 ✓ +2026-07-13 08:30:18,941 | INFO | Animal 0.240 0.000 0.156 ✓ +2026-07-13 08:30:18,941 | INFO | Duck 0.128 0.000 0.083 ✗ +2026-07-13 08:30:18,941 | INFO | Chirp, tweet 0.103 0.000 0.067 ✗ +2026-07-13 08:30:18,941 | INFO | → WINNER: Bird (combined=0.269) +2026-07-13 08:30:18,966 | INFO | +[691.20s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:30:18,967 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,968 | INFO | Bird 0.150 0.325 0.211 ✓ +2026-07-13 08:30:18,968 | INFO | Environmental noise 0.072 0.390 0.183 ✓ +2026-07-13 08:30:18,968 | INFO | Bird vocalization, bird call, bird song 0.084 0.337 0.172 ✓ +2026-07-13 08:30:18,968 | INFO | Cricket 0.092 0.307 0.167 ✓ +2026-07-13 08:30:18,968 | INFO | Animal 0.146 0.000 0.095 ✗ +2026-07-13 08:30:18,968 | INFO | Chirp, tweet 0.086 0.000 0.056 ✗ +2026-07-13 08:30:18,968 | INFO | → WINNER: Bird (combined=0.211) +2026-07-13 08:30:18,990 | INFO | +[691.40s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:30:18,990 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:18,990 | INFO | Bird 0.207 0.325 0.248 ✓ +2026-07-13 08:30:18,990 | INFO | Environmental noise 0.132 0.390 0.222 ✓ +2026-07-13 08:30:18,990 | INFO | Bird vocalization, bird call, bird song 0.113 0.337 0.191 ✓ +2026-07-13 08:30:18,990 | INFO | Animal 0.168 0.000 0.109 ✗ +2026-07-13 08:30:18,990 | INFO | Chirp, tweet 0.104 0.000 0.068 ✗ +2026-07-13 08:30:18,990 | INFO | Outside, rural or natural 0.061 0.000 0.040 ✗ +2026-07-13 08:30:18,990 | INFO | → WINNER: Bird (combined=0.248) +2026-07-13 08:30:19,024 | INFO | +[691.60s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:30:19,024 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,024 | INFO | Environmental noise 0.166 0.390 0.244 ✓ +2026-07-13 08:30:19,024 | INFO | Bird 0.183 0.325 0.233 ✓ +2026-07-13 08:30:19,024 | INFO | Bird vocalization, bird call, bird song 0.098 0.337 0.182 ✓ +2026-07-13 08:30:19,024 | INFO | Animal 0.188 0.000 0.122 ✓ +2026-07-13 08:30:19,024 | INFO | Chirp, tweet 0.086 0.000 0.056 ✗ +2026-07-13 08:30:19,024 | INFO | Outside, rural or natural 0.067 0.000 0.044 ✗ +2026-07-13 08:30:19,024 | INFO | → WINNER: Environmental noise (combined=0.244) +2026-07-13 08:30:19,048 | INFO | +[691.80s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-07-13 08:30:19,048 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,048 | INFO | Bird 0.192 0.325 0.239 ✓ +2026-07-13 08:30:19,048 | INFO | Environmental noise 0.103 0.390 0.203 ✓ +2026-07-13 08:30:19,048 | INFO | Insect 0.108 0.378 0.202 ✓ +2026-07-13 08:30:19,048 | INFO | Bird vocalization, bird call, bird song 0.105 0.337 0.186 ✓ +2026-07-13 08:30:19,048 | INFO | Animal 0.164 0.000 0.107 ✗ +2026-07-13 08:30:19,048 | INFO | Chirp, tweet 0.102 0.000 0.066 ✗ +2026-07-13 08:30:19,048 | INFO | → WINNER: Bird (combined=0.239) +2026-07-13 08:30:19,082 | INFO | +[697.60s] AMBIENT | scene='' +2026-07-13 08:30:19,082 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,082 | INFO | Music 0.830 0.000 0.540 ✓ +2026-07-13 08:30:19,082 | INFO | Wood block 0.440 0.000 0.286 ✓ +2026-07-13 08:30:19,082 | INFO | Percussion 0.311 0.000 0.202 ✓ +2026-07-13 08:30:19,082 | INFO | Musical instrument 0.164 0.000 0.106 ✗ +2026-07-13 08:30:19,082 | INFO | Drum 0.119 0.000 0.077 ✗ +2026-07-13 08:30:19,082 | INFO | Salsa music 0.109 0.000 0.071 ✗ +2026-07-13 08:30:19,082 | INFO | → WINNER: Music (combined=0.540) +2026-07-13 08:30:19,123 | INFO | +[748.40s] AMBIENT | scene='' +2026-07-13 08:30:19,123 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,123 | INFO | Music 0.204 0.000 0.133 ✓ +2026-07-13 08:30:19,123 | INFO | Singing 0.122 0.000 0.079 ✗ +2026-07-13 08:30:19,123 | INFO | Mantra 0.059 0.000 0.038 ✗ +2026-07-13 08:30:19,123 | INFO | → WINNER: Music (combined=0.133) +2026-07-13 08:30:19,156 | INFO | +[751.00s] AMBIENT | scene='' +2026-07-13 08:30:19,156 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,156 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:30:19,156 | INFO | Singing 0.278 0.000 0.181 ✓ +2026-07-13 08:30:19,156 | INFO | Middle Eastern music 0.231 0.000 0.150 ✓ +2026-07-13 08:30:19,156 | INFO | Folk music 0.189 0.000 0.123 ✓ +2026-07-13 08:30:19,156 | INFO | Tabla 0.158 0.000 0.102 ✗ +2026-07-13 08:30:19,156 | INFO | Musical instrument 0.090 0.000 0.058 ✗ +2026-07-13 08:30:19,156 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:19,184 | INFO | +[753.80s] AMBIENT | scene='' +2026-07-13 08:30:19,184 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,184 | INFO | Music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:19,184 | INFO | → no winner +2026-07-13 08:30:19,214 | INFO | +[754.00s] AMBIENT | scene='' +2026-07-13 08:30:19,238 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,238 | INFO | Music 0.147 0.000 0.096 ✗ +2026-07-13 08:30:19,238 | INFO | → no winner +2026-07-13 08:30:19,296 | INFO | +[754.20s] AMBIENT | scene='' +2026-07-13 08:30:19,296 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,296 | INFO | Music 0.214 0.000 0.139 ✓ +2026-07-13 08:30:19,296 | INFO | → WINNER: Music (combined=0.139) +2026-07-13 08:30:19,362 | INFO | +[754.40s] AMBIENT | scene='' +2026-07-13 08:30:19,362 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,362 | INFO | Music 0.436 0.000 0.284 ✓ +2026-07-13 08:30:19,362 | INFO | Singing 0.195 0.000 0.127 ✓ +2026-07-13 08:30:19,362 | INFO | Mantra 0.054 0.000 0.035 ✗ +2026-07-13 08:30:19,362 | INFO | → WINNER: Music (combined=0.284) +2026-07-13 08:30:19,431 | INFO | +[754.60s] AMBIENT | scene='' +2026-07-13 08:30:19,431 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,431 | INFO | Music 0.481 0.000 0.312 ✓ +2026-07-13 08:30:19,431 | INFO | Singing 0.260 0.000 0.169 ✓ +2026-07-13 08:30:19,431 | INFO | Female singing 0.121 0.000 0.079 ✗ +2026-07-13 08:30:19,435 | INFO | → WINNER: Music (combined=0.312) +2026-07-13 08:30:19,473 | INFO | +[754.80s] AMBIENT | scene='' +2026-07-13 08:30:19,473 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,473 | INFO | Music 0.786 0.000 0.511 ✓ +2026-07-13 08:30:19,473 | INFO | Middle Eastern music 0.273 0.000 0.177 ✓ +2026-07-13 08:30:19,473 | INFO | Singing 0.257 0.000 0.167 ✓ +2026-07-13 08:30:19,473 | INFO | Tabla 0.239 0.000 0.156 ✓ +2026-07-13 08:30:19,473 | INFO | Folk music 0.177 0.000 0.115 ✗ +2026-07-13 08:30:19,476 | INFO | Musical instrument 0.124 0.000 0.081 ✗ +2026-07-13 08:30:19,476 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:19,503 | INFO | +[755.00s] AMBIENT | scene='' +2026-07-13 08:30:19,503 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,503 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:19,503 | INFO | Middle Eastern music 0.344 0.000 0.223 ✓ +2026-07-13 08:30:19,503 | INFO | Singing 0.244 0.000 0.159 ✓ +2026-07-13 08:30:19,503 | INFO | Folk music 0.243 0.000 0.158 ✓ +2026-07-13 08:30:19,503 | INFO | Salsa music 0.182 0.000 0.118 ✗ +2026-07-13 08:30:19,503 | INFO | Musical instrument 0.149 0.000 0.097 ✗ +2026-07-13 08:30:19,503 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:19,536 | INFO | +[755.20s] AMBIENT | scene='' +2026-07-13 08:30:19,536 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,536 | INFO | Music 0.825 0.000 0.536 ✓ +2026-07-13 08:30:19,536 | INFO | Singing 0.290 0.000 0.188 ✓ +2026-07-13 08:30:19,536 | INFO | Musical instrument 0.143 0.000 0.093 ✗ +2026-07-13 08:30:19,536 | INFO | Middle Eastern music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:19,536 | INFO | Folk music 0.116 0.000 0.075 ✗ +2026-07-13 08:30:19,536 | INFO | Music of Latin America 0.096 0.000 0.063 ✗ +2026-07-13 08:30:19,536 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:19,561 | INFO | +[755.40s] AMBIENT | scene='' +2026-07-13 08:30:19,561 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,561 | INFO | Music 0.853 0.000 0.554 ✓ +2026-07-13 08:30:19,561 | INFO | Singing 0.228 0.000 0.148 ✓ +2026-07-13 08:30:19,561 | INFO | Musical instrument 0.190 0.000 0.123 ✓ +2026-07-13 08:30:19,561 | INFO | Music of Latin America 0.133 0.000 0.086 ✗ +2026-07-13 08:30:19,561 | INFO | Salsa music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:19,569 | INFO | Banjo 0.089 0.000 0.058 ✗ +2026-07-13 08:30:19,569 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:19,595 | INFO | +[755.60s] AMBIENT | scene='' +2026-07-13 08:30:19,595 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,595 | INFO | Music 0.280 0.000 0.182 ✓ +2026-07-13 08:30:19,595 | INFO | → WINNER: Music (combined=0.182) +2026-07-13 08:30:19,619 | INFO | +[755.80s] AMBIENT | scene='' +2026-07-13 08:30:19,619 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,619 | INFO | Music 0.144 0.000 0.094 ✗ +2026-07-13 08:30:19,619 | INFO | → no winner +2026-07-13 08:30:19,643 | INFO | +[756.00s] AMBIENT | scene='' +2026-07-13 08:30:19,651 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,651 | INFO | Music 0.206 0.000 0.134 ✓ +2026-07-13 08:30:19,651 | INFO | Singing 0.134 0.000 0.087 ✗ +2026-07-13 08:30:19,651 | INFO | → WINNER: Music (combined=0.134) +2026-07-13 08:30:19,676 | INFO | +[756.20s] AMBIENT | scene='' +2026-07-13 08:30:19,676 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,676 | INFO | Music 0.288 0.000 0.187 ✓ +2026-07-13 08:30:19,676 | INFO | Mantra 0.154 0.000 0.100 ✗ +2026-07-13 08:30:19,676 | INFO | Singing 0.153 0.000 0.099 ✗ +2026-07-13 08:30:19,676 | INFO | Chant 0.140 0.000 0.091 ✗ +2026-07-13 08:30:19,676 | INFO | → WINNER: Music (combined=0.187) +2026-07-13 08:30:19,701 | INFO | +[756.40s] AMBIENT | scene='' +2026-07-13 08:30:19,701 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,701 | INFO | Music 0.471 0.000 0.306 ✓ +2026-07-13 08:30:19,701 | INFO | Singing 0.232 0.000 0.151 ✓ +2026-07-13 08:30:19,701 | INFO | Mantra 0.157 0.000 0.102 ✗ +2026-07-13 08:30:19,701 | INFO | Carnatic music 0.142 0.000 0.092 ✗ +2026-07-13 08:30:19,701 | INFO | Chant 0.108 0.000 0.070 ✗ +2026-07-13 08:30:19,701 | INFO | Female singing 0.100 0.000 0.065 ✗ +2026-07-13 08:30:19,709 | INFO | → WINNER: Music (combined=0.306) +2026-07-13 08:30:19,733 | INFO | +[756.60s] AMBIENT | scene='' +2026-07-13 08:30:19,733 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,733 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:19,733 | INFO | Singing 0.285 0.000 0.185 ✓ +2026-07-13 08:30:19,733 | INFO | Female singing 0.150 0.000 0.097 ✗ +2026-07-13 08:30:19,733 | INFO | Carnatic music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:19,733 | INFO | Tabla 0.074 0.000 0.048 ✗ +2026-07-13 08:30:19,733 | INFO | Middle Eastern music 0.073 0.000 0.048 ✗ +2026-07-13 08:30:19,733 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:19,759 | INFO | +[756.80s] AMBIENT | scene='' +2026-07-13 08:30:19,759 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,766 | INFO | Music 0.771 0.000 0.501 ✓ +2026-07-13 08:30:19,766 | INFO | Tabla 0.365 0.000 0.237 ✓ +2026-07-13 08:30:19,766 | INFO | Singing 0.264 0.000 0.172 ✓ +2026-07-13 08:30:19,766 | INFO | Drum 0.160 0.000 0.104 ✗ +2026-07-13 08:30:19,766 | INFO | Percussion 0.134 0.000 0.087 ✗ +2026-07-13 08:30:19,766 | INFO | Musical instrument 0.116 0.000 0.075 ✗ +2026-07-13 08:30:19,768 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:19,791 | INFO | +[757.00s] AMBIENT | scene='' +2026-07-13 08:30:19,791 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,791 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:19,791 | INFO | Tabla 0.300 0.000 0.195 ✓ +2026-07-13 08:30:19,791 | INFO | Singing 0.279 0.000 0.181 ✓ +2026-07-13 08:30:19,791 | INFO | Middle Eastern music 0.118 0.000 0.077 ✗ +2026-07-13 08:30:19,791 | INFO | Folk music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:19,791 | INFO | Musical instrument 0.091 0.000 0.059 ✗ +2026-07-13 08:30:19,791 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:19,822 | INFO | +[757.20s] AMBIENT | scene='' +2026-07-13 08:30:19,822 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,822 | INFO | Music 0.793 0.000 0.515 ✓ +2026-07-13 08:30:19,824 | INFO | Singing 0.297 0.000 0.193 ✓ +2026-07-13 08:30:19,824 | INFO | Tabla 0.141 0.000 0.091 ✗ +2026-07-13 08:30:19,824 | INFO | Musical instrument 0.122 0.000 0.079 ✗ +2026-07-13 08:30:19,824 | INFO | Female singing 0.103 0.000 0.067 ✗ +2026-07-13 08:30:19,824 | INFO | Carnatic music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:19,824 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:19,849 | INFO | +[757.40s] AMBIENT | scene='' +2026-07-13 08:30:19,849 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,849 | INFO | Music 0.850 0.000 0.552 ✓ +2026-07-13 08:30:19,849 | INFO | Singing 0.335 0.000 0.218 ✓ +2026-07-13 08:30:19,849 | INFO | Musical instrument 0.144 0.000 0.093 ✗ +2026-07-13 08:30:19,849 | INFO | Folk music 0.085 0.000 0.056 ✗ +2026-07-13 08:30:19,849 | INFO | Tabla 0.081 0.000 0.052 ✗ +2026-07-13 08:30:19,849 | INFO | Drum 0.065 0.000 0.042 ✗ +2026-07-13 08:30:19,849 | INFO | → WINNER: Music (combined=0.552) +2026-07-13 08:30:19,874 | INFO | +[757.60s] AMBIENT | scene='' +2026-07-13 08:30:19,882 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,882 | INFO | Music 0.334 0.000 0.217 ✓ +2026-07-13 08:30:19,883 | INFO | Singing 0.233 0.000 0.151 ✓ +2026-07-13 08:30:19,883 | INFO | Female singing 0.199 0.000 0.129 ✓ +2026-07-13 08:30:19,883 | INFO | → WINNER: Music (combined=0.217) +2026-07-13 08:30:19,910 | INFO | +[757.80s] AMBIENT | scene='' +2026-07-13 08:30:19,910 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,910 | INFO | Music 0.187 0.000 0.122 ✓ +2026-07-13 08:30:19,910 | INFO | Singing 0.105 0.000 0.068 ✗ +2026-07-13 08:30:19,910 | INFO | Mantra 0.070 0.000 0.046 ✗ +2026-07-13 08:30:19,910 | INFO | → WINNER: Music (combined=0.122) +2026-07-13 08:30:19,941 | INFO | +[758.00s] AMBIENT | scene='' +2026-07-13 08:30:19,941 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,941 | INFO | Music 0.316 0.000 0.206 ✓ +2026-07-13 08:30:19,941 | INFO | Singing 0.158 0.000 0.102 ✗ +2026-07-13 08:30:19,941 | INFO | Mantra 0.064 0.000 0.041 ✗ +2026-07-13 08:30:19,941 | INFO | → WINNER: Music (combined=0.206) +2026-07-13 08:30:19,972 | INFO | +[758.20s] AMBIENT | scene='' +2026-07-13 08:30:19,972 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,972 | INFO | Music 0.223 0.000 0.145 ✓ +2026-07-13 08:30:19,972 | INFO | Mantra 0.062 0.000 0.040 ✗ +2026-07-13 08:30:19,972 | INFO | → WINNER: Music (combined=0.145) +2026-07-13 08:30:19,997 | INFO | +[758.40s] AMBIENT | scene='' +2026-07-13 08:30:19,997 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:19,997 | INFO | Music 0.182 0.000 0.118 ✗ +2026-07-13 08:30:19,997 | INFO | Mantra 0.063 0.000 0.041 ✗ +2026-07-13 08:30:19,997 | INFO | → no winner +2026-07-13 08:30:20,027 | INFO | +[758.60s] AMBIENT | scene='' +2026-07-13 08:30:20,028 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,028 | INFO | Music 0.766 0.000 0.498 ✓ +2026-07-13 08:30:20,028 | INFO | Singing 0.185 0.000 0.120 ✗ +2026-07-13 08:30:20,029 | INFO | Tabla 0.170 0.000 0.110 ✗ +2026-07-13 08:30:20,029 | INFO | Musical instrument 0.147 0.000 0.095 ✗ +2026-07-13 08:30:20,029 | INFO | Middle Eastern music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:20,030 | INFO | Drum 0.099 0.000 0.065 ✗ +2026-07-13 08:30:20,030 | INFO | → WINNER: Music (combined=0.498) +2026-07-13 08:30:20,055 | INFO | +[758.80s] AMBIENT | scene='' +2026-07-13 08:30:20,055 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,055 | INFO | Music 0.819 0.000 0.532 ✓ +2026-07-13 08:30:20,055 | INFO | Singing 0.217 0.000 0.141 ✓ +2026-07-13 08:30:20,055 | INFO | Folk music 0.148 0.000 0.096 ✗ +2026-07-13 08:30:20,055 | INFO | Musical instrument 0.146 0.000 0.095 ✗ +2026-07-13 08:30:20,055 | INFO | Middle Eastern music 0.133 0.000 0.086 ✗ +2026-07-13 08:30:20,055 | INFO | Traditional music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:20,055 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:20,083 | INFO | +[759.00s] AMBIENT | scene='' +2026-07-13 08:30:20,083 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,083 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:20,083 | INFO | Singing 0.161 0.000 0.105 ✗ +2026-07-13 08:30:20,087 | INFO | Tabla 0.111 0.000 0.072 ✗ +2026-07-13 08:30:20,087 | INFO | Middle Eastern music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:20,087 | INFO | Musical instrument 0.072 0.000 0.047 ✗ +2026-07-13 08:30:20,087 | INFO | Folk music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:20,087 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:20,112 | INFO | +[759.20s] AMBIENT | scene='' +2026-07-13 08:30:20,112 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,112 | INFO | Music 0.725 0.000 0.471 ✓ +2026-07-13 08:30:20,112 | INFO | Musical instrument 0.171 0.000 0.111 ✗ +2026-07-13 08:30:20,112 | INFO | Traditional music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:20,112 | INFO | Folk music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:20,112 | INFO | Tabla 0.069 0.000 0.045 ✗ +2026-07-13 08:30:20,112 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:20,137 | INFO | +[759.40s] AMBIENT | scene='' +2026-07-13 08:30:20,145 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,145 | INFO | Music 0.755 0.000 0.491 ✓ +2026-07-13 08:30:20,145 | INFO | Singing 0.194 0.000 0.126 ✓ +2026-07-13 08:30:20,146 | INFO | Mantra 0.100 0.000 0.065 ✗ +2026-07-13 08:30:20,146 | INFO | Carnatic music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:20,147 | INFO | Musical instrument 0.075 0.000 0.049 ✗ +2026-07-13 08:30:20,147 | INFO | Tabla 0.068 0.000 0.044 ✗ +2026-07-13 08:30:20,147 | INFO | → WINNER: Music (combined=0.491) +2026-07-13 08:30:20,173 | INFO | +[759.60s] AMBIENT | scene='' +2026-07-13 08:30:20,173 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,177 | INFO | Music 0.273 0.000 0.177 ✓ +2026-07-13 08:30:20,177 | INFO | Child singing 0.196 0.000 0.127 ✓ +2026-07-13 08:30:20,177 | INFO | Singing 0.153 0.000 0.100 ✗ +2026-07-13 08:30:20,178 | INFO | Female singing 0.125 0.000 0.081 ✗ +2026-07-13 08:30:20,178 | INFO | Mantra 0.098 0.000 0.063 ✗ +2026-07-13 08:30:20,178 | INFO | Carnatic music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:20,178 | INFO | → WINNER: Music (combined=0.177) +2026-07-13 08:30:20,204 | INFO | +[759.80s] AMBIENT | scene='' +2026-07-13 08:30:20,204 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,204 | INFO | Music 0.286 0.000 0.186 ✓ +2026-07-13 08:30:20,204 | INFO | Singing 0.166 0.000 0.108 ✗ +2026-07-13 08:30:20,204 | INFO | Child singing 0.159 0.000 0.103 ✗ +2026-07-13 08:30:20,204 | INFO | Female singing 0.119 0.000 0.077 ✗ +2026-07-13 08:30:20,206 | INFO | Mantra 0.088 0.000 0.057 ✗ +2026-07-13 08:30:20,206 | INFO | Carnatic music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:20,206 | INFO | → WINNER: Music (combined=0.186) +2026-07-13 08:30:20,229 | INFO | +[760.00s] AMBIENT | scene='' +2026-07-13 08:30:20,229 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,229 | INFO | Music 0.354 0.000 0.230 ✓ +2026-07-13 08:30:20,229 | INFO | Child singing 0.271 0.000 0.176 ✓ +2026-07-13 08:30:20,229 | INFO | Singing 0.205 0.000 0.133 ✓ +2026-07-13 08:30:20,229 | INFO | Female singing 0.191 0.000 0.124 ✓ +2026-07-13 08:30:20,229 | INFO | → WINNER: Music (combined=0.230) +2026-07-13 08:30:20,260 | INFO | +[760.20s] AMBIENT | scene='' +2026-07-13 08:30:20,260 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,260 | INFO | Music 0.225 0.000 0.146 ✓ +2026-07-13 08:30:20,260 | INFO | Child singing 0.163 0.000 0.106 ✗ +2026-07-13 08:30:20,260 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:20,260 | INFO | Female singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:20,260 | INFO | → WINNER: Music (combined=0.146) +2026-07-13 08:30:20,288 | INFO | +[760.40s] AMBIENT | scene='' +2026-07-13 08:30:20,288 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,288 | INFO | Music 0.338 0.000 0.220 ✓ +2026-07-13 08:30:20,288 | INFO | Singing 0.130 0.000 0.085 ✗ +2026-07-13 08:30:20,288 | INFO | → WINNER: Music (combined=0.220) +2026-07-13 08:30:20,317 | INFO | +[760.60s] AMBIENT | scene='' +2026-07-13 08:30:20,317 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,317 | INFO | Music 0.787 0.000 0.511 ✓ +2026-07-13 08:30:20,317 | INFO | Tabla 0.214 0.000 0.139 ✓ +2026-07-13 08:30:20,317 | INFO | Singing 0.180 0.000 0.117 ✗ +2026-07-13 08:30:20,317 | INFO | Musical instrument 0.135 0.000 0.088 ✗ +2026-07-13 08:30:20,317 | INFO | Middle Eastern music 0.121 0.000 0.079 ✗ +2026-07-13 08:30:20,317 | INFO | Carnatic music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:20,317 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:20,342 | INFO | +[760.80s] AMBIENT | scene='' +2026-07-13 08:30:20,342 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,342 | INFO | Music 0.831 0.000 0.540 ✓ +2026-07-13 08:30:20,342 | INFO | Tabla 0.216 0.000 0.141 ✓ +2026-07-13 08:30:20,342 | INFO | Musical instrument 0.206 0.000 0.134 ✓ +2026-07-13 08:30:20,342 | INFO | Middle Eastern music 0.197 0.000 0.128 ✓ +2026-07-13 08:30:20,342 | INFO | Banjo 0.187 0.000 0.122 ✓ +2026-07-13 08:30:20,342 | INFO | Folk music 0.133 0.000 0.086 ✗ +2026-07-13 08:30:20,342 | INFO | → WINNER: Music (combined=0.540) +2026-07-13 08:30:20,375 | INFO | +[761.00s] AMBIENT | scene='' +2026-07-13 08:30:20,375 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,375 | INFO | Music 0.792 0.000 0.515 ✓ +2026-07-13 08:30:20,375 | INFO | Tabla 0.219 0.000 0.142 ✓ +2026-07-13 08:30:20,375 | INFO | Middle Eastern music 0.200 0.000 0.130 ✓ +2026-07-13 08:30:20,375 | INFO | Musical instrument 0.153 0.000 0.099 ✗ +2026-07-13 08:30:20,375 | INFO | Folk music 0.134 0.000 0.087 ✗ +2026-07-13 08:30:20,375 | INFO | Singing 0.115 0.000 0.074 ✗ +2026-07-13 08:30:20,375 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:20,400 | INFO | +[761.20s] AMBIENT | scene='' +2026-07-13 08:30:20,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,400 | INFO | Music 0.781 0.000 0.508 ✓ +2026-07-13 08:30:20,400 | INFO | Musical instrument 0.164 0.000 0.107 ✗ +2026-07-13 08:30:20,400 | INFO | Banjo 0.100 0.000 0.065 ✗ +2026-07-13 08:30:20,400 | INFO | Middle Eastern music 0.097 0.000 0.063 ✗ +2026-07-13 08:30:20,400 | INFO | Country 0.070 0.000 0.045 ✗ +2026-07-13 08:30:20,400 | INFO | Bluegrass 0.062 0.000 0.040 ✗ +2026-07-13 08:30:20,408 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:20,432 | INFO | +[761.40s] AMBIENT | scene='' +2026-07-13 08:30:20,432 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,432 | INFO | Music 0.562 0.000 0.365 ✓ +2026-07-13 08:30:20,432 | INFO | → WINNER: Music (combined=0.365) +2026-07-13 08:30:20,460 | INFO | +[761.60s] AMBIENT | scene='' +2026-07-13 08:30:20,460 | INFO | → no winner +2026-07-13 08:30:20,481 | INFO | +[761.80s] AMBIENT | scene='' +2026-07-13 08:30:20,481 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,481 | INFO | Music 0.093 0.000 0.061 ✗ +2026-07-13 08:30:20,481 | INFO | → no winner +2026-07-13 08:30:20,517 | INFO | +[762.00s] AMBIENT | scene='' +2026-07-13 08:30:20,517 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,517 | INFO | Music 0.149 0.000 0.097 ✗ +2026-07-13 08:30:20,517 | INFO | → no winner +2026-07-13 08:30:20,539 | INFO | +[762.20s] AMBIENT | scene='' +2026-07-13 08:30:20,539 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,547 | INFO | Music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:20,547 | INFO | → no winner +2026-07-13 08:30:20,572 | INFO | +[762.40s] AMBIENT | scene='' +2026-07-13 08:30:20,572 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,572 | INFO | Music 0.281 0.000 0.182 ✓ +2026-07-13 08:30:20,572 | INFO | Singing 0.092 0.000 0.060 ✗ +2026-07-13 08:30:20,572 | INFO | → WINNER: Music (combined=0.182) +2026-07-13 08:30:20,602 | INFO | +[762.60s] AMBIENT | scene='' +2026-07-13 08:30:20,602 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,602 | INFO | Music 0.790 0.000 0.514 ✓ +2026-07-13 08:30:20,602 | INFO | Tabla 0.264 0.000 0.171 ✓ +2026-07-13 08:30:20,602 | INFO | Middle Eastern music 0.240 0.000 0.156 ✓ +2026-07-13 08:30:20,602 | INFO | Singing 0.209 0.000 0.136 ✓ +2026-07-13 08:30:20,604 | INFO | Folk music 0.165 0.000 0.107 ✗ +2026-07-13 08:30:20,604 | INFO | Musical instrument 0.132 0.000 0.086 ✗ +2026-07-13 08:30:20,605 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:20,629 | INFO | +[762.80s] AMBIENT | scene='' +2026-07-13 08:30:20,629 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,629 | INFO | Music 0.821 0.000 0.534 ✓ +2026-07-13 08:30:20,629 | INFO | Singing 0.251 0.000 0.163 ✓ +2026-07-13 08:30:20,629 | INFO | Middle Eastern music 0.243 0.000 0.158 ✓ +2026-07-13 08:30:20,629 | INFO | Tabla 0.196 0.000 0.127 ✓ +2026-07-13 08:30:20,629 | INFO | Folk music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:20,629 | INFO | Musical instrument 0.137 0.000 0.089 ✗ +2026-07-13 08:30:20,629 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:20,655 | INFO | +[763.00s] AMBIENT | scene='' +2026-07-13 08:30:20,662 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,662 | INFO | Music 0.802 0.000 0.521 ✓ +2026-07-13 08:30:20,662 | INFO | Middle Eastern music 0.273 0.000 0.177 ✓ +2026-07-13 08:30:20,663 | INFO | Singing 0.196 0.000 0.127 ✓ +2026-07-13 08:30:20,663 | INFO | Folk music 0.195 0.000 0.127 ✓ +2026-07-13 08:30:20,664 | INFO | Salsa music 0.122 0.000 0.080 ✗ +2026-07-13 08:30:20,664 | INFO | Tabla 0.114 0.000 0.074 ✗ +2026-07-13 08:30:20,664 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:30:20,687 | INFO | +[763.20s] AMBIENT | scene='' +2026-07-13 08:30:20,687 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,687 | INFO | Music 0.818 0.000 0.532 ✓ +2026-07-13 08:30:20,687 | INFO | Middle Eastern music 0.257 0.000 0.167 ✓ +2026-07-13 08:30:20,687 | INFO | Singing 0.236 0.000 0.153 ✓ +2026-07-13 08:30:20,687 | INFO | Folk music 0.176 0.000 0.115 ✗ +2026-07-13 08:30:20,687 | INFO | Musical instrument 0.151 0.000 0.098 ✗ +2026-07-13 08:30:20,687 | INFO | Tabla 0.125 0.000 0.081 ✗ +2026-07-13 08:30:20,687 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:20,719 | INFO | +[763.40s] AMBIENT | scene='' +2026-07-13 08:30:20,719 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,719 | INFO | Music 0.635 0.000 0.412 ✓ +2026-07-13 08:30:20,719 | INFO | Singing 0.172 0.000 0.112 ✗ +2026-07-13 08:30:20,719 | INFO | Middle Eastern music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:20,719 | INFO | → WINNER: Music (combined=0.412) +2026-07-13 08:30:20,745 | INFO | +[763.60s] AMBIENT | scene='' +2026-07-13 08:30:20,745 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,745 | INFO | Music 0.259 0.000 0.169 ✓ +2026-07-13 08:30:20,745 | INFO | Singing 0.098 0.000 0.063 ✗ +2026-07-13 08:30:20,745 | INFO | Mantra 0.085 0.000 0.055 ✗ +2026-07-13 08:30:20,745 | INFO | → WINNER: Music (combined=0.169) +2026-07-13 08:30:20,777 | INFO | +[763.80s] AMBIENT | scene='' +2026-07-13 08:30:20,777 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,777 | INFO | Music 0.558 0.000 0.363 ✓ +2026-07-13 08:30:20,777 | INFO | Singing 0.164 0.000 0.106 ✗ +2026-07-13 08:30:20,777 | INFO | Mantra 0.076 0.000 0.049 ✗ +2026-07-13 08:30:20,777 | INFO | → WINNER: Music (combined=0.363) +2026-07-13 08:30:20,802 | INFO | +[764.00s] AMBIENT | scene='' +2026-07-13 08:30:20,802 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,802 | INFO | Music 0.815 0.000 0.529 ✓ +2026-07-13 08:30:20,802 | INFO | Musical instrument 0.157 0.000 0.102 ✗ +2026-07-13 08:30:20,802 | INFO | Carnatic music 0.157 0.000 0.102 ✗ +2026-07-13 08:30:20,802 | INFO | Middle Eastern music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:20,802 | INFO | Sitar 0.114 0.000 0.074 ✗ +2026-07-13 08:30:20,802 | INFO | Singing 0.094 0.000 0.061 ✗ +2026-07-13 08:30:20,809 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:20,834 | INFO | +[764.20s] AMBIENT | scene='' +2026-07-13 08:30:20,834 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,834 | INFO | Music 0.768 0.000 0.499 ✓ +2026-07-13 08:30:20,840 | INFO | Musical instrument 0.249 0.000 0.162 ✓ +2026-07-13 08:30:20,840 | INFO | Carnatic music 0.115 0.000 0.075 ✗ +2026-07-13 08:30:20,840 | INFO | Sitar 0.104 0.000 0.068 ✗ +2026-07-13 08:30:20,840 | INFO | Plucked string instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:20,840 | INFO | Tabla 0.033 0.000 0.021 ✗ +2026-07-13 08:30:20,840 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:20,867 | INFO | +[764.40s] AMBIENT | scene='' +2026-07-13 08:30:20,867 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,867 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:20,867 | INFO | Musical instrument 0.151 0.000 0.098 ✗ +2026-07-13 08:30:20,867 | INFO | Singing 0.138 0.000 0.089 ✗ +2026-07-13 08:30:20,867 | INFO | Tabla 0.132 0.000 0.086 ✗ +2026-07-13 08:30:20,867 | INFO | Carnatic music 0.090 0.000 0.058 ✗ +2026-07-13 08:30:20,867 | INFO | Middle Eastern music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:20,867 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:20,898 | INFO | +[764.60s] AMBIENT | scene='' +2026-07-13 08:30:20,898 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,898 | INFO | Music 0.665 0.000 0.432 ✓ +2026-07-13 08:30:20,898 | INFO | Tabla 0.346 0.000 0.225 ✓ +2026-07-13 08:30:20,898 | INFO | Musical instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:30:20,898 | INFO | Singing 0.127 0.000 0.083 ✗ +2026-07-13 08:30:20,900 | INFO | Middle Eastern music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:20,900 | INFO | Percussion 0.100 0.000 0.065 ✗ +2026-07-13 08:30:20,900 | INFO | → WINNER: Music (combined=0.432) +2026-07-13 08:30:20,926 | INFO | +[764.80s] AMBIENT | scene='' +2026-07-13 08:30:20,926 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,926 | INFO | Music 0.845 0.000 0.549 ✓ +2026-07-13 08:30:20,926 | INFO | Singing 0.232 0.000 0.150 ✓ +2026-07-13 08:30:20,926 | INFO | Music of Latin America 0.191 0.000 0.124 ✓ +2026-07-13 08:30:20,926 | INFO | Middle Eastern music 0.161 0.000 0.105 ✗ +2026-07-13 08:30:20,926 | INFO | Salsa music 0.155 0.000 0.101 ✗ +2026-07-13 08:30:20,926 | INFO | Folk music 0.128 0.000 0.083 ✗ +2026-07-13 08:30:20,926 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:20,950 | INFO | +[765.00s] AMBIENT | scene='' +2026-07-13 08:30:20,950 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,950 | INFO | Music 0.793 0.000 0.516 ✓ +2026-07-13 08:30:20,950 | INFO | Singing 0.242 0.000 0.158 ✓ +2026-07-13 08:30:20,950 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:20,950 | INFO | Music of Latin America 0.073 0.000 0.048 ✗ +2026-07-13 08:30:20,950 | INFO | Folk music 0.073 0.000 0.047 ✗ +2026-07-13 08:30:20,950 | INFO | Tabla 0.033 0.000 0.021 ✗ +2026-07-13 08:30:20,958 | INFO | → WINNER: Music (combined=0.516) +2026-07-13 08:30:20,984 | INFO | +[765.20s] AMBIENT | scene='' +2026-07-13 08:30:20,984 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:20,984 | INFO | Music 0.815 0.000 0.530 ✓ +2026-07-13 08:30:20,984 | INFO | Singing 0.190 0.000 0.123 ✓ +2026-07-13 08:30:20,984 | INFO | Musical instrument 0.088 0.000 0.057 ✗ +2026-07-13 08:30:20,984 | INFO | → WINNER: Music (combined=0.530) +2026-07-13 08:30:21,016 | INFO | +[765.40s] AMBIENT | scene='' +2026-07-13 08:30:21,016 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,016 | INFO | Music 0.191 0.000 0.124 ✓ +2026-07-13 08:30:21,016 | INFO | Child singing 0.133 0.000 0.086 ✗ +2026-07-13 08:30:21,016 | INFO | Female singing 0.116 0.000 0.075 ✗ +2026-07-13 08:30:21,016 | INFO | Singing 0.108 0.000 0.070 ✗ +2026-07-13 08:30:21,016 | INFO | → WINNER: Music (combined=0.124) +2026-07-13 08:30:21,042 | INFO | +[765.60s] AMBIENT | scene='' +2026-07-13 08:30:21,042 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,042 | INFO | Female singing 0.402 0.000 0.262 ✓ +2026-07-13 08:30:21,042 | INFO | Music 0.350 0.000 0.227 ✓ +2026-07-13 08:30:21,042 | INFO | Singing 0.252 0.000 0.164 ✓ +2026-07-13 08:30:21,042 | INFO | Child singing 0.188 0.000 0.122 ✓ +2026-07-13 08:30:21,042 | INFO | → WINNER: Female singing (combined=0.262) +2026-07-13 08:30:21,065 | INFO | +[765.80s] AMBIENT | scene='' +2026-07-13 08:30:21,065 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,074 | INFO | Music 0.424 0.000 0.276 ✓ +2026-07-13 08:30:21,074 | INFO | Singing 0.308 0.000 0.200 ✓ +2026-07-13 08:30:21,074 | INFO | Female singing 0.270 0.000 0.176 ✓ +2026-07-13 08:30:21,074 | INFO | Child singing 0.128 0.000 0.083 ✗ +2026-07-13 08:30:21,074 | INFO | Male singing 0.093 0.000 0.061 ✗ +2026-07-13 08:30:21,074 | INFO | Choir 0.065 0.000 0.042 ✗ +2026-07-13 08:30:21,074 | INFO | → WINNER: Music (combined=0.276) +2026-07-13 08:30:21,098 | INFO | +[766.00s] AMBIENT | scene='' +2026-07-13 08:30:21,098 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,098 | INFO | Music 0.397 0.000 0.258 ✓ +2026-07-13 08:30:21,098 | INFO | Female singing 0.258 0.000 0.168 ✓ +2026-07-13 08:30:21,098 | INFO | Singing 0.236 0.000 0.153 ✓ +2026-07-13 08:30:21,098 | INFO | Child singing 0.121 0.000 0.078 ✗ +2026-07-13 08:30:21,098 | INFO | Male singing 0.090 0.000 0.058 ✗ +2026-07-13 08:30:21,098 | INFO | → WINNER: Music (combined=0.258) +2026-07-13 08:30:21,125 | INFO | +[766.20s] AMBIENT | scene='' +2026-07-13 08:30:21,125 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,130 | INFO | Music 0.487 0.000 0.317 ✓ +2026-07-13 08:30:21,130 | INFO | Singing 0.205 0.000 0.133 ✓ +2026-07-13 08:30:21,130 | INFO | Female singing 0.170 0.000 0.111 ✗ +2026-07-13 08:30:21,130 | INFO | Male singing 0.083 0.000 0.054 ✗ +2026-07-13 08:30:21,130 | INFO | Synthetic singing 0.080 0.000 0.052 ✗ +2026-07-13 08:30:21,130 | INFO | Mantra 0.070 0.000 0.045 ✗ +2026-07-13 08:30:21,130 | INFO | → WINNER: Music (combined=0.317) +2026-07-13 08:30:21,157 | INFO | +[766.40s] AMBIENT | scene='' +2026-07-13 08:30:21,157 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,157 | INFO | Music 0.828 0.000 0.538 ✓ +2026-07-13 08:30:21,157 | INFO | Singing 0.161 0.000 0.104 ✗ +2026-07-13 08:30:21,157 | INFO | Tabla 0.135 0.000 0.087 ✗ +2026-07-13 08:30:21,157 | INFO | Musical instrument 0.115 0.000 0.075 ✗ +2026-07-13 08:30:21,157 | INFO | Middle Eastern music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:21,157 | INFO | Folk music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:21,157 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:21,187 | INFO | +[766.60s] AMBIENT | scene='' +2026-07-13 08:30:21,189 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,189 | INFO | Music 0.796 0.000 0.517 ✓ +2026-07-13 08:30:21,189 | INFO | Tabla 0.355 0.000 0.231 ✓ +2026-07-13 08:30:21,189 | INFO | Middle Eastern music 0.292 0.000 0.190 ✓ +2026-07-13 08:30:21,189 | INFO | Folk music 0.185 0.000 0.120 ✓ +2026-07-13 08:30:21,189 | INFO | Singing 0.154 0.000 0.100 ✗ +2026-07-13 08:30:21,189 | INFO | Musical instrument 0.141 0.000 0.091 ✗ +2026-07-13 08:30:21,189 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:21,214 | INFO | +[766.80s] AMBIENT | scene='' +2026-07-13 08:30:21,214 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,214 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:21,214 | INFO | Tabla 0.409 0.000 0.266 ✓ +2026-07-13 08:30:21,214 | INFO | Middle Eastern music 0.243 0.000 0.158 ✓ +2026-07-13 08:30:21,214 | INFO | Singing 0.231 0.000 0.150 ✓ +2026-07-13 08:30:21,214 | INFO | Musical instrument 0.166 0.000 0.108 ✗ +2026-07-13 08:30:21,214 | INFO | Carnatic music 0.144 0.000 0.094 ✗ +2026-07-13 08:30:21,214 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:21,238 | INFO | +[767.00s] AMBIENT | scene='' +2026-07-13 08:30:21,238 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,238 | INFO | Music 0.739 0.000 0.480 ✓ +2026-07-13 08:30:21,246 | INFO | Tabla 0.491 0.000 0.319 ✓ +2026-07-13 08:30:21,247 | INFO | Singing 0.256 0.000 0.166 ✓ +2026-07-13 08:30:21,247 | INFO | Musical instrument 0.189 0.000 0.122 ✓ +2026-07-13 08:30:21,247 | INFO | Carnatic music 0.181 0.000 0.118 ✗ +2026-07-13 08:30:21,247 | INFO | Percussion 0.131 0.000 0.085 ✗ +2026-07-13 08:30:21,247 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:21,272 | INFO | +[767.20s] AMBIENT | scene='' +2026-07-13 08:30:21,272 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,272 | INFO | Music 0.757 0.000 0.492 ✓ +2026-07-13 08:30:21,272 | INFO | Tabla 0.332 0.000 0.215 ✓ +2026-07-13 08:30:21,272 | INFO | Singing 0.312 0.000 0.203 ✓ +2026-07-13 08:30:21,272 | INFO | Carnatic music 0.266 0.000 0.173 ✓ +2026-07-13 08:30:21,272 | INFO | Musical instrument 0.186 0.000 0.121 ✓ +2026-07-13 08:30:21,272 | INFO | Middle Eastern music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:21,272 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:30:21,301 | INFO | +[767.40s] AMBIENT | scene='' +2026-07-13 08:30:21,301 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,301 | INFO | Music 0.184 0.000 0.120 ✗ +2026-07-13 08:30:21,301 | INFO | Mantra 0.098 0.000 0.064 ✗ +2026-07-13 08:30:21,301 | INFO | Singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:21,301 | INFO | Chant 0.084 0.000 0.054 ✗ +2026-07-13 08:30:21,301 | INFO | → no winner +2026-07-13 08:30:21,329 | INFO | +[767.60s] AMBIENT | scene='' +2026-07-13 08:30:21,329 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,329 | INFO | Music 0.234 0.000 0.152 ✓ +2026-07-13 08:30:21,329 | INFO | Female singing 0.207 0.000 0.135 ✓ +2026-07-13 08:30:21,329 | INFO | Child singing 0.179 0.000 0.116 ✗ +2026-07-13 08:30:21,329 | INFO | Singing 0.142 0.000 0.093 ✗ +2026-07-13 08:30:21,329 | INFO | Mantra 0.109 0.000 0.071 ✗ +2026-07-13 08:30:21,329 | INFO | Chant 0.096 0.000 0.062 ✗ +2026-07-13 08:30:21,329 | INFO | → WINNER: Music (combined=0.152) +2026-07-13 08:30:21,352 | INFO | +[767.80s] AMBIENT | scene='' +2026-07-13 08:30:21,352 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,352 | INFO | Music 0.392 0.000 0.255 ✓ +2026-07-13 08:30:21,352 | INFO | Singing 0.156 0.000 0.101 ✗ +2026-07-13 08:30:21,352 | INFO | Mantra 0.089 0.000 0.058 ✗ +2026-07-13 08:30:21,352 | INFO | Chant 0.081 0.000 0.052 ✗ +2026-07-13 08:30:21,352 | INFO | → WINNER: Music (combined=0.255) +2026-07-13 08:30:21,379 | INFO | +[768.00s] AMBIENT | scene='' +2026-07-13 08:30:21,385 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,385 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:21,385 | INFO | Tabla 0.343 0.000 0.223 ✓ +2026-07-13 08:30:21,385 | INFO | Musical instrument 0.190 0.000 0.123 ✓ +2026-07-13 08:30:21,385 | INFO | Singing 0.164 0.000 0.106 ✗ +2026-07-13 08:30:21,385 | INFO | Carnatic music 0.155 0.000 0.101 ✗ +2026-07-13 08:30:21,385 | INFO | Middle Eastern music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:21,385 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:21,414 | INFO | +[768.20s] AMBIENT | scene='' +2026-07-13 08:30:21,414 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,414 | INFO | Music 0.808 0.000 0.525 ✓ +2026-07-13 08:30:21,414 | INFO | Musical instrument 0.197 0.000 0.128 ✓ +2026-07-13 08:30:21,414 | INFO | Sitar 0.055 0.000 0.036 ✗ +2026-07-13 08:30:21,414 | INFO | Tabla 0.051 0.000 0.033 ✗ +2026-07-13 08:30:21,414 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:21,444 | INFO | +[768.40s] AMBIENT | scene='' +2026-07-13 08:30:21,444 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,445 | INFO | Music 0.814 0.000 0.529 ✓ +2026-07-13 08:30:21,445 | INFO | Tabla 0.279 0.000 0.181 ✓ +2026-07-13 08:30:21,445 | INFO | Middle Eastern music 0.268 0.000 0.174 ✓ +2026-07-13 08:30:21,445 | INFO | Musical instrument 0.165 0.000 0.107 ✗ +2026-07-13 08:30:21,446 | INFO | Folk music 0.145 0.000 0.094 ✗ +2026-07-13 08:30:21,446 | INFO | Singing 0.136 0.000 0.088 ✗ +2026-07-13 08:30:21,446 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:21,467 | INFO | +[768.60s] AMBIENT | scene='' +2026-07-13 08:30:21,467 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,467 | INFO | Music 0.779 0.000 0.507 ✓ +2026-07-13 08:30:21,467 | INFO | Middle Eastern music 0.319 0.000 0.207 ✓ +2026-07-13 08:30:21,467 | INFO | Folk music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:21,467 | INFO | Singing 0.101 0.000 0.066 ✗ +2026-07-13 08:30:21,475 | INFO | Tabla 0.083 0.000 0.054 ✗ +2026-07-13 08:30:21,475 | INFO | Carnatic music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:21,475 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:21,500 | INFO | +[768.80s] AMBIENT | scene='' +2026-07-13 08:30:21,500 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,500 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:30:21,500 | INFO | Gargling 0.183 0.000 0.119 ✗ +2026-07-13 08:30:21,500 | INFO | Singing 0.129 0.000 0.084 ✗ +2026-07-13 08:30:21,500 | INFO | Middle Eastern music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:21,500 | INFO | Musical instrument 0.078 0.000 0.051 ✗ +2026-07-13 08:30:21,500 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:21,529 | INFO | +[769.00s] AMBIENT | scene='' +2026-07-13 08:30:21,529 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,529 | INFO | Music 0.404 0.000 0.263 ✓ +2026-07-13 08:30:21,529 | INFO | → WINNER: Music (combined=0.263) +2026-07-13 08:30:21,551 | INFO | +[769.20s] AMBIENT | scene='' +2026-07-13 08:30:21,551 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,558 | INFO | Music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:21,558 | INFO | → no winner +2026-07-13 08:30:21,583 | INFO | +[769.40s] AMBIENT | scene='' +2026-07-13 08:30:21,583 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,583 | INFO | Music 0.087 0.000 0.057 ✗ +2026-07-13 08:30:21,583 | INFO | → no winner +2026-07-13 08:30:21,609 | INFO | +[769.60s] AMBIENT | scene='' +2026-07-13 08:30:21,613 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,613 | INFO | Music 0.176 0.000 0.114 ✗ +2026-07-13 08:30:21,613 | INFO | → no winner +2026-07-13 08:30:21,635 | INFO | +[769.80s] AMBIENT | scene='' +2026-07-13 08:30:21,640 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,640 | INFO | Music 0.273 0.000 0.177 ✓ +2026-07-13 08:30:21,640 | INFO | Singing 0.100 0.000 0.065 ✗ +2026-07-13 08:30:21,640 | INFO | → WINNER: Music (combined=0.177) +2026-07-13 08:30:21,664 | INFO | +[770.00s] AMBIENT | scene='' +2026-07-13 08:30:21,664 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,664 | INFO | Music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:21,664 | INFO | → no winner +2026-07-13 08:30:21,689 | INFO | +[770.20s] AMBIENT | scene='' +2026-07-13 08:30:21,689 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,689 | INFO | Music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:21,689 | INFO | → no winner +2026-07-13 08:30:21,722 | INFO | +[770.40s] AMBIENT | scene='' +2026-07-13 08:30:21,722 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,722 | INFO | Music 0.710 0.000 0.462 ✓ +2026-07-13 08:30:21,722 | INFO | Middle Eastern music 0.199 0.000 0.129 ✓ +2026-07-13 08:30:21,722 | INFO | Tabla 0.155 0.000 0.101 ✗ +2026-07-13 08:30:21,722 | INFO | Musical instrument 0.109 0.000 0.071 ✗ +2026-07-13 08:30:21,722 | INFO | Folk music 0.102 0.000 0.067 ✗ +2026-07-13 08:30:21,722 | INFO | Sitar 0.070 0.000 0.045 ✗ +2026-07-13 08:30:21,722 | INFO | → WINNER: Music (combined=0.462) +2026-07-13 08:30:21,750 | INFO | +[770.60s] AMBIENT | scene='' +2026-07-13 08:30:21,750 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,750 | INFO | Music 0.788 0.000 0.512 ✓ +2026-07-13 08:30:21,755 | INFO | Singing 0.147 0.000 0.096 ✗ +2026-07-13 08:30:21,755 | INFO | Middle Eastern music 0.147 0.000 0.096 ✗ +2026-07-13 08:30:21,755 | INFO | Tabla 0.137 0.000 0.089 ✗ +2026-07-13 08:30:21,755 | INFO | Folk music 0.115 0.000 0.075 ✗ +2026-07-13 08:30:21,755 | INFO | Musical instrument 0.085 0.000 0.055 ✗ +2026-07-13 08:30:21,755 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:21,783 | INFO | +[770.80s] AMBIENT | scene='' +2026-07-13 08:30:21,783 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,783 | INFO | Music 0.770 0.000 0.501 ✓ +2026-07-13 08:30:21,783 | INFO | Singing 0.231 0.000 0.150 ✓ +2026-07-13 08:30:21,783 | INFO | Middle Eastern music 0.188 0.000 0.122 ✓ +2026-07-13 08:30:21,783 | INFO | Tabla 0.169 0.000 0.110 ✗ +2026-07-13 08:30:21,783 | INFO | Folk music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:21,783 | INFO | Musical instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:21,783 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:21,812 | INFO | +[771.00s] AMBIENT | scene='' +2026-07-13 08:30:21,813 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,813 | INFO | Music 0.832 0.000 0.541 ✓ +2026-07-13 08:30:21,813 | INFO | Singing 0.221 0.000 0.144 ✓ +2026-07-13 08:30:21,813 | INFO | Music of Latin America 0.134 0.000 0.087 ✗ +2026-07-13 08:30:21,813 | INFO | Musical instrument 0.094 0.000 0.061 ✗ +2026-07-13 08:30:21,813 | INFO | Salsa music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:21,813 | INFO | Folk music 0.061 0.000 0.040 ✗ +2026-07-13 08:30:21,813 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:21,840 | INFO | +[771.20s] AMBIENT | scene='' +2026-07-13 08:30:21,842 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,842 | INFO | Music 0.646 0.000 0.420 ✓ +2026-07-13 08:30:21,842 | INFO | Singing 0.236 0.000 0.153 ✓ +2026-07-13 08:30:21,842 | INFO | Male singing 0.103 0.000 0.067 ✗ +2026-07-13 08:30:21,842 | INFO | → WINNER: Music (combined=0.420) +2026-07-13 08:30:21,865 | INFO | +[771.40s] AMBIENT | scene='' +2026-07-13 08:30:21,865 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,865 | INFO | Music 0.195 0.000 0.127 ✓ +2026-07-13 08:30:21,870 | INFO | Singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:21,870 | INFO | Mantra 0.065 0.000 0.042 ✗ +2026-07-13 08:30:21,870 | INFO | → WINNER: Music (combined=0.127) +2026-07-13 08:30:21,896 | INFO | +[771.60s] AMBIENT | scene='' +2026-07-13 08:30:21,896 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,896 | INFO | Music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:21,896 | INFO | Singing 0.080 0.000 0.052 ✗ +2026-07-13 08:30:21,896 | INFO | Mantra 0.069 0.000 0.045 ✗ +2026-07-13 08:30:21,896 | INFO | → WINNER: Music (combined=0.135) +2026-07-13 08:30:21,927 | INFO | +[771.80s] AMBIENT | scene='' +2026-07-13 08:30:21,927 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,927 | INFO | Music 0.680 0.000 0.442 ✓ +2026-07-13 08:30:21,927 | INFO | Singing 0.142 0.000 0.092 ✗ +2026-07-13 08:30:21,927 | INFO | Middle Eastern music 0.121 0.000 0.079 ✗ +2026-07-13 08:30:21,927 | INFO | Carnatic music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:21,927 | INFO | Mantra 0.103 0.000 0.067 ✗ +2026-07-13 08:30:21,927 | INFO | Musical instrument 0.095 0.000 0.062 ✗ +2026-07-13 08:30:21,927 | INFO | → WINNER: Music (combined=0.442) +2026-07-13 08:30:21,956 | INFO | +[772.00s] AMBIENT | scene='' +2026-07-13 08:30:21,956 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,960 | INFO | Music 0.805 0.000 0.523 ✓ +2026-07-13 08:30:21,960 | INFO | Carnatic music 0.249 0.000 0.162 ✓ +2026-07-13 08:30:21,960 | INFO | Musical instrument 0.224 0.000 0.145 ✓ +2026-07-13 08:30:21,960 | INFO | Singing 0.169 0.000 0.110 ✗ +2026-07-13 08:30:21,960 | INFO | Middle Eastern music 0.142 0.000 0.092 ✗ +2026-07-13 08:30:21,960 | INFO | Sitar 0.133 0.000 0.086 ✗ +2026-07-13 08:30:21,960 | INFO | → WINNER: Music (combined=0.523) +2026-07-13 08:30:21,984 | INFO | +[772.20s] AMBIENT | scene='' +2026-07-13 08:30:21,984 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:21,984 | INFO | Music 0.740 0.000 0.481 ✓ +2026-07-13 08:30:21,984 | INFO | Singing 0.212 0.000 0.138 ✓ +2026-07-13 08:30:21,984 | INFO | Carnatic music 0.164 0.000 0.107 ✗ +2026-07-13 08:30:21,984 | INFO | Middle Eastern music 0.141 0.000 0.091 ✗ +2026-07-13 08:30:21,984 | INFO | Musical instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:30:21,984 | INFO | Tabla 0.121 0.000 0.079 ✗ +2026-07-13 08:30:21,984 | INFO | → WINNER: Music (combined=0.481) +2026-07-13 08:30:22,013 | INFO | +[772.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,013 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,013 | INFO | Music 0.751 0.000 0.488 ✓ +2026-07-13 08:30:22,013 | INFO | Tabla 0.459 0.000 0.299 ✓ +2026-07-13 08:30:22,013 | INFO | Singing 0.242 0.000 0.157 ✓ +2026-07-13 08:30:22,013 | INFO | Musical instrument 0.194 0.000 0.126 ✓ +2026-07-13 08:30:22,017 | INFO | Middle Eastern music 0.190 0.000 0.124 ✓ +2026-07-13 08:30:22,017 | INFO | Percussion 0.165 0.000 0.107 ✗ +2026-07-13 08:30:22,017 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:22,042 | INFO | +[772.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,044 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,044 | INFO | Music 0.823 0.000 0.535 ✓ +2026-07-13 08:30:22,044 | INFO | Singing 0.235 0.000 0.153 ✓ +2026-07-13 08:30:22,044 | INFO | Middle Eastern music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:22,044 | INFO | Folk music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:22,044 | INFO | Musical instrument 0.077 0.000 0.050 ✗ +2026-07-13 08:30:22,044 | INFO | Tabla 0.037 0.000 0.024 ✗ +2026-07-13 08:30:22,046 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:22,072 | INFO | +[772.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,072 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,073 | INFO | Music 0.813 0.000 0.528 ✓ +2026-07-13 08:30:22,073 | INFO | Singing 0.223 0.000 0.145 ✓ +2026-07-13 08:30:22,073 | INFO | Musical instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:22,073 | INFO | Folk music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:22,075 | INFO | Tabla 0.032 0.000 0.021 ✗ +2026-07-13 08:30:22,075 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:22,099 | INFO | +[773.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,099 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,099 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:22,099 | INFO | Singing 0.146 0.000 0.095 ✗ +2026-07-13 08:30:22,099 | INFO | Musical instrument 0.090 0.000 0.059 ✗ +2026-07-13 08:30:22,099 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:22,124 | INFO | +[773.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,124 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,124 | INFO | Music 0.268 0.000 0.174 ✓ +2026-07-13 08:30:22,124 | INFO | Female singing 0.092 0.000 0.060 ✗ +2026-07-13 08:30:22,124 | INFO | Singing 0.089 0.000 0.058 ✗ +2026-07-13 08:30:22,124 | INFO | Child singing 0.087 0.000 0.056 ✗ +2026-07-13 08:30:22,124 | INFO | Mantra 0.052 0.000 0.034 ✗ +2026-07-13 08:30:22,132 | INFO | → WINNER: Music (combined=0.174) +2026-07-13 08:30:22,157 | INFO | +[773.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,157 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,157 | INFO | Music 0.287 0.000 0.186 ✓ +2026-07-13 08:30:22,157 | INFO | Female singing 0.238 0.000 0.155 ✓ +2026-07-13 08:30:22,157 | INFO | Singing 0.146 0.000 0.095 ✗ +2026-07-13 08:30:22,157 | INFO | → WINNER: Music (combined=0.186) +2026-07-13 08:30:22,185 | INFO | +[773.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,185 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,185 | INFO | Music 0.381 0.000 0.248 ✓ +2026-07-13 08:30:22,185 | INFO | Female singing 0.222 0.000 0.144 ✓ +2026-07-13 08:30:22,185 | INFO | Singing 0.184 0.000 0.120 ✗ +2026-07-13 08:30:22,185 | INFO | → WINNER: Music (combined=0.248) +2026-07-13 08:30:22,215 | INFO | +[773.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,215 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,215 | INFO | Music 0.410 0.000 0.267 ✓ +2026-07-13 08:30:22,217 | INFO | Female singing 0.240 0.000 0.156 ✓ +2026-07-13 08:30:22,217 | INFO | Singing 0.177 0.000 0.115 ✗ +2026-07-13 08:30:22,217 | INFO | → WINNER: Music (combined=0.267) +2026-07-13 08:30:22,239 | INFO | +[774.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,239 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,239 | INFO | Music 0.520 0.000 0.338 ✓ +2026-07-13 08:30:22,239 | INFO | Female singing 0.226 0.000 0.147 ✓ +2026-07-13 08:30:22,239 | INFO | Singing 0.210 0.000 0.137 ✓ +2026-07-13 08:30:22,239 | INFO | A capella 0.081 0.000 0.053 ✗ +2026-07-13 08:30:22,239 | INFO | Child singing 0.078 0.000 0.051 ✗ +2026-07-13 08:30:22,239 | INFO | → WINNER: Music (combined=0.338) +2026-07-13 08:30:22,273 | INFO | +[774.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,273 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,273 | INFO | Music 0.739 0.000 0.480 ✓ +2026-07-13 08:30:22,273 | INFO | Singing 0.221 0.000 0.144 ✓ +2026-07-13 08:30:22,273 | INFO | A capella 0.121 0.000 0.079 ✗ +2026-07-13 08:30:22,273 | INFO | Female singing 0.091 0.000 0.059 ✗ +2026-07-13 08:30:22,273 | INFO | Yodeling 0.067 0.000 0.044 ✗ +2026-07-13 08:30:22,273 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:22,302 | INFO | +[774.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,302 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,302 | INFO | Music 0.340 0.000 0.221 ✓ +2026-07-13 08:30:22,302 | INFO | → WINNER: Music (combined=0.221) +2026-07-13 08:30:22,330 | INFO | +[774.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,331 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,331 | INFO | Music 0.483 0.000 0.314 ✓ +2026-07-13 08:30:22,331 | INFO | → WINNER: Music (combined=0.314) +2026-07-13 08:30:22,356 | INFO | +[774.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,356 | INFO | Music 0.102 0.000 0.066 ✗ +2026-07-13 08:30:22,356 | INFO | → no winner +2026-07-13 08:30:22,387 | INFO | +[775.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,388 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,388 | INFO | Music 0.183 0.000 0.119 ✗ +2026-07-13 08:30:22,388 | INFO | → no winner +2026-07-13 08:30:22,414 | INFO | +[775.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,414 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,414 | INFO | Music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:22,414 | INFO | Chuckle, chortle 0.061 0.000 0.040 ✗ +2026-07-13 08:30:22,414 | INFO | Laughter 0.050 0.000 0.032 ✗ +2026-07-13 08:30:22,414 | INFO | Giggle 0.034 0.000 0.022 ✗ +2026-07-13 08:30:22,414 | INFO | → no winner +2026-07-13 08:30:22,437 | INFO | +[775.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,437 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,437 | INFO | Animal 0.176 0.402 0.255 ✓ +2026-07-13 08:30:22,445 | INFO | Domestic animals, pets 0.099 0.329 0.180 ✓ +2026-07-13 08:30:22,445 | INFO | Music 0.158 0.000 0.103 ✗ +2026-07-13 08:30:22,445 | INFO | Dog 0.137 0.000 0.089 ✗ +2026-07-13 08:30:22,445 | INFO | Bow-wow 0.087 0.000 0.057 ✗ +2026-07-13 08:30:22,445 | INFO | → WINNER: Animal (combined=0.255) +2026-07-13 08:30:22,470 | INFO | +[775.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,470 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,470 | INFO | Music 0.109 0.000 0.071 ✗ +2026-07-13 08:30:22,470 | INFO | → no winner +2026-07-13 08:30:22,495 | INFO | +[775.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,495 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,502 | INFO | Music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:22,503 | INFO | → no winner +2026-07-13 08:30:22,528 | INFO | +[776.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,528 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,528 | INFO | Vehicle 0.141 0.000 0.092 ✗ +2026-07-13 08:30:22,528 | INFO | Outside, urban or manmade 0.088 0.000 0.057 ✗ +2026-07-13 08:30:22,528 | INFO | Music 0.066 0.000 0.043 ✗ +2026-07-13 08:30:22,528 | INFO | → no winner +2026-07-13 08:30:22,558 | INFO | +[776.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-07-13 08:30:22,558 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,558 | INFO | Music 0.069 0.000 0.044 ✗ +2026-07-13 08:30:22,558 | INFO | → no winner +2026-07-13 08:30:22,585 | INFO | +[793.60s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-07-13 08:30:22,592 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,592 | INFO | Music 0.748 0.000 0.486 ✓ +2026-07-13 08:30:22,592 | INFO | Tabla 0.601 0.000 0.391 ✓ +2026-07-13 08:30:22,592 | INFO | Middle Eastern music 0.286 0.000 0.186 ✓ +2026-07-13 08:30:22,592 | INFO | Percussion 0.277 0.000 0.180 ✓ +2026-07-13 08:30:22,592 | INFO | Sitar 0.084 0.240 0.139 ✓ +2026-07-13 08:30:22,592 | INFO | Musical instrument 0.189 0.000 0.123 ✓ +2026-07-13 08:30:22,592 | INFO | → WINNER: Music (combined=0.486) +2026-07-13 08:30:22,617 | INFO | +[793.80s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-07-13 08:30:22,617 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,617 | INFO | Music 0.819 0.000 0.532 ✓ +2026-07-13 08:30:22,617 | INFO | Middle Eastern music 0.256 0.000 0.166 ✓ +2026-07-13 08:30:22,617 | INFO | Sitar 0.100 0.240 0.149 ✓ +2026-07-13 08:30:22,617 | INFO | Musical instrument 0.179 0.000 0.117 ✗ +2026-07-13 08:30:22,617 | INFO | Tabla 0.176 0.000 0.115 ✗ +2026-07-13 08:30:22,617 | INFO | Traditional music 0.122 0.000 0.079 ✗ +2026-07-13 08:30:22,617 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:22,644 | INFO | +[794.00s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-07-13 08:30:22,644 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,644 | INFO | Music 0.635 0.000 0.413 ✓ +2026-07-13 08:30:22,644 | INFO | Sitar 0.053 0.240 0.118 ✗ +2026-07-13 08:30:22,650 | INFO | Musical instrument 0.146 0.000 0.095 ✗ +2026-07-13 08:30:22,650 | INFO | Tabla 0.078 0.000 0.051 ✗ +2026-07-13 08:30:22,650 | INFO | Middle Eastern music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:22,650 | INFO | Traditional music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:22,650 | INFO | → WINNER: Music (combined=0.413) +2026-07-13 08:30:22,676 | INFO | +[794.20s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-07-13 08:30:22,676 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,676 | INFO | Music 0.843 0.000 0.548 ✓ +2026-07-13 08:30:22,676 | INFO | Musical instrument 0.178 0.000 0.116 ✗ +2026-07-13 08:30:22,676 | INFO | Tabla 0.098 0.000 0.064 ✗ +2026-07-13 08:30:22,676 | INFO | Middle Eastern music 0.084 0.000 0.054 ✗ +2026-07-13 08:30:22,676 | INFO | Singing 0.081 0.000 0.053 ✗ +2026-07-13 08:30:22,676 | INFO | Folk music 0.076 0.000 0.050 ✗ +2026-07-13 08:30:22,676 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:22,707 | INFO | +[794.40s] AMBIENT | scene='' +2026-07-13 08:30:22,707 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,707 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:22,707 | INFO | Musical instrument 0.260 0.000 0.169 ✓ +2026-07-13 08:30:22,707 | INFO | Tabla 0.155 0.000 0.101 ✗ +2026-07-13 08:30:22,707 | INFO | Folk music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:22,707 | INFO | Traditional music 0.148 0.000 0.096 ✗ +2026-07-13 08:30:22,707 | INFO | Carnatic music 0.131 0.000 0.085 ✗ +2026-07-13 08:30:22,707 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:22,734 | INFO | +[794.60s] AMBIENT | scene='' +2026-07-13 08:30:22,734 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,734 | INFO | Music 0.756 0.000 0.491 ✓ +2026-07-13 08:30:22,734 | INFO | Singing 0.190 0.000 0.124 ✓ +2026-07-13 08:30:22,734 | INFO | Tabla 0.154 0.000 0.101 ✗ +2026-07-13 08:30:22,734 | INFO | Carnatic music 0.148 0.000 0.096 ✗ +2026-07-13 08:30:22,734 | INFO | Musical instrument 0.126 0.000 0.082 ✗ +2026-07-13 08:30:22,734 | INFO | Middle Eastern music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:22,734 | INFO | → WINNER: Music (combined=0.491) +2026-07-13 08:30:22,770 | INFO | +[794.80s] AMBIENT | scene='' +2026-07-13 08:30:22,771 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,771 | INFO | Music 0.838 0.000 0.544 ✓ +2026-07-13 08:30:22,771 | INFO | Tabla 0.361 0.000 0.234 ✓ +2026-07-13 08:30:22,771 | INFO | Musical instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:22,771 | INFO | Singing 0.163 0.000 0.106 ✗ +2026-07-13 08:30:22,771 | INFO | Folk music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:22,771 | INFO | Percussion 0.103 0.000 0.067 ✗ +2026-07-13 08:30:22,771 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:30:22,798 | INFO | +[795.00s] AMBIENT | scene='' +2026-07-13 08:30:22,800 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,800 | INFO | Music 0.832 0.000 0.541 ✓ +2026-07-13 08:30:22,800 | INFO | Tabla 0.500 0.000 0.325 ✓ +2026-07-13 08:30:22,800 | INFO | Musical instrument 0.204 0.000 0.133 ✓ +2026-07-13 08:30:22,800 | INFO | Percussion 0.167 0.000 0.108 ✗ +2026-07-13 08:30:22,800 | INFO | Middle Eastern music 0.141 0.000 0.091 ✗ +2026-07-13 08:30:22,800 | INFO | Folk music 0.140 0.000 0.091 ✗ +2026-07-13 08:30:22,800 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:22,823 | INFO | +[795.20s] AMBIENT | scene='' +2026-07-13 08:30:22,823 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,831 | INFO | Music 0.858 0.000 0.557 ✓ +2026-07-13 08:30:22,831 | INFO | Salsa music 0.289 0.000 0.188 ✓ +2026-07-13 08:30:22,831 | INFO | Music of Latin America 0.225 0.000 0.146 ✓ +2026-07-13 08:30:22,831 | INFO | Singing 0.212 0.000 0.138 ✓ +2026-07-13 08:30:22,831 | INFO | Musical instrument 0.165 0.000 0.107 ✗ +2026-07-13 08:30:22,831 | INFO | Middle Eastern music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:22,831 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:22,859 | INFO | +[795.40s] AMBIENT | scene='' +2026-07-13 08:30:22,859 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,860 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:22,860 | INFO | Salsa music 0.342 0.000 0.222 ✓ +2026-07-13 08:30:22,861 | INFO | Musical instrument 0.289 0.000 0.188 ✓ +2026-07-13 08:30:22,861 | INFO | Banjo 0.259 0.000 0.168 ✓ +2026-07-13 08:30:22,861 | INFO | Music of Latin America 0.183 0.000 0.119 ✗ +2026-07-13 08:30:22,861 | INFO | Singing 0.162 0.000 0.105 ✗ +2026-07-13 08:30:22,862 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:22,888 | INFO | +[795.60s] AMBIENT | scene='' +2026-07-13 08:30:22,888 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,888 | INFO | Music 0.857 0.000 0.557 ✓ +2026-07-13 08:30:22,888 | INFO | Salsa music 0.313 0.000 0.203 ✓ +2026-07-13 08:30:22,888 | INFO | Banjo 0.279 0.000 0.181 ✓ +2026-07-13 08:30:22,888 | INFO | Musical instrument 0.265 0.000 0.172 ✓ +2026-07-13 08:30:22,888 | INFO | Music of Latin America 0.111 0.000 0.072 ✗ +2026-07-13 08:30:22,888 | INFO | Traditional music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:22,888 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:22,915 | INFO | +[795.80s] AMBIENT | scene='' +2026-07-13 08:30:22,915 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,915 | INFO | Music 0.799 0.000 0.520 ✓ +2026-07-13 08:30:22,915 | INFO | Singing 0.193 0.000 0.125 ✓ +2026-07-13 08:30:22,915 | INFO | Music of Latin America 0.091 0.000 0.059 ✗ +2026-07-13 08:30:22,915 | INFO | Salsa music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:22,915 | INFO | Middle Eastern music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:22,915 | INFO | Folk music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:22,915 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:22,945 | INFO | +[796.00s] AMBIENT | scene='' +2026-07-13 08:30:22,947 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,947 | INFO | Music 0.683 0.000 0.444 ✓ +2026-07-13 08:30:22,947 | INFO | Musical instrument 0.170 0.000 0.110 ✗ +2026-07-13 08:30:22,947 | INFO | Tabla 0.160 0.000 0.104 ✗ +2026-07-13 08:30:22,947 | INFO | Singing 0.127 0.000 0.083 ✗ +2026-07-13 08:30:22,947 | INFO | Middle Eastern music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:22,947 | INFO | Carnatic music 0.119 0.000 0.077 ✗ +2026-07-13 08:30:22,947 | INFO | → WINNER: Music (combined=0.444) +2026-07-13 08:30:22,970 | INFO | +[796.20s] AMBIENT | scene='' +2026-07-13 08:30:22,970 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:22,970 | INFO | Music 0.693 0.000 0.450 ✓ +2026-07-13 08:30:22,970 | INFO | Singing 0.217 0.000 0.141 ✓ +2026-07-13 08:30:22,970 | INFO | Carnatic music 0.131 0.000 0.085 ✗ +2026-07-13 08:30:22,970 | INFO | Musical instrument 0.113 0.000 0.074 ✗ +2026-07-13 08:30:22,978 | INFO | Middle Eastern music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:22,978 | INFO | Folk music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:22,978 | INFO | → WINNER: Music (combined=0.450) +2026-07-13 08:30:23,005 | INFO | +[796.40s] AMBIENT | scene='' +2026-07-13 08:30:23,005 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,005 | INFO | Music 0.653 0.000 0.424 ✓ +2026-07-13 08:30:23,005 | INFO | Carnatic music 0.323 0.000 0.210 ✓ +2026-07-13 08:30:23,005 | INFO | Singing 0.243 0.000 0.158 ✓ +2026-07-13 08:30:23,005 | INFO | Musical instrument 0.131 0.000 0.085 ✗ +2026-07-13 08:30:23,005 | INFO | Tabla 0.114 0.000 0.074 ✗ +2026-07-13 08:30:23,005 | INFO | Middle Eastern music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:23,005 | INFO | → WINNER: Music (combined=0.424) +2026-07-13 08:30:23,035 | INFO | +[796.60s] AMBIENT | scene='' +2026-07-13 08:30:23,035 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,035 | INFO | Music 0.631 0.000 0.410 ✓ +2026-07-13 08:30:23,035 | INFO | Singing 0.143 0.000 0.093 ✗ +2026-07-13 08:30:23,035 | INFO | Musical instrument 0.056 0.000 0.036 ✗ +2026-07-13 08:30:23,035 | INFO | → WINNER: Music (combined=0.410) +2026-07-13 08:30:23,064 | INFO | +[796.80s] AMBIENT | scene='' +2026-07-13 08:30:23,064 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,064 | INFO | Music 0.825 0.000 0.536 ✓ +2026-07-13 08:30:23,064 | INFO | Musical instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:23,064 | INFO | Percussion 0.179 0.000 0.116 ✗ +2026-07-13 08:30:23,064 | INFO | Wood block 0.129 0.000 0.084 ✗ +2026-07-13 08:30:23,064 | INFO | Tabla 0.111 0.000 0.072 ✗ +2026-07-13 08:30:23,064 | INFO | Drum 0.110 0.000 0.071 ✗ +2026-07-13 08:30:23,064 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:23,094 | INFO | +[797.00s] AMBIENT | scene='' +2026-07-13 08:30:23,094 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,094 | INFO | Music 0.865 0.000 0.562 ✓ +2026-07-13 08:30:23,094 | INFO | Salsa music 0.287 0.000 0.186 ✓ +2026-07-13 08:30:23,094 | INFO | Singing 0.285 0.000 0.185 ✓ +2026-07-13 08:30:23,094 | INFO | Musical instrument 0.199 0.000 0.130 ✓ +2026-07-13 08:30:23,094 | INFO | Music of Latin America 0.190 0.000 0.123 ✓ +2026-07-13 08:30:23,094 | INFO | Middle Eastern music 0.139 0.000 0.090 ✗ +2026-07-13 08:30:23,094 | INFO | → WINNER: Music (combined=0.562) +2026-07-13 08:30:23,119 | INFO | +[797.20s] AMBIENT | scene='' +2026-07-13 08:30:23,119 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,119 | INFO | Music 0.855 0.000 0.556 ✓ +2026-07-13 08:30:23,119 | INFO | Singing 0.197 0.000 0.128 ✓ +2026-07-13 08:30:23,119 | INFO | Musical instrument 0.160 0.000 0.104 ✗ +2026-07-13 08:30:23,119 | INFO | Salsa music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:23,124 | INFO | Middle Eastern music 0.149 0.000 0.097 ✗ +2026-07-13 08:30:23,124 | INFO | Music of Latin America 0.135 0.000 0.088 ✗ +2026-07-13 08:30:23,125 | INFO | → WINNER: Music (combined=0.556) +2026-07-13 08:30:23,150 | INFO | +[797.40s] AMBIENT | scene='' +2026-07-13 08:30:23,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,150 | INFO | Music 0.844 0.000 0.548 ✓ +2026-07-13 08:30:23,150 | INFO | Musical instrument 0.233 0.000 0.151 ✓ +2026-07-13 08:30:23,150 | INFO | Middle Eastern music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:23,150 | INFO | Singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:23,150 | INFO | Banjo 0.101 0.000 0.066 ✗ +2026-07-13 08:30:23,150 | INFO | Folk music 0.087 0.000 0.056 ✗ +2026-07-13 08:30:23,150 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:23,177 | INFO | +[797.60s] AMBIENT | scene='' +2026-07-13 08:30:23,177 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,177 | INFO | Music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:23,177 | INFO | → no winner +2026-07-13 08:30:23,208 | INFO | +[797.80s] AMBIENT | scene='' +2026-07-13 08:30:23,208 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,208 | INFO | Music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:23,208 | INFO | → no winner +2026-07-13 08:30:23,232 | INFO | +[798.00s] AMBIENT | scene='' +2026-07-13 08:30:23,232 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,232 | INFO | Music 0.487 0.000 0.316 ✓ +2026-07-13 08:30:23,232 | INFO | Singing 0.170 0.000 0.111 ✗ +2026-07-13 08:30:23,232 | INFO | → WINNER: Music (combined=0.316) +2026-07-13 08:30:23,258 | INFO | +[798.20s] AMBIENT | scene='' +2026-07-13 08:30:23,258 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,258 | INFO | Music 0.483 0.000 0.314 ✓ +2026-07-13 08:30:23,258 | INFO | Singing 0.163 0.000 0.106 ✗ +2026-07-13 08:30:23,258 | INFO | → WINNER: Music (combined=0.314) +2026-07-13 08:30:23,290 | INFO | +[798.40s] AMBIENT | scene='' +2026-07-13 08:30:23,290 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,290 | INFO | Music 0.585 0.000 0.380 ✓ +2026-07-13 08:30:23,290 | INFO | Singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:23,290 | INFO | → WINNER: Music (combined=0.380) +2026-07-13 08:30:23,317 | INFO | +[798.60s] AMBIENT | scene='' +2026-07-13 08:30:23,317 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,317 | INFO | Music 0.828 0.000 0.538 ✓ +2026-07-13 08:30:23,317 | INFO | Tabla 0.303 0.000 0.197 ✓ +2026-07-13 08:30:23,317 | INFO | Percussion 0.264 0.000 0.172 ✓ +2026-07-13 08:30:23,317 | INFO | Musical instrument 0.239 0.000 0.156 ✓ +2026-07-13 08:30:23,317 | INFO | Middle Eastern music 0.174 0.000 0.113 ✗ +2026-07-13 08:30:23,317 | INFO | Folk music 0.168 0.000 0.109 ✗ +2026-07-13 08:30:23,317 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:23,349 | INFO | +[798.80s] AMBIENT | scene='' +2026-07-13 08:30:23,349 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,351 | INFO | Music 0.857 0.000 0.557 ✓ +2026-07-13 08:30:23,351 | INFO | Banjo 0.623 0.000 0.405 ✓ +2026-07-13 08:30:23,351 | INFO | Musical instrument 0.438 0.000 0.285 ✓ +2026-07-13 08:30:23,351 | INFO | Bluegrass 0.342 0.000 0.222 ✓ +2026-07-13 08:30:23,351 | INFO | Country 0.301 0.000 0.196 ✓ +2026-07-13 08:30:23,351 | INFO | Singing 0.231 0.000 0.150 ✓ +2026-07-13 08:30:23,351 | INFO | → WINNER: Music (combined=0.557) +2026-07-13 08:30:23,375 | INFO | +[799.00s] AMBIENT | scene='' +2026-07-13 08:30:23,375 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,381 | INFO | Music 0.845 0.000 0.549 ✓ +2026-07-13 08:30:23,381 | INFO | Salsa music 0.348 0.000 0.226 ✓ +2026-07-13 08:30:23,381 | INFO | Musical instrument 0.234 0.000 0.152 ✓ +2026-07-13 08:30:23,381 | INFO | Singing 0.171 0.000 0.111 ✗ +2026-07-13 08:30:23,381 | INFO | Music of Latin America 0.160 0.000 0.104 ✗ +2026-07-13 08:30:23,381 | INFO | Banjo 0.157 0.000 0.102 ✗ +2026-07-13 08:30:23,381 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:23,405 | INFO | +[799.20s] AMBIENT | scene='' +2026-07-13 08:30:23,405 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,405 | INFO | Music 0.796 0.000 0.518 ✓ +2026-07-13 08:30:23,405 | INFO | Singing 0.145 0.000 0.095 ✗ +2026-07-13 08:30:23,405 | INFO | Musical instrument 0.126 0.000 0.082 ✗ +2026-07-13 08:30:23,405 | INFO | Banjo 0.082 0.000 0.053 ✗ +2026-07-13 08:30:23,405 | INFO | Country 0.073 0.000 0.048 ✗ +2026-07-13 08:30:23,405 | INFO | Middle Eastern music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:23,405 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:23,438 | INFO | +[799.40s] AMBIENT | scene='' +2026-07-13 08:30:23,438 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,438 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:23,438 | INFO | Singing 0.158 0.000 0.103 ✗ +2026-07-13 08:30:23,438 | INFO | Child singing 0.115 0.000 0.075 ✗ +2026-07-13 08:30:23,438 | INFO | Female singing 0.105 0.000 0.068 ✗ +2026-07-13 08:30:23,438 | INFO | Musical instrument 0.064 0.000 0.042 ✗ +2026-07-13 08:30:23,438 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:23,464 | INFO | +[799.60s] AMBIENT | scene='' +2026-07-13 08:30:23,464 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,464 | INFO | Child singing 0.455 0.000 0.296 ✓ +2026-07-13 08:30:23,464 | INFO | Music 0.217 0.000 0.141 ✓ +2026-07-13 08:30:23,464 | INFO | Female singing 0.199 0.000 0.129 ✓ +2026-07-13 08:30:23,471 | INFO | Singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:23,471 | INFO | Synthetic singing 0.085 0.000 0.055 ✗ +2026-07-13 08:30:23,471 | INFO | → WINNER: Child singing (combined=0.296) +2026-07-13 08:30:23,497 | INFO | +[799.80s] AMBIENT | scene='' +2026-07-13 08:30:23,497 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,497 | INFO | Music 0.570 0.000 0.370 ✓ +2026-07-13 08:30:23,497 | INFO | Child singing 0.180 0.000 0.117 ✗ +2026-07-13 08:30:23,497 | INFO | Singing 0.162 0.000 0.105 ✗ +2026-07-13 08:30:23,497 | INFO | Middle Eastern music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:23,497 | INFO | Female singing 0.102 0.000 0.067 ✗ +2026-07-13 08:30:23,497 | INFO | Carnatic music 0.090 0.000 0.058 ✗ +2026-07-13 08:30:23,497 | INFO | → WINNER: Music (combined=0.370) +2026-07-13 08:30:23,521 | INFO | +[800.00s] AMBIENT | scene='' +2026-07-13 08:30:23,521 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,521 | INFO | Music 0.689 0.000 0.448 ✓ +2026-07-13 08:30:23,521 | INFO | Musical instrument 0.195 0.000 0.127 ✓ +2026-07-13 08:30:23,521 | INFO | Tabla 0.169 0.000 0.110 ✗ +2026-07-13 08:30:23,521 | INFO | Traditional music 0.138 0.000 0.090 ✗ +2026-07-13 08:30:23,521 | INFO | Middle Eastern music 0.135 0.000 0.088 ✗ +2026-07-13 08:30:23,521 | INFO | Folk music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:23,528 | INFO | → WINNER: Music (combined=0.448) +2026-07-13 08:30:23,553 | INFO | +[800.20s] AMBIENT | scene='' +2026-07-13 08:30:23,553 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,555 | INFO | Music 0.803 0.000 0.522 ✓ +2026-07-13 08:30:23,555 | INFO | Musical instrument 0.323 0.000 0.210 ✓ +2026-07-13 08:30:23,556 | INFO | Tabla 0.271 0.000 0.176 ✓ +2026-07-13 08:30:23,556 | INFO | Traditional music 0.172 0.000 0.112 ✗ +2026-07-13 08:30:23,556 | INFO | Percussion 0.165 0.000 0.107 ✗ +2026-07-13 08:30:23,556 | INFO | Folk music 0.148 0.000 0.096 ✗ +2026-07-13 08:30:23,556 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:23,579 | INFO | +[800.40s] AMBIENT | scene='' +2026-07-13 08:30:23,579 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,579 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:23,579 | INFO | Tabla 0.295 0.000 0.192 ✓ +2026-07-13 08:30:23,579 | INFO | Percussion 0.289 0.000 0.188 ✓ +2026-07-13 08:30:23,579 | INFO | Musical instrument 0.233 0.000 0.151 ✓ +2026-07-13 08:30:23,579 | INFO | Drum 0.210 0.000 0.136 ✓ +2026-07-13 08:30:23,586 | INFO | Folk music 0.178 0.000 0.116 ✗ +2026-07-13 08:30:23,586 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:23,611 | INFO | +[800.60s] AMBIENT | scene='' +2026-07-13 08:30:23,611 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,611 | INFO | Music 0.827 0.000 0.538 ✓ +2026-07-13 08:30:23,611 | INFO | Middle Eastern music 0.216 0.000 0.141 ✓ +2026-07-13 08:30:23,611 | INFO | Tabla 0.204 0.000 0.132 ✓ +2026-07-13 08:30:23,611 | INFO | Percussion 0.203 0.000 0.132 ✓ +2026-07-13 08:30:23,611 | INFO | Musical instrument 0.199 0.000 0.130 ✓ +2026-07-13 08:30:23,611 | INFO | Folk music 0.195 0.000 0.127 ✓ +2026-07-13 08:30:23,616 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:23,641 | INFO | +[800.80s] AMBIENT | scene='' +2026-07-13 08:30:23,641 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,641 | INFO | Music 0.862 0.000 0.560 ✓ +2026-07-13 08:30:23,644 | INFO | Salsa music 0.521 0.000 0.339 ✓ +2026-07-13 08:30:23,645 | INFO | Musical instrument 0.221 0.000 0.144 ✓ +2026-07-13 08:30:23,645 | INFO | Music of Latin America 0.210 0.000 0.137 ✓ +2026-07-13 08:30:23,645 | INFO | Middle Eastern music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:23,645 | INFO | Singing 0.107 0.000 0.069 ✗ +2026-07-13 08:30:23,645 | INFO | → WINNER: Music (combined=0.560) +2026-07-13 08:30:23,672 | INFO | +[801.00s] AMBIENT | scene='' +2026-07-13 08:30:23,672 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,672 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:23,674 | INFO | Salsa music 0.555 0.000 0.361 ✓ +2026-07-13 08:30:23,674 | INFO | Music of Latin America 0.211 0.000 0.137 ✓ +2026-07-13 08:30:23,674 | INFO | Middle Eastern music 0.128 0.000 0.083 ✗ +2026-07-13 08:30:23,674 | INFO | Musical instrument 0.125 0.000 0.081 ✗ +2026-07-13 08:30:23,674 | INFO | Folk music 0.102 0.000 0.066 ✗ +2026-07-13 08:30:23,674 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:23,703 | INFO | +[801.20s] AMBIENT | scene='' +2026-07-13 08:30:23,703 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,703 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:23,703 | INFO | Middle Eastern music 0.262 0.000 0.170 ✓ +2026-07-13 08:30:23,703 | INFO | Folk music 0.192 0.000 0.125 ✓ +2026-07-13 08:30:23,703 | INFO | Tabla 0.143 0.000 0.093 ✗ +2026-07-13 08:30:23,703 | INFO | Musical instrument 0.125 0.000 0.081 ✗ +2026-07-13 08:30:23,703 | INFO | Traditional music 0.116 0.000 0.075 ✗ +2026-07-13 08:30:23,703 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:23,727 | INFO | +[801.40s] AMBIENT | scene='' +2026-07-13 08:30:23,734 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,734 | INFO | Music 0.662 0.000 0.430 ✓ +2026-07-13 08:30:23,734 | INFO | Musical instrument 0.077 0.000 0.050 ✗ +2026-07-13 08:30:23,734 | INFO | → WINNER: Music (combined=0.430) +2026-07-13 08:30:23,761 | INFO | +[801.60s] AMBIENT | scene='' +2026-07-13 08:30:23,761 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,761 | INFO | Music 0.267 0.000 0.173 ✓ +2026-07-13 08:30:23,761 | INFO | Singing 0.115 0.000 0.075 ✗ +2026-07-13 08:30:23,761 | INFO | → WINNER: Music (combined=0.173) +2026-07-13 08:30:23,789 | INFO | +[801.80s] AMBIENT | scene='' +2026-07-13 08:30:23,789 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,789 | INFO | Music 0.457 0.000 0.297 ✓ +2026-07-13 08:30:23,789 | INFO | Singing 0.193 0.000 0.126 ✓ +2026-07-13 08:30:23,789 | INFO | → WINNER: Music (combined=0.297) +2026-07-13 08:30:23,816 | INFO | +[802.00s] AMBIENT | scene='' +2026-07-13 08:30:23,816 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,816 | INFO | Music 0.508 0.000 0.330 ✓ +2026-07-13 08:30:23,816 | INFO | Singing 0.327 0.000 0.212 ✓ +2026-07-13 08:30:23,816 | INFO | Female singing 0.164 0.000 0.107 ✗ +2026-07-13 08:30:23,816 | INFO | Child singing 0.109 0.000 0.071 ✗ +2026-07-13 08:30:23,816 | INFO | Music of Bollywood 0.044 0.000 0.028 ✗ +2026-07-13 08:30:23,816 | INFO | → WINNER: Music (combined=0.330) +2026-07-13 08:30:23,842 | INFO | +[802.20s] AMBIENT | scene='' +2026-07-13 08:30:23,842 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,842 | INFO | Music 0.759 0.000 0.493 ✓ +2026-07-13 08:30:23,842 | INFO | Singing 0.342 0.000 0.223 ✓ +2026-07-13 08:30:23,842 | INFO | Female singing 0.137 0.000 0.089 ✗ +2026-07-13 08:30:23,842 | INFO | Child singing 0.084 0.000 0.054 ✗ +2026-07-13 08:30:23,842 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:23,869 | INFO | +[802.40s] AMBIENT | scene='' +2026-07-13 08:30:23,874 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,874 | INFO | Music 0.844 0.000 0.549 ✓ +2026-07-13 08:30:23,874 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:23,874 | INFO | Tabla 0.194 0.000 0.126 ✓ +2026-07-13 08:30:23,874 | INFO | Musical instrument 0.189 0.000 0.123 ✓ +2026-07-13 08:30:23,874 | INFO | Folk music 0.132 0.000 0.086 ✗ +2026-07-13 08:30:23,874 | INFO | Salsa music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:23,874 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:23,898 | INFO | +[802.60s] AMBIENT | scene='' +2026-07-13 08:30:23,898 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,898 | INFO | Music 0.872 0.000 0.567 ✓ +2026-07-13 08:30:23,898 | INFO | Salsa music 0.426 0.000 0.277 ✓ +2026-07-13 08:30:23,898 | INFO | Music of Latin America 0.207 0.000 0.134 ✓ +2026-07-13 08:30:23,898 | INFO | Musical instrument 0.205 0.000 0.134 ✓ +2026-07-13 08:30:23,898 | INFO | Singing 0.112 0.000 0.073 ✗ +2026-07-13 08:30:23,898 | INFO | Folk music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:23,906 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:23,931 | INFO | +[802.80s] AMBIENT | scene='' +2026-07-13 08:30:23,931 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,931 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:23,931 | INFO | Salsa music 0.492 0.000 0.320 ✓ +2026-07-13 08:30:23,931 | INFO | Musical instrument 0.259 0.000 0.168 ✓ +2026-07-13 08:30:23,931 | INFO | Music of Latin America 0.232 0.000 0.151 ✓ +2026-07-13 08:30:23,931 | INFO | Singing 0.116 0.000 0.076 ✗ +2026-07-13 08:30:23,931 | INFO | Percussion 0.099 0.000 0.064 ✗ +2026-07-13 08:30:23,931 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:23,955 | INFO | +[803.00s] AMBIENT | scene='' +2026-07-13 08:30:23,955 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,955 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:23,955 | INFO | Salsa music 0.450 0.000 0.292 ✓ +2026-07-13 08:30:23,955 | INFO | Traditional music 0.258 0.000 0.168 ✓ +2026-07-13 08:30:23,955 | INFO | Folk music 0.208 0.000 0.135 ✓ +2026-07-13 08:30:23,955 | INFO | Musical instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:23,955 | INFO | Middle Eastern music 0.198 0.000 0.129 ✓ +2026-07-13 08:30:23,955 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:23,988 | INFO | +[803.20s] AMBIENT | scene='' +2026-07-13 08:30:23,988 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:23,988 | INFO | Music 0.812 0.000 0.528 ✓ +2026-07-13 08:30:23,988 | INFO | Singing 0.161 0.000 0.105 ✗ +2026-07-13 08:30:23,988 | INFO | Salsa music 0.131 0.000 0.085 ✗ +2026-07-13 08:30:23,988 | INFO | Musical instrument 0.126 0.000 0.082 ✗ +2026-07-13 08:30:23,988 | INFO | Folk music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:23,988 | INFO | Music of Latin America 0.081 0.000 0.053 ✗ +2026-07-13 08:30:23,988 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:24,017 | INFO | +[803.40s] AMBIENT | scene='' +2026-07-13 08:30:24,017 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,017 | INFO | Music 0.365 0.000 0.238 ✓ +2026-07-13 08:30:24,017 | INFO | Singing 0.119 0.000 0.077 ✗ +2026-07-13 08:30:24,021 | INFO | → WINNER: Music (combined=0.238) +2026-07-13 08:30:24,046 | INFO | +[803.60s] AMBIENT | scene='' +2026-07-13 08:30:24,046 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,046 | INFO | Music 0.660 0.000 0.429 ✓ +2026-07-13 08:30:24,046 | INFO | Singing 0.252 0.000 0.164 ✓ +2026-07-13 08:30:24,046 | INFO | Middle Eastern music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:24,046 | INFO | Folk music 0.102 0.000 0.067 ✗ +2026-07-13 08:30:24,046 | INFO | Carnatic music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:24,046 | INFO | Musical instrument 0.085 0.000 0.056 ✗ +2026-07-13 08:30:24,046 | INFO | → WINNER: Music (combined=0.429) +2026-07-13 08:30:24,074 | INFO | +[803.80s] AMBIENT | scene='' +2026-07-13 08:30:24,074 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,074 | INFO | Music 0.523 0.000 0.340 ✓ +2026-07-13 08:30:24,074 | INFO | Carnatic music 0.332 0.000 0.216 ✓ +2026-07-13 08:30:24,078 | INFO | Singing 0.320 0.000 0.208 ✓ +2026-07-13 08:30:24,078 | INFO | Musical instrument 0.077 0.000 0.050 ✗ +2026-07-13 08:30:24,078 | INFO | Tabla 0.071 0.000 0.046 ✗ +2026-07-13 08:30:24,078 | INFO | Classical music 0.064 0.000 0.041 ✗ +2026-07-13 08:30:24,078 | INFO | → WINNER: Music (combined=0.340) +2026-07-13 08:30:24,104 | INFO | +[804.00s] AMBIENT | scene='' +2026-07-13 08:30:24,104 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,104 | INFO | Music 0.685 0.000 0.446 ✓ +2026-07-13 08:30:24,104 | INFO | Singing 0.294 0.000 0.191 ✓ +2026-07-13 08:30:24,104 | INFO | Female singing 0.145 0.000 0.094 ✗ +2026-07-13 08:30:24,104 | INFO | Carnatic music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:24,104 | INFO | → WINNER: Music (combined=0.446) +2026-07-13 08:30:24,130 | INFO | +[804.20s] AMBIENT | scene='' +2026-07-13 08:30:24,130 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,130 | INFO | Music 0.814 0.000 0.529 ✓ +2026-07-13 08:30:24,130 | INFO | Tabla 0.336 0.000 0.219 ✓ +2026-07-13 08:30:24,130 | INFO | Singing 0.248 0.000 0.161 ✓ +2026-07-13 08:30:24,130 | INFO | Folk music 0.158 0.000 0.102 ✗ +2026-07-13 08:30:24,136 | INFO | Middle Eastern music 0.144 0.000 0.093 ✗ +2026-07-13 08:30:24,136 | INFO | Musical instrument 0.136 0.000 0.088 ✗ +2026-07-13 08:30:24,136 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:24,161 | INFO | +[804.40s] AMBIENT | scene='' +2026-07-13 08:30:24,161 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,161 | INFO | Music 0.873 0.000 0.568 ✓ +2026-07-13 08:30:24,161 | INFO | Salsa music 0.668 0.000 0.434 ✓ +2026-07-13 08:30:24,161 | INFO | Middle Eastern music 0.256 0.000 0.166 ✓ +2026-07-13 08:30:24,161 | INFO | Music of Latin America 0.247 0.000 0.161 ✓ +2026-07-13 08:30:24,161 | INFO | Folk music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:24,161 | INFO | Singing 0.145 0.000 0.094 ✗ +2026-07-13 08:30:24,161 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:24,189 | INFO | +[804.60s] AMBIENT | scene='' +2026-07-13 08:30:24,192 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,192 | INFO | Music 0.826 0.000 0.537 ✓ +2026-07-13 08:30:24,192 | INFO | Salsa music 0.354 0.000 0.230 ✓ +2026-07-13 08:30:24,192 | INFO | Middle Eastern music 0.252 0.000 0.164 ✓ +2026-07-13 08:30:24,192 | INFO | Tabla 0.223 0.000 0.145 ✓ +2026-07-13 08:30:24,194 | INFO | Musical instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:24,194 | INFO | Folk music 0.187 0.000 0.121 ✓ +2026-07-13 08:30:24,194 | INFO | → WINNER: Music (combined=0.537) +2026-07-13 08:30:24,217 | INFO | +[804.80s] AMBIENT | scene='' +2026-07-13 08:30:24,221 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,221 | INFO | Music 0.854 0.000 0.555 ✓ +2026-07-13 08:30:24,221 | INFO | Salsa music 0.522 0.000 0.339 ✓ +2026-07-13 08:30:24,221 | INFO | Music of Latin America 0.210 0.000 0.136 ✓ +2026-07-13 08:30:24,221 | INFO | Musical instrument 0.180 0.000 0.117 ✗ +2026-07-13 08:30:24,221 | INFO | Singing 0.140 0.000 0.091 ✗ +2026-07-13 08:30:24,223 | INFO | Middle Eastern music 0.130 0.000 0.084 ✗ +2026-07-13 08:30:24,223 | INFO | → WINNER: Music (combined=0.555) +2026-07-13 08:30:24,249 | INFO | +[805.00s] AMBIENT | scene='' +2026-07-13 08:30:24,249 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,249 | INFO | Music 0.861 0.000 0.560 ✓ +2026-07-13 08:30:24,249 | INFO | Middle Eastern music 0.145 0.000 0.094 ✗ +2026-07-13 08:30:24,249 | INFO | Singing 0.124 0.000 0.081 ✗ +2026-07-13 08:30:24,249 | INFO | Musical instrument 0.065 0.000 0.042 ✗ +2026-07-13 08:30:24,249 | INFO | Music of Latin America 0.063 0.000 0.041 ✗ +2026-07-13 08:30:24,249 | INFO | Folk music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:24,249 | INFO | → WINNER: Music (combined=0.560) +2026-07-13 08:30:24,277 | INFO | +[805.20s] AMBIENT | scene='' +2026-07-13 08:30:24,277 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,277 | INFO | Music 0.255 0.000 0.166 ✓ +2026-07-13 08:30:24,277 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:24,277 | INFO | → WINNER: Music (combined=0.166) +2026-07-13 08:30:24,305 | INFO | +[805.40s] AMBIENT | scene='' +2026-07-13 08:30:24,305 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,305 | INFO | Music 0.607 0.000 0.395 ✓ +2026-07-13 08:30:24,305 | INFO | Singing 0.225 0.000 0.146 ✓ +2026-07-13 08:30:24,305 | INFO | Yodeling 0.156 0.000 0.102 ✗ +2026-07-13 08:30:24,305 | INFO | → WINNER: Music (combined=0.395) +2026-07-13 08:30:24,330 | INFO | +[805.60s] AMBIENT | scene='' +2026-07-13 08:30:24,330 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,330 | INFO | Music 0.710 0.000 0.462 ✓ +2026-07-13 08:30:24,330 | INFO | Singing 0.216 0.000 0.141 ✓ +2026-07-13 08:30:24,338 | INFO | Musical instrument 0.109 0.000 0.071 ✗ +2026-07-13 08:30:24,338 | INFO | Yodeling 0.101 0.000 0.066 ✗ +2026-07-13 08:30:24,338 | INFO | → WINNER: Music (combined=0.462) +2026-07-13 08:30:24,363 | INFO | +[805.80s] AMBIENT | scene='' +2026-07-13 08:30:24,363 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,363 | INFO | Music 0.883 0.000 0.574 ✓ +2026-07-13 08:30:24,363 | INFO | Musical instrument 0.353 0.000 0.230 ✓ +2026-07-13 08:30:24,363 | INFO | Plucked string instrument 0.130 0.000 0.084 ✗ +2026-07-13 08:30:24,363 | INFO | Guitar 0.108 0.000 0.070 ✗ +2026-07-13 08:30:24,363 | INFO | Singing 0.084 0.000 0.054 ✗ +2026-07-13 08:30:24,363 | INFO | Traditional music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:24,363 | INFO | → WINNER: Music (combined=0.574) +2026-07-13 08:30:24,392 | INFO | +[806.00s] AMBIENT | scene='' +2026-07-13 08:30:24,392 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,396 | INFO | Music 0.855 0.000 0.556 ✓ +2026-07-13 08:30:24,396 | INFO | Middle Eastern music 0.316 0.000 0.205 ✓ +2026-07-13 08:30:24,396 | INFO | Folk music 0.249 0.000 0.162 ✓ +2026-07-13 08:30:24,396 | INFO | Singing 0.160 0.000 0.104 ✗ +2026-07-13 08:30:24,397 | INFO | Traditional music 0.148 0.000 0.097 ✗ +2026-07-13 08:30:24,397 | INFO | Musical instrument 0.122 0.000 0.080 ✗ +2026-07-13 08:30:24,397 | INFO | → WINNER: Music (combined=0.556) +2026-07-13 08:30:24,420 | INFO | +[806.20s] AMBIENT | scene='' +2026-07-13 08:30:24,420 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,420 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:24,420 | INFO | Middle Eastern music 0.435 0.000 0.283 ✓ +2026-07-13 08:30:24,420 | INFO | Folk music 0.266 0.000 0.173 ✓ +2026-07-13 08:30:24,420 | INFO | Traditional music 0.231 0.000 0.150 ✓ +2026-07-13 08:30:24,420 | INFO | Singing 0.154 0.000 0.100 ✗ +2026-07-13 08:30:24,420 | INFO | Musical instrument 0.147 0.000 0.095 ✗ +2026-07-13 08:30:24,420 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:24,453 | INFO | +[806.40s] AMBIENT | scene='' +2026-07-13 08:30:24,453 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,453 | INFO | Music 0.814 0.000 0.529 ✓ +2026-07-13 08:30:24,455 | INFO | Salsa music 0.254 0.000 0.165 ✓ +2026-07-13 08:30:24,455 | INFO | Music of Latin America 0.145 0.000 0.095 ✗ +2026-07-13 08:30:24,455 | INFO | Middle Eastern music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:24,455 | INFO | Folk music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:24,455 | INFO | Singing 0.093 0.000 0.060 ✗ +2026-07-13 08:30:24,455 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:24,481 | INFO | +[806.60s] AMBIENT | scene='' +2026-07-13 08:30:24,481 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,481 | INFO | Music 0.837 0.000 0.544 ✓ +2026-07-13 08:30:24,481 | INFO | Child singing 0.222 0.000 0.144 ✓ +2026-07-13 08:30:24,481 | INFO | Singing 0.197 0.000 0.128 ✓ +2026-07-13 08:30:24,481 | INFO | Female singing 0.113 0.000 0.073 ✗ +2026-07-13 08:30:24,481 | INFO | Synthetic singing 0.099 0.000 0.064 ✗ +2026-07-13 08:30:24,481 | INFO | Musical instrument 0.061 0.000 0.040 ✗ +2026-07-13 08:30:24,487 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:30:24,512 | INFO | +[806.80s] AMBIENT | scene='' +2026-07-13 08:30:24,514 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,514 | INFO | Music 0.880 0.000 0.572 ✓ +2026-07-13 08:30:24,514 | INFO | Synthetic singing 0.358 0.000 0.233 ✓ +2026-07-13 08:30:24,514 | INFO | Singing 0.199 0.000 0.129 ✓ +2026-07-13 08:30:24,514 | INFO | Female singing 0.197 0.000 0.128 ✓ +2026-07-13 08:30:24,514 | INFO | Child singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:24,514 | INFO | → WINNER: Music (combined=0.572) +2026-07-13 08:30:24,536 | INFO | +[807.00s] AMBIENT | scene='' +2026-07-13 08:30:24,536 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,536 | INFO | Music 0.392 0.000 0.255 ✓ +2026-07-13 08:30:24,536 | INFO | Child singing 0.304 0.000 0.198 ✓ +2026-07-13 08:30:24,536 | INFO | Synthetic singing 0.270 0.000 0.175 ✓ +2026-07-13 08:30:24,536 | INFO | Female singing 0.269 0.000 0.175 ✓ +2026-07-13 08:30:24,544 | INFO | Singing 0.173 0.000 0.113 ✗ +2026-07-13 08:30:24,544 | INFO | → WINNER: Music (combined=0.255) +2026-07-13 08:30:24,569 | INFO | +[807.20s] AMBIENT | scene='' +2026-07-13 08:30:24,569 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,569 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:24,569 | INFO | Singing 0.217 0.000 0.141 ✓ +2026-07-13 08:30:24,569 | INFO | Middle Eastern music 0.186 0.000 0.121 ✓ +2026-07-13 08:30:24,569 | INFO | Folk music 0.134 0.000 0.087 ✗ +2026-07-13 08:30:24,569 | INFO | Carnatic music 0.130 0.000 0.085 ✗ +2026-07-13 08:30:24,569 | INFO | Musical instrument 0.103 0.000 0.067 ✗ +2026-07-13 08:30:24,569 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:24,597 | INFO | +[807.40s] AMBIENT | scene='' +2026-07-13 08:30:24,602 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,602 | INFO | Music 0.761 0.000 0.495 ✓ +2026-07-13 08:30:24,602 | INFO | Middle Eastern music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:24,602 | INFO | Tabla 0.194 0.000 0.126 ✓ +2026-07-13 08:30:24,602 | INFO | Singing 0.181 0.000 0.118 ✗ +2026-07-13 08:30:24,602 | INFO | Folk music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:24,602 | INFO | Musical instrument 0.119 0.000 0.077 ✗ +2026-07-13 08:30:24,602 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:24,631 | INFO | +[807.60s] AMBIENT | scene='' +2026-07-13 08:30:24,631 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,631 | INFO | Music 0.691 0.000 0.449 ✓ +2026-07-13 08:30:24,631 | INFO | Musical instrument 0.192 0.000 0.125 ✓ +2026-07-13 08:30:24,634 | INFO | Tabla 0.173 0.000 0.112 ✗ +2026-07-13 08:30:24,634 | INFO | Traditional music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:24,634 | INFO | Folk music 0.102 0.000 0.066 ✗ +2026-07-13 08:30:24,634 | INFO | Wind instrument, woodwind instrument 0.097 0.000 0.063 ✗ +2026-07-13 08:30:24,634 | INFO | → WINNER: Music (combined=0.449) +2026-07-13 08:30:24,661 | INFO | +[807.80s] AMBIENT | scene='' +2026-07-13 08:30:24,661 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,661 | INFO | Music 0.703 0.000 0.457 ✓ +2026-07-13 08:30:24,661 | INFO | Tabla 0.350 0.000 0.228 ✓ +2026-07-13 08:30:24,661 | INFO | Percussion 0.162 0.000 0.105 ✗ +2026-07-13 08:30:24,661 | INFO | Musical instrument 0.158 0.000 0.102 ✗ +2026-07-13 08:30:24,661 | INFO | Drum 0.133 0.000 0.087 ✗ +2026-07-13 08:30:24,661 | INFO | Wood block 0.065 0.000 0.042 ✗ +2026-07-13 08:30:24,661 | INFO | → WINNER: Music (combined=0.457) +2026-07-13 08:30:24,685 | INFO | +[808.00s] AMBIENT | scene='' +2026-07-13 08:30:24,685 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,692 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:24,692 | INFO | Musical instrument 0.201 0.000 0.131 ✓ +2026-07-13 08:30:24,692 | INFO | Middle Eastern music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:24,693 | INFO | Folk music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:24,693 | INFO | Drum 0.073 0.000 0.047 ✗ +2026-07-13 08:30:24,693 | INFO | Percussion 0.071 0.000 0.046 ✗ +2026-07-13 08:30:24,693 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:24,718 | INFO | +[808.20s] AMBIENT | scene='' +2026-07-13 08:30:24,718 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,718 | INFO | Music 0.836 0.000 0.543 ✓ +2026-07-13 08:30:24,718 | INFO | Salsa music 0.258 0.000 0.168 ✓ +2026-07-13 08:30:24,718 | INFO | Musical instrument 0.206 0.000 0.134 ✓ +2026-07-13 08:30:24,718 | INFO | Traditional music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:24,718 | INFO | Music of Latin America 0.074 0.000 0.048 ✗ +2026-07-13 08:30:24,718 | INFO | → WINNER: Music (combined=0.543) +2026-07-13 08:30:24,749 | INFO | +[808.40s] AMBIENT | scene='' +2026-07-13 08:30:24,749 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,749 | INFO | Music 0.818 0.000 0.531 ✓ +2026-07-13 08:30:24,749 | INFO | Salsa music 0.444 0.000 0.288 ✓ +2026-07-13 08:30:24,749 | INFO | Percussion 0.249 0.000 0.162 ✓ +2026-07-13 08:30:24,749 | INFO | Wood block 0.177 0.000 0.115 ✗ +2026-07-13 08:30:24,749 | INFO | Middle Eastern music 0.160 0.000 0.104 ✗ +2026-07-13 08:30:24,749 | INFO | Musical instrument 0.155 0.000 0.101 ✗ +2026-07-13 08:30:24,749 | INFO | → WINNER: Music (combined=0.531) +2026-07-13 08:30:24,774 | INFO | +[808.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,774 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,774 | INFO | Music 0.840 0.000 0.546 ✓ +2026-07-13 08:30:24,774 | INFO | Salsa music 0.244 0.000 0.159 ✓ +2026-07-13 08:30:24,774 | INFO | Percussion 0.212 0.000 0.138 ✓ +2026-07-13 08:30:24,774 | INFO | Wood block 0.211 0.000 0.137 ✓ +2026-07-13 08:30:24,774 | INFO | Middle Eastern music 0.164 0.000 0.107 ✗ +2026-07-13 08:30:24,774 | INFO | Musical instrument 0.139 0.000 0.090 ✗ +2026-07-13 08:30:24,774 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:30:24,806 | INFO | +[808.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,806 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,806 | INFO | Music 0.803 0.000 0.522 ✓ +2026-07-13 08:30:24,806 | INFO | Wood block 0.272 0.000 0.177 ✓ +2026-07-13 08:30:24,806 | INFO | Percussion 0.252 0.000 0.164 ✓ +2026-07-13 08:30:24,806 | INFO | Musical instrument 0.221 0.000 0.143 ✓ +2026-07-13 08:30:24,806 | INFO | Drum 0.173 0.000 0.113 ✗ +2026-07-13 08:30:24,806 | INFO | Tabla 0.132 0.000 0.086 ✗ +2026-07-13 08:30:24,806 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:24,831 | INFO | +[809.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,831 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,839 | INFO | Music 0.787 0.000 0.511 ✓ +2026-07-13 08:30:24,839 | INFO | Wood block 0.440 0.000 0.286 ✓ +2026-07-13 08:30:24,839 | INFO | Percussion 0.319 0.000 0.207 ✓ +2026-07-13 08:30:24,839 | INFO | Drum 0.226 0.000 0.147 ✓ +2026-07-13 08:30:24,839 | INFO | Musical instrument 0.206 0.000 0.134 ✓ +2026-07-13 08:30:24,839 | INFO | Tabla 0.148 0.000 0.097 ✗ +2026-07-13 08:30:24,839 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:24,866 | INFO | +[809.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,866 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,866 | INFO | Music 0.859 0.000 0.559 ✓ +2026-07-13 08:30:24,866 | INFO | Wood block 0.492 0.000 0.320 ✓ +2026-07-13 08:30:24,866 | INFO | Percussion 0.348 0.000 0.226 ✓ +2026-07-13 08:30:24,866 | INFO | Musical instrument 0.236 0.000 0.153 ✓ +2026-07-13 08:30:24,866 | INFO | Drum 0.229 0.000 0.149 ✓ +2026-07-13 08:30:24,866 | INFO | Traditional music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:24,866 | INFO | → WINNER: Music (combined=0.559) +2026-07-13 08:30:24,893 | INFO | +[809.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,893 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,893 | INFO | Music 0.787 0.000 0.512 ✓ +2026-07-13 08:30:24,897 | INFO | Percussion 0.413 0.000 0.269 ✓ +2026-07-13 08:30:24,897 | INFO | Wood block 0.413 0.000 0.269 ✓ +2026-07-13 08:30:24,897 | INFO | Tabla 0.275 0.000 0.179 ✓ +2026-07-13 08:30:24,897 | INFO | Musical instrument 0.226 0.000 0.147 ✓ +2026-07-13 08:30:24,897 | INFO | Drum 0.220 0.000 0.143 ✓ +2026-07-13 08:30:24,897 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:24,921 | INFO | +[809.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,921 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,921 | INFO | Music 0.833 0.000 0.541 ✓ +2026-07-13 08:30:24,921 | INFO | Wood block 0.434 0.000 0.282 ✓ +2026-07-13 08:30:24,921 | INFO | Percussion 0.342 0.000 0.223 ✓ +2026-07-13 08:30:24,921 | INFO | Musical instrument 0.319 0.000 0.207 ✓ +2026-07-13 08:30:24,921 | INFO | Tabla 0.253 0.000 0.164 ✓ +2026-07-13 08:30:24,921 | INFO | Drum 0.190 0.000 0.123 ✓ +2026-07-13 08:30:24,921 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:24,945 | INFO | +[809.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,953 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,954 | INFO | Music 0.719 0.000 0.467 ✓ +2026-07-13 08:30:24,954 | INFO | Tabla 0.563 0.000 0.366 ✓ +2026-07-13 08:30:24,954 | INFO | Percussion 0.455 0.000 0.296 ✓ +2026-07-13 08:30:24,954 | INFO | Musical instrument 0.306 0.000 0.199 ✓ +2026-07-13 08:30:24,954 | INFO | Drum 0.279 0.000 0.181 ✓ +2026-07-13 08:30:24,954 | INFO | Wood block 0.224 0.000 0.145 ✓ +2026-07-13 08:30:24,954 | INFO | → WINNER: Music (combined=0.467) +2026-07-13 08:30:24,978 | INFO | +[810.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:24,978 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:24,978 | INFO | Music 0.758 0.000 0.493 ✓ +2026-07-13 08:30:24,978 | INFO | Percussion 0.438 0.000 0.285 ✓ +2026-07-13 08:30:24,978 | INFO | Wood block 0.419 0.000 0.273 ✓ +2026-07-13 08:30:24,978 | INFO | Tabla 0.267 0.000 0.174 ✓ +2026-07-13 08:30:24,978 | INFO | Musical instrument 0.250 0.000 0.163 ✓ +2026-07-13 08:30:24,978 | INFO | Drum 0.243 0.000 0.158 ✓ +2026-07-13 08:30:24,978 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:25,007 | INFO | +[810.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,007 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,007 | INFO | Music 0.794 0.000 0.516 ✓ +2026-07-13 08:30:25,007 | INFO | Wood block 0.528 0.000 0.343 ✓ +2026-07-13 08:30:25,012 | INFO | Percussion 0.443 0.000 0.288 ✓ +2026-07-13 08:30:25,012 | INFO | Drum 0.311 0.000 0.202 ✓ +2026-07-13 08:30:25,012 | INFO | Musical instrument 0.277 0.000 0.180 ✓ +2026-07-13 08:30:25,012 | INFO | Tabla 0.139 0.000 0.090 ✗ +2026-07-13 08:30:25,012 | INFO | → WINNER: Music (combined=0.516) +2026-07-13 08:30:25,037 | INFO | +[810.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,037 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,037 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:30:25,037 | INFO | Wood block 0.456 0.000 0.297 ✓ +2026-07-13 08:30:25,037 | INFO | Percussion 0.309 0.000 0.201 ✓ +2026-07-13 08:30:25,037 | INFO | Drum 0.207 0.000 0.134 ✓ +2026-07-13 08:30:25,037 | INFO | Musical instrument 0.193 0.000 0.126 ✓ +2026-07-13 08:30:25,037 | INFO | Salsa music 0.118 0.000 0.076 ✗ +2026-07-13 08:30:25,037 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:25,061 | INFO | +[810.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,069 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:25,069 | INFO | Wood block 0.491 0.000 0.319 ✓ +2026-07-13 08:30:25,069 | INFO | Percussion 0.332 0.000 0.215 ✓ +2026-07-13 08:30:25,069 | INFO | Drum 0.238 0.000 0.155 ✓ +2026-07-13 08:30:25,069 | INFO | Musical instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:25,069 | INFO | Bass drum 0.057 0.000 0.037 ✗ +2026-07-13 08:30:25,069 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:25,094 | INFO | +[810.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,094 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,094 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:25,094 | INFO | Wood block 0.544 0.000 0.354 ✓ +2026-07-13 08:30:25,094 | INFO | Percussion 0.408 0.000 0.265 ✓ +2026-07-13 08:30:25,094 | INFO | Drum 0.290 0.000 0.189 ✓ +2026-07-13 08:30:25,094 | INFO | Musical instrument 0.247 0.000 0.161 ✓ +2026-07-13 08:30:25,094 | INFO | Tabla 0.048 0.000 0.031 ✗ +2026-07-13 08:30:25,094 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:25,127 | INFO | +[811.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,127 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,127 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:25,127 | INFO | Wood block 0.543 0.000 0.353 ✓ +2026-07-13 08:30:25,127 | INFO | Percussion 0.332 0.000 0.216 ✓ +2026-07-13 08:30:25,127 | INFO | Drum 0.196 0.000 0.128 ✓ +2026-07-13 08:30:25,127 | INFO | Musical instrument 0.188 0.000 0.122 ✓ +2026-07-13 08:30:25,127 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:25,150 | INFO | +[811.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,150 | INFO | Music 0.816 0.000 0.531 ✓ +2026-07-13 08:30:25,150 | INFO | Wood block 0.536 0.000 0.348 ✓ +2026-07-13 08:30:25,150 | INFO | Percussion 0.385 0.000 0.250 ✓ +2026-07-13 08:30:25,150 | INFO | Drum 0.243 0.000 0.158 ✓ +2026-07-13 08:30:25,150 | INFO | Musical instrument 0.216 0.000 0.141 ✓ +2026-07-13 08:30:25,150 | INFO | Tabla 0.085 0.000 0.055 ✗ +2026-07-13 08:30:25,150 | INFO | → WINNER: Music (combined=0.531) +2026-07-13 08:30:25,183 | INFO | +[811.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,183 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,183 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:25,183 | INFO | Wood block 0.598 0.000 0.389 ✓ +2026-07-13 08:30:25,183 | INFO | Percussion 0.430 0.000 0.280 ✓ +2026-07-13 08:30:25,183 | INFO | Drum 0.219 0.000 0.142 ✓ +2026-07-13 08:30:25,183 | INFO | Musical instrument 0.205 0.000 0.133 ✓ +2026-07-13 08:30:25,183 | INFO | Tabla 0.097 0.000 0.063 ✗ +2026-07-13 08:30:25,183 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:25,210 | INFO | +[811.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,210 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,210 | INFO | Music 0.790 0.000 0.513 ✓ +2026-07-13 08:30:25,210 | INFO | Wood block 0.540 0.000 0.351 ✓ +2026-07-13 08:30:25,210 | INFO | Percussion 0.479 0.000 0.311 ✓ +2026-07-13 08:30:25,210 | INFO | Drum 0.299 0.000 0.194 ✓ +2026-07-13 08:30:25,210 | INFO | Musical instrument 0.264 0.000 0.172 ✓ +2026-07-13 08:30:25,210 | INFO | Drum kit 0.070 0.000 0.045 ✗ +2026-07-13 08:30:25,210 | INFO | → WINNER: Music (combined=0.513) +2026-07-13 08:30:25,236 | INFO | +[811.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,240 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,240 | INFO | Music 0.768 0.000 0.499 ✓ +2026-07-13 08:30:25,240 | INFO | Wood block 0.523 0.000 0.340 ✓ +2026-07-13 08:30:25,240 | INFO | Percussion 0.478 0.000 0.311 ✓ +2026-07-13 08:30:25,240 | INFO | Musical instrument 0.263 0.000 0.171 ✓ +2026-07-13 08:30:25,240 | INFO | Drum 0.252 0.000 0.164 ✓ +2026-07-13 08:30:25,240 | INFO | Tabla 0.175 0.000 0.114 ✗ +2026-07-13 08:30:25,240 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:25,264 | INFO | +[812.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,264 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,264 | INFO | Music 0.783 0.000 0.509 ✓ +2026-07-13 08:30:25,264 | INFO | Percussion 0.273 0.000 0.178 ✓ +2026-07-13 08:30:25,264 | INFO | Musical instrument 0.236 0.000 0.154 ✓ +2026-07-13 08:30:25,264 | INFO | Tabla 0.212 0.000 0.138 ✓ +2026-07-13 08:30:25,272 | INFO | Wood block 0.193 0.000 0.126 ✓ +2026-07-13 08:30:25,272 | INFO | Drum 0.153 0.000 0.099 ✗ +2026-07-13 08:30:25,272 | INFO | → WINNER: Music (combined=0.509) +2026-07-13 08:30:25,297 | INFO | +[812.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,299 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,299 | INFO | Music 0.746 0.000 0.485 ✓ +2026-07-13 08:30:25,299 | INFO | Musical instrument 0.180 0.000 0.117 ✗ +2026-07-13 08:30:25,299 | INFO | Singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:25,299 | INFO | Percussion 0.107 0.000 0.070 ✗ +2026-07-13 08:30:25,299 | INFO | Tabla 0.093 0.000 0.061 ✗ +2026-07-13 08:30:25,299 | INFO | Folk music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:25,299 | INFO | → WINNER: Music (combined=0.485) +2026-07-13 08:30:25,329 | INFO | +[812.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,329 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,329 | INFO | Music 0.680 0.000 0.442 ✓ +2026-07-13 08:30:25,329 | INFO | Middle Eastern music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:25,329 | INFO | Musical instrument 0.110 0.000 0.071 ✗ +2026-07-13 08:30:25,329 | INFO | Singing 0.097 0.000 0.063 ✗ +2026-07-13 08:30:25,329 | INFO | Folk music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:25,329 | INFO | Tabla 0.078 0.000 0.051 ✗ +2026-07-13 08:30:25,329 | INFO | → WINNER: Music (combined=0.442) +2026-07-13 08:30:25,353 | INFO | +[812.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,353 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,353 | INFO | Music 0.219 0.000 0.142 ✓ +2026-07-13 08:30:25,353 | INFO | Mantra 0.071 0.000 0.046 ✗ +2026-07-13 08:30:25,353 | INFO | → WINNER: Music (combined=0.142) +2026-07-13 08:30:25,386 | INFO | +[812.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,386 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,386 | INFO | Music 0.272 0.000 0.177 ✓ +2026-07-13 08:30:25,386 | INFO | Singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:25,386 | INFO | Mantra 0.077 0.000 0.050 ✗ +2026-07-13 08:30:25,386 | INFO | → WINNER: Music (combined=0.177) +2026-07-13 08:30:25,411 | INFO | +[813.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,411 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,411 | INFO | Music 0.598 0.000 0.388 ✓ +2026-07-13 08:30:25,411 | INFO | Middle Eastern music 0.115 0.000 0.075 ✗ +2026-07-13 08:30:25,411 | INFO | Singing 0.104 0.000 0.068 ✗ +2026-07-13 08:30:25,411 | INFO | Carnatic music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:25,411 | INFO | Musical instrument 0.068 0.000 0.044 ✗ +2026-07-13 08:30:25,411 | INFO | Mantra 0.062 0.000 0.041 ✗ +2026-07-13 08:30:25,411 | INFO | → WINNER: Music (combined=0.388) +2026-07-13 08:30:25,439 | INFO | +[813.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,439 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,439 | INFO | Music 0.294 0.000 0.191 ✓ +2026-07-13 08:30:25,439 | INFO | Singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:25,439 | INFO | → WINNER: Music (combined=0.191) +2026-07-13 08:30:25,468 | INFO | +[813.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,468 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,468 | INFO | Music 0.821 0.000 0.534 ✓ +2026-07-13 08:30:25,468 | INFO | Middle Eastern music 0.253 0.000 0.164 ✓ +2026-07-13 08:30:25,468 | INFO | Musical instrument 0.247 0.000 0.160 ✓ +2026-07-13 08:30:25,468 | INFO | Tabla 0.148 0.000 0.097 ✗ +2026-07-13 08:30:25,468 | INFO | Singing 0.144 0.000 0.094 ✗ +2026-07-13 08:30:25,468 | INFO | Folk music 0.130 0.000 0.085 ✗ +2026-07-13 08:30:25,468 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:25,493 | INFO | +[813.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,493 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,493 | INFO | Music 0.803 0.000 0.522 ✓ +2026-07-13 08:30:25,493 | INFO | Middle Eastern music 0.341 0.000 0.222 ✓ +2026-07-13 08:30:25,493 | INFO | Folk music 0.215 0.000 0.140 ✓ +2026-07-13 08:30:25,493 | INFO | Musical instrument 0.185 0.000 0.120 ✓ +2026-07-13 08:30:25,493 | INFO | Singing 0.167 0.000 0.109 ✗ +2026-07-13 08:30:25,493 | INFO | Traditional music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:25,501 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:25,526 | INFO | +[813.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,526 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,526 | INFO | Music 0.764 0.000 0.496 ✓ +2026-07-13 08:30:25,526 | INFO | Middle Eastern music 0.319 0.000 0.207 ✓ +2026-07-13 08:30:25,526 | INFO | Folk music 0.216 0.000 0.141 ✓ +2026-07-13 08:30:25,526 | INFO | Singing 0.205 0.000 0.133 ✓ +2026-07-13 08:30:25,526 | INFO | Tabla 0.176 0.000 0.115 ✗ +2026-07-13 08:30:25,526 | INFO | Musical instrument 0.114 0.000 0.074 ✗ +2026-07-13 08:30:25,526 | INFO | → WINNER: Music (combined=0.496) +2026-07-13 08:30:25,550 | INFO | +[814.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,558 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,558 | INFO | Music 0.813 0.000 0.528 ✓ +2026-07-13 08:30:25,558 | INFO | Singing 0.157 0.000 0.102 ✗ +2026-07-13 08:30:25,558 | INFO | Musical instrument 0.146 0.000 0.095 ✗ +2026-07-13 08:30:25,558 | INFO | Middle Eastern music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:25,558 | INFO | Folk music 0.118 0.000 0.077 ✗ +2026-07-13 08:30:25,558 | INFO | Salsa music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:25,558 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:25,584 | INFO | +[814.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,584 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,584 | INFO | Music 0.762 0.000 0.495 ✓ +2026-07-13 08:30:25,584 | INFO | Musical instrument 0.118 0.000 0.077 ✗ +2026-07-13 08:30:25,584 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:25,584 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:25,610 | INFO | +[814.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,610 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,615 | INFO | Music 0.438 0.000 0.284 ✓ +2026-07-13 08:30:25,615 | INFO | Singing 0.159 0.000 0.104 ✗ +2026-07-13 08:30:25,615 | INFO | → WINNER: Music (combined=0.284) +2026-07-13 08:30:25,640 | INFO | +[814.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,640 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,640 | INFO | Music 0.577 0.000 0.375 ✓ +2026-07-13 08:30:25,640 | INFO | Singing 0.219 0.000 0.142 ✓ +2026-07-13 08:30:25,640 | INFO | Female singing 0.213 0.000 0.139 ✓ +2026-07-13 08:30:25,640 | INFO | Child singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:25,640 | INFO | → WINNER: Music (combined=0.375) +2026-07-13 08:30:25,666 | INFO | +[814.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,666 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,673 | INFO | Music 0.684 0.000 0.445 ✓ +2026-07-13 08:30:25,673 | INFO | Female singing 0.347 0.000 0.225 ✓ +2026-07-13 08:30:25,673 | INFO | Singing 0.256 0.000 0.166 ✓ +2026-07-13 08:30:25,673 | INFO | Child singing 0.210 0.000 0.136 ✓ +2026-07-13 08:30:25,673 | INFO | → WINNER: Music (combined=0.445) +2026-07-13 08:30:25,698 | INFO | +[815.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,698 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,698 | INFO | Music 0.725 0.000 0.471 ✓ +2026-07-13 08:30:25,698 | INFO | Singing 0.279 0.000 0.181 ✓ +2026-07-13 08:30:25,698 | INFO | Female singing 0.160 0.000 0.104 ✗ +2026-07-13 08:30:25,698 | INFO | A capella 0.063 0.000 0.041 ✗ +2026-07-13 08:30:25,698 | INFO | Choir 0.054 0.000 0.035 ✗ +2026-07-13 08:30:25,698 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:25,723 | INFO | +[815.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,723 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,723 | INFO | Music 0.843 0.000 0.548 ✓ +2026-07-13 08:30:25,723 | INFO | Singing 0.230 0.000 0.149 ✓ +2026-07-13 08:30:25,723 | INFO | Musical instrument 0.135 0.000 0.088 ✗ +2026-07-13 08:30:25,723 | INFO | Middle Eastern music 0.133 0.000 0.087 ✗ +2026-07-13 08:30:25,723 | INFO | Tabla 0.104 0.000 0.068 ✗ +2026-07-13 08:30:25,723 | INFO | Folk music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:25,730 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:25,755 | INFO | +[815.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,755 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,755 | INFO | Music 0.787 0.000 0.512 ✓ +2026-07-13 08:30:25,755 | INFO | Middle Eastern music 0.344 0.000 0.223 ✓ +2026-07-13 08:30:25,755 | INFO | Singing 0.167 0.000 0.108 ✗ +2026-07-13 08:30:25,755 | INFO | Folk music 0.122 0.000 0.079 ✗ +2026-07-13 08:30:25,755 | INFO | Music of Bollywood 0.090 0.000 0.059 ✗ +2026-07-13 08:30:25,755 | INFO | Tabla 0.059 0.000 0.038 ✗ +2026-07-13 08:30:25,755 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:25,781 | INFO | +[815.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,781 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,781 | INFO | Music 0.716 0.000 0.465 ✓ +2026-07-13 08:30:25,781 | INFO | Middle Eastern music 0.253 0.000 0.165 ✓ +2026-07-13 08:30:25,781 | INFO | Singing 0.179 0.000 0.116 ✗ +2026-07-13 08:30:25,781 | INFO | Tabla 0.158 0.000 0.102 ✗ +2026-07-13 08:30:25,781 | INFO | Folk music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:25,781 | INFO | Musical instrument 0.062 0.000 0.040 ✗ +2026-07-13 08:30:25,781 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:25,813 | INFO | +[815.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,814 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,814 | INFO | Music 0.824 0.000 0.536 ✓ +2026-07-13 08:30:25,814 | INFO | Singing 0.177 0.000 0.115 ✗ +2026-07-13 08:30:25,814 | INFO | Middle Eastern music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:25,814 | INFO | Folk music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:25,814 | INFO | Music of Latin America 0.067 0.000 0.044 ✗ +2026-07-13 08:30:25,814 | INFO | Musical instrument 0.055 0.000 0.036 ✗ +2026-07-13 08:30:25,814 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:25,843 | INFO | +[816.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,843 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,844 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:25,844 | INFO | Singing 0.230 0.000 0.150 ✓ +2026-07-13 08:30:25,844 | INFO | Middle Eastern music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:25,844 | INFO | Folk music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:25,844 | INFO | Music of Bollywood 0.033 0.000 0.021 ✗ +2026-07-13 08:30:25,845 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:25,871 | INFO | +[816.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,871 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,871 | INFO | Music 0.383 0.000 0.249 ✓ +2026-07-13 08:30:25,871 | INFO | Singing 0.212 0.000 0.138 ✓ +2026-07-13 08:30:25,871 | INFO | Female singing 0.169 0.000 0.110 ✗ +2026-07-13 08:30:25,871 | INFO | → WINNER: Music (combined=0.249) +2026-07-13 08:30:25,896 | INFO | +[816.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,896 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,896 | INFO | Music 0.406 0.000 0.264 ✓ +2026-07-13 08:30:25,896 | INFO | Singing 0.222 0.000 0.144 ✓ +2026-07-13 08:30:25,896 | INFO | Female singing 0.144 0.000 0.094 ✗ +2026-07-13 08:30:25,896 | INFO | → WINNER: Music (combined=0.264) +2026-07-13 08:30:25,920 | INFO | +[816.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,920 | INFO | Music 0.305 0.000 0.198 ✓ +2026-07-13 08:30:25,920 | INFO | Singing 0.169 0.000 0.110 ✗ +2026-07-13 08:30:25,920 | INFO | Female singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:25,920 | INFO | Mantra 0.060 0.000 0.039 ✗ +2026-07-13 08:30:25,928 | INFO | → WINNER: Music (combined=0.198) +2026-07-13 08:30:25,954 | INFO | +[816.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,954 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,954 | INFO | Music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:25,954 | INFO | Singing 0.083 0.000 0.054 ✗ +2026-07-13 08:30:25,954 | INFO | → WINNER: Music (combined=0.135) +2026-07-13 08:30:25,978 | INFO | +[817.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:25,978 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:25,978 | INFO | Music 0.776 0.000 0.505 ✓ +2026-07-13 08:30:25,978 | INFO | Middle Eastern music 0.245 0.000 0.159 ✓ +2026-07-13 08:30:25,978 | INFO | Singing 0.169 0.000 0.110 ✗ +2026-07-13 08:30:25,978 | INFO | Tabla 0.158 0.000 0.102 ✗ +2026-07-13 08:30:25,978 | INFO | Musical instrument 0.152 0.000 0.099 ✗ +2026-07-13 08:30:25,978 | INFO | Folk music 0.140 0.000 0.091 ✗ +2026-07-13 08:30:25,978 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:26,010 | INFO | +[817.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,010 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,010 | INFO | Music 0.792 0.000 0.515 ✓ +2026-07-13 08:30:26,010 | INFO | Music of Latin America 0.211 0.000 0.137 ✓ +2026-07-13 08:30:26,010 | INFO | Salsa music 0.200 0.000 0.130 ✓ +2026-07-13 08:30:26,010 | INFO | Singing 0.179 0.000 0.117 ✗ +2026-07-13 08:30:26,010 | INFO | Middle Eastern music 0.162 0.000 0.105 ✗ +2026-07-13 08:30:26,010 | INFO | Folk music 0.098 0.000 0.063 ✗ +2026-07-13 08:30:26,010 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:26,043 | INFO | +[817.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,043 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,043 | INFO | Music 0.827 0.000 0.538 ✓ +2026-07-13 08:30:26,043 | INFO | Singing 0.223 0.000 0.145 ✓ +2026-07-13 08:30:26,043 | INFO | Music of Latin America 0.204 0.000 0.133 ✓ +2026-07-13 08:30:26,043 | INFO | Tambourine 0.146 0.000 0.095 ✗ +2026-07-13 08:30:26,043 | INFO | Maraca 0.124 0.000 0.081 ✗ +2026-07-13 08:30:26,043 | INFO | Salsa music 0.122 0.000 0.079 ✗ +2026-07-13 08:30:26,043 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:26,071 | INFO | +[817.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,071 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,071 | INFO | Music 0.853 0.000 0.555 ✓ +2026-07-13 08:30:26,071 | INFO | Salsa music 0.330 0.000 0.215 ✓ +2026-07-13 08:30:26,071 | INFO | Music of Latin America 0.286 0.000 0.186 ✓ +2026-07-13 08:30:26,071 | INFO | Singing 0.201 0.000 0.131 ✓ +2026-07-13 08:30:26,071 | INFO | Musical instrument 0.121 0.000 0.078 ✗ +2026-07-13 08:30:26,071 | INFO | Maraca 0.117 0.000 0.076 ✗ +2026-07-13 08:30:26,071 | INFO | → WINNER: Music (combined=0.555) +2026-07-13 08:30:26,093 | INFO | +[817.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,100 | INFO | Music 0.587 0.000 0.381 ✓ +2026-07-13 08:30:26,100 | INFO | Crowd 0.031 0.316 0.131 ✓ +2026-07-13 08:30:26,100 | INFO | Singing 0.139 0.000 0.090 ✗ +2026-07-13 08:30:26,100 | INFO | → WINNER: Music (combined=0.381) +2026-07-13 08:30:26,125 | INFO | +[818.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,125 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,125 | INFO | Music 0.332 0.000 0.216 ✓ +2026-07-13 08:30:26,125 | INFO | Singing 0.145 0.000 0.095 ✗ +2026-07-13 08:30:26,125 | INFO | Carnatic music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:26,125 | INFO | Mantra 0.069 0.000 0.045 ✗ +2026-07-13 08:30:26,125 | INFO | → WINNER: Music (combined=0.216) +2026-07-13 08:30:26,158 | INFO | +[818.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,158 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,158 | INFO | Music 0.716 0.000 0.465 ✓ +2026-07-13 08:30:26,158 | INFO | Chant 0.056 0.316 0.147 ✓ +2026-07-13 08:30:26,158 | INFO | Singing 0.213 0.000 0.138 ✓ +2026-07-13 08:30:26,158 | INFO | Musical instrument 0.103 0.000 0.067 ✗ +2026-07-13 08:30:26,158 | INFO | Middle Eastern music 0.099 0.000 0.065 ✗ +2026-07-13 08:30:26,158 | INFO | Mantra 0.083 0.000 0.054 ✗ +2026-07-13 08:30:26,158 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:26,186 | INFO | +[818.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,186 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,186 | INFO | Music 0.716 0.000 0.465 ✓ +2026-07-13 08:30:26,186 | INFO | Singing 0.170 0.000 0.110 ✗ +2026-07-13 08:30:26,186 | INFO | Musical instrument 0.118 0.000 0.077 ✗ +2026-07-13 08:30:26,186 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:26,213 | INFO | +[818.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,213 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,213 | INFO | Music 0.820 0.000 0.533 ✓ +2026-07-13 08:30:26,215 | INFO | Musical instrument 0.242 0.000 0.157 ✓ +2026-07-13 08:30:26,215 | INFO | Carnatic music 0.081 0.000 0.052 ✗ +2026-07-13 08:30:26,215 | INFO | Middle Eastern music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:26,215 | INFO | Plucked string instrument 0.056 0.000 0.036 ✗ +2026-07-13 08:30:26,215 | INFO | Sitar 0.043 0.000 0.028 ✗ +2026-07-13 08:30:26,215 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:26,242 | INFO | +[818.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,242 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,243 | INFO | Music 0.854 0.000 0.555 ✓ +2026-07-13 08:30:26,243 | INFO | Singing 0.196 0.000 0.128 ✓ +2026-07-13 08:30:26,243 | INFO | Musical instrument 0.161 0.000 0.104 ✗ +2026-07-13 08:30:26,243 | INFO | Middle Eastern music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:26,243 | INFO | Folk music 0.098 0.000 0.064 ✗ +2026-07-13 08:30:26,243 | INFO | Tabla 0.031 0.000 0.020 ✗ +2026-07-13 08:30:26,243 | INFO | → WINNER: Music (combined=0.555) +2026-07-13 08:30:26,267 | INFO | +[819.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,267 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,267 | INFO | Music 0.787 0.000 0.511 ✓ +2026-07-13 08:30:26,267 | INFO | Singing 0.276 0.000 0.179 ✓ +2026-07-13 08:30:26,267 | INFO | Musical instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:30:26,267 | INFO | Middle Eastern music 0.113 0.000 0.074 ✗ +2026-07-13 08:30:26,267 | INFO | Folk music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:26,267 | INFO | Music of Latin America 0.077 0.000 0.050 ✗ +2026-07-13 08:30:26,274 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:26,298 | INFO | +[819.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,298 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,298 | INFO | Music 0.776 0.000 0.505 ✓ +2026-07-13 08:30:26,298 | INFO | Singing 0.278 0.000 0.181 ✓ +2026-07-13 08:30:26,298 | INFO | Folk music 0.119 0.000 0.077 ✗ +2026-07-13 08:30:26,298 | INFO | Tabla 0.112 0.000 0.073 ✗ +2026-07-13 08:30:26,298 | INFO | Middle Eastern music 0.109 0.000 0.071 ✗ +2026-07-13 08:30:26,298 | INFO | Musical instrument 0.104 0.000 0.067 ✗ +2026-07-13 08:30:26,298 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:26,323 | INFO | +[819.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-07-13 08:30:26,323 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,323 | INFO | Music 0.744 0.000 0.483 ✓ +2026-07-13 08:30:26,323 | INFO | Singing 0.203 0.000 0.132 ✓ +2026-07-13 08:30:26,323 | INFO | Middle Eastern music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:26,323 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:26,331 | INFO | Tabla 0.062 0.000 0.041 ✗ +2026-07-13 08:30:26,331 | INFO | Folk music 0.062 0.000 0.041 ✗ +2026-07-13 08:30:26,331 | INFO | → WINNER: Music (combined=0.483) +2026-07-13 08:30:26,356 | INFO | +[819.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,356 | INFO | Music 0.253 0.000 0.164 ✓ +2026-07-13 08:30:26,356 | INFO | Singing 0.104 0.000 0.068 ✗ +2026-07-13 08:30:26,356 | INFO | Crowd 0.035 0.000 0.023 ✗ +2026-07-13 08:30:26,356 | INFO | → WINNER: Music (combined=0.164) +2026-07-13 08:30:26,379 | INFO | +[819.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,379 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,379 | INFO | Music 0.356 0.000 0.231 ✓ +2026-07-13 08:30:26,388 | INFO | Singing 0.139 0.000 0.090 ✗ +2026-07-13 08:30:26,388 | INFO | → WINNER: Music (combined=0.231) +2026-07-13 08:30:26,413 | INFO | +[820.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,414 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,414 | INFO | Music 0.567 0.000 0.369 ✓ +2026-07-13 08:30:26,414 | INFO | Singing 0.154 0.000 0.100 ✗ +2026-07-13 08:30:26,414 | INFO | Middle Eastern music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:26,414 | INFO | → WINNER: Music (combined=0.369) +2026-07-13 08:30:26,440 | INFO | +[820.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,440 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,440 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:26,440 | INFO | Musical instrument 0.187 0.000 0.122 ✓ +2026-07-13 08:30:26,440 | INFO | Singing 0.150 0.000 0.098 ✗ +2026-07-13 08:30:26,440 | INFO | Middle Eastern music 0.149 0.000 0.097 ✗ +2026-07-13 08:30:26,440 | INFO | Folk music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:26,440 | INFO | Carnatic music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:26,440 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:26,470 | INFO | +[820.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,470 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,470 | INFO | Music 0.845 0.000 0.549 ✓ +2026-07-13 08:30:26,470 | INFO | Musical instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:26,470 | INFO | Singing 0.181 0.000 0.118 ✗ +2026-07-13 08:30:26,470 | INFO | Folk music 0.070 0.000 0.045 ✗ +2026-07-13 08:30:26,470 | INFO | Middle Eastern music 0.070 0.000 0.045 ✗ +2026-07-13 08:30:26,470 | INFO | Music of Latin America 0.065 0.000 0.042 ✗ +2026-07-13 08:30:26,470 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:26,499 | INFO | +[820.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,499 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,499 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:30:26,499 | INFO | Musical instrument 0.207 0.000 0.134 ✓ +2026-07-13 08:30:26,499 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:26,499 | INFO | Salsa music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:26,499 | INFO | Music of Latin America 0.098 0.000 0.064 ✗ +2026-07-13 08:30:26,499 | INFO | Traditional music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:26,499 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:26,521 | INFO | +[820.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,521 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,521 | INFO | Music 0.834 0.000 0.542 ✓ +2026-07-13 08:30:26,528 | INFO | Musical instrument 0.142 0.000 0.093 ✗ +2026-07-13 08:30:26,528 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:26,528 | INFO | Salsa music 0.087 0.000 0.056 ✗ +2026-07-13 08:30:26,528 | INFO | Music of Latin America 0.079 0.000 0.051 ✗ +2026-07-13 08:30:26,528 | INFO | Folk music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:26,528 | INFO | → WINNER: Music (combined=0.542) +2026-07-13 08:30:26,554 | INFO | +[821.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,554 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,554 | INFO | Music 0.833 0.000 0.541 ✓ +2026-07-13 08:30:26,554 | INFO | Singing 0.143 0.000 0.093 ✗ +2026-07-13 08:30:26,554 | INFO | Musical instrument 0.099 0.000 0.064 ✗ +2026-07-13 08:30:26,554 | INFO | Music of Latin America 0.080 0.000 0.052 ✗ +2026-07-13 08:30:26,554 | INFO | Middle Eastern music 0.067 0.000 0.043 ✗ +2026-07-13 08:30:26,554 | INFO | Salsa music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:26,554 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:26,585 | INFO | +[821.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,585 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,585 | INFO | Music 0.633 0.000 0.411 ✓ +2026-07-13 08:30:26,585 | INFO | → WINNER: Music (combined=0.411) +2026-07-13 08:30:26,610 | INFO | +[821.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,610 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,610 | INFO | Music 0.276 0.000 0.179 ✓ +2026-07-13 08:30:26,610 | INFO | Singing 0.078 0.000 0.051 ✗ +2026-07-13 08:30:26,610 | INFO | → WINNER: Music (combined=0.179) +2026-07-13 08:30:26,640 | INFO | +[821.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,640 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,640 | INFO | Music 0.370 0.000 0.241 ✓ +2026-07-13 08:30:26,640 | INFO | Singing 0.122 0.000 0.079 ✗ +2026-07-13 08:30:26,640 | INFO | Crowd 0.034 0.000 0.022 ✗ +2026-07-13 08:30:26,640 | INFO | → WINNER: Music (combined=0.241) +2026-07-13 08:30:26,668 | INFO | +[821.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,668 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,668 | INFO | Music 0.453 0.000 0.295 ✓ +2026-07-13 08:30:26,670 | INFO | Singing 0.201 0.000 0.130 ✓ +2026-07-13 08:30:26,670 | INFO | Crowd 0.028 0.000 0.018 ✗ +2026-07-13 08:30:26,670 | INFO | → WINNER: Music (combined=0.295) +2026-07-13 08:30:26,691 | INFO | +[822.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,691 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,691 | INFO | Music 0.681 0.000 0.443 ✓ +2026-07-13 08:30:26,691 | INFO | Singing 0.260 0.000 0.169 ✓ +2026-07-13 08:30:26,691 | INFO | Female singing 0.117 0.000 0.076 ✗ +2026-07-13 08:30:26,691 | INFO | Choir 0.061 0.000 0.040 ✗ +2026-07-13 08:30:26,691 | INFO | → WINNER: Music (combined=0.443) +2026-07-13 08:30:26,725 | INFO | +[822.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,725 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,725 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:30:26,725 | INFO | Middle Eastern music 0.165 0.000 0.107 ✗ +2026-07-13 08:30:26,725 | INFO | Singing 0.157 0.000 0.102 ✗ +2026-07-13 08:30:26,725 | INFO | Folk music 0.133 0.000 0.086 ✗ +2026-07-13 08:30:26,725 | INFO | Salsa music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:26,725 | INFO | Musical instrument 0.108 0.000 0.070 ✗ +2026-07-13 08:30:26,725 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:26,749 | INFO | +[822.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,749 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,749 | INFO | Music 0.789 0.000 0.513 ✓ +2026-07-13 08:30:26,749 | INFO | Middle Eastern music 0.308 0.000 0.200 ✓ +2026-07-13 08:30:26,749 | INFO | Salsa music 0.215 0.000 0.140 ✓ +2026-07-13 08:30:26,749 | INFO | Folk music 0.177 0.000 0.115 ✗ +2026-07-13 08:30:26,749 | INFO | Traditional music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:26,757 | INFO | Music of Latin America 0.100 0.000 0.065 ✗ +2026-07-13 08:30:26,757 | INFO | → WINNER: Music (combined=0.513) +2026-07-13 08:30:26,782 | INFO | +[822.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,782 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,782 | INFO | Music 0.807 0.000 0.525 ✓ +2026-07-13 08:30:26,782 | INFO | Middle Eastern music 0.222 0.000 0.144 ✓ +2026-07-13 08:30:26,782 | INFO | Folk music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:26,782 | INFO | Salsa music 0.152 0.000 0.099 ✗ +2026-07-13 08:30:26,782 | INFO | Musical instrument 0.150 0.000 0.098 ✗ +2026-07-13 08:30:26,782 | INFO | Traditional music 0.135 0.000 0.088 ✗ +2026-07-13 08:30:26,782 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:26,810 | INFO | +[822.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,810 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,810 | INFO | Music 0.878 0.000 0.571 ✓ +2026-07-13 08:30:26,810 | INFO | Middle Eastern music 0.342 0.000 0.223 ✓ +2026-07-13 08:30:26,810 | INFO | Folk music 0.206 0.000 0.134 ✓ +2026-07-13 08:30:26,810 | INFO | Singing 0.182 0.000 0.119 ✗ +2026-07-13 08:30:26,810 | INFO | Salsa music 0.153 0.000 0.100 ✗ +2026-07-13 08:30:26,810 | INFO | Music of Latin America 0.122 0.000 0.079 ✗ +2026-07-13 08:30:26,810 | INFO | → WINNER: Music (combined=0.571) +2026-07-13 08:30:26,838 | INFO | +[823.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,838 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,838 | INFO | Music 0.709 0.000 0.461 ✓ +2026-07-13 08:30:26,840 | INFO | Singing 0.209 0.000 0.136 ✓ +2026-07-13 08:30:26,840 | INFO | Child singing 0.167 0.000 0.109 ✗ +2026-07-13 08:30:26,840 | INFO | Female singing 0.139 0.000 0.090 ✗ +2026-07-13 08:30:26,840 | INFO | → WINNER: Music (combined=0.461) +2026-07-13 08:30:26,868 | INFO | +[823.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,868 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,868 | INFO | Music 0.578 0.000 0.375 ✓ +2026-07-13 08:30:26,868 | INFO | Female singing 0.319 0.000 0.208 ✓ +2026-07-13 08:30:26,868 | INFO | Child singing 0.316 0.000 0.205 ✓ +2026-07-13 08:30:26,868 | INFO | Singing 0.296 0.000 0.192 ✓ +2026-07-13 08:30:26,868 | INFO | Synthetic singing 0.117 0.000 0.076 ✗ +2026-07-13 08:30:26,868 | INFO | → WINNER: Music (combined=0.375) +2026-07-13 08:30:26,897 | INFO | +[823.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,897 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,897 | INFO | Music 0.664 0.000 0.432 ✓ +2026-07-13 08:30:26,897 | INFO | Singing 0.201 0.000 0.131 ✓ +2026-07-13 08:30:26,897 | INFO | Female singing 0.136 0.000 0.088 ✗ +2026-07-13 08:30:26,897 | INFO | Synthetic singing 0.104 0.000 0.068 ✗ +2026-07-13 08:30:26,897 | INFO | → WINNER: Music (combined=0.432) +2026-07-13 08:30:26,922 | INFO | +[823.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,922 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,922 | INFO | Music 0.819 0.000 0.532 ✓ +2026-07-13 08:30:26,922 | INFO | Singing 0.274 0.000 0.178 ✓ +2026-07-13 08:30:26,922 | INFO | Musical instrument 0.123 0.000 0.080 ✗ +2026-07-13 08:30:26,922 | INFO | Female singing 0.093 0.000 0.060 ✗ +2026-07-13 08:30:26,922 | INFO | Synthetic singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:26,922 | INFO | Middle Eastern music 0.070 0.000 0.045 ✗ +2026-07-13 08:30:26,922 | INFO | → WINNER: Music (combined=0.532) +2026-07-13 08:30:26,952 | INFO | +[823.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,952 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,954 | INFO | Music 0.881 0.000 0.573 ✓ +2026-07-13 08:30:26,954 | INFO | Musical instrument 0.179 0.000 0.117 ✗ +2026-07-13 08:30:26,955 | INFO | Singing 0.125 0.000 0.081 ✗ +2026-07-13 08:30:26,955 | INFO | Middle Eastern music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:26,955 | INFO | Folk music 0.115 0.000 0.074 ✗ +2026-07-13 08:30:26,955 | INFO | Traditional music 0.093 0.000 0.060 ✗ +2026-07-13 08:30:26,955 | INFO | → WINNER: Music (combined=0.573) +2026-07-13 08:30:26,979 | INFO | +[824.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:26,979 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:26,979 | INFO | Music 0.832 0.000 0.541 ✓ +2026-07-13 08:30:26,979 | INFO | Traditional music 0.394 0.000 0.256 ✓ +2026-07-13 08:30:26,979 | INFO | Middle Eastern music 0.263 0.000 0.171 ✓ +2026-07-13 08:30:26,979 | INFO | Musical instrument 0.260 0.000 0.169 ✓ +2026-07-13 08:30:26,979 | INFO | Folk music 0.251 0.000 0.163 ✓ +2026-07-13 08:30:26,979 | INFO | Violin, fiddle 0.082 0.000 0.053 ✗ +2026-07-13 08:30:26,979 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:27,010 | INFO | +[824.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,010 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,010 | INFO | Music 0.827 0.000 0.538 ✓ +2026-07-13 08:30:27,012 | INFO | Folk music 0.160 0.000 0.104 ✗ +2026-07-13 08:30:27,012 | INFO | Traditional music 0.153 0.000 0.099 ✗ +2026-07-13 08:30:27,012 | INFO | Middle Eastern music 0.150 0.000 0.098 ✗ +2026-07-13 08:30:27,012 | INFO | Musical instrument 0.145 0.000 0.094 ✗ +2026-07-13 08:30:27,012 | INFO | Salsa music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:27,012 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:27,037 | INFO | +[824.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,037 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,037 | INFO | Music 0.824 0.000 0.536 ✓ +2026-07-13 08:30:27,037 | INFO | Musical instrument 0.195 0.000 0.127 ✓ +2026-07-13 08:30:27,037 | INFO | Folk music 0.193 0.000 0.125 ✓ +2026-07-13 08:30:27,037 | INFO | Traditional music 0.178 0.000 0.116 ✗ +2026-07-13 08:30:27,037 | INFO | Singing 0.148 0.000 0.096 ✗ +2026-07-13 08:30:27,037 | INFO | Middle Eastern music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:27,037 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:27,066 | INFO | +[824.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,066 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,066 | INFO | Music 0.820 0.000 0.533 ✓ +2026-07-13 08:30:27,066 | INFO | Singing 0.211 0.000 0.137 ✓ +2026-07-13 08:30:27,069 | INFO | Middle Eastern music 0.136 0.000 0.088 ✗ +2026-07-13 08:30:27,069 | INFO | Folk music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:27,069 | INFO | Music of Latin America 0.076 0.000 0.049 ✗ +2026-07-13 08:30:27,069 | INFO | Musical instrument 0.065 0.000 0.042 ✗ +2026-07-13 08:30:27,069 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:27,095 | INFO | +[824.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,095 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,095 | INFO | Music 0.463 0.000 0.301 ✓ +2026-07-13 08:30:27,095 | INFO | Singing 0.171 0.000 0.111 ✗ +2026-07-13 08:30:27,095 | INFO | Crowd 0.051 0.000 0.033 ✗ +2026-07-13 08:30:27,095 | INFO | → WINNER: Music (combined=0.301) +2026-07-13 08:30:27,121 | INFO | +[825.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,121 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,121 | INFO | Music 0.810 0.000 0.526 ✓ +2026-07-13 08:30:27,121 | INFO | Singing 0.233 0.000 0.151 ✓ +2026-07-13 08:30:27,124 | INFO | Middle Eastern music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:27,124 | INFO | Musical instrument 0.058 0.000 0.037 ✗ +2026-07-13 08:30:27,124 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:27,151 | INFO | +[825.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,151 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,151 | INFO | Music 0.639 0.000 0.416 ✓ +2026-07-13 08:30:27,151 | INFO | Singing 0.144 0.000 0.094 ✗ +2026-07-13 08:30:27,151 | INFO | Middle Eastern music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:27,151 | INFO | Carnatic music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:27,151 | INFO | Musical instrument 0.080 0.000 0.052 ✗ +2026-07-13 08:30:27,151 | INFO | Sitar 0.038 0.000 0.025 ✗ +2026-07-13 08:30:27,151 | INFO | → WINNER: Music (combined=0.416) +2026-07-13 08:30:27,175 | INFO | +[825.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,175 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,175 | INFO | Music 0.623 0.000 0.405 ✓ +2026-07-13 08:30:27,175 | INFO | Musical instrument 0.140 0.000 0.091 ✗ +2026-07-13 08:30:27,175 | INFO | Carnatic music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:27,175 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:27,175 | INFO | Sitar 0.097 0.000 0.063 ✗ +2026-07-13 08:30:27,175 | INFO | Tabla 0.082 0.000 0.053 ✗ +2026-07-13 08:30:27,175 | INFO | → WINNER: Music (combined=0.405) +2026-07-13 08:30:27,208 | INFO | +[825.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,208 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,208 | INFO | Music 0.825 0.000 0.536 ✓ +2026-07-13 08:30:27,208 | INFO | Middle Eastern music 0.315 0.000 0.205 ✓ +2026-07-13 08:30:27,208 | INFO | Musical instrument 0.161 0.000 0.105 ✗ +2026-07-13 08:30:27,208 | INFO | Folk music 0.158 0.000 0.103 ✗ +2026-07-13 08:30:27,208 | INFO | Tabla 0.153 0.000 0.099 ✗ +2026-07-13 08:30:27,208 | INFO | Singing 0.131 0.000 0.085 ✗ +2026-07-13 08:30:27,208 | INFO | → WINNER: Music (combined=0.536) +2026-07-13 08:30:27,233 | INFO | +[825.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,233 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,233 | INFO | Music 0.758 0.000 0.493 ✓ +2026-07-13 08:30:27,233 | INFO | Middle Eastern music 0.410 0.000 0.266 ✓ +2026-07-13 08:30:27,233 | INFO | Folk music 0.186 0.000 0.121 ✓ +2026-07-13 08:30:27,233 | INFO | Tabla 0.168 0.000 0.109 ✗ +2026-07-13 08:30:27,233 | INFO | Singing 0.155 0.000 0.101 ✗ +2026-07-13 08:30:27,240 | INFO | Musical instrument 0.119 0.000 0.077 ✗ +2026-07-13 08:30:27,240 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:27,266 | INFO | +[826.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,266 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,268 | INFO | Music 0.773 0.000 0.502 ✓ +2026-07-13 08:30:27,268 | INFO | Middle Eastern music 0.376 0.000 0.244 ✓ +2026-07-13 08:30:27,268 | INFO | Singing 0.217 0.000 0.141 ✓ +2026-07-13 08:30:27,268 | INFO | Tabla 0.178 0.000 0.116 ✗ +2026-07-13 08:30:27,268 | INFO | Folk music 0.152 0.000 0.099 ✗ +2026-07-13 08:30:27,268 | INFO | Musical instrument 0.094 0.000 0.061 ✗ +2026-07-13 08:30:27,268 | INFO | → WINNER: Music (combined=0.502) +2026-07-13 08:30:27,297 | INFO | +[826.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,297 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,297 | INFO | Music 0.824 0.000 0.535 ✓ +2026-07-13 08:30:27,297 | INFO | Middle Eastern music 0.257 0.000 0.167 ✓ +2026-07-13 08:30:27,297 | INFO | Singing 0.254 0.000 0.165 ✓ +2026-07-13 08:30:27,297 | INFO | Folk music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:27,297 | INFO | Musical instrument 0.096 0.000 0.063 ✗ +2026-07-13 08:30:27,297 | INFO | Music of Bollywood 0.037 0.000 0.024 ✗ +2026-07-13 08:30:27,297 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:27,323 | INFO | +[826.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,323 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,323 | INFO | Music 0.681 0.000 0.443 ✓ +2026-07-13 08:30:27,323 | INFO | Middle Eastern music 0.228 0.000 0.148 ✓ +2026-07-13 08:30:27,323 | INFO | Singing 0.223 0.000 0.145 ✓ +2026-07-13 08:30:27,323 | INFO | Folk music 0.116 0.000 0.075 ✗ +2026-07-13 08:30:27,323 | INFO | Carnatic music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:27,323 | INFO | Musical instrument 0.071 0.000 0.046 ✗ +2026-07-13 08:30:27,323 | INFO | → WINNER: Music (combined=0.443) +2026-07-13 08:30:27,356 | INFO | +[826.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,356 | INFO | Music 0.475 0.000 0.309 ✓ +2026-07-13 08:30:27,356 | INFO | Singing 0.183 0.000 0.119 ✗ +2026-07-13 08:30:27,356 | INFO | Middle Eastern music 0.168 0.000 0.110 ✗ +2026-07-13 08:30:27,356 | INFO | Carnatic music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:27,356 | INFO | Music of Bollywood 0.059 0.000 0.038 ✗ +2026-07-13 08:30:27,356 | INFO | → WINNER: Music (combined=0.309) +2026-07-13 08:30:27,383 | INFO | +[826.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,383 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,383 | INFO | Music 0.682 0.000 0.444 ✓ +2026-07-13 08:30:27,383 | INFO | Carnatic music 0.292 0.000 0.190 ✓ +2026-07-13 08:30:27,383 | INFO | Middle Eastern music 0.212 0.000 0.138 ✓ +2026-07-13 08:30:27,383 | INFO | Singing 0.141 0.000 0.092 ✗ +2026-07-13 08:30:27,383 | INFO | Sitar 0.110 0.000 0.071 ✗ +2026-07-13 08:30:27,383 | INFO | Musical instrument 0.096 0.000 0.063 ✗ +2026-07-13 08:30:27,389 | INFO | → WINNER: Music (combined=0.444) +2026-07-13 08:30:27,414 | INFO | +[827.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,414 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,422 | INFO | Music 0.708 0.000 0.460 ✓ +2026-07-13 08:30:27,422 | INFO | Carnatic music 0.279 0.000 0.182 ✓ +2026-07-13 08:30:27,422 | INFO | Musical instrument 0.192 0.000 0.125 ✓ +2026-07-13 08:30:27,422 | INFO | Sitar 0.127 0.000 0.083 ✗ +2026-07-13 08:30:27,422 | INFO | Middle Eastern music 0.127 0.000 0.082 ✗ +2026-07-13 08:30:27,422 | INFO | Classical music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:27,422 | INFO | → WINNER: Music (combined=0.460) +2026-07-13 08:30:27,447 | INFO | +[827.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,447 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,447 | INFO | Music 0.813 0.000 0.528 ✓ +2026-07-13 08:30:27,447 | INFO | Tabla 0.386 0.000 0.251 ✓ +2026-07-13 08:30:27,447 | INFO | Musical instrument 0.229 0.000 0.149 ✓ +2026-07-13 08:30:27,447 | INFO | Drum 0.177 0.000 0.115 ✗ +2026-07-13 08:30:27,447 | INFO | Percussion 0.177 0.000 0.115 ✗ +2026-07-13 08:30:27,447 | INFO | Middle Eastern music 0.172 0.000 0.112 ✗ +2026-07-13 08:30:27,447 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:27,476 | INFO | +[827.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,479 | INFO | Music 0.833 0.000 0.541 ✓ +2026-07-13 08:30:27,479 | INFO | Middle Eastern music 0.268 0.000 0.174 ✓ +2026-07-13 08:30:27,479 | INFO | Musical instrument 0.256 0.000 0.166 ✓ +2026-07-13 08:30:27,479 | INFO | Tabla 0.238 0.000 0.155 ✓ +2026-07-13 08:30:27,479 | INFO | Folk music 0.181 0.000 0.118 ✗ +2026-07-13 08:30:27,479 | INFO | Singing 0.152 0.000 0.099 ✗ +2026-07-13 08:30:27,479 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:27,504 | INFO | +[827.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,504 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,504 | INFO | Music 0.817 0.000 0.531 ✓ +2026-07-13 08:30:27,504 | INFO | Musical instrument 0.239 0.000 0.155 ✓ +2026-07-13 08:30:27,504 | INFO | Tabla 0.196 0.000 0.128 ✓ +2026-07-13 08:30:27,504 | INFO | Middle Eastern music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:27,504 | INFO | Carnatic music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:27,504 | INFO | Singing 0.147 0.000 0.096 ✗ +2026-07-13 08:30:27,504 | INFO | → WINNER: Music (combined=0.531) +2026-07-13 08:30:27,536 | INFO | +[827.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,536 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,536 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:27,536 | INFO | Musical instrument 0.158 0.000 0.102 ✗ +2026-07-13 08:30:27,536 | INFO | Middle Eastern music 0.133 0.000 0.086 ✗ +2026-07-13 08:30:27,536 | INFO | Singing 0.126 0.000 0.082 ✗ +2026-07-13 08:30:27,536 | INFO | Folk music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:27,536 | INFO | Traditional music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:27,536 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:27,569 | INFO | +[828.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,570 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,570 | INFO | Music 0.850 0.000 0.553 ✓ +2026-07-13 08:30:27,570 | INFO | Middle Eastern music 0.162 0.000 0.105 ✗ +2026-07-13 08:30:27,570 | INFO | Musical instrument 0.136 0.000 0.088 ✗ +2026-07-13 08:30:27,570 | INFO | Folk music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:27,571 | INFO | Singing 0.107 0.000 0.069 ✗ +2026-07-13 08:30:27,571 | INFO | Traditional music 0.064 0.000 0.041 ✗ +2026-07-13 08:30:27,571 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:27,592 | INFO | +[828.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,592 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,592 | INFO | Music 0.337 0.000 0.219 ✓ +2026-07-13 08:30:27,592 | INFO | Singing 0.081 0.000 0.052 ✗ +2026-07-13 08:30:27,592 | INFO | → WINNER: Music (combined=0.219) +2026-07-13 08:30:27,622 | INFO | +[828.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,624 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,625 | INFO | Music 0.501 0.000 0.325 ✓ +2026-07-13 08:30:27,625 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:27,625 | INFO | Middle Eastern music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:27,625 | INFO | Yodeling 0.070 0.000 0.046 ✗ +2026-07-13 08:30:27,625 | INFO | → WINNER: Music (combined=0.325) +2026-07-13 08:30:27,649 | INFO | +[828.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,649 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,649 | INFO | Music 0.584 0.000 0.380 ✓ +2026-07-13 08:30:27,649 | INFO | Singing 0.255 0.000 0.166 ✓ +2026-07-13 08:30:27,649 | INFO | Middle Eastern music 0.074 0.000 0.048 ✗ +2026-07-13 08:30:27,649 | INFO | Yodeling 0.053 0.000 0.034 ✗ +2026-07-13 08:30:27,649 | INFO | → WINNER: Music (combined=0.380) +2026-07-13 08:30:27,679 | INFO | +[828.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,682 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,682 | INFO | Music 0.811 0.000 0.527 ✓ +2026-07-13 08:30:27,682 | INFO | Singing 0.272 0.000 0.177 ✓ +2026-07-13 08:30:27,682 | INFO | Middle Eastern music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:27,682 | INFO | Musical instrument 0.062 0.000 0.041 ✗ +2026-07-13 08:30:27,682 | INFO | → WINNER: Music (combined=0.527) +2026-07-13 08:30:27,709 | INFO | +[829.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,709 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,709 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:27,709 | INFO | Middle Eastern music 0.186 0.000 0.121 ✓ +2026-07-13 08:30:27,709 | INFO | Musical instrument 0.135 0.000 0.088 ✗ +2026-07-13 08:30:27,709 | INFO | Folk music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:27,709 | INFO | Traditional music 0.115 0.000 0.075 ✗ +2026-07-13 08:30:27,709 | INFO | Singing 0.108 0.000 0.070 ✗ +2026-07-13 08:30:27,709 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:27,736 | INFO | +[829.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,738 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,738 | INFO | Music 0.821 0.000 0.533 ✓ +2026-07-13 08:30:27,738 | INFO | Middle Eastern music 0.316 0.000 0.205 ✓ +2026-07-13 08:30:27,738 | INFO | Traditional music 0.246 0.000 0.160 ✓ +2026-07-13 08:30:27,738 | INFO | Folk music 0.221 0.000 0.144 ✓ +2026-07-13 08:30:27,740 | INFO | Musical instrument 0.188 0.000 0.122 ✓ +2026-07-13 08:30:27,740 | INFO | Sitar 0.110 0.000 0.071 ✗ +2026-07-13 08:30:27,740 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:27,765 | INFO | +[829.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,765 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,765 | INFO | Music 0.826 0.000 0.537 ✓ +2026-07-13 08:30:27,765 | INFO | Middle Eastern music 0.206 0.000 0.134 ✓ +2026-07-13 08:30:27,765 | INFO | Folk music 0.200 0.000 0.130 ✓ +2026-07-13 08:30:27,765 | INFO | Musical instrument 0.158 0.000 0.102 ✗ +2026-07-13 08:30:27,765 | INFO | Singing 0.153 0.000 0.099 ✗ +2026-07-13 08:30:27,765 | INFO | Traditional music 0.145 0.000 0.094 ✗ +2026-07-13 08:30:27,765 | INFO | → WINNER: Music (combined=0.537) +2026-07-13 08:30:27,789 | INFO | +[829.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,789 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,789 | INFO | Music 0.870 0.000 0.566 ✓ +2026-07-13 08:30:27,789 | INFO | Singing 0.255 0.000 0.166 ✓ +2026-07-13 08:30:27,789 | INFO | Musical instrument 0.181 0.000 0.117 ✗ +2026-07-13 08:30:27,789 | INFO | Middle Eastern music 0.093 0.000 0.060 ✗ +2026-07-13 08:30:27,789 | INFO | Music of Latin America 0.091 0.000 0.059 ✗ +2026-07-13 08:30:27,789 | INFO | Folk music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:27,797 | INFO | → WINNER: Music (combined=0.566) +2026-07-13 08:30:27,822 | INFO | +[829.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,822 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,822 | INFO | Music 0.874 0.000 0.568 ✓ +2026-07-13 08:30:27,822 | INFO | Child singing 0.361 0.000 0.234 ✓ +2026-07-13 08:30:27,822 | INFO | Singing 0.317 0.000 0.206 ✓ +2026-07-13 08:30:27,822 | INFO | Female singing 0.279 0.000 0.181 ✓ +2026-07-13 08:30:27,822 | INFO | Musical instrument 0.111 0.000 0.072 ✗ +2026-07-13 08:30:27,822 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:27,847 | INFO | +[830.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,847 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,847 | INFO | Music 0.456 0.000 0.296 ✓ +2026-07-13 08:30:27,847 | INFO | Singing 0.229 0.000 0.149 ✓ +2026-07-13 08:30:27,847 | INFO | Female singing 0.193 0.000 0.126 ✓ +2026-07-13 08:30:27,847 | INFO | Child singing 0.171 0.000 0.111 ✗ +2026-07-13 08:30:27,847 | INFO | → WINNER: Music (combined=0.296) +2026-07-13 08:30:27,872 | INFO | +[830.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,872 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,880 | INFO | Music 0.583 0.000 0.379 ✓ +2026-07-13 08:30:27,880 | INFO | Singing 0.262 0.000 0.170 ✓ +2026-07-13 08:30:27,880 | INFO | Female singing 0.231 0.000 0.150 ✓ +2026-07-13 08:30:27,880 | INFO | Child singing 0.130 0.000 0.085 ✗ +2026-07-13 08:30:27,880 | INFO | Synthetic singing 0.077 0.000 0.050 ✗ +2026-07-13 08:30:27,880 | INFO | → WINNER: Music (combined=0.379) +2026-07-13 08:30:27,906 | INFO | +[830.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,906 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,906 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:27,906 | INFO | Singing 0.226 0.000 0.147 ✓ +2026-07-13 08:30:27,906 | INFO | Female singing 0.151 0.000 0.098 ✗ +2026-07-13 08:30:27,906 | INFO | Synthetic singing 0.118 0.000 0.077 ✗ +2026-07-13 08:30:27,906 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:27,936 | INFO | +[830.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-07-13 08:30:27,936 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,936 | INFO | Music 0.852 0.000 0.554 ✓ +2026-07-13 08:30:27,936 | INFO | Middle Eastern music 0.281 0.000 0.183 ✓ +2026-07-13 08:30:27,936 | INFO | Folk music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:27,936 | INFO | Singing 0.138 0.000 0.090 ✗ +2026-07-13 08:30:27,937 | INFO | Music of Bollywood 0.123 0.000 0.080 ✗ +2026-07-13 08:30:27,937 | INFO | Traditional music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:27,938 | INFO | → WINNER: Music (combined=0.554) +2026-07-13 08:30:27,963 | INFO | +[830.80s] AMBIENT | scene='' +2026-07-13 08:30:27,963 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,963 | INFO | Music 0.854 0.000 0.555 ✓ +2026-07-13 08:30:27,963 | INFO | Middle Eastern music 0.338 0.000 0.220 ✓ +2026-07-13 08:30:27,963 | INFO | Folk music 0.336 0.000 0.219 ✓ +2026-07-13 08:30:27,963 | INFO | Traditional music 0.279 0.000 0.181 ✓ +2026-07-13 08:30:27,963 | INFO | Music of Bollywood 0.138 0.000 0.090 ✗ +2026-07-13 08:30:27,963 | INFO | Singing 0.127 0.000 0.082 ✗ +2026-07-13 08:30:27,963 | INFO | → WINNER: Music (combined=0.555) +2026-07-13 08:30:27,987 | INFO | +[831.00s] AMBIENT | scene='' +2026-07-13 08:30:27,987 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:27,987 | INFO | Music 0.897 0.000 0.583 ✓ +2026-07-13 08:30:27,994 | INFO | Singing 0.164 0.000 0.106 ✗ +2026-07-13 08:30:27,994 | INFO | Folk music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:27,994 | INFO | Middle Eastern music 0.087 0.000 0.057 ✗ +2026-07-13 08:30:27,994 | INFO | Funny music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:27,994 | INFO | → WINNER: Music (combined=0.583) +2026-07-13 08:30:28,019 | INFO | +[831.20s] AMBIENT | scene='' +2026-07-13 08:30:28,023 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,023 | INFO | Music 0.897 0.000 0.583 ✓ +2026-07-13 08:30:28,023 | INFO | Singing 0.287 0.000 0.187 ✓ +2026-07-13 08:30:28,023 | INFO | Folk music 0.182 0.000 0.118 ✗ +2026-07-13 08:30:28,023 | INFO | Middle Eastern music 0.179 0.000 0.117 ✗ +2026-07-13 08:30:28,024 | INFO | Music of Latin America 0.164 0.000 0.106 ✗ +2026-07-13 08:30:28,024 | INFO | Salsa music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:28,024 | INFO | → WINNER: Music (combined=0.583) +2026-07-13 08:30:28,045 | INFO | +[831.40s] AMBIENT | scene='' +2026-07-13 08:30:28,052 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,053 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:30:28,053 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:28,053 | INFO | Middle Eastern music 0.153 0.000 0.100 ✗ +2026-07-13 08:30:28,053 | INFO | Folk music 0.102 0.000 0.067 ✗ +2026-07-13 08:30:28,053 | INFO | Music of Latin America 0.068 0.000 0.044 ✗ +2026-07-13 08:30:28,053 | INFO | Musical instrument 0.068 0.000 0.044 ✗ +2026-07-13 08:30:28,053 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:28,080 | INFO | +[831.60s] AMBIENT | scene='' +2026-07-13 08:30:28,080 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,080 | INFO | Music 0.577 0.000 0.375 ✓ +2026-07-13 08:30:28,080 | INFO | Singing 0.184 0.000 0.120 ✗ +2026-07-13 08:30:28,080 | INFO | Female singing 0.084 0.000 0.054 ✗ +2026-07-13 08:30:28,080 | INFO | → WINNER: Music (combined=0.375) +2026-07-13 08:30:28,103 | INFO | +[831.80s] AMBIENT | scene='' +2026-07-13 08:30:28,103 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,110 | INFO | Music 0.700 0.000 0.455 ✓ +2026-07-13 08:30:28,110 | INFO | Middle Eastern music 0.167 0.000 0.109 ✗ +2026-07-13 08:30:28,110 | INFO | Singing 0.159 0.000 0.104 ✗ +2026-07-13 08:30:28,110 | INFO | Folk music 0.066 0.000 0.043 ✗ +2026-07-13 08:30:28,110 | INFO | Musical instrument 0.062 0.000 0.040 ✗ +2026-07-13 08:30:28,110 | INFO | → WINNER: Music (combined=0.455) +2026-07-13 08:30:28,135 | INFO | +[832.00s] AMBIENT | scene='' +2026-07-13 08:30:28,135 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,135 | INFO | Music 0.570 0.000 0.371 ✓ +2026-07-13 08:30:28,135 | INFO | Singing 0.150 0.000 0.097 ✗ +2026-07-13 08:30:28,135 | INFO | → WINNER: Music (combined=0.371) +2026-07-13 08:30:28,164 | INFO | +[832.20s] AMBIENT | scene='' +2026-07-13 08:30:28,165 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,165 | INFO | Music 0.767 0.000 0.499 ✓ +2026-07-13 08:30:28,165 | INFO | Middle Eastern music 0.258 0.000 0.168 ✓ +2026-07-13 08:30:28,166 | INFO | Folk music 0.110 0.000 0.071 ✗ +2026-07-13 08:30:28,166 | INFO | Musical instrument 0.107 0.000 0.069 ✗ +2026-07-13 08:30:28,166 | INFO | Singing 0.092 0.000 0.060 ✗ +2026-07-13 08:30:28,167 | INFO | Tabla 0.074 0.000 0.048 ✗ +2026-07-13 08:30:28,167 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:28,193 | INFO | +[832.40s] AMBIENT | scene='' +2026-07-13 08:30:28,193 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,193 | INFO | Music 0.806 0.000 0.524 ✓ +2026-07-13 08:30:28,193 | INFO | Middle Eastern music 0.325 0.000 0.211 ✓ +2026-07-13 08:30:28,193 | INFO | Singing 0.204 0.000 0.133 ✓ +2026-07-13 08:30:28,193 | INFO | Folk music 0.168 0.000 0.110 ✗ +2026-07-13 08:30:28,193 | INFO | Musical instrument 0.126 0.000 0.082 ✗ +2026-07-13 08:30:28,193 | INFO | Tabla 0.116 0.000 0.075 ✗ +2026-07-13 08:30:28,193 | INFO | → WINNER: Music (combined=0.524) +2026-07-13 08:30:28,223 | INFO | +[832.60s] AMBIENT | scene='' +2026-07-13 08:30:28,223 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,223 | INFO | Music 0.800 0.000 0.520 ✓ +2026-07-13 08:30:28,223 | INFO | Middle Eastern music 0.256 0.000 0.167 ✓ +2026-07-13 08:30:28,223 | INFO | Singing 0.253 0.000 0.165 ✓ +2026-07-13 08:30:28,223 | INFO | Folk music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:28,223 | INFO | Musical instrument 0.093 0.000 0.060 ✗ +2026-07-13 08:30:28,223 | INFO | Tabla 0.064 0.000 0.042 ✗ +2026-07-13 08:30:28,223 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:28,250 | INFO | +[832.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,250 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,252 | INFO | Music 0.858 0.000 0.558 ✓ +2026-07-13 08:30:28,252 | INFO | Singing 0.374 0.000 0.243 ✓ +2026-07-13 08:30:28,252 | INFO | Folk music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:28,252 | INFO | Middle Eastern music 0.127 0.000 0.082 ✗ +2026-07-13 08:30:28,252 | INFO | Musical instrument 0.120 0.000 0.078 ✗ +2026-07-13 08:30:28,255 | INFO | Yodeling 0.090 0.000 0.059 ✗ +2026-07-13 08:30:28,255 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:30:28,281 | INFO | +[833.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,283 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,283 | INFO | Music 0.705 0.000 0.458 ✓ +2026-07-13 08:30:28,285 | INFO | Music of Bollywood 0.034 0.380 0.155 ✓ +2026-07-13 08:30:28,285 | INFO | Singing 0.231 0.000 0.150 ✓ +2026-07-13 08:30:28,285 | INFO | Middle Eastern music 0.139 0.000 0.091 ✗ +2026-07-13 08:30:28,285 | INFO | Folk music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:28,285 | INFO | Musical instrument 0.062 0.000 0.040 ✗ +2026-07-13 08:30:28,285 | INFO | → WINNER: Music (combined=0.458) +2026-07-13 08:30:28,309 | INFO | +[833.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,309 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,309 | INFO | Music 0.423 0.000 0.275 ✓ +2026-07-13 08:30:28,309 | INFO | Singing 0.141 0.000 0.092 ✗ +2026-07-13 08:30:28,309 | INFO | → WINNER: Music (combined=0.275) +2026-07-13 08:30:28,332 | INFO | +[833.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,340 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,340 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:28,340 | INFO | Music of Bollywood 0.057 0.380 0.170 ✓ +2026-07-13 08:30:28,340 | INFO | Middle Eastern music 0.192 0.000 0.124 ✓ +2026-07-13 08:30:28,340 | INFO | Musical instrument 0.171 0.000 0.111 ✗ +2026-07-13 08:30:28,340 | INFO | Carnatic music 0.159 0.000 0.103 ✗ +2026-07-13 08:30:28,340 | INFO | Sitar 0.122 0.000 0.079 ✗ +2026-07-13 08:30:28,340 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:28,365 | INFO | +[833.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,365 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,365 | INFO | Music 0.443 0.000 0.288 ✓ +2026-07-13 08:30:28,365 | INFO | → WINNER: Music (combined=0.288) +2026-07-13 08:30:28,390 | INFO | +[833.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,390 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,390 | INFO | Music 0.812 0.000 0.527 ✓ +2026-07-13 08:30:28,390 | INFO | Middle Eastern music 0.236 0.000 0.153 ✓ +2026-07-13 08:30:28,390 | INFO | Musical instrument 0.169 0.000 0.110 ✗ +2026-07-13 08:30:28,390 | INFO | Folk music 0.140 0.000 0.091 ✗ +2026-07-13 08:30:28,390 | INFO | Singing 0.113 0.000 0.073 ✗ +2026-07-13 08:30:28,390 | INFO | Tabla 0.110 0.000 0.071 ✗ +2026-07-13 08:30:28,390 | INFO | → WINNER: Music (combined=0.527) +2026-07-13 08:30:28,423 | INFO | +[834.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,423 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,423 | INFO | Music 0.793 0.000 0.515 ✓ +2026-07-13 08:30:28,423 | INFO | Middle Eastern music 0.238 0.000 0.154 ✓ +2026-07-13 08:30:28,423 | INFO | Musical instrument 0.133 0.000 0.086 ✗ +2026-07-13 08:30:28,423 | INFO | Folk music 0.127 0.000 0.083 ✗ +2026-07-13 08:30:28,423 | INFO | Singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:28,423 | INFO | Traditional music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:28,423 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:28,448 | INFO | +[834.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,448 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,448 | INFO | Music 0.742 0.000 0.482 ✓ +2026-07-13 08:30:28,448 | INFO | Middle Eastern music 0.324 0.000 0.210 ✓ +2026-07-13 08:30:28,455 | INFO | Music of Bollywood 0.093 0.380 0.194 ✓ +2026-07-13 08:30:28,455 | INFO | Singing 0.124 0.000 0.081 ✗ +2026-07-13 08:30:28,455 | INFO | Folk music 0.121 0.000 0.079 ✗ +2026-07-13 08:30:28,455 | INFO | Tabla 0.069 0.000 0.045 ✗ +2026-07-13 08:30:28,455 | INFO | → WINNER: Music (combined=0.482) +2026-07-13 08:30:28,482 | INFO | +[834.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,484 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,484 | INFO | Music 0.812 0.000 0.528 ✓ +2026-07-13 08:30:28,484 | INFO | Middle Eastern music 0.317 0.000 0.206 ✓ +2026-07-13 08:30:28,484 | INFO | Music of Bollywood 0.088 0.380 0.190 ✓ +2026-07-13 08:30:28,484 | INFO | Salsa music 0.218 0.000 0.142 ✓ +2026-07-13 08:30:28,484 | INFO | Singing 0.183 0.000 0.119 ✗ +2026-07-13 08:30:28,484 | INFO | Folk music 0.179 0.000 0.116 ✗ +2026-07-13 08:30:28,484 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:28,513 | INFO | +[834.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,513 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,513 | INFO | Music 0.840 0.000 0.546 ✓ +2026-07-13 08:30:28,513 | INFO | Music of Bollywood 0.062 0.380 0.173 ✓ +2026-07-13 08:30:28,513 | INFO | Singing 0.262 0.000 0.171 ✓ +2026-07-13 08:30:28,513 | INFO | Music of Latin America 0.199 0.000 0.129 ✓ +2026-07-13 08:30:28,513 | INFO | Flamenco 0.145 0.000 0.094 ✗ +2026-07-13 08:30:28,513 | INFO | Middle Eastern music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:28,513 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:30:28,537 | INFO | +[834.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,537 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,537 | INFO | Music 0.803 0.000 0.522 ✓ +2026-07-13 08:30:28,537 | INFO | Singing 0.285 0.000 0.185 ✓ +2026-07-13 08:30:28,537 | INFO | Female singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:28,537 | INFO | Musical instrument 0.075 0.000 0.049 ✗ +2026-07-13 08:30:28,537 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:28,569 | INFO | +[835.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,569 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,569 | INFO | Music 0.856 0.000 0.556 ✓ +2026-07-13 08:30:28,569 | INFO | Singing 0.250 0.000 0.163 ✓ +2026-07-13 08:30:28,569 | INFO | Music of Bollywood 0.041 0.380 0.159 ✓ +2026-07-13 08:30:28,569 | INFO | Middle Eastern music 0.151 0.000 0.099 ✗ +2026-07-13 08:30:28,569 | INFO | Folk music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:28,569 | INFO | Musical instrument 0.082 0.000 0.053 ✗ +2026-07-13 08:30:28,569 | INFO | → WINNER: Music (combined=0.556) +2026-07-13 08:30:28,596 | INFO | +[835.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,596 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,596 | INFO | Music 0.785 0.000 0.510 ✓ +2026-07-13 08:30:28,596 | INFO | Singing 0.291 0.000 0.189 ✓ +2026-07-13 08:30:28,596 | INFO | Female singing 0.110 0.000 0.072 ✗ +2026-07-13 08:30:28,602 | INFO | → WINNER: Music (combined=0.510) +2026-07-13 08:30:28,627 | INFO | +[835.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,627 | INFO | Music 0.842 0.000 0.548 ✓ +2026-07-13 08:30:28,627 | INFO | Music of Bollywood 0.250 0.380 0.295 ✓ +2026-07-13 08:30:28,627 | INFO | Middle Eastern music 0.343 0.000 0.223 ✓ +2026-07-13 08:30:28,627 | INFO | Singing 0.136 0.000 0.088 ✗ +2026-07-13 08:30:28,627 | INFO | Folk music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:28,627 | INFO | Song 0.081 0.000 0.052 ✗ +2026-07-13 08:30:28,627 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:28,652 | INFO | +[835.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,652 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,660 | INFO | Music 0.795 0.000 0.517 ✓ +2026-07-13 08:30:28,660 | INFO | Music of Bollywood 0.147 0.380 0.229 ✓ +2026-07-13 08:30:28,660 | INFO | Middle Eastern music 0.280 0.000 0.182 ✓ +2026-07-13 08:30:28,660 | INFO | Folk music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:28,660 | INFO | Singing 0.105 0.000 0.068 ✗ +2026-07-13 08:30:28,660 | INFO | Song 0.064 0.000 0.042 ✗ +2026-07-13 08:30:28,660 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:28,684 | INFO | +[835.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,684 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,684 | INFO | Music 0.782 0.000 0.508 ✓ +2026-07-13 08:30:28,684 | INFO | Music of Bollywood 0.206 0.380 0.267 ✓ +2026-07-13 08:30:28,684 | INFO | Middle Eastern music 0.252 0.000 0.164 ✓ +2026-07-13 08:30:28,684 | INFO | Folk music 0.139 0.000 0.090 ✗ +2026-07-13 08:30:28,684 | INFO | Traditional music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:28,684 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:28,709 | INFO | +[836.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,717 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,717 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:30:28,718 | INFO | Singing 0.142 0.000 0.093 ✗ +2026-07-13 08:30:28,719 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:28,744 | INFO | +[840.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,744 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,744 | INFO | Music 0.778 0.000 0.506 ✓ +2026-07-13 08:30:28,744 | INFO | Musical instrument 0.254 0.000 0.165 ✓ +2026-07-13 08:30:28,744 | INFO | Guitar 0.107 0.000 0.070 ✗ +2026-07-13 08:30:28,744 | INFO | Plucked string instrument 0.092 0.000 0.060 ✗ +2026-07-13 08:30:28,744 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:28,773 | INFO | +[840.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,774 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,774 | INFO | Music 0.383 0.000 0.249 ✓ +2026-07-13 08:30:28,775 | INFO | Animal 0.116 0.000 0.075 ✗ +2026-07-13 08:30:28,775 | INFO | Musical instrument 0.067 0.000 0.044 ✗ +2026-07-13 08:30:28,775 | INFO | Bird 0.055 0.000 0.036 ✗ +2026-07-13 08:30:28,775 | INFO | → WINNER: Music (combined=0.249) +2026-07-13 08:30:28,800 | INFO | +[840.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,800 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,800 | INFO | Bird vocalization, bird call, bird song 0.046 0.272 0.125 ✓ +2026-07-13 08:30:28,800 | INFO | Animal 0.181 0.000 0.118 ✗ +2026-07-13 08:30:28,800 | INFO | Bird 0.111 0.000 0.072 ✗ +2026-07-13 08:30:28,800 | INFO | Music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:28,800 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.125) +2026-07-13 08:30:28,826 | INFO | +[840.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,826 | INFO | Animal 0.231 0.000 0.150 ✓ +2026-07-13 08:30:28,826 | INFO | Bird vocalization, bird call, bird song 0.065 0.272 0.137 ✓ +2026-07-13 08:30:28,826 | INFO | Bird 0.164 0.000 0.106 ✗ +2026-07-13 08:30:28,826 | INFO | Environmental noise 0.094 0.000 0.061 ✗ +2026-07-13 08:30:28,826 | INFO | Outside, rural or natural 0.079 0.000 0.051 ✗ +2026-07-13 08:30:28,833 | INFO | → WINNER: Animal (combined=0.150) +2026-07-13 08:30:28,857 | INFO | +[840.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,857 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,857 | INFO | Bird vocalization, bird call, bird song 0.070 0.272 0.141 ✓ +2026-07-13 08:30:28,857 | INFO | Animal 0.190 0.000 0.124 ✓ +2026-07-13 08:30:28,857 | INFO | Environmental noise 0.176 0.000 0.114 ✗ +2026-07-13 08:30:28,857 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:30:28,857 | INFO | Outside, rural or natural 0.080 0.000 0.052 ✗ +2026-07-13 08:30:28,857 | INFO | Chirp, tweet 0.052 0.000 0.034 ✗ +2026-07-13 08:30:28,857 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.141) +2026-07-13 08:30:28,881 | INFO | +[841.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,881 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,889 | INFO | Insect 0.090 0.324 0.172 ✓ +2026-07-13 08:30:28,889 | INFO | Cricket 0.086 0.330 0.171 ✓ +2026-07-13 08:30:28,889 | INFO | Bird vocalization, bird call, bird song 0.076 0.272 0.145 ✓ +2026-07-13 08:30:28,889 | INFO | Bird 0.129 0.000 0.084 ✗ +2026-07-13 08:30:28,889 | INFO | Animal 0.112 0.000 0.073 ✗ +2026-07-13 08:30:28,889 | INFO | Environmental noise 0.102 0.000 0.067 ✗ +2026-07-13 08:30:28,889 | INFO | → WINNER: Insect (combined=0.172) +2026-07-13 08:30:28,915 | INFO | +[841.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,915 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,915 | INFO | Bird vocalization, bird call, bird song 0.060 0.272 0.134 ✓ +2026-07-13 08:30:28,915 | INFO | Bird 0.092 0.000 0.060 ✗ +2026-07-13 08:30:28,915 | INFO | Music 0.061 0.000 0.039 ✗ +2026-07-13 08:30:28,915 | INFO | Chirp, tweet 0.055 0.000 0.035 ✗ +2026-07-13 08:30:28,915 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.134) +2026-07-13 08:30:28,947 | INFO | +[841.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,947 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,948 | INFO | Bird vocalization, bird call, bird song 0.257 0.272 0.262 ✓ +2026-07-13 08:30:28,948 | INFO | Bird 0.367 0.000 0.238 ✓ +2026-07-13 08:30:28,948 | INFO | Chirp, tweet 0.259 0.000 0.168 ✓ +2026-07-13 08:30:28,948 | INFO | Animal 0.148 0.000 0.096 ✗ +2026-07-13 08:30:28,948 | INFO | Environmental noise 0.081 0.000 0.053 ✗ +2026-07-13 08:30:28,948 | INFO | Outside, rural or natural 0.056 0.000 0.036 ✗ +2026-07-13 08:30:28,948 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.262) +2026-07-13 08:30:28,972 | INFO | +[841.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:28,980 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:28,981 | INFO | Bird vocalization, bird call, bird song 0.348 0.272 0.321 ✓ +2026-07-13 08:30:28,981 | INFO | Bird 0.470 0.000 0.306 ✓ +2026-07-13 08:30:28,981 | INFO | Chirp, tweet 0.376 0.000 0.244 ✓ +2026-07-13 08:30:28,981 | INFO | Animal 0.135 0.000 0.088 ✗ +2026-07-13 08:30:28,981 | INFO | Environmental noise 0.054 0.000 0.035 ✗ +2026-07-13 08:30:28,981 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.321) +2026-07-13 08:30:29,005 | INFO | +[841.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,005 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,005 | INFO | Bird vocalization, bird call, bird song 0.349 0.272 0.322 ✓ +2026-07-13 08:30:29,005 | INFO | Bird 0.465 0.000 0.302 ✓ +2026-07-13 08:30:29,005 | INFO | Chirp, tweet 0.409 0.000 0.266 ✓ +2026-07-13 08:30:29,005 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.322) +2026-07-13 08:30:29,040 | INFO | +[842.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,040 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,040 | INFO | Bird 0.541 0.000 0.352 ✓ +2026-07-13 08:30:29,040 | INFO | Bird vocalization, bird call, bird song 0.327 0.272 0.308 ✓ +2026-07-13 08:30:29,040 | INFO | Chirp, tweet 0.363 0.000 0.236 ✓ +2026-07-13 08:30:29,040 | INFO | Animal 0.119 0.000 0.077 ✗ +2026-07-13 08:30:29,040 | INFO | → WINNER: Bird (combined=0.352) +2026-07-13 08:30:29,063 | INFO | +[842.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,063 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,063 | INFO | Bird 0.458 0.000 0.298 ✓ +2026-07-13 08:30:29,063 | INFO | Bird vocalization, bird call, bird song 0.265 0.272 0.268 ✓ +2026-07-13 08:30:29,063 | INFO | Chirp, tweet 0.293 0.000 0.191 ✓ +2026-07-13 08:30:29,070 | INFO | Animal 0.134 0.000 0.087 ✗ +2026-07-13 08:30:29,070 | INFO | Outside, rural or natural 0.071 0.000 0.046 ✗ +2026-07-13 08:30:29,070 | INFO | Environmental noise 0.067 0.000 0.043 ✗ +2026-07-13 08:30:29,070 | INFO | → WINNER: Bird (combined=0.298) +2026-07-13 08:30:29,095 | INFO | +[842.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,095 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,095 | INFO | Bird vocalization, bird call, bird song 0.181 0.272 0.213 ✓ +2026-07-13 08:30:29,095 | INFO | Bird 0.312 0.000 0.203 ✓ +2026-07-13 08:30:29,095 | INFO | Chirp, tweet 0.172 0.000 0.112 ✗ +2026-07-13 08:30:29,095 | INFO | Animal 0.148 0.000 0.096 ✗ +2026-07-13 08:30:29,095 | INFO | Environmental noise 0.098 0.000 0.064 ✗ +2026-07-13 08:30:29,095 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:29,095 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.213) +2026-07-13 08:30:29,123 | INFO | +[842.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,128 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,128 | INFO | Bird vocalization, bird call, bird song 0.130 0.272 0.180 ✓ +2026-07-13 08:30:29,128 | INFO | Environmental noise 0.225 0.000 0.146 ✓ +2026-07-13 08:30:29,128 | INFO | Bird 0.213 0.000 0.138 ✓ +2026-07-13 08:30:29,128 | INFO | Animal 0.196 0.000 0.127 ✓ +2026-07-13 08:30:29,128 | INFO | Chirp, tweet 0.098 0.000 0.064 ✗ +2026-07-13 08:30:29,128 | INFO | Outside, rural or natural 0.077 0.000 0.050 ✗ +2026-07-13 08:30:29,128 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.180) +2026-07-13 08:30:29,153 | INFO | +[842.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,153 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,153 | INFO | Hum 0.052 0.000 0.034 ✗ +2026-07-13 08:30:29,153 | INFO | → no winner +2026-07-13 08:30:29,180 | INFO | +[843.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,180 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,180 | INFO | Hum 0.073 0.000 0.048 ✗ +2026-07-13 08:30:29,180 | INFO | Environmental noise 0.054 0.000 0.035 ✗ +2026-07-13 08:30:29,185 | INFO | → no winner +2026-07-13 08:30:29,210 | INFO | +[843.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,210 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,210 | INFO | Inside, small room 0.073 0.000 0.048 ✗ +2026-07-13 08:30:29,210 | INFO | → no winner +2026-07-13 08:30:29,236 | INFO | +[843.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-07-13 08:30:29,236 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,236 | INFO | Inside, small room 0.086 0.000 0.056 ✗ +2026-07-13 08:30:29,236 | INFO | Bird 0.057 0.000 0.037 ✗ +2026-07-13 08:30:29,236 | INFO | → no winner +2026-07-13 08:30:29,272 | INFO | +[872.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,277 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,277 | INFO | Bird vocalization, bird call, bird song 0.118 0.281 0.175 ✓ +2026-07-13 08:30:29,277 | INFO | Cricket 0.086 0.292 0.158 ✓ +2026-07-13 08:30:29,277 | INFO | Environmental noise 0.240 0.000 0.156 ✓ +2026-07-13 08:30:29,277 | INFO | Bird 0.154 0.000 0.100 ✗ +2026-07-13 08:30:29,277 | INFO | Animal 0.119 0.000 0.077 ✗ +2026-07-13 08:30:29,277 | INFO | Chirp, tweet 0.099 0.000 0.064 ✗ +2026-07-13 08:30:29,277 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.175) +2026-07-13 08:30:29,301 | INFO | +[872.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,301 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,301 | INFO | Bird vocalization, bird call, bird song 0.143 0.281 0.191 ✓ +2026-07-13 08:30:29,301 | INFO | Cricket 0.110 0.292 0.174 ✓ +2026-07-13 08:30:29,301 | INFO | Insect 0.099 0.270 0.159 ✓ +2026-07-13 08:30:29,301 | INFO | Bird 0.199 0.000 0.129 ✓ +2026-07-13 08:30:29,301 | INFO | Environmental noise 0.168 0.000 0.109 ✗ +2026-07-13 08:30:29,301 | INFO | Chirp, tweet 0.143 0.000 0.093 ✗ +2026-07-13 08:30:29,301 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.191) +2026-07-13 08:30:29,334 | INFO | +[872.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,334 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,334 | INFO | Bird vocalization, bird call, bird song 0.157 0.281 0.201 ✓ +2026-07-13 08:30:29,334 | INFO | Cricket 0.074 0.292 0.151 ✓ +2026-07-13 08:30:29,334 | INFO | Environmental noise 0.230 0.000 0.150 ✓ +2026-07-13 08:30:29,334 | INFO | Bird 0.225 0.000 0.146 ✓ +2026-07-13 08:30:29,334 | INFO | Chirp, tweet 0.161 0.000 0.104 ✗ +2026-07-13 08:30:29,334 | INFO | Animal 0.157 0.000 0.102 ✗ +2026-07-13 08:30:29,334 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.201) +2026-07-13 08:30:29,359 | INFO | +[872.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,359 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,359 | INFO | Cricket 0.156 0.292 0.204 ✓ +2026-07-13 08:30:29,359 | INFO | Bird vocalization, bird call, bird song 0.148 0.281 0.195 ✓ +2026-07-13 08:30:29,359 | INFO | Insect 0.149 0.270 0.192 ✓ +2026-07-13 08:30:29,359 | INFO | Environmental noise 0.231 0.000 0.150 ✓ +2026-07-13 08:30:29,359 | INFO | Bird 0.211 0.000 0.137 ✓ +2026-07-13 08:30:29,359 | INFO | Animal 0.155 0.000 0.101 ✗ +2026-07-13 08:30:29,359 | INFO | → WINNER: Cricket (combined=0.204) +2026-07-13 08:30:29,392 | INFO | +[873.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,393 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,393 | INFO | Cricket 0.225 0.292 0.248 ✓ +2026-07-13 08:30:29,393 | INFO | Insect 0.159 0.270 0.198 ✓ +2026-07-13 08:30:29,393 | INFO | Bird vocalization, bird call, bird song 0.051 0.281 0.132 ✓ +2026-07-13 08:30:29,393 | INFO | Animal 0.192 0.000 0.125 ✓ +2026-07-13 08:30:29,393 | INFO | Environmental noise 0.162 0.000 0.105 ✗ +2026-07-13 08:30:29,393 | INFO | Bird 0.092 0.000 0.060 ✗ +2026-07-13 08:30:29,393 | INFO | → WINNER: Cricket (combined=0.248) +2026-07-13 08:30:29,419 | INFO | +[873.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,419 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,419 | INFO | Cricket 0.170 0.292 0.213 ✓ +2026-07-13 08:30:29,419 | INFO | Insect 0.127 0.270 0.177 ✓ +2026-07-13 08:30:29,419 | INFO | Bird vocalization, bird call, bird song 0.053 0.281 0.133 ✓ +2026-07-13 08:30:29,419 | INFO | Animal 0.156 0.000 0.101 ✗ +2026-07-13 08:30:29,419 | INFO | Environmental noise 0.130 0.000 0.084 ✗ +2026-07-13 08:30:29,419 | INFO | Bird 0.098 0.000 0.063 ✗ +2026-07-13 08:30:29,419 | INFO | → WINNER: Cricket (combined=0.213) +2026-07-13 08:30:29,449 | INFO | +[873.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,449 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,449 | INFO | Bird vocalization, bird call, bird song 0.087 0.281 0.155 ✓ +2026-07-13 08:30:29,449 | INFO | Cricket 0.080 0.292 0.154 ✓ +2026-07-13 08:30:29,449 | INFO | Environmental noise 0.126 0.000 0.082 ✗ +2026-07-13 08:30:29,449 | INFO | Bird 0.117 0.000 0.076 ✗ +2026-07-13 08:30:29,449 | INFO | Animal 0.101 0.000 0.066 ✗ +2026-07-13 08:30:29,449 | INFO | Chirp, tweet 0.069 0.000 0.045 ✗ +2026-07-13 08:30:29,449 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.155) +2026-07-13 08:30:29,477 | INFO | +[873.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,477 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,477 | INFO | Rodents, rats, mice 0.308 0.000 0.200 ✓ +2026-07-13 08:30:29,477 | INFO | Mouse 0.211 0.000 0.137 ✓ +2026-07-13 08:30:29,477 | INFO | Animal 0.142 0.000 0.092 ✗ +2026-07-13 08:30:29,477 | INFO | Patter 0.077 0.000 0.050 ✗ +2026-07-13 08:30:29,477 | INFO | Squeal 0.060 0.000 0.039 ✗ +2026-07-13 08:30:29,477 | INFO | Bird 0.048 0.000 0.031 ✗ +2026-07-13 08:30:29,477 | INFO | → WINNER: Rodents, rats, mice (combined=0.200) +2026-07-13 08:30:29,506 | INFO | +[873.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,507 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,508 | INFO | Bird vocalization, bird call, bird song 0.047 0.281 0.129 ✓ +2026-07-13 08:30:29,508 | INFO | Squeal 0.143 0.000 0.093 ✗ +2026-07-13 08:30:29,508 | INFO | Bird 0.123 0.000 0.080 ✗ +2026-07-13 08:30:29,509 | INFO | Rodents, rats, mice 0.121 0.000 0.079 ✗ +2026-07-13 08:30:29,509 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.129) +2026-07-13 08:30:29,532 | INFO | +[874.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,532 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,532 | INFO | Bird vocalization, bird call, bird song 0.055 0.281 0.134 ✓ +2026-07-13 08:30:29,532 | INFO | Bird 0.104 0.000 0.067 ✗ +2026-07-13 08:30:29,532 | INFO | Animal 0.091 0.000 0.059 ✗ +2026-07-13 08:30:29,532 | INFO | Rodents, rats, mice 0.089 0.000 0.058 ✗ +2026-07-13 08:30:29,532 | INFO | Squeal 0.084 0.000 0.055 ✗ +2026-07-13 08:30:29,532 | INFO | Chirp, tweet 0.056 0.000 0.036 ✗ +2026-07-13 08:30:29,532 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.134) +2026-07-13 08:30:29,564 | INFO | +[874.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,564 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,564 | INFO | Animal 0.107 0.000 0.069 ✗ +2026-07-13 08:30:29,564 | INFO | Squeal 0.103 0.000 0.067 ✗ +2026-07-13 08:30:29,564 | INFO | Music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:29,564 | INFO | → no winner +2026-07-13 08:30:29,591 | INFO | +[874.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,591 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,591 | INFO | Music 0.303 0.000 0.197 ✓ +2026-07-13 08:30:29,591 | INFO | Insect 0.130 0.270 0.179 ✓ +2026-07-13 08:30:29,591 | INFO | Bird vocalization, bird call, bird song 0.055 0.281 0.134 ✓ +2026-07-13 08:30:29,591 | INFO | Bird 0.059 0.000 0.038 ✗ +2026-07-13 08:30:29,591 | INFO | → WINNER: Music (combined=0.197) +2026-07-13 08:30:29,614 | INFO | +[874.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,622 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,622 | INFO | Insect 0.257 0.270 0.261 ✓ +2026-07-13 08:30:29,622 | INFO | Music 0.401 0.000 0.260 ✓ +2026-07-13 08:30:29,623 | INFO | Mosquito 0.061 0.264 0.132 ✓ +2026-07-13 08:30:29,623 | INFO | Fly, housefly 0.103 0.000 0.067 ✗ +2026-07-13 08:30:29,623 | INFO | Theremin 0.098 0.000 0.064 ✗ +2026-07-13 08:30:29,623 | INFO | Musical instrument 0.070 0.000 0.045 ✗ +2026-07-13 08:30:29,623 | INFO | → WINNER: Insect (combined=0.261) +2026-07-13 08:30:29,648 | INFO | +[874.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,648 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,648 | INFO | Music 0.434 0.000 0.282 ✓ +2026-07-13 08:30:29,648 | INFO | Theremin 0.081 0.000 0.053 ✗ +2026-07-13 08:30:29,648 | INFO | Musical instrument 0.076 0.000 0.050 ✗ +2026-07-13 08:30:29,648 | INFO | → WINNER: Music (combined=0.282) +2026-07-13 08:30:29,677 | INFO | +[875.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,677 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,677 | INFO | Music 0.112 0.000 0.072 ✗ +2026-07-13 08:30:29,677 | INFO | Bird 0.051 0.000 0.034 ✗ +2026-07-13 08:30:29,677 | INFO | → no winner +2026-07-13 08:30:29,706 | INFO | +[875.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,706 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,706 | INFO | Music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:29,706 | INFO | Vehicle 0.058 0.000 0.038 ✗ +2026-07-13 08:30:29,706 | INFO | Crowd 0.047 0.000 0.030 ✗ +2026-07-13 08:30:29,706 | INFO | → no winner +2026-07-13 08:30:29,729 | INFO | +[875.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,729 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,729 | INFO | Music 0.110 0.000 0.071 ✗ +2026-07-13 08:30:29,729 | INFO | Crowd 0.072 0.000 0.047 ✗ +2026-07-13 08:30:29,729 | INFO | → no winner +2026-07-13 08:30:29,754 | INFO | +[875.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,754 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,754 | INFO | Music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:29,754 | INFO | → no winner +2026-07-13 08:30:29,787 | INFO | +[875.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,787 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,787 | INFO | Music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:29,787 | INFO | → no winner +2026-07-13 08:30:29,812 | INFO | +[876.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,812 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,812 | INFO | Bird vocalization, bird call, bird song 0.044 0.281 0.127 ✓ +2026-07-13 08:30:29,816 | INFO | Animal 0.169 0.000 0.110 ✗ +2026-07-13 08:30:29,816 | INFO | Bird 0.083 0.000 0.054 ✗ +2026-07-13 08:30:29,816 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.127) +2026-07-13 08:30:29,842 | INFO | +[876.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,842 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,842 | INFO | Bird vocalization, bird call, bird song 0.049 0.281 0.130 ✓ +2026-07-13 08:30:29,842 | INFO | Animal 0.196 0.000 0.128 ✓ +2026-07-13 08:30:29,842 | INFO | Bird 0.117 0.000 0.076 ✗ +2026-07-13 08:30:29,842 | INFO | Music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:29,845 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.130) +2026-07-13 08:30:29,869 | INFO | +[876.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,869 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,869 | INFO | Animal 0.259 0.000 0.168 ✓ +2026-07-13 08:30:29,869 | INFO | Bird vocalization, bird call, bird song 0.057 0.281 0.136 ✓ +2026-07-13 08:30:29,869 | INFO | Bird 0.129 0.000 0.084 ✗ +2026-07-13 08:30:29,869 | INFO | Music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:29,869 | INFO | Horse 0.059 0.000 0.038 ✗ +2026-07-13 08:30:29,869 | INFO | Chirp, tweet 0.057 0.000 0.037 ✗ +2026-07-13 08:30:29,869 | INFO | → WINNER: Animal (combined=0.168) +2026-07-13 08:30:29,895 | INFO | +[876.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,895 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,895 | INFO | Bird vocalization, bird call, bird song 0.161 0.281 0.203 ✓ +2026-07-13 08:30:29,895 | INFO | Bird 0.255 0.000 0.166 ✓ +2026-07-13 08:30:29,895 | INFO | Animal 0.217 0.000 0.141 ✓ +2026-07-13 08:30:29,895 | INFO | Chirp, tweet 0.184 0.000 0.120 ✗ +2026-07-13 08:30:29,895 | INFO | Environmental noise 0.110 0.000 0.071 ✗ +2026-07-13 08:30:29,895 | INFO | Outside, rural or natural 0.063 0.000 0.041 ✗ +2026-07-13 08:30:29,895 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.203) +2026-07-13 08:30:29,929 | INFO | +[876.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,929 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,929 | INFO | Bird vocalization, bird call, bird song 0.171 0.281 0.210 ✓ +2026-07-13 08:30:29,929 | INFO | Bird 0.249 0.000 0.162 ✓ +2026-07-13 08:30:29,929 | INFO | Environmental noise 0.242 0.000 0.157 ✓ +2026-07-13 08:30:29,931 | INFO | Animal 0.170 0.000 0.110 ✗ +2026-07-13 08:30:29,932 | INFO | Chirp, tweet 0.156 0.000 0.101 ✗ +2026-07-13 08:30:29,932 | INFO | Outside, rural or natural 0.062 0.000 0.041 ✗ +2026-07-13 08:30:29,932 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.210) +2026-07-13 08:30:29,953 | INFO | +[877.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-07-13 08:30:29,953 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,953 | INFO | Bird vocalization, bird call, bird song 0.152 0.281 0.197 ✓ +2026-07-13 08:30:29,953 | INFO | Bird 0.253 0.000 0.165 ✓ +2026-07-13 08:30:29,960 | INFO | Environmental noise 0.236 0.000 0.153 ✓ +2026-07-13 08:30:29,960 | INFO | Animal 0.166 0.000 0.108 ✗ +2026-07-13 08:30:29,960 | INFO | Chirp, tweet 0.129 0.000 0.084 ✗ +2026-07-13 08:30:29,960 | INFO | Outside, rural or natural 0.068 0.000 0.044 ✗ +2026-07-13 08:30:29,960 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.197) +2026-07-13 08:30:29,985 | INFO | +[877.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:29,985 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:29,985 | INFO | Environmental noise 0.130 0.373 0.215 ✓ +2026-07-13 08:30:29,985 | INFO | Bird 0.164 0.000 0.107 ✗ +2026-07-13 08:30:29,985 | INFO | Animal 0.149 0.000 0.097 ✗ +2026-07-13 08:30:29,985 | INFO | Music 0.093 0.000 0.061 ✗ +2026-07-13 08:30:29,985 | INFO | Bird vocalization, bird call, bird song 0.086 0.000 0.056 ✗ +2026-07-13 08:30:29,985 | INFO | Chirp, tweet 0.071 0.000 0.046 ✗ +2026-07-13 08:30:29,985 | INFO | → WINNER: Environmental noise (combined=0.215) +2026-07-13 08:30:30,018 | INFO | +[877.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,018 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,018 | INFO | Animal 0.408 0.000 0.265 ✓ +2026-07-13 08:30:30,018 | INFO | Environmental noise 0.080 0.373 0.183 ✓ +2026-07-13 08:30:30,018 | INFO | Dog 0.222 0.000 0.144 ✓ +2026-07-13 08:30:30,018 | INFO | Domestic animals, pets 0.189 0.000 0.122 ✓ +2026-07-13 08:30:30,020 | INFO | Bow-wow 0.095 0.000 0.062 ✗ +2026-07-13 08:30:30,020 | INFO | Bird 0.074 0.000 0.048 ✗ +2026-07-13 08:30:30,020 | INFO | → WINNER: Animal (combined=0.265) +2026-07-13 08:30:30,044 | INFO | +[877.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,044 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,044 | INFO | Environmental noise 0.067 0.373 0.174 ✓ +2026-07-13 08:30:30,044 | INFO | Music 0.211 0.000 0.137 ✓ +2026-07-13 08:30:30,044 | INFO | Animal 0.121 0.000 0.078 ✗ +2026-07-13 08:30:30,044 | INFO | Vehicle 0.084 0.000 0.055 ✗ +2026-07-13 08:30:30,044 | INFO | Outside, rural or natural 0.072 0.000 0.047 ✗ +2026-07-13 08:30:30,044 | INFO | Bird 0.042 0.000 0.028 ✗ +2026-07-13 08:30:30,044 | INFO | → WINNER: Environmental noise (combined=0.174) +2026-07-13 08:30:30,076 | INFO | +[877.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,077 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,077 | INFO | Music 0.376 0.000 0.244 ✓ +2026-07-13 08:30:30,077 | INFO | Neigh, whinny 0.124 0.000 0.081 ✗ +2026-07-13 08:30:30,077 | INFO | Animal 0.091 0.000 0.059 ✗ +2026-07-13 08:30:30,077 | INFO | Horse 0.068 0.000 0.044 ✗ +2026-07-13 08:30:30,077 | INFO | → WINNER: Music (combined=0.244) +2026-07-13 08:30:30,099 | INFO | +[878.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,099 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,099 | INFO | Music 0.386 0.000 0.251 ✓ +2026-07-13 08:30:30,099 | INFO | → WINNER: Music (combined=0.251) +2026-07-13 08:30:30,123 | INFO | +[878.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,132 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,132 | INFO | Music 0.581 0.000 0.377 ✓ +2026-07-13 08:30:30,132 | INFO | Musical instrument 0.081 0.000 0.052 ✗ +2026-07-13 08:30:30,132 | INFO | → WINNER: Music (combined=0.377) +2026-07-13 08:30:30,156 | INFO | +[878.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,156 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,156 | INFO | Music 0.334 0.000 0.217 ✓ +2026-07-13 08:30:30,156 | INFO | Theremin 0.298 0.000 0.194 ✓ +2026-07-13 08:30:30,156 | INFO | Musical instrument 0.121 0.000 0.079 ✗ +2026-07-13 08:30:30,156 | INFO | Guitar 0.065 0.000 0.043 ✗ +2026-07-13 08:30:30,156 | INFO | → WINNER: Music (combined=0.217) +2026-07-13 08:30:30,189 | INFO | +[878.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,189 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,189 | INFO | Music 0.175 0.000 0.114 ✗ +2026-07-13 08:30:30,189 | INFO | Crowd 0.081 0.000 0.053 ✗ +2026-07-13 08:30:30,189 | INFO | → no winner +2026-07-13 08:30:30,215 | INFO | +[878.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,215 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,215 | INFO | Music 0.187 0.000 0.122 ✓ +2026-07-13 08:30:30,215 | INFO | Crowd 0.032 0.000 0.021 ✗ +2026-07-13 08:30:30,215 | INFO | → WINNER: Music (combined=0.122) +2026-07-13 08:30:30,243 | INFO | +[879.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,247 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,248 | INFO | Music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:30,248 | INFO | → no winner +2026-07-13 08:30:30,273 | INFO | +[879.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,273 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,273 | INFO | Animal 0.103 0.000 0.067 ✗ +2026-07-13 08:30:30,273 | INFO | Music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:30,273 | INFO | Bird 0.057 0.000 0.037 ✗ +2026-07-13 08:30:30,273 | INFO | Bird vocalization, bird call, bird song 0.028 0.000 0.018 ✗ +2026-07-13 08:30:30,273 | INFO | → no winner +2026-07-13 08:30:30,297 | INFO | +[879.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,297 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,297 | INFO | Environmental noise 0.081 0.373 0.183 ✓ +2026-07-13 08:30:30,297 | INFO | Animal 0.117 0.000 0.076 ✗ +2026-07-13 08:30:30,297 | INFO | Music 0.084 0.000 0.054 ✗ +2026-07-13 08:30:30,297 | INFO | Bird 0.080 0.000 0.052 ✗ +2026-07-13 08:30:30,297 | INFO | Bird vocalization, bird call, bird song 0.053 0.000 0.034 ✗ +2026-07-13 08:30:30,297 | INFO | → WINNER: Environmental noise (combined=0.183) +2026-07-13 08:30:30,329 | INFO | +[879.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,329 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,329 | INFO | Environmental noise 0.103 0.373 0.198 ✓ +2026-07-13 08:30:30,329 | INFO | Bird 0.137 0.000 0.089 ✗ +2026-07-13 08:30:30,329 | INFO | Bird vocalization, bird call, bird song 0.103 0.000 0.067 ✗ +2026-07-13 08:30:30,329 | INFO | Chirp, tweet 0.101 0.000 0.065 ✗ +2026-07-13 08:30:30,329 | INFO | Music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:30,329 | INFO | → WINNER: Environmental noise (combined=0.198) +2026-07-13 08:30:30,355 | INFO | +[879.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,355 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,355 | INFO | Bird 0.374 0.000 0.243 ✓ +2026-07-13 08:30:30,355 | INFO | Environmental noise 0.059 0.373 0.169 ✓ +2026-07-13 08:30:30,355 | INFO | Chirp, tweet 0.258 0.000 0.168 ✓ +2026-07-13 08:30:30,355 | INFO | Bird vocalization, bird call, bird song 0.220 0.000 0.143 ✓ +2026-07-13 08:30:30,355 | INFO | Animal 0.187 0.000 0.121 ✓ +2026-07-13 08:30:30,355 | INFO | Outside, rural or natural 0.055 0.000 0.036 ✗ +2026-07-13 08:30:30,355 | INFO | → WINNER: Bird (combined=0.243) +2026-07-13 08:30:30,388 | INFO | +[880.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,388 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,389 | INFO | Bird 0.550 0.000 0.358 ✓ +2026-07-13 08:30:30,390 | INFO | Chirp, tweet 0.378 0.000 0.245 ✓ +2026-07-13 08:30:30,390 | INFO | Animal 0.361 0.000 0.235 ✓ +2026-07-13 08:30:30,390 | INFO | Bird vocalization, bird call, bird song 0.337 0.000 0.219 ✓ +2026-07-13 08:30:30,390 | INFO | Environmental noise 0.096 0.373 0.193 ✓ +2026-07-13 08:30:30,390 | INFO | Duck 0.108 0.000 0.070 ✗ +2026-07-13 08:30:30,390 | INFO | → WINNER: Bird (combined=0.358) +2026-07-13 08:30:30,413 | INFO | +[880.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,417 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,418 | INFO | Bird 0.550 0.000 0.358 ✓ +2026-07-13 08:30:30,418 | INFO | Duck 0.424 0.000 0.276 ✓ +2026-07-13 08:30:30,418 | INFO | Animal 0.399 0.000 0.259 ✓ +2026-07-13 08:30:30,418 | INFO | Chirp, tweet 0.338 0.000 0.220 ✓ +2026-07-13 08:30:30,418 | INFO | Bird vocalization, bird call, bird song 0.305 0.000 0.198 ✓ +2026-07-13 08:30:30,418 | INFO | Environmental noise 0.053 0.373 0.165 ✓ +2026-07-13 08:30:30,418 | INFO | → WINNER: Bird (combined=0.358) +2026-07-13 08:30:30,437 | INFO | +[880.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,446 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,446 | INFO | Duck 0.668 0.000 0.434 ✓ +2026-07-13 08:30:30,446 | INFO | Bird 0.588 0.000 0.382 ✓ +2026-07-13 08:30:30,446 | INFO | Animal 0.395 0.000 0.257 ✓ +2026-07-13 08:30:30,446 | INFO | Bird vocalization, bird call, bird song 0.280 0.000 0.182 ✓ +2026-07-13 08:30:30,446 | INFO | Chirp, tweet 0.274 0.000 0.178 ✓ +2026-07-13 08:30:30,446 | INFO | Quack 0.227 0.000 0.148 ✓ +2026-07-13 08:30:30,446 | INFO | → WINNER: Duck (combined=0.434) +2026-07-13 08:30:30,473 | INFO | +[880.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,473 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,473 | INFO | Bird 0.490 0.000 0.318 ✓ +2026-07-13 08:30:30,473 | INFO | Animal 0.443 0.000 0.288 ✓ +2026-07-13 08:30:30,473 | INFO | Duck 0.441 0.000 0.287 ✓ +2026-07-13 08:30:30,473 | INFO | Chirp, tweet 0.240 0.000 0.156 ✓ +2026-07-13 08:30:30,473 | INFO | Bird vocalization, bird call, bird song 0.201 0.000 0.131 ✓ +2026-07-13 08:30:30,473 | INFO | Quack 0.189 0.000 0.123 ✓ +2026-07-13 08:30:30,473 | INFO | → WINNER: Bird (combined=0.318) +2026-07-13 08:30:30,503 | INFO | +[880.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,504 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,504 | INFO | Bird 0.654 0.000 0.425 ✓ +2026-07-13 08:30:30,504 | INFO | Chirp, tweet 0.412 0.000 0.268 ✓ +2026-07-13 08:30:30,504 | INFO | Bird vocalization, bird call, bird song 0.302 0.000 0.196 ✓ +2026-07-13 08:30:30,504 | INFO | Pigeon, dove 0.209 0.000 0.136 ✓ +2026-07-13 08:30:30,504 | INFO | Animal 0.187 0.000 0.121 ✓ +2026-07-13 08:30:30,504 | INFO | Coo 0.173 0.000 0.112 ✗ +2026-07-13 08:30:30,504 | INFO | → WINNER: Bird (combined=0.425) +2026-07-13 08:30:30,529 | INFO | +[881.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,533 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,533 | INFO | Music 0.377 0.000 0.245 ✓ +2026-07-13 08:30:30,533 | INFO | Animal 0.184 0.000 0.120 ✗ +2026-07-13 08:30:30,533 | INFO | Neigh, whinny 0.098 0.000 0.063 ✗ +2026-07-13 08:30:30,533 | INFO | Bird 0.089 0.000 0.058 ✗ +2026-07-13 08:30:30,533 | INFO | Horse 0.075 0.000 0.049 ✗ +2026-07-13 08:30:30,533 | INFO | Bird vocalization, bird call, bird song 0.034 0.000 0.022 ✗ +2026-07-13 08:30:30,533 | INFO | → WINNER: Music (combined=0.245) +2026-07-13 08:30:30,563 | INFO | +[881.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,563 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,563 | INFO | Whistling 0.058 0.351 0.161 ✓ +2026-07-13 08:30:30,563 | INFO | Music 0.169 0.000 0.110 ✗ +2026-07-13 08:30:30,563 | INFO | Animal 0.159 0.000 0.103 ✗ +2026-07-13 08:30:30,563 | INFO | Bird 0.156 0.000 0.102 ✗ +2026-07-13 08:30:30,566 | INFO | Pigeon, dove 0.084 0.000 0.054 ✗ +2026-07-13 08:30:30,566 | INFO | Coo 0.052 0.000 0.034 ✗ +2026-07-13 08:30:30,566 | INFO | → WINNER: Whistling (combined=0.161) +2026-07-13 08:30:30,586 | INFO | +[881.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,586 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,593 | INFO | Music 0.215 0.000 0.140 ✓ +2026-07-13 08:30:30,593 | INFO | Animal 0.090 0.000 0.059 ✗ +2026-07-13 08:30:30,593 | INFO | Bird 0.061 0.000 0.040 ✗ +2026-07-13 08:30:30,593 | INFO | → WINNER: Music (combined=0.140) +2026-07-13 08:30:30,619 | INFO | +[881.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,619 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,619 | INFO | Music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:30,619 | INFO | Sheep 0.047 0.000 0.030 ✗ +2026-07-13 08:30:30,619 | INFO | → no winner +2026-07-13 08:30:30,644 | INFO | +[881.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,644 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,644 | INFO | Bird 0.081 0.000 0.052 ✗ +2026-07-13 08:30:30,644 | INFO | Music 0.066 0.000 0.043 ✗ +2026-07-13 08:30:30,649 | INFO | → no winner +2026-07-13 08:30:30,668 | INFO | +[882.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,668 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,676 | INFO | Bird 0.280 0.000 0.182 ✓ +2026-07-13 08:30:30,676 | INFO | Chirp, tweet 0.186 0.000 0.121 ✓ +2026-07-13 08:30:30,677 | INFO | Bird vocalization, bird call, bird song 0.159 0.000 0.103 ✗ +2026-07-13 08:30:30,677 | INFO | Animal 0.094 0.000 0.061 ✗ +2026-07-13 08:30:30,677 | INFO | → WINNER: Bird (combined=0.182) +2026-07-13 08:30:30,702 | INFO | +[882.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,702 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,702 | INFO | Bird 0.290 0.000 0.189 ✓ +2026-07-13 08:30:30,702 | INFO | Chirp, tweet 0.169 0.000 0.110 ✗ +2026-07-13 08:30:30,702 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.101 ✗ +2026-07-13 08:30:30,702 | INFO | Animal 0.136 0.000 0.088 ✗ +2026-07-13 08:30:30,702 | INFO | Chicken, rooster 0.058 0.000 0.038 ✗ +2026-07-13 08:30:30,702 | INFO | → WINNER: Bird (combined=0.189) +2026-07-13 08:30:30,726 | INFO | +[882.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,733 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,733 | INFO | Bird 0.318 0.000 0.207 ✓ +2026-07-13 08:30:30,734 | INFO | Animal 0.279 0.000 0.181 ✓ +2026-07-13 08:30:30,735 | INFO | Bird vocalization, bird call, bird song 0.130 0.000 0.085 ✗ +2026-07-13 08:30:30,735 | INFO | Chirp, tweet 0.110 0.000 0.072 ✗ +2026-07-13 08:30:30,735 | INFO | Outside, rural or natural 0.058 0.000 0.038 ✗ +2026-07-13 08:30:30,735 | INFO | → WINNER: Bird (combined=0.207) +2026-07-13 08:30:30,759 | INFO | +[882.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,759 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,759 | INFO | Music 0.334 0.000 0.217 ✓ +2026-07-13 08:30:30,759 | INFO | Ding 0.171 0.000 0.111 ✗ +2026-07-13 08:30:30,759 | INFO | Animal 0.101 0.000 0.066 ✗ +2026-07-13 08:30:30,759 | INFO | Ding-dong 0.091 0.000 0.059 ✗ +2026-07-13 08:30:30,759 | INFO | Bird 0.078 0.000 0.051 ✗ +2026-07-13 08:30:30,759 | INFO | Clang 0.056 0.000 0.037 ✗ +2026-07-13 08:30:30,759 | INFO | → WINNER: Music (combined=0.217) +2026-07-13 08:30:30,791 | INFO | +[882.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,791 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,791 | INFO | Music 0.491 0.000 0.320 ✓ +2026-07-13 08:30:30,791 | INFO | Ding-dong 0.125 0.000 0.081 ✗ +2026-07-13 08:30:30,791 | INFO | Ding 0.075 0.000 0.049 ✗ +2026-07-13 08:30:30,791 | INFO | Musical instrument 0.068 0.000 0.044 ✗ +2026-07-13 08:30:30,791 | INFO | Bird 0.045 0.000 0.029 ✗ +2026-07-13 08:30:30,791 | INFO | Tabla 0.041 0.000 0.026 ✗ +2026-07-13 08:30:30,796 | INFO | → WINNER: Music (combined=0.320) +2026-07-13 08:30:30,816 | INFO | +[883.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,816 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,816 | INFO | Music 0.610 0.000 0.396 ✓ +2026-07-13 08:30:30,816 | INFO | Carnatic music 0.202 0.000 0.131 ✓ +2026-07-13 08:30:30,816 | INFO | Tabla 0.157 0.000 0.102 ✗ +2026-07-13 08:30:30,824 | INFO | Sitar 0.101 0.000 0.066 ✗ +2026-07-13 08:30:30,824 | INFO | Musical instrument 0.084 0.000 0.055 ✗ +2026-07-13 08:30:30,824 | INFO | Percussion 0.059 0.000 0.039 ✗ +2026-07-13 08:30:30,824 | INFO | → WINNER: Music (combined=0.396) +2026-07-13 08:30:30,849 | INFO | +[883.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,849 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,849 | INFO | Music 0.724 0.000 0.470 ✓ +2026-07-13 08:30:30,849 | INFO | Carnatic music 0.093 0.000 0.061 ✗ +2026-07-13 08:30:30,849 | INFO | Sitar 0.091 0.000 0.059 ✗ +2026-07-13 08:30:30,849 | INFO | Tabla 0.037 0.000 0.024 ✗ +2026-07-13 08:30:30,849 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:30,874 | INFO | +[883.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,874 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,874 | INFO | Music 0.803 0.000 0.522 ✓ +2026-07-13 08:30:30,874 | INFO | Sitar 0.116 0.000 0.075 ✗ +2026-07-13 08:30:30,874 | INFO | Music of Bollywood 0.103 0.000 0.067 ✗ +2026-07-13 08:30:30,882 | INFO | Folk music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:30,882 | INFO | Mantra 0.082 0.000 0.053 ✗ +2026-07-13 08:30:30,882 | INFO | Middle Eastern music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:30,882 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:30,907 | INFO | +[883.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,907 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,907 | INFO | Music 0.702 0.000 0.456 ✓ +2026-07-13 08:30:30,907 | INFO | Sitar 0.276 0.000 0.179 ✓ +2026-07-13 08:30:30,907 | INFO | Tabla 0.167 0.000 0.108 ✗ +2026-07-13 08:30:30,907 | INFO | Percussion 0.095 0.000 0.062 ✗ +2026-07-13 08:30:30,907 | INFO | Musical instrument 0.084 0.000 0.055 ✗ +2026-07-13 08:30:30,907 | INFO | Carnatic music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:30,907 | INFO | → WINNER: Music (combined=0.456) +2026-07-13 08:30:30,935 | INFO | +[883.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,935 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,935 | INFO | Music 0.656 0.000 0.427 ✓ +2026-07-13 08:30:30,935 | INFO | Percussion 0.213 0.000 0.138 ✓ +2026-07-13 08:30:30,935 | INFO | Wood block 0.173 0.000 0.113 ✗ +2026-07-13 08:30:30,935 | INFO | Tabla 0.146 0.000 0.095 ✗ +2026-07-13 08:30:30,935 | INFO | Drum 0.135 0.000 0.088 ✗ +2026-07-13 08:30:30,935 | INFO | Musical instrument 0.087 0.000 0.056 ✗ +2026-07-13 08:30:30,935 | INFO | → WINNER: Music (combined=0.427) +2026-07-13 08:30:30,963 | INFO | +[884.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,966 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,966 | INFO | Music 0.603 0.000 0.392 ✓ +2026-07-13 08:30:30,967 | INFO | Tabla 0.326 0.000 0.212 ✓ +2026-07-13 08:30:30,967 | INFO | Percussion 0.306 0.000 0.199 ✓ +2026-07-13 08:30:30,967 | INFO | Musical instrument 0.212 0.000 0.138 ✓ +2026-07-13 08:30:30,967 | INFO | Drum 0.201 0.000 0.130 ✓ +2026-07-13 08:30:30,967 | INFO | Wood block 0.142 0.000 0.092 ✗ +2026-07-13 08:30:30,967 | INFO | → WINNER: Music (combined=0.392) +2026-07-13 08:30:30,991 | INFO | +[884.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:30,991 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:30,991 | INFO | Music 0.616 0.000 0.400 ✓ +2026-07-13 08:30:30,991 | INFO | Percussion 0.299 0.000 0.195 ✓ +2026-07-13 08:30:30,997 | INFO | Tabla 0.251 0.000 0.163 ✓ +2026-07-13 08:30:30,997 | INFO | Drum 0.199 0.000 0.129 ✓ +2026-07-13 08:30:30,997 | INFO | Musical instrument 0.180 0.000 0.117 ✗ +2026-07-13 08:30:30,997 | INFO | Wood block 0.178 0.000 0.116 ✗ +2026-07-13 08:30:30,997 | INFO | → WINNER: Music (combined=0.400) +2026-07-13 08:30:31,024 | INFO | +[884.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,024 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,025 | INFO | Music 0.808 0.000 0.525 ✓ +2026-07-13 08:30:31,025 | INFO | Wood block 0.208 0.000 0.136 ✓ +2026-07-13 08:30:31,025 | INFO | Percussion 0.189 0.000 0.123 ✓ +2026-07-13 08:30:31,025 | INFO | Musical instrument 0.172 0.000 0.112 ✗ +2026-07-13 08:30:31,025 | INFO | Tubular bells 0.126 0.000 0.082 ✗ +2026-07-13 08:30:31,025 | INFO | Drum 0.102 0.000 0.066 ✗ +2026-07-13 08:30:31,025 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:31,054 | INFO | +[884.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,054 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,054 | INFO | Music 0.678 0.000 0.441 ✓ +2026-07-13 08:30:31,054 | INFO | Musical instrument 0.099 0.000 0.064 ✗ +2026-07-13 08:30:31,054 | INFO | Tubular bells 0.077 0.000 0.050 ✗ +2026-07-13 08:30:31,054 | INFO | Percussion 0.066 0.000 0.043 ✗ +2026-07-13 08:30:31,054 | INFO | Wood block 0.042 0.000 0.028 ✗ +2026-07-13 08:30:31,056 | INFO | → WINNER: Music (combined=0.441) +2026-07-13 08:30:31,082 | INFO | +[884.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,083 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,083 | INFO | Music 0.693 0.000 0.450 ✓ +2026-07-13 08:30:31,084 | INFO | Musical instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:31,084 | INFO | Ratchet, pawl 0.060 0.000 0.039 ✗ +2026-07-13 08:30:31,084 | INFO | Sitar 0.055 0.000 0.036 ✗ +2026-07-13 08:30:31,084 | INFO | Mechanisms 0.053 0.000 0.035 ✗ +2026-07-13 08:30:31,084 | INFO | Tabla 0.036 0.000 0.023 ✗ +2026-07-13 08:30:31,084 | INFO | → WINNER: Music (combined=0.450) +2026-07-13 08:30:31,106 | INFO | +[885.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,106 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,106 | INFO | Music 0.753 0.000 0.489 ✓ +2026-07-13 08:30:31,106 | INFO | Musical instrument 0.149 0.000 0.097 ✗ +2026-07-13 08:30:31,106 | INFO | Tabla 0.127 0.000 0.083 ✗ +2026-07-13 08:30:31,106 | INFO | Percussion 0.119 0.000 0.077 ✗ +2026-07-13 08:30:31,106 | INFO | Carnatic music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:31,106 | INFO | Drum 0.062 0.000 0.041 ✗ +2026-07-13 08:30:31,106 | INFO | → WINNER: Music (combined=0.489) +2026-07-13 08:30:31,139 | INFO | +[885.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,139 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,139 | INFO | Music 0.733 0.000 0.477 ✓ +2026-07-13 08:30:31,139 | INFO | Percussion 0.179 0.000 0.117 ✗ +2026-07-13 08:30:31,139 | INFO | Musical instrument 0.130 0.000 0.084 ✗ +2026-07-13 08:30:31,139 | INFO | Tabla 0.100 0.000 0.065 ✗ +2026-07-13 08:30:31,139 | INFO | Wood block 0.087 0.000 0.057 ✗ +2026-07-13 08:30:31,139 | INFO | Drum 0.084 0.000 0.055 ✗ +2026-07-13 08:30:31,139 | INFO | → WINNER: Music (combined=0.477) +2026-07-13 08:30:31,164 | INFO | +[885.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,164 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,171 | INFO | Music 0.706 0.000 0.459 ✓ +2026-07-13 08:30:31,172 | INFO | Tabla 0.277 0.000 0.180 ✓ +2026-07-13 08:30:31,172 | INFO | Percussion 0.153 0.000 0.099 ✗ +2026-07-13 08:30:31,172 | INFO | Musical instrument 0.126 0.000 0.082 ✗ +2026-07-13 08:30:31,172 | INFO | Sitar 0.114 0.000 0.074 ✗ +2026-07-13 08:30:31,172 | INFO | Drum 0.099 0.000 0.065 ✗ +2026-07-13 08:30:31,172 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:31,196 | INFO | +[885.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,196 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,196 | INFO | Music 0.686 0.000 0.446 ✓ +2026-07-13 08:30:31,196 | INFO | Percussion 0.209 0.000 0.136 ✓ +2026-07-13 08:30:31,196 | INFO | Wood block 0.190 0.000 0.124 ✓ +2026-07-13 08:30:31,196 | INFO | Tubular bells 0.133 0.000 0.086 ✗ +2026-07-13 08:30:31,196 | INFO | Musical instrument 0.106 0.000 0.069 ✗ +2026-07-13 08:30:31,196 | INFO | Drum 0.104 0.000 0.067 ✗ +2026-07-13 08:30:31,196 | INFO | → WINNER: Music (combined=0.446) +2026-07-13 08:30:31,227 | INFO | +[885.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,229 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,229 | INFO | Music 0.680 0.000 0.442 ✓ +2026-07-13 08:30:31,229 | INFO | Wood block 0.302 0.000 0.197 ✓ +2026-07-13 08:30:31,229 | INFO | Percussion 0.281 0.000 0.183 ✓ +2026-07-13 08:30:31,229 | INFO | Musical instrument 0.159 0.000 0.103 ✗ +2026-07-13 08:30:31,229 | INFO | Tabla 0.155 0.000 0.101 ✗ +2026-07-13 08:30:31,229 | INFO | Drum 0.148 0.000 0.096 ✗ +2026-07-13 08:30:31,229 | INFO | → WINNER: Music (combined=0.442) +2026-07-13 08:30:31,253 | INFO | +[886.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,258 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,258 | INFO | Music 0.585 0.000 0.380 ✓ +2026-07-13 08:30:31,259 | INFO | Musical instrument 0.177 0.000 0.115 ✗ +2026-07-13 08:30:31,259 | INFO | Tubular bells 0.155 0.000 0.101 ✗ +2026-07-13 08:30:31,259 | INFO | Percussion 0.133 0.000 0.086 ✗ +2026-07-13 08:30:31,259 | INFO | Wood block 0.102 0.000 0.067 ✗ +2026-07-13 08:30:31,259 | INFO | Traditional music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:31,259 | INFO | → WINNER: Music (combined=0.380) +2026-07-13 08:30:31,286 | INFO | +[886.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,286 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,286 | INFO | Music 0.737 0.000 0.479 ✓ +2026-07-13 08:30:31,287 | INFO | Percussion 0.261 0.000 0.170 ✓ +2026-07-13 08:30:31,287 | INFO | Wood block 0.193 0.000 0.126 ✓ +2026-07-13 08:30:31,287 | INFO | Musical instrument 0.193 0.000 0.126 ✓ +2026-07-13 08:30:31,288 | INFO | Tabla 0.183 0.000 0.119 ✗ +2026-07-13 08:30:31,288 | INFO | Drum 0.170 0.000 0.111 ✗ +2026-07-13 08:30:31,288 | INFO | → WINNER: Music (combined=0.479) +2026-07-13 08:30:31,312 | INFO | +[886.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,312 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,312 | INFO | Music 0.755 0.000 0.491 ✓ +2026-07-13 08:30:31,312 | INFO | Tabla 0.248 0.000 0.161 ✓ +2026-07-13 08:30:31,312 | INFO | Sitar 0.207 0.000 0.135 ✓ +2026-07-13 08:30:31,317 | INFO | Musical instrument 0.180 0.000 0.117 ✗ +2026-07-13 08:30:31,317 | INFO | Carnatic music 0.101 0.000 0.066 ✗ +2026-07-13 08:30:31,317 | INFO | Percussion 0.085 0.000 0.056 ✗ +2026-07-13 08:30:31,317 | INFO | → WINNER: Music (combined=0.491) +2026-07-13 08:30:31,343 | INFO | +[886.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,343 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,343 | INFO | Music 0.778 0.000 0.506 ✓ +2026-07-13 08:30:31,343 | INFO | Middle Eastern music 0.135 0.000 0.088 ✗ +2026-07-13 08:30:31,343 | INFO | Singing 0.121 0.000 0.078 ✗ +2026-07-13 08:30:31,343 | INFO | Folk music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:31,343 | INFO | Sitar 0.088 0.000 0.057 ✗ +2026-07-13 08:30:31,343 | INFO | Music of Bollywood 0.075 0.000 0.049 ✗ +2026-07-13 08:30:31,343 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:31,371 | INFO | +[886.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,371 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,375 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:31,375 | INFO | Middle Eastern music 0.198 0.000 0.129 ✓ +2026-07-13 08:30:31,376 | INFO | Folk music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:31,376 | INFO | Singing 0.135 0.000 0.087 ✗ +2026-07-13 08:30:31,376 | INFO | Carnatic music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:31,376 | INFO | Sitar 0.097 0.000 0.063 ✗ +2026-07-13 08:30:31,377 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:31,400 | INFO | +[887.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,400 | INFO | Music 0.719 0.000 0.468 ✓ +2026-07-13 08:30:31,400 | INFO | Singing 0.143 0.000 0.093 ✗ +2026-07-13 08:30:31,400 | INFO | Middle Eastern music 0.122 0.000 0.079 ✗ +2026-07-13 08:30:31,400 | INFO | Mantra 0.098 0.000 0.063 ✗ +2026-07-13 08:30:31,400 | INFO | Folk music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:31,400 | INFO | Music of Bollywood 0.041 0.000 0.027 ✗ +2026-07-13 08:30:31,400 | INFO | → WINNER: Music (combined=0.468) +2026-07-13 08:30:31,426 | INFO | +[887.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,433 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,433 | INFO | Music 0.706 0.000 0.459 ✓ +2026-07-13 08:30:31,433 | INFO | Singing 0.216 0.000 0.140 ✓ +2026-07-13 08:30:31,433 | INFO | Middle Eastern music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:31,433 | INFO | Chant 0.085 0.000 0.055 ✗ +2026-07-13 08:30:31,433 | INFO | Mantra 0.067 0.000 0.043 ✗ +2026-07-13 08:30:31,433 | INFO | Vocal music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:31,433 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:31,458 | INFO | +[887.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,458 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,458 | INFO | Music 0.727 0.000 0.472 ✓ +2026-07-13 08:30:31,458 | INFO | Singing 0.177 0.000 0.115 ✗ +2026-07-13 08:30:31,458 | INFO | → WINNER: Music (combined=0.472) +2026-07-13 08:30:31,485 | INFO | +[887.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,491 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,491 | INFO | Music 0.237 0.000 0.154 ✓ +2026-07-13 08:30:31,491 | INFO | Singing 0.081 0.000 0.053 ✗ +2026-07-13 08:30:31,493 | INFO | Gargling 0.078 0.000 0.051 ✗ +2026-07-13 08:30:31,493 | INFO | Chant 0.065 0.000 0.042 ✗ +2026-07-13 08:30:31,493 | INFO | → WINNER: Music (combined=0.154) +2026-07-13 08:30:31,516 | INFO | +[887.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,516 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,516 | INFO | Music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:31,516 | INFO | → no winner +2026-07-13 08:30:31,544 | INFO | +[888.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,544 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,544 | INFO | Music 0.183 0.000 0.119 ✗ +2026-07-13 08:30:31,549 | INFO | → no winner +2026-07-13 08:30:31,573 | INFO | +[888.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,575 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,575 | INFO | Music 0.644 0.000 0.418 ✓ +2026-07-13 08:30:31,575 | INFO | Ding 0.084 0.000 0.054 ✗ +2026-07-13 08:30:31,575 | INFO | Mantra 0.069 0.000 0.044 ✗ +2026-07-13 08:30:31,575 | INFO | Jingle, tinkle 0.062 0.000 0.040 ✗ +2026-07-13 08:30:31,575 | INFO | → WINNER: Music (combined=0.418) +2026-07-13 08:30:31,603 | INFO | +[888.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,603 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,603 | INFO | Music 0.676 0.000 0.440 ✓ +2026-07-13 08:30:31,603 | INFO | Mantra 0.173 0.000 0.112 ✗ +2026-07-13 08:30:31,603 | INFO | Ding 0.073 0.000 0.047 ✗ +2026-07-13 08:30:31,603 | INFO | Bicycle bell 0.063 0.000 0.041 ✗ +2026-07-13 08:30:31,603 | INFO | → WINNER: Music (combined=0.440) +2026-07-13 08:30:31,631 | INFO | +[888.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,631 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,631 | INFO | Music 0.681 0.000 0.443 ✓ +2026-07-13 08:30:31,631 | INFO | Mantra 0.257 0.000 0.167 ✓ +2026-07-13 08:30:31,631 | INFO | Carnatic music 0.116 0.000 0.075 ✗ +2026-07-13 08:30:31,631 | INFO | Singing 0.077 0.000 0.050 ✗ +2026-07-13 08:30:31,631 | INFO | Ding 0.074 0.000 0.048 ✗ +2026-07-13 08:30:31,631 | INFO | Folk music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:31,631 | INFO | → WINNER: Music (combined=0.443) +2026-07-13 08:30:31,657 | INFO | +[888.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,657 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,657 | INFO | Music 0.720 0.000 0.468 ✓ +2026-07-13 08:30:31,657 | INFO | Carnatic music 0.500 0.000 0.325 ✓ +2026-07-13 08:30:31,665 | INFO | Mantra 0.497 0.000 0.323 ✓ +2026-07-13 08:30:31,665 | INFO | Singing 0.084 0.000 0.054 ✗ +2026-07-13 08:30:31,665 | INFO | Sitar 0.080 0.000 0.052 ✗ +2026-07-13 08:30:31,665 | INFO | Song 0.069 0.000 0.045 ✗ +2026-07-13 08:30:31,665 | INFO | → WINNER: Music (combined=0.468) +2026-07-13 08:30:31,689 | INFO | +[889.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-07-13 08:30:31,689 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,689 | INFO | Music 0.706 0.000 0.459 ✓ +2026-07-13 08:30:31,689 | INFO | Mantra 0.616 0.000 0.401 ✓ +2026-07-13 08:30:31,689 | INFO | Carnatic music 0.478 0.000 0.311 ✓ +2026-07-13 08:30:31,689 | INFO | Singing 0.097 0.000 0.063 ✗ +2026-07-13 08:30:31,689 | INFO | Chant 0.081 0.000 0.053 ✗ +2026-07-13 08:30:31,689 | INFO | Tabla 0.078 0.000 0.051 ✗ +2026-07-13 08:30:31,689 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:31,715 | INFO | +[889.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,722 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,723 | INFO | Music 0.679 0.000 0.442 ✓ +2026-07-13 08:30:31,723 | INFO | Carnatic music 0.418 0.000 0.272 ✓ +2026-07-13 08:30:31,723 | INFO | Tabla 0.318 0.000 0.206 ✓ +2026-07-13 08:30:31,723 | INFO | Mantra 0.312 0.000 0.203 ✓ +2026-07-13 08:30:31,725 | INFO | Singing 0.153 0.000 0.099 ✗ +2026-07-13 08:30:31,725 | INFO | Percussion 0.118 0.000 0.077 ✗ +2026-07-13 08:30:31,726 | INFO | → WINNER: Music (combined=0.442) +2026-07-13 08:30:31,753 | INFO | +[889.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,753 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,753 | INFO | Music 0.631 0.000 0.410 ✓ +2026-07-13 08:30:31,755 | INFO | Mantra 0.414 0.000 0.269 ✓ +2026-07-13 08:30:31,755 | INFO | Chant 0.259 0.000 0.169 ✓ +2026-07-13 08:30:31,756 | INFO | Carnatic music 0.191 0.000 0.124 ✓ +2026-07-13 08:30:31,756 | INFO | Singing 0.100 0.000 0.065 ✗ +2026-07-13 08:30:31,756 | INFO | Tabla 0.095 0.000 0.062 ✗ +2026-07-13 08:30:31,756 | INFO | → WINNER: Music (combined=0.410) +2026-07-13 08:30:31,783 | INFO | +[889.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,783 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,783 | INFO | Music 0.460 0.000 0.299 ✓ +2026-07-13 08:30:31,783 | INFO | Mantra 0.343 0.000 0.223 ✓ +2026-07-13 08:30:31,783 | INFO | Chant 0.226 0.000 0.147 ✓ +2026-07-13 08:30:31,783 | INFO | Carnatic music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:31,783 | INFO | Singing 0.090 0.000 0.059 ✗ +2026-07-13 08:30:31,783 | INFO | Middle Eastern music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:31,783 | INFO | → WINNER: Music (combined=0.299) +2026-07-13 08:30:31,812 | INFO | +[889.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,812 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,812 | INFO | Music 0.692 0.000 0.450 ✓ +2026-07-13 08:30:31,812 | INFO | Middle Eastern music 0.125 0.000 0.082 ✗ +2026-07-13 08:30:31,812 | INFO | Sitar 0.103 0.000 0.067 ✗ +2026-07-13 08:30:31,812 | INFO | Musical instrument 0.090 0.000 0.059 ✗ +2026-07-13 08:30:31,812 | INFO | Folk music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:31,812 | INFO | Traditional music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:31,812 | INFO | → WINNER: Music (combined=0.450) +2026-07-13 08:30:31,837 | INFO | +[890.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,837 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,837 | INFO | Music 0.772 0.000 0.501 ✓ +2026-07-13 08:30:31,837 | INFO | Musical instrument 0.117 0.000 0.076 ✗ +2026-07-13 08:30:31,837 | INFO | Middle Eastern music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:31,837 | INFO | Folk music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:31,837 | INFO | Traditional music 0.076 0.000 0.050 ✗ +2026-07-13 08:30:31,837 | INFO | Sitar 0.045 0.000 0.029 ✗ +2026-07-13 08:30:31,837 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:31,869 | INFO | +[890.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,869 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,869 | INFO | Music 0.768 0.000 0.499 ✓ +2026-07-13 08:30:31,869 | INFO | Sitar 0.149 0.000 0.097 ✗ +2026-07-13 08:30:31,869 | INFO | Traditional music 0.132 0.000 0.086 ✗ +2026-07-13 08:30:31,869 | INFO | Musical instrument 0.123 0.000 0.080 ✗ +2026-07-13 08:30:31,869 | INFO | Folk music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:31,869 | INFO | Middle Eastern music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:31,869 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:31,895 | INFO | +[890.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,895 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,895 | INFO | Music 0.789 0.000 0.513 ✓ +2026-07-13 08:30:31,895 | INFO | Middle Eastern music 0.189 0.000 0.123 ✓ +2026-07-13 08:30:31,895 | INFO | Folk music 0.132 0.000 0.086 ✗ +2026-07-13 08:30:31,895 | INFO | Musical instrument 0.128 0.000 0.083 ✗ +2026-07-13 08:30:31,895 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:31,895 | INFO | Banjo 0.104 0.000 0.068 ✗ +2026-07-13 08:30:31,895 | INFO | → WINNER: Music (combined=0.513) +2026-07-13 08:30:31,928 | INFO | +[890.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,928 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,928 | INFO | Music 0.800 0.000 0.520 ✓ +2026-07-13 08:30:31,928 | INFO | Musical instrument 0.210 0.000 0.137 ✓ +2026-07-13 08:30:31,928 | INFO | Singing 0.120 0.000 0.078 ✗ +2026-07-13 08:30:31,928 | INFO | Sitar 0.084 0.000 0.055 ✗ +2026-07-13 08:30:31,928 | INFO | Folk music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:31,928 | INFO | Middle Eastern music 0.081 0.000 0.052 ✗ +2026-07-13 08:30:31,928 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:31,953 | INFO | +[890.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,953 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,953 | INFO | Music 0.822 0.000 0.534 ✓ +2026-07-13 08:30:31,953 | INFO | Mantra 0.214 0.000 0.139 ✓ +2026-07-13 08:30:31,953 | INFO | Chant 0.149 0.000 0.097 ✗ +2026-07-13 08:30:31,960 | INFO | Singing 0.146 0.000 0.095 ✗ +2026-07-13 08:30:31,960 | INFO | Middle Eastern music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:31,960 | INFO | Musical instrument 0.089 0.000 0.058 ✗ +2026-07-13 08:30:31,960 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:31,986 | INFO | +[891.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:31,986 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:31,986 | INFO | Music 0.806 0.000 0.524 ✓ +2026-07-13 08:30:31,986 | INFO | Musical instrument 0.104 0.000 0.067 ✗ +2026-07-13 08:30:31,986 | INFO | Mantra 0.095 0.000 0.061 ✗ +2026-07-13 08:30:31,986 | INFO | Singing 0.078 0.000 0.051 ✗ +2026-07-13 08:30:31,986 | INFO | Chant 0.070 0.000 0.045 ✗ +2026-07-13 08:30:31,986 | INFO | Middle Eastern music 0.065 0.000 0.043 ✗ +2026-07-13 08:30:31,986 | INFO | → WINNER: Music (combined=0.524) +2026-07-13 08:30:32,009 | INFO | +[891.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,017 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,018 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:32,018 | INFO | Mantra 0.373 0.000 0.242 ✓ +2026-07-13 08:30:32,018 | INFO | Chant 0.274 0.000 0.178 ✓ +2026-07-13 08:30:32,018 | INFO | Singing 0.103 0.000 0.067 ✗ +2026-07-13 08:30:32,018 | INFO | Vocal music 0.073 0.000 0.047 ✗ +2026-07-13 08:30:32,018 | INFO | Middle Eastern music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:32,018 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:32,042 | INFO | +[891.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,042 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,042 | INFO | Music 0.645 0.000 0.420 ✓ +2026-07-13 08:30:32,042 | INFO | Mantra 0.526 0.000 0.342 ✓ +2026-07-13 08:30:32,042 | INFO | Chant 0.441 0.000 0.287 ✓ +2026-07-13 08:30:32,042 | INFO | Middle Eastern music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:32,042 | INFO | Vocal music 0.064 0.000 0.041 ✗ +2026-07-13 08:30:32,042 | INFO | → WINNER: Music (combined=0.420) +2026-07-13 08:30:32,074 | INFO | +[891.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,074 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,074 | INFO | Mantra 0.540 0.000 0.351 ✓ +2026-07-13 08:30:32,074 | INFO | Chant 0.505 0.000 0.328 ✓ +2026-07-13 08:30:32,074 | INFO | Music 0.334 0.000 0.217 ✓ +2026-07-13 08:30:32,074 | INFO | Vocal music 0.062 0.000 0.041 ✗ +2026-07-13 08:30:32,074 | INFO | → WINNER: Mantra (combined=0.351) +2026-07-13 08:30:32,103 | INFO | +[891.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,103 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,103 | INFO | Mantra 0.347 0.000 0.225 ✓ +2026-07-13 08:30:32,104 | INFO | Chant 0.342 0.000 0.222 ✓ +2026-07-13 08:30:32,104 | INFO | Music 0.271 0.000 0.176 ✓ +2026-07-13 08:30:32,104 | INFO | Male singing 0.076 0.000 0.050 ✗ +2026-07-13 08:30:32,104 | INFO | → WINNER: Mantra (combined=0.225) +2026-07-13 08:30:32,126 | INFO | +[892.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,126 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,132 | INFO | Music 0.683 0.000 0.444 ✓ +2026-07-13 08:30:32,132 | INFO | Mantra 0.121 0.000 0.079 ✗ +2026-07-13 08:30:32,132 | INFO | Singing 0.101 0.000 0.066 ✗ +2026-07-13 08:30:32,133 | INFO | Musical instrument 0.068 0.000 0.044 ✗ +2026-07-13 08:30:32,133 | INFO | → WINNER: Music (combined=0.444) +2026-07-13 08:30:32,157 | INFO | +[892.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,157 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,157 | INFO | Music 0.738 0.000 0.480 ✓ +2026-07-13 08:30:32,157 | INFO | Singing 0.158 0.000 0.103 ✗ +2026-07-13 08:30:32,157 | INFO | Musical instrument 0.107 0.000 0.070 ✗ +2026-07-13 08:30:32,157 | INFO | Mantra 0.080 0.000 0.052 ✗ +2026-07-13 08:30:32,157 | INFO | Middle Eastern music 0.074 0.000 0.048 ✗ +2026-07-13 08:30:32,157 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:32,181 | INFO | +[892.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,189 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,189 | INFO | Music 0.623 0.000 0.405 ✓ +2026-07-13 08:30:32,189 | INFO | Mantra 0.099 0.000 0.064 ✗ +2026-07-13 08:30:32,189 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:32,189 | INFO | Musical instrument 0.076 0.000 0.050 ✗ +2026-07-13 08:30:32,189 | INFO | → WINNER: Music (combined=0.405) +2026-07-13 08:30:32,214 | INFO | +[892.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,214 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,214 | INFO | Music 0.622 0.000 0.404 ✓ +2026-07-13 08:30:32,214 | INFO | Mantra 0.197 0.000 0.128 ✓ +2026-07-13 08:30:32,214 | INFO | Singing 0.157 0.000 0.102 ✗ +2026-07-13 08:30:32,214 | INFO | Carnatic music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:32,214 | INFO | Middle Eastern music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:32,214 | INFO | Musical instrument 0.064 0.000 0.041 ✗ +2026-07-13 08:30:32,214 | INFO | → WINNER: Music (combined=0.404) +2026-07-13 08:30:32,248 | INFO | +[892.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,248 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,251 | INFO | Music 0.653 0.000 0.424 ✓ +2026-07-13 08:30:32,251 | INFO | Singing 0.162 0.000 0.105 ✗ +2026-07-13 08:30:32,251 | INFO | Mantra 0.095 0.000 0.062 ✗ +2026-07-13 08:30:32,251 | INFO | Vocal music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:32,251 | INFO | Chant 0.069 0.000 0.045 ✗ +2026-07-13 08:30:32,251 | INFO | A capella 0.053 0.000 0.034 ✗ +2026-07-13 08:30:32,251 | INFO | → WINNER: Music (combined=0.424) +2026-07-13 08:30:32,274 | INFO | +[893.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,274 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,274 | INFO | Music 0.766 0.000 0.498 ✓ +2026-07-13 08:30:32,274 | INFO | Mantra 0.223 0.000 0.145 ✓ +2026-07-13 08:30:32,274 | INFO | Singing 0.209 0.000 0.136 ✓ +2026-07-13 08:30:32,274 | INFO | Chant 0.142 0.000 0.092 ✗ +2026-07-13 08:30:32,280 | INFO | Vocal music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:32,280 | INFO | A capella 0.108 0.000 0.070 ✗ +2026-07-13 08:30:32,280 | INFO | → WINNER: Music (combined=0.498) +2026-07-13 08:30:32,304 | INFO | +[893.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,304 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,304 | INFO | Music 0.618 0.000 0.402 ✓ +2026-07-13 08:30:32,304 | INFO | Mantra 0.194 0.000 0.126 ✓ +2026-07-13 08:30:32,304 | INFO | Singing 0.138 0.000 0.089 ✗ +2026-07-13 08:30:32,304 | INFO | Chant 0.120 0.000 0.078 ✗ +2026-07-13 08:30:32,304 | INFO | Vocal music 0.060 0.000 0.039 ✗ +2026-07-13 08:30:32,304 | INFO | → WINNER: Music (combined=0.402) +2026-07-13 08:30:32,335 | INFO | +[893.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,335 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,335 | INFO | Mantra 0.315 0.000 0.205 ✓ +2026-07-13 08:30:32,335 | INFO | Music 0.302 0.000 0.197 ✓ +2026-07-13 08:30:32,335 | INFO | Chant 0.198 0.000 0.128 ✓ +2026-07-13 08:30:32,337 | INFO | Singing 0.099 0.000 0.065 ✗ +2026-07-13 08:30:32,337 | INFO | → WINNER: Mantra (combined=0.205) +2026-07-13 08:30:32,362 | INFO | +[893.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,362 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,362 | INFO | Music 0.173 0.000 0.112 ✗ +2026-07-13 08:30:32,362 | INFO | Mantra 0.152 0.000 0.099 ✗ +2026-07-13 08:30:32,365 | INFO | Chant 0.083 0.000 0.054 ✗ +2026-07-13 08:30:32,365 | INFO | → no winner +2026-07-13 08:30:32,391 | INFO | +[893.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,391 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,391 | INFO | Music 0.759 0.000 0.493 ✓ +2026-07-13 08:30:32,391 | INFO | Singing 0.178 0.000 0.116 ✗ +2026-07-13 08:30:32,394 | INFO | Mantra 0.150 0.000 0.098 ✗ +2026-07-13 08:30:32,394 | INFO | Middle Eastern music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:32,394 | INFO | Chant 0.089 0.000 0.058 ✗ +2026-07-13 08:30:32,394 | INFO | Musical instrument 0.066 0.000 0.043 ✗ +2026-07-13 08:30:32,394 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:32,422 | INFO | +[894.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,422 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,423 | INFO | Music 0.727 0.000 0.473 ✓ +2026-07-13 08:30:32,423 | INFO | Singing 0.230 0.000 0.150 ✓ +2026-07-13 08:30:32,423 | INFO | Male singing 0.213 0.000 0.138 ✓ +2026-07-13 08:30:32,423 | INFO | Chant 0.090 0.000 0.059 ✗ +2026-07-13 08:30:32,423 | INFO | Vocal music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:32,423 | INFO | Mantra 0.076 0.000 0.050 ✗ +2026-07-13 08:30:32,423 | INFO | → WINNER: Music (combined=0.473) +2026-07-13 08:30:32,451 | INFO | +[894.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,453 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,453 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:32,453 | INFO | Singing 0.248 0.000 0.162 ✓ +2026-07-13 08:30:32,453 | INFO | Chant 0.127 0.000 0.083 ✗ +2026-07-13 08:30:32,453 | INFO | Gospel music 0.122 0.000 0.080 ✗ +2026-07-13 08:30:32,453 | INFO | Mantra 0.120 0.000 0.078 ✗ +2026-07-13 08:30:32,453 | INFO | Choir 0.095 0.000 0.061 ✗ +2026-07-13 08:30:32,453 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:32,477 | INFO | +[894.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,477 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,477 | INFO | Music 0.803 0.000 0.522 ✓ +2026-07-13 08:30:32,484 | INFO | Singing 0.218 0.000 0.142 ✓ +2026-07-13 08:30:32,484 | INFO | Middle Eastern music 0.173 0.000 0.113 ✗ +2026-07-13 08:30:32,484 | INFO | Mantra 0.159 0.000 0.103 ✗ +2026-07-13 08:30:32,484 | INFO | Chant 0.137 0.000 0.089 ✗ +2026-07-13 08:30:32,484 | INFO | Folk music 0.118 0.000 0.077 ✗ +2026-07-13 08:30:32,484 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:32,509 | INFO | +[894.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,509 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,509 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:32,509 | INFO | Singing 0.238 0.000 0.154 ✓ +2026-07-13 08:30:32,509 | INFO | Middle Eastern music 0.097 0.000 0.063 ✗ +2026-07-13 08:30:32,509 | INFO | Music of Asia 0.064 0.000 0.041 ✗ +2026-07-13 08:30:32,509 | INFO | Music of Bollywood 0.044 0.000 0.029 ✗ +2026-07-13 08:30:32,509 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:32,539 | INFO | +[894.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,541 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,543 | INFO | Music 0.658 0.000 0.427 ✓ +2026-07-13 08:30:32,543 | INFO | Singing 0.205 0.000 0.133 ✓ +2026-07-13 08:30:32,543 | INFO | Middle Eastern music 0.192 0.000 0.125 ✓ +2026-07-13 08:30:32,543 | INFO | Chant 0.078 0.000 0.050 ✗ +2026-07-13 08:30:32,543 | INFO | Music of Bollywood 0.057 0.000 0.037 ✗ +2026-07-13 08:30:32,543 | INFO | → WINNER: Music (combined=0.427) +2026-07-13 08:30:32,566 | INFO | +[895.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,566 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,566 | INFO | Music 0.485 0.000 0.315 ✓ +2026-07-13 08:30:32,566 | INFO | Chant 0.160 0.000 0.104 ✗ +2026-07-13 08:30:32,574 | INFO | Singing 0.158 0.000 0.103 ✗ +2026-07-13 08:30:32,574 | INFO | Mantra 0.094 0.000 0.061 ✗ +2026-07-13 08:30:32,574 | INFO | A capella 0.057 0.000 0.037 ✗ +2026-07-13 08:30:32,574 | INFO | → WINNER: Music (combined=0.315) +2026-07-13 08:30:32,599 | INFO | +[895.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,599 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,599 | INFO | Music 0.505 0.000 0.329 ✓ +2026-07-13 08:30:32,599 | INFO | Chant 0.209 0.000 0.136 ✓ +2026-07-13 08:30:32,599 | INFO | Mantra 0.163 0.000 0.106 ✗ +2026-07-13 08:30:32,599 | INFO | Singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:32,599 | INFO | → WINNER: Music (combined=0.329) +2026-07-13 08:30:32,632 | INFO | +[895.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,633 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,633 | INFO | Music 0.584 0.000 0.380 ✓ +2026-07-13 08:30:32,633 | INFO | Singing 0.145 0.000 0.094 ✗ +2026-07-13 08:30:32,633 | INFO | → WINNER: Music (combined=0.380) +2026-07-13 08:30:32,655 | INFO | +[895.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,655 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,655 | INFO | Music 0.476 0.000 0.309 ✓ +2026-07-13 08:30:32,655 | INFO | Singing 0.109 0.000 0.071 ✗ +2026-07-13 08:30:32,655 | INFO | Mantra 0.093 0.000 0.060 ✗ +2026-07-13 08:30:32,655 | INFO | → WINNER: Music (combined=0.309) +2026-07-13 08:30:32,688 | INFO | +[895.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,688 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,688 | INFO | Music 0.745 0.000 0.484 ✓ +2026-07-13 08:30:32,688 | INFO | Mantra 0.124 0.000 0.080 ✗ +2026-07-13 08:30:32,688 | INFO | Singing 0.110 0.000 0.071 ✗ +2026-07-13 08:30:32,688 | INFO | Folk music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:32,688 | INFO | Music of Asia 0.071 0.000 0.046 ✗ +2026-07-13 08:30:32,688 | INFO | Middle Eastern music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:32,688 | INFO | → WINNER: Music (combined=0.484) +2026-07-13 08:30:32,718 | INFO | +[896.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,720 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,720 | INFO | Music 0.637 0.000 0.414 ✓ +2026-07-13 08:30:32,720 | INFO | Ding 0.121 0.000 0.079 ✗ +2026-07-13 08:30:32,720 | INFO | Mantra 0.103 0.000 0.067 ✗ +2026-07-13 08:30:32,722 | INFO | Jingle, tinkle 0.100 0.000 0.065 ✗ +2026-07-13 08:30:32,722 | INFO | Singing 0.089 0.000 0.058 ✗ +2026-07-13 08:30:32,722 | INFO | → WINNER: Music (combined=0.414) +2026-07-13 08:30:32,748 | INFO | +[896.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,748 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,748 | INFO | Music 0.709 0.000 0.461 ✓ +2026-07-13 08:30:32,748 | INFO | Mantra 0.225 0.000 0.146 ✓ +2026-07-13 08:30:32,748 | INFO | Ding 0.090 0.000 0.059 ✗ +2026-07-13 08:30:32,748 | INFO | Singing 0.079 0.000 0.051 ✗ +2026-07-13 08:30:32,748 | INFO | Carnatic music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:32,748 | INFO | Music of Bollywood 0.032 0.000 0.021 ✗ +2026-07-13 08:30:32,748 | INFO | → WINNER: Music (combined=0.461) +2026-07-13 08:30:32,774 | INFO | +[896.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,774 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,774 | INFO | Music 0.724 0.000 0.471 ✓ +2026-07-13 08:30:32,774 | INFO | Mantra 0.478 0.000 0.311 ✓ +2026-07-13 08:30:32,774 | INFO | Carnatic music 0.266 0.000 0.173 ✓ +2026-07-13 08:30:32,774 | INFO | Singing 0.115 0.000 0.075 ✗ +2026-07-13 08:30:32,774 | INFO | Chant 0.095 0.000 0.062 ✗ +2026-07-13 08:30:32,774 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:32,805 | INFO | +[896.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,805 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,805 | INFO | Music 0.566 0.000 0.367 ✓ +2026-07-13 08:30:32,805 | INFO | Mantra 0.430 0.000 0.280 ✓ +2026-07-13 08:30:32,805 | INFO | Chant 0.181 0.000 0.117 ✗ +2026-07-13 08:30:32,805 | INFO | Singing 0.147 0.000 0.096 ✗ +2026-07-13 08:30:32,805 | INFO | Vocal music 0.101 0.000 0.066 ✗ +2026-07-13 08:30:32,805 | INFO | Carnatic music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:32,805 | INFO | → WINNER: Music (combined=0.367) +2026-07-13 08:30:32,834 | INFO | +[896.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,870 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,870 | INFO | Mantra 0.532 0.000 0.346 ✓ +2026-07-13 08:30:32,870 | INFO | Music 0.461 0.000 0.300 ✓ +2026-07-13 08:30:32,870 | INFO | Chant 0.362 0.000 0.236 ✓ +2026-07-13 08:30:32,870 | INFO | Vocal music 0.136 0.000 0.088 ✗ +2026-07-13 08:30:32,870 | INFO | Singing 0.111 0.000 0.072 ✗ +2026-07-13 08:30:32,870 | INFO | A capella 0.099 0.000 0.064 ✗ +2026-07-13 08:30:32,870 | INFO | → WINNER: Mantra (combined=0.346) +2026-07-13 08:30:32,937 | INFO | +[897.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,937 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,937 | INFO | Mantra 0.490 0.000 0.319 ✓ +2026-07-13 08:30:32,937 | INFO | Music 0.318 0.000 0.206 ✓ +2026-07-13 08:30:32,937 | INFO | Chant 0.292 0.000 0.190 ✓ +2026-07-13 08:30:32,937 | INFO | Singing 0.098 0.000 0.064 ✗ +2026-07-13 08:30:32,937 | INFO | Vocal music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:32,937 | INFO | A capella 0.076 0.000 0.050 ✗ +2026-07-13 08:30:32,937 | INFO | → WINNER: Mantra (combined=0.319) +2026-07-13 08:30:32,987 | INFO | +[897.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:32,987 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:32,994 | INFO | Music 0.613 0.000 0.399 ✓ +2026-07-13 08:30:32,994 | INFO | Mantra 0.273 0.000 0.177 ✓ +2026-07-13 08:30:32,994 | INFO | Chant 0.134 0.000 0.087 ✗ +2026-07-13 08:30:32,994 | INFO | Sitar 0.037 0.000 0.024 ✗ +2026-07-13 08:30:32,994 | INFO | → WINNER: Music (combined=0.399) +2026-07-13 08:30:33,044 | INFO | +[897.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,044 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,044 | INFO | Music 0.647 0.000 0.420 ✓ +2026-07-13 08:30:33,044 | INFO | Musical instrument 0.085 0.000 0.055 ✗ +2026-07-13 08:30:33,044 | INFO | Echo 0.057 0.000 0.037 ✗ +2026-07-13 08:30:33,044 | INFO | Sitar 0.032 0.000 0.021 ✗ +2026-07-13 08:30:33,044 | INFO | → WINNER: Music (combined=0.420) +2026-07-13 08:30:33,150 | INFO | +[897.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,150 | INFO | Music 0.781 0.000 0.508 ✓ +2026-07-13 08:30:33,150 | INFO | Sitar 0.306 0.000 0.199 ✓ +2026-07-13 08:30:33,150 | INFO | Carnatic music 0.101 0.000 0.065 ✗ +2026-07-13 08:30:33,150 | INFO | Folk music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:33,150 | INFO | Middle Eastern music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:33,150 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:33,150 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:33,250 | INFO | +[897.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,250 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,250 | INFO | Music 0.759 0.000 0.493 ✓ +2026-07-13 08:30:33,250 | INFO | Folk music 0.150 0.000 0.098 ✗ +2026-07-13 08:30:33,250 | INFO | Sitar 0.137 0.000 0.089 ✗ +2026-07-13 08:30:33,250 | INFO | Middle Eastern music 0.115 0.000 0.075 ✗ +2026-07-13 08:30:33,250 | INFO | Mantra 0.111 0.000 0.072 ✗ +2026-07-13 08:30:33,250 | INFO | Singing 0.099 0.000 0.064 ✗ +2026-07-13 08:30:33,250 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:33,288 | INFO | +[898.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,288 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,288 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:33,288 | INFO | Mantra 0.275 0.000 0.179 ✓ +2026-07-13 08:30:33,288 | INFO | Sitar 0.196 0.000 0.128 ✓ +2026-07-13 08:30:33,288 | INFO | Carnatic music 0.181 0.000 0.117 ✗ +2026-07-13 08:30:33,288 | INFO | Folk music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:33,291 | INFO | Middle Eastern music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:33,291 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:33,316 | INFO | +[898.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,316 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,316 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:33,316 | INFO | Sitar 0.243 0.000 0.158 ✓ +2026-07-13 08:30:33,316 | INFO | Carnatic music 0.224 0.000 0.146 ✓ +2026-07-13 08:30:33,316 | INFO | Mantra 0.212 0.000 0.138 ✓ +2026-07-13 08:30:33,316 | INFO | Singing 0.098 0.000 0.064 ✗ +2026-07-13 08:30:33,316 | INFO | Middle Eastern music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:33,316 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:33,348 | INFO | +[898.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,348 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,348 | INFO | Music 0.828 0.000 0.538 ✓ +2026-07-13 08:30:33,348 | INFO | Middle Eastern music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:33,348 | INFO | Singing 0.158 0.000 0.103 ✗ +2026-07-13 08:30:33,348 | INFO | Mantra 0.147 0.000 0.096 ✗ +2026-07-13 08:30:33,348 | INFO | Musical instrument 0.095 0.000 0.061 ✗ +2026-07-13 08:30:33,348 | INFO | Carnatic music 0.093 0.000 0.060 ✗ +2026-07-13 08:30:33,348 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:33,377 | INFO | +[898.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,377 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,377 | INFO | Music 0.787 0.000 0.511 ✓ +2026-07-13 08:30:33,380 | INFO | Mantra 0.229 0.000 0.149 ✓ +2026-07-13 08:30:33,380 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:33,380 | INFO | Carnatic music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:33,380 | INFO | Chant 0.106 0.000 0.069 ✗ +2026-07-13 08:30:33,380 | INFO | Middle Eastern music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:33,380 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:33,405 | INFO | +[898.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,405 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,405 | INFO | Music 0.507 0.000 0.330 ✓ +2026-07-13 08:30:33,405 | INFO | Chant 0.362 0.000 0.235 ✓ +2026-07-13 08:30:33,405 | INFO | Mantra 0.288 0.000 0.187 ✓ +2026-07-13 08:30:33,405 | INFO | Singing 0.122 0.000 0.079 ✗ +2026-07-13 08:30:33,405 | INFO | Vocal music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:33,405 | INFO | Choir 0.064 0.000 0.042 ✗ +2026-07-13 08:30:33,405 | INFO | → WINNER: Music (combined=0.330) +2026-07-13 08:30:33,437 | INFO | +[899.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,437 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,437 | INFO | Music 0.461 0.000 0.300 ✓ +2026-07-13 08:30:33,437 | INFO | Mantra 0.295 0.000 0.192 ✓ +2026-07-13 08:30:33,437 | INFO | Chant 0.276 0.000 0.179 ✓ +2026-07-13 08:30:33,437 | INFO | Singing 0.120 0.000 0.078 ✗ +2026-07-13 08:30:33,437 | INFO | Vocal music 0.067 0.000 0.043 ✗ +2026-07-13 08:30:33,437 | INFO | → WINNER: Music (combined=0.300) +2026-07-13 08:30:33,462 | INFO | +[899.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,462 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,462 | INFO | Music 0.325 0.000 0.211 ✓ +2026-07-13 08:30:33,462 | INFO | Chant 0.198 0.000 0.129 ✓ +2026-07-13 08:30:33,462 | INFO | Mantra 0.189 0.000 0.123 ✓ +2026-07-13 08:30:33,462 | INFO | Singing 0.164 0.000 0.107 ✗ +2026-07-13 08:30:33,462 | INFO | A capella 0.087 0.000 0.057 ✗ +2026-07-13 08:30:33,462 | INFO | Vocal music 0.084 0.000 0.055 ✗ +2026-07-13 08:30:33,462 | INFO | → WINNER: Music (combined=0.211) +2026-07-13 08:30:33,494 | INFO | +[899.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,494 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,494 | INFO | Music 0.564 0.000 0.367 ✓ +2026-07-13 08:30:33,494 | INFO | Middle Eastern music 0.191 0.000 0.124 ✓ +2026-07-13 08:30:33,494 | INFO | Singing 0.126 0.000 0.082 ✗ +2026-07-13 08:30:33,494 | INFO | Mantra 0.085 0.000 0.055 ✗ +2026-07-13 08:30:33,494 | INFO | Folk music 0.067 0.000 0.043 ✗ +2026-07-13 08:30:33,494 | INFO | Chant 0.056 0.000 0.037 ✗ +2026-07-13 08:30:33,494 | INFO | → WINNER: Music (combined=0.367) +2026-07-13 08:30:33,521 | INFO | +[899.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,521 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,521 | INFO | Music 0.784 0.000 0.510 ✓ +2026-07-13 08:30:33,521 | INFO | Singing 0.164 0.000 0.107 ✗ +2026-07-13 08:30:33,521 | INFO | Middle Eastern music 0.133 0.000 0.086 ✗ +2026-07-13 08:30:33,521 | INFO | Folk music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:33,521 | INFO | Mantra 0.077 0.000 0.050 ✗ +2026-07-13 08:30:33,521 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:33,521 | INFO | → WINNER: Music (combined=0.510) +2026-07-13 08:30:33,552 | INFO | +[899.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,552 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,552 | INFO | Music 0.801 0.000 0.521 ✓ +2026-07-13 08:30:33,552 | INFO | Music of Bollywood 0.222 0.000 0.144 ✓ +2026-07-13 08:30:33,552 | INFO | Middle Eastern music 0.215 0.000 0.140 ✓ +2026-07-13 08:30:33,552 | INFO | Singing 0.175 0.000 0.114 ✗ +2026-07-13 08:30:33,552 | INFO | Folk music 0.122 0.000 0.079 ✗ +2026-07-13 08:30:33,552 | INFO | Song 0.066 0.000 0.043 ✗ +2026-07-13 08:30:33,552 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:30:33,582 | INFO | +[900.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,582 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,582 | INFO | Music 0.849 0.000 0.552 ✓ +2026-07-13 08:30:33,582 | INFO | Singing 0.190 0.000 0.123 ✓ +2026-07-13 08:30:33,582 | INFO | Musical instrument 0.153 0.000 0.100 ✗ +2026-07-13 08:30:33,582 | INFO | Folk music 0.139 0.000 0.090 ✗ +2026-07-13 08:30:33,582 | INFO | Middle Eastern music 0.135 0.000 0.088 ✗ +2026-07-13 08:30:33,585 | INFO | Music of Bollywood 0.060 0.000 0.039 ✗ +2026-07-13 08:30:33,585 | INFO | → WINNER: Music (combined=0.552) +2026-07-13 08:30:33,610 | INFO | +[900.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,610 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,610 | INFO | Music 0.791 0.000 0.514 ✓ +2026-07-13 08:30:33,610 | INFO | Singing 0.150 0.000 0.098 ✗ +2026-07-13 08:30:33,610 | INFO | Middle Eastern music 0.093 0.000 0.061 ✗ +2026-07-13 08:30:33,610 | INFO | Folk music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:33,610 | INFO | Musical instrument 0.060 0.000 0.039 ✗ +2026-07-13 08:30:33,610 | INFO | Music of Bollywood 0.045 0.000 0.029 ✗ +2026-07-13 08:30:33,610 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:33,639 | INFO | +[900.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,639 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,639 | INFO | Music 0.699 0.000 0.454 ✓ +2026-07-13 08:30:33,639 | INFO | Singing 0.176 0.000 0.115 ✗ +2026-07-13 08:30:33,639 | INFO | → WINNER: Music (combined=0.454) +2026-07-13 08:30:33,668 | INFO | +[900.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,668 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,668 | INFO | Music 0.534 0.000 0.347 ✓ +2026-07-13 08:30:33,670 | INFO | A capella 0.277 0.000 0.180 ✓ +2026-07-13 08:30:33,670 | INFO | Singing 0.234 0.000 0.152 ✓ +2026-07-13 08:30:33,670 | INFO | Vocal music 0.194 0.000 0.126 ✓ +2026-07-13 08:30:33,670 | INFO | Chant 0.116 0.000 0.075 ✗ +2026-07-13 08:30:33,670 | INFO | Choir 0.099 0.000 0.064 ✗ +2026-07-13 08:30:33,670 | INFO | → WINNER: Music (combined=0.347) +2026-07-13 08:30:33,694 | INFO | +[900.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,694 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,694 | INFO | Music 0.594 0.000 0.386 ✓ +2026-07-13 08:30:33,694 | INFO | Mantra 0.201 0.000 0.131 ✓ +2026-07-13 08:30:33,694 | INFO | Middle Eastern music 0.158 0.000 0.103 ✗ +2026-07-13 08:30:33,694 | INFO | Chant 0.152 0.000 0.099 ✗ +2026-07-13 08:30:33,694 | INFO | Singing 0.134 0.000 0.087 ✗ +2026-07-13 08:30:33,694 | INFO | Music of Bollywood 0.041 0.000 0.027 ✗ +2026-07-13 08:30:33,701 | INFO | → WINNER: Music (combined=0.386) +2026-07-13 08:30:33,726 | INFO | +[901.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,726 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,726 | INFO | Music 0.271 0.000 0.176 ✓ +2026-07-13 08:30:33,726 | INFO | Mantra 0.257 0.000 0.167 ✓ +2026-07-13 08:30:33,726 | INFO | Chant 0.112 0.000 0.073 ✗ +2026-07-13 08:30:33,726 | INFO | Singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:33,726 | INFO | → WINNER: Music (combined=0.176) +2026-07-13 08:30:33,751 | INFO | +[901.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,751 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,751 | INFO | Music 0.421 0.000 0.273 ✓ +2026-07-13 08:30:33,751 | INFO | Mantra 0.183 0.000 0.119 ✗ +2026-07-13 08:30:33,751 | INFO | Singing 0.082 0.000 0.054 ✗ +2026-07-13 08:30:33,751 | INFO | Chant 0.072 0.000 0.047 ✗ +2026-07-13 08:30:33,751 | INFO | → WINNER: Music (combined=0.273) +2026-07-13 08:30:33,783 | INFO | +[901.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,783 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,784 | INFO | Music 0.813 0.000 0.528 ✓ +2026-07-13 08:30:33,784 | INFO | Middle Eastern music 0.254 0.000 0.165 ✓ +2026-07-13 08:30:33,784 | INFO | Carnatic music 0.190 0.000 0.123 ✓ +2026-07-13 08:30:33,784 | INFO | Folk music 0.153 0.000 0.100 ✗ +2026-07-13 08:30:33,784 | INFO | Mantra 0.135 0.000 0.088 ✗ +2026-07-13 08:30:33,784 | INFO | Singing 0.109 0.000 0.071 ✗ +2026-07-13 08:30:33,784 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:33,808 | INFO | +[901.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,808 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,808 | INFO | Music 0.738 0.000 0.479 ✓ +2026-07-13 08:30:33,808 | INFO | Singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:33,808 | INFO | Mantra 0.085 0.000 0.055 ✗ +2026-07-13 08:30:33,808 | INFO | Carnatic music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:33,808 | INFO | Middle Eastern music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:33,808 | INFO | Musical instrument 0.061 0.000 0.040 ✗ +2026-07-13 08:30:33,808 | INFO | → WINNER: Music (combined=0.479) +2026-07-13 08:30:33,838 | INFO | +[901.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,840 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,841 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:33,841 | INFO | Carnatic music 0.330 0.000 0.214 ✓ +2026-07-13 08:30:33,841 | INFO | Musical instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:30:33,841 | INFO | Singing 0.124 0.000 0.080 ✗ +2026-07-13 08:30:33,841 | INFO | Folk music 0.113 0.000 0.074 ✗ +2026-07-13 08:30:33,841 | INFO | Sitar 0.112 0.000 0.073 ✗ +2026-07-13 08:30:33,841 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:33,866 | INFO | +[902.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,866 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,866 | INFO | Music 0.769 0.000 0.500 ✓ +2026-07-13 08:30:33,866 | INFO | Singing 0.120 0.000 0.078 ✗ +2026-07-13 08:30:33,866 | INFO | Carnatic music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:33,866 | INFO | Musical instrument 0.073 0.000 0.047 ✗ +2026-07-13 08:30:33,866 | INFO | Mantra 0.069 0.000 0.044 ✗ +2026-07-13 08:30:33,866 | INFO | Tabla 0.043 0.000 0.028 ✗ +2026-07-13 08:30:33,866 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:33,899 | INFO | +[902.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,899 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,899 | INFO | Music 0.743 0.000 0.483 ✓ +2026-07-13 08:30:33,899 | INFO | Singing 0.129 0.000 0.084 ✗ +2026-07-13 08:30:33,899 | INFO | → WINNER: Music (combined=0.483) +2026-07-13 08:30:33,922 | INFO | +[902.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,922 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,922 | INFO | Music 0.530 0.000 0.345 ✓ +2026-07-13 08:30:33,922 | INFO | → WINNER: Music (combined=0.345) +2026-07-13 08:30:33,953 | INFO | +[902.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,955 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,955 | INFO | Music 0.651 0.000 0.423 ✓ +2026-07-13 08:30:33,955 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:33,955 | INFO | → WINNER: Music (combined=0.423) +2026-07-13 08:30:33,981 | INFO | +[902.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:33,981 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:33,981 | INFO | Music 0.207 0.000 0.135 ✓ +2026-07-13 08:30:33,981 | INFO | → WINNER: Music (combined=0.135) +2026-07-13 08:30:34,007 | INFO | +[903.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,007 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,007 | INFO | Music 0.169 0.000 0.110 ✗ +2026-07-13 08:30:34,007 | INFO | → no winner +2026-07-13 08:30:34,040 | INFO | +[903.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,040 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,040 | INFO | Music 0.580 0.000 0.377 ✓ +2026-07-13 08:30:34,040 | INFO | Mantra 0.091 0.000 0.059 ✗ +2026-07-13 08:30:34,040 | INFO | → WINNER: Music (combined=0.377) +2026-07-13 08:30:34,065 | INFO | +[903.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,065 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,065 | INFO | Music 0.542 0.000 0.352 ✓ +2026-07-13 08:30:34,065 | INFO | Mantra 0.109 0.000 0.071 ✗ +2026-07-13 08:30:34,065 | INFO | Singing 0.083 0.000 0.054 ✗ +2026-07-13 08:30:34,065 | INFO | → WINNER: Music (combined=0.352) +2026-07-13 08:30:34,090 | INFO | +[903.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,090 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,098 | INFO | Music 0.689 0.000 0.448 ✓ +2026-07-13 08:30:34,098 | INFO | Mantra 0.276 0.000 0.179 ✓ +2026-07-13 08:30:34,098 | INFO | Carnatic music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:34,098 | INFO | Singing 0.093 0.000 0.060 ✗ +2026-07-13 08:30:34,098 | INFO | Musical instrument 0.083 0.000 0.054 ✗ +2026-07-13 08:30:34,098 | INFO | Chant 0.052 0.000 0.034 ✗ +2026-07-13 08:30:34,098 | INFO | → WINNER: Music (combined=0.448) +2026-07-13 08:30:34,123 | INFO | +[903.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,123 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,123 | INFO | Music 0.725 0.000 0.471 ✓ +2026-07-13 08:30:34,123 | INFO | Mantra 0.666 0.000 0.433 ✓ +2026-07-13 08:30:34,123 | INFO | Carnatic music 0.333 0.000 0.217 ✓ +2026-07-13 08:30:34,123 | INFO | Chant 0.136 0.000 0.088 ✗ +2026-07-13 08:30:34,123 | INFO | Singing 0.079 0.000 0.051 ✗ +2026-07-13 08:30:34,123 | INFO | Musical instrument 0.070 0.000 0.045 ✗ +2026-07-13 08:30:34,123 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:34,154 | INFO | +[904.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,154 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,156 | INFO | Music 0.731 0.000 0.475 ✓ +2026-07-13 08:30:34,156 | INFO | Mantra 0.465 0.000 0.302 ✓ +2026-07-13 08:30:34,157 | INFO | Carnatic music 0.315 0.000 0.205 ✓ +2026-07-13 08:30:34,157 | INFO | Singing 0.104 0.000 0.068 ✗ +2026-07-13 08:30:34,157 | INFO | Chant 0.100 0.000 0.065 ✗ +2026-07-13 08:30:34,157 | INFO | Musical instrument 0.096 0.000 0.063 ✗ +2026-07-13 08:30:34,157 | INFO | → WINNER: Music (combined=0.475) +2026-07-13 08:30:34,182 | INFO | +[904.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,182 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,182 | INFO | Mantra 0.547 0.000 0.355 ✓ +2026-07-13 08:30:34,182 | INFO | Music 0.542 0.000 0.352 ✓ +2026-07-13 08:30:34,182 | INFO | Chant 0.345 0.000 0.225 ✓ +2026-07-13 08:30:34,182 | INFO | Vocal music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:34,182 | INFO | → WINNER: Mantra (combined=0.355) +2026-07-13 08:30:34,209 | INFO | +[904.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,230 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,230 | INFO | Mantra 0.578 0.000 0.376 ✓ +2026-07-13 08:30:34,230 | INFO | Music 0.483 0.000 0.314 ✓ +2026-07-13 08:30:34,230 | INFO | Chant 0.462 0.000 0.300 ✓ +2026-07-13 08:30:34,230 | INFO | Vocal music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:34,230 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:34,230 | INFO | Choir 0.068 0.000 0.044 ✗ +2026-07-13 08:30:34,230 | INFO | → WINNER: Mantra (combined=0.376) +2026-07-13 08:30:34,270 | INFO | +[904.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,270 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,270 | INFO | Mantra 0.413 0.000 0.269 ✓ +2026-07-13 08:30:34,270 | INFO | Music 0.410 0.000 0.267 ✓ +2026-07-13 08:30:34,270 | INFO | Chant 0.324 0.000 0.211 ✓ +2026-07-13 08:30:34,270 | INFO | Singing 0.108 0.000 0.070 ✗ +2026-07-13 08:30:34,270 | INFO | Vocal music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:34,270 | INFO | Carnatic music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:34,270 | INFO | → WINNER: Mantra (combined=0.269) +2026-07-13 08:30:34,330 | INFO | +[904.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,330 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,330 | INFO | Music 0.329 0.000 0.214 ✓ +2026-07-13 08:30:34,330 | INFO | Mantra 0.232 0.000 0.151 ✓ +2026-07-13 08:30:34,330 | INFO | Carnatic music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:34,330 | INFO | Tabla 0.090 0.000 0.059 ✗ +2026-07-13 08:30:34,330 | INFO | Musical instrument 0.067 0.000 0.044 ✗ +2026-07-13 08:30:34,330 | INFO | Chant 0.067 0.000 0.043 ✗ +2026-07-13 08:30:34,330 | INFO | → WINNER: Music (combined=0.214) +2026-07-13 08:30:34,386 | INFO | +[905.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,386 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,386 | INFO | Music 0.745 0.000 0.484 ✓ +2026-07-13 08:30:34,386 | INFO | Musical instrument 0.300 0.000 0.195 ✓ +2026-07-13 08:30:34,386 | INFO | Tabla 0.173 0.000 0.113 ✗ +2026-07-13 08:30:34,386 | INFO | Plucked string instrument 0.157 0.000 0.102 ✗ +2026-07-13 08:30:34,386 | INFO | Sitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:34,386 | INFO | Carnatic music 0.123 0.000 0.080 ✗ +2026-07-13 08:30:34,386 | INFO | → WINNER: Music (combined=0.484) +2026-07-13 08:30:34,443 | INFO | +[905.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,443 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,443 | INFO | Music 0.755 0.000 0.490 ✓ +2026-07-13 08:30:34,445 | INFO | Sitar 0.191 0.000 0.124 ✓ +2026-07-13 08:30:34,446 | INFO | Tabla 0.144 0.000 0.094 ✗ +2026-07-13 08:30:34,447 | INFO | Musical instrument 0.133 0.000 0.086 ✗ +2026-07-13 08:30:34,447 | INFO | Carnatic music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:34,447 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:34,447 | INFO | → WINNER: Music (combined=0.490) +2026-07-13 08:30:34,476 | INFO | +[905.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,476 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,476 | INFO | Music 0.785 0.000 0.510 ✓ +2026-07-13 08:30:34,476 | INFO | Musical instrument 0.142 0.000 0.092 ✗ +2026-07-13 08:30:34,476 | INFO | Folk music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:34,476 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:34,476 | INFO | Country 0.099 0.000 0.065 ✗ +2026-07-13 08:30:34,476 | INFO | Banjo 0.088 0.000 0.057 ✗ +2026-07-13 08:30:34,476 | INFO | → WINNER: Music (combined=0.510) +2026-07-13 08:30:34,503 | INFO | +[905.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,503 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,503 | INFO | Music 0.792 0.000 0.514 ✓ +2026-07-13 08:30:34,503 | INFO | Musical instrument 0.141 0.000 0.092 ✗ +2026-07-13 08:30:34,503 | INFO | Singing 0.110 0.000 0.072 ✗ +2026-07-13 08:30:34,503 | INFO | Folk music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:34,503 | INFO | Country 0.093 0.000 0.060 ✗ +2026-07-13 08:30:34,509 | INFO | Plucked string instrument 0.086 0.000 0.056 ✗ +2026-07-13 08:30:34,509 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:34,535 | INFO | +[905.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,535 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,535 | INFO | Music 0.794 0.000 0.516 ✓ +2026-07-13 08:30:34,535 | INFO | Singing 0.170 0.000 0.111 ✗ +2026-07-13 08:30:34,535 | INFO | Musical instrument 0.094 0.000 0.061 ✗ +2026-07-13 08:30:34,535 | INFO | Male singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:34,535 | INFO | Country 0.069 0.000 0.045 ✗ +2026-07-13 08:30:34,535 | INFO | Jingle bell 0.062 0.000 0.040 ✗ +2026-07-13 08:30:34,535 | INFO | → WINNER: Music (combined=0.516) +2026-07-13 08:30:34,562 | INFO | +[906.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,562 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,562 | INFO | Music 0.509 0.000 0.331 ✓ +2026-07-13 08:30:34,562 | INFO | Singing 0.128 0.000 0.083 ✗ +2026-07-13 08:30:34,562 | INFO | Male singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:34,562 | INFO | → WINNER: Music (combined=0.331) +2026-07-13 08:30:34,591 | INFO | +[906.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,591 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,591 | INFO | Music 0.274 0.000 0.178 ✓ +2026-07-13 08:30:34,591 | INFO | → WINNER: Music (combined=0.178) +2026-07-13 08:30:34,616 | INFO | +[906.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,616 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,616 | INFO | Music 0.306 0.000 0.199 ✓ +2026-07-13 08:30:34,616 | INFO | Singing 0.083 0.000 0.054 ✗ +2026-07-13 08:30:34,616 | INFO | → WINNER: Music (combined=0.199) +2026-07-13 08:30:34,642 | INFO | +[906.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,642 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,642 | INFO | Music 0.249 0.000 0.162 ✓ +2026-07-13 08:30:34,642 | INFO | → WINNER: Music (combined=0.162) +2026-07-13 08:30:34,673 | INFO | +[906.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,674 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,674 | INFO | Chant 0.307 0.000 0.199 ✓ +2026-07-13 08:30:34,674 | INFO | Music 0.274 0.000 0.178 ✓ +2026-07-13 08:30:34,674 | INFO | Mantra 0.172 0.000 0.112 ✗ +2026-07-13 08:30:34,674 | INFO | → WINNER: Chant (combined=0.199) +2026-07-13 08:30:34,699 | INFO | +[907.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,699 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,699 | INFO | Music 0.454 0.000 0.295 ✓ +2026-07-13 08:30:34,699 | INFO | Mantra 0.211 0.000 0.137 ✓ +2026-07-13 08:30:34,699 | INFO | Chant 0.139 0.000 0.090 ✗ +2026-07-13 08:30:34,699 | INFO | → WINNER: Music (combined=0.295) +2026-07-13 08:30:34,727 | INFO | +[907.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,727 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,731 | INFO | Music 0.657 0.000 0.427 ✓ +2026-07-13 08:30:34,731 | INFO | Mantra 0.236 0.000 0.154 ✓ +2026-07-13 08:30:34,731 | INFO | Chant 0.191 0.000 0.124 ✓ +2026-07-13 08:30:34,731 | INFO | Middle Eastern music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:34,731 | INFO | Singing 0.096 0.000 0.063 ✗ +2026-07-13 08:30:34,731 | INFO | Carnatic music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:34,731 | INFO | → WINNER: Music (combined=0.427) +2026-07-13 08:30:34,758 | INFO | +[907.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,758 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,758 | INFO | Music 0.623 0.000 0.405 ✓ +2026-07-13 08:30:34,758 | INFO | Chant 0.213 0.000 0.139 ✓ +2026-07-13 08:30:34,758 | INFO | Mantra 0.210 0.000 0.137 ✓ +2026-07-13 08:30:34,758 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:34,758 | INFO | Middle Eastern music 0.097 0.000 0.063 ✗ +2026-07-13 08:30:34,758 | INFO | Carnatic music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:34,758 | INFO | → WINNER: Music (combined=0.405) +2026-07-13 08:30:34,789 | INFO | +[907.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,789 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,789 | INFO | Music 0.782 0.000 0.508 ✓ +2026-07-13 08:30:34,789 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:34,789 | INFO | Music of Bollywood 0.171 0.000 0.111 ✗ +2026-07-13 08:30:34,789 | INFO | Middle Eastern music 0.150 0.000 0.098 ✗ +2026-07-13 08:30:34,789 | INFO | Mantra 0.100 0.000 0.065 ✗ +2026-07-13 08:30:34,789 | INFO | Carnatic music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:34,789 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:34,816 | INFO | +[907.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,816 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,816 | INFO | Music 0.616 0.000 0.401 ✓ +2026-07-13 08:30:34,816 | INFO | Singing 0.221 0.000 0.144 ✓ +2026-07-13 08:30:34,816 | INFO | Chant 0.111 0.000 0.072 ✗ +2026-07-13 08:30:34,816 | INFO | Male singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:34,816 | INFO | Mantra 0.083 0.000 0.054 ✗ +2026-07-13 08:30:34,816 | INFO | Middle Eastern music 0.081 0.000 0.052 ✗ +2026-07-13 08:30:34,816 | INFO | → WINNER: Music (combined=0.401) +2026-07-13 08:30:34,845 | INFO | +[908.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,847 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,847 | INFO | Music 0.432 0.000 0.281 ✓ +2026-07-13 08:30:34,847 | INFO | Singing 0.256 0.000 0.166 ✓ +2026-07-13 08:30:34,847 | INFO | Male singing 0.172 0.000 0.112 ✗ +2026-07-13 08:30:34,847 | INFO | A capella 0.166 0.000 0.108 ✗ +2026-07-13 08:30:34,847 | INFO | Chant 0.132 0.000 0.086 ✗ +2026-07-13 08:30:34,847 | INFO | Vocal music 0.127 0.000 0.082 ✗ +2026-07-13 08:30:34,847 | INFO | → WINNER: Music (combined=0.281) +2026-07-13 08:30:34,875 | INFO | +[908.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,875 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,877 | INFO | Music 0.455 0.000 0.296 ✓ +2026-07-13 08:30:34,877 | INFO | Singing 0.215 0.000 0.140 ✓ +2026-07-13 08:30:34,877 | INFO | Chant 0.170 0.000 0.110 ✗ +2026-07-13 08:30:34,877 | INFO | A capella 0.159 0.000 0.103 ✗ +2026-07-13 08:30:34,877 | INFO | Male singing 0.148 0.000 0.096 ✗ +2026-07-13 08:30:34,877 | INFO | Mantra 0.119 0.000 0.077 ✗ +2026-07-13 08:30:34,877 | INFO | → WINNER: Music (combined=0.296) +2026-07-13 08:30:34,902 | INFO | +[908.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,902 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,902 | INFO | Music 0.425 0.000 0.276 ✓ +2026-07-13 08:30:34,902 | INFO | Singing 0.182 0.000 0.118 ✗ +2026-07-13 08:30:34,902 | INFO | Chant 0.180 0.000 0.117 ✗ +2026-07-13 08:30:34,902 | INFO | Mantra 0.148 0.000 0.096 ✗ +2026-07-13 08:30:34,902 | INFO | Male singing 0.122 0.000 0.079 ✗ +2026-07-13 08:30:34,902 | INFO | A capella 0.114 0.000 0.074 ✗ +2026-07-13 08:30:34,902 | INFO | → WINNER: Music (combined=0.276) +2026-07-13 08:30:34,931 | INFO | +[908.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,931 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,935 | INFO | Music 0.224 0.000 0.145 ✓ +2026-07-13 08:30:34,935 | INFO | Mantra 0.069 0.000 0.045 ✗ +2026-07-13 08:30:34,935 | INFO | → WINNER: Music (combined=0.145) +2026-07-13 08:30:34,962 | INFO | +[908.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,962 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,962 | INFO | Music 0.409 0.000 0.266 ✓ +2026-07-13 08:30:34,962 | INFO | Singing 0.097 0.000 0.063 ✗ +2026-07-13 08:30:34,962 | INFO | Mantra 0.063 0.000 0.041 ✗ +2026-07-13 08:30:34,962 | INFO | → WINNER: Music (combined=0.266) +2026-07-13 08:30:34,985 | INFO | +[909.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:34,985 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:34,985 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:34,985 | INFO | Singing 0.133 0.000 0.086 ✗ +2026-07-13 08:30:34,985 | INFO | Mantra 0.120 0.000 0.078 ✗ +2026-07-13 08:30:34,985 | INFO | Jingle bell 0.076 0.000 0.049 ✗ +2026-07-13 08:30:34,985 | INFO | Chant 0.063 0.000 0.041 ✗ +2026-07-13 08:30:34,985 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:35,018 | INFO | +[909.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-07-13 08:30:35,018 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,018 | INFO | Music 0.788 0.000 0.512 ✓ +2026-07-13 08:30:35,018 | INFO | Mantra 0.425 0.000 0.276 ✓ +2026-07-13 08:30:35,018 | INFO | Chant 0.143 0.000 0.093 ✗ +2026-07-13 08:30:35,018 | INFO | Carnatic music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:35,018 | INFO | Singing 0.117 0.000 0.076 ✗ +2026-07-13 08:30:35,018 | INFO | Musical instrument 0.068 0.000 0.044 ✗ +2026-07-13 08:30:35,018 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:35,050 | INFO | +[909.40s] AMBIENT | scene='' +2026-07-13 08:30:35,050 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,050 | INFO | Music 0.789 0.000 0.513 ✓ +2026-07-13 08:30:35,050 | INFO | Mantra 0.295 0.000 0.192 ✓ +2026-07-13 08:30:35,050 | INFO | Singing 0.113 0.000 0.073 ✗ +2026-07-13 08:30:35,050 | INFO | Carnatic music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:35,050 | INFO | Musical instrument 0.066 0.000 0.043 ✗ +2026-07-13 08:30:35,050 | INFO | Folk music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:35,050 | INFO | → WINNER: Music (combined=0.513) +2026-07-13 08:30:35,077 | INFO | +[909.60s] AMBIENT | scene='' +2026-07-13 08:30:35,077 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,077 | INFO | Music 0.757 0.000 0.492 ✓ +2026-07-13 08:30:35,077 | INFO | Singing 0.166 0.000 0.108 ✗ +2026-07-13 08:30:35,077 | INFO | Carnatic music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:35,077 | INFO | Mantra 0.110 0.000 0.071 ✗ +2026-07-13 08:30:35,077 | INFO | Middle Eastern music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:35,077 | INFO | Folk music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:35,077 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:30:35,108 | INFO | +[909.80s] AMBIENT | scene='' +2026-07-13 08:30:35,108 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,108 | INFO | Music 0.434 0.000 0.282 ✓ +2026-07-13 08:30:35,108 | INFO | Singing 0.127 0.000 0.083 ✗ +2026-07-13 08:30:35,108 | INFO | Male singing 0.080 0.000 0.052 ✗ +2026-07-13 08:30:35,108 | INFO | → WINNER: Music (combined=0.282) +2026-07-13 08:30:35,139 | INFO | +[910.00s] AMBIENT | scene='' +2026-07-13 08:30:35,139 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,141 | INFO | Music 0.422 0.000 0.275 ✓ +2026-07-13 08:30:35,141 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:35,141 | INFO | → WINNER: Music (combined=0.275) +2026-07-13 08:30:35,167 | INFO | +[910.20s] AMBIENT | scene='' +2026-07-13 08:30:35,167 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,167 | INFO | Music 0.375 0.000 0.244 ✓ +2026-07-13 08:30:35,167 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:35,167 | INFO | → WINNER: Music (combined=0.244) +2026-07-13 08:30:35,191 | INFO | +[910.40s] AMBIENT | scene='' +2026-07-13 08:30:35,191 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,191 | INFO | Music 0.199 0.000 0.129 ✓ +2026-07-13 08:30:35,191 | INFO | → WINNER: Music (combined=0.129) +2026-07-13 08:30:35,218 | INFO | +[910.60s] AMBIENT | scene='' +2026-07-13 08:30:35,223 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,223 | INFO | Music 0.250 0.000 0.163 ✓ +2026-07-13 08:30:35,223 | INFO | Chant 0.196 0.000 0.127 ✓ +2026-07-13 08:30:35,223 | INFO | Mantra 0.104 0.000 0.067 ✗ +2026-07-13 08:30:35,223 | INFO | → WINNER: Music (combined=0.163) +2026-07-13 08:30:35,247 | INFO | +[910.80s] AMBIENT | scene='' +2026-07-13 08:30:35,247 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,247 | INFO | Music 0.810 0.000 0.526 ✓ +2026-07-13 08:30:35,247 | INFO | Middle Eastern music 0.173 0.000 0.112 ✗ +2026-07-13 08:30:35,247 | INFO | Singing 0.118 0.000 0.077 ✗ +2026-07-13 08:30:35,255 | INFO | Folk music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:35,255 | INFO | Mantra 0.077 0.000 0.050 ✗ +2026-07-13 08:30:35,255 | INFO | Chant 0.056 0.000 0.036 ✗ +2026-07-13 08:30:35,255 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:35,280 | INFO | +[911.00s] AMBIENT | scene='' +2026-07-13 08:30:35,282 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,282 | INFO | Music 0.775 0.000 0.504 ✓ +2026-07-13 08:30:35,282 | INFO | Mantra 0.201 0.000 0.131 ✓ +2026-07-13 08:30:35,282 | INFO | Chant 0.176 0.000 0.114 ✗ +2026-07-13 08:30:35,282 | INFO | Middle Eastern music 0.168 0.000 0.109 ✗ +2026-07-13 08:30:35,282 | INFO | Folk music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:35,282 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:35,282 | INFO | → WINNER: Music (combined=0.504) +2026-07-13 08:30:35,305 | INFO | +[911.20s] AMBIENT | scene='' +2026-07-13 08:30:35,305 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,305 | INFO | Music 0.765 0.000 0.497 ✓ +2026-07-13 08:30:35,305 | INFO | Mantra 0.227 0.000 0.147 ✓ +2026-07-13 08:30:35,305 | INFO | Carnatic music 0.222 0.000 0.144 ✓ +2026-07-13 08:30:35,305 | INFO | Singing 0.147 0.000 0.096 ✗ +2026-07-13 08:30:35,305 | INFO | Tabla 0.135 0.000 0.088 ✗ +2026-07-13 08:30:35,313 | INFO | Middle Eastern music 0.098 0.000 0.064 ✗ +2026-07-13 08:30:35,313 | INFO | → WINNER: Music (combined=0.497) +2026-07-13 08:30:35,339 | INFO | +[911.40s] AMBIENT | scene='' +2026-07-13 08:30:35,339 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,339 | INFO | Music 0.751 0.000 0.488 ✓ +2026-07-13 08:30:35,339 | INFO | Tabla 0.260 0.000 0.169 ✓ +2026-07-13 08:30:35,339 | INFO | Carnatic music 0.252 0.000 0.164 ✓ +2026-07-13 08:30:35,339 | INFO | Singing 0.160 0.000 0.104 ✗ +2026-07-13 08:30:35,339 | INFO | Musical instrument 0.156 0.000 0.101 ✗ +2026-07-13 08:30:35,339 | INFO | Middle Eastern music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:35,339 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:35,364 | INFO | +[911.60s] AMBIENT | scene='' +2026-07-13 08:30:35,364 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,364 | INFO | Music 0.795 0.000 0.517 ✓ +2026-07-13 08:30:35,364 | INFO | Singing 0.225 0.000 0.146 ✓ +2026-07-13 08:30:35,364 | INFO | Musical instrument 0.207 0.000 0.135 ✓ +2026-07-13 08:30:35,371 | INFO | Carnatic music 0.169 0.000 0.110 ✗ +2026-07-13 08:30:35,371 | INFO | Tabla 0.137 0.000 0.089 ✗ +2026-07-13 08:30:35,371 | INFO | Folk music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:35,371 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:35,397 | INFO | +[911.80s] AMBIENT | scene='' +2026-07-13 08:30:35,397 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,397 | INFO | Music 0.744 0.000 0.483 ✓ +2026-07-13 08:30:35,397 | INFO | Tabla 0.522 0.000 0.339 ✓ +2026-07-13 08:30:35,397 | INFO | Carnatic music 0.220 0.000 0.143 ✓ +2026-07-13 08:30:35,397 | INFO | Musical instrument 0.208 0.000 0.135 ✓ +2026-07-13 08:30:35,397 | INFO | Percussion 0.175 0.000 0.114 ✗ +2026-07-13 08:30:35,397 | INFO | Drum 0.124 0.000 0.081 ✗ +2026-07-13 08:30:35,397 | INFO | → WINNER: Music (combined=0.483) +2026-07-13 08:30:35,422 | INFO | +[912.00s] AMBIENT | scene='' +2026-07-13 08:30:35,422 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,422 | INFO | Music 0.372 0.000 0.242 ✓ +2026-07-13 08:30:35,422 | INFO | Singing 0.110 0.000 0.071 ✗ +2026-07-13 08:30:35,422 | INFO | Mantra 0.094 0.000 0.061 ✗ +2026-07-13 08:30:35,422 | INFO | A capella 0.066 0.000 0.043 ✗ +2026-07-13 08:30:35,422 | INFO | Chant 0.055 0.000 0.036 ✗ +2026-07-13 08:30:35,422 | INFO | → WINNER: Music (combined=0.242) +2026-07-13 08:30:35,454 | INFO | +[912.20s] AMBIENT | scene='' +2026-07-13 08:30:35,455 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,455 | INFO | Music 0.606 0.000 0.394 ✓ +2026-07-13 08:30:35,455 | INFO | Gargling 0.100 0.000 0.065 ✗ +2026-07-13 08:30:35,455 | INFO | → WINNER: Music (combined=0.394) +2026-07-13 08:30:35,479 | INFO | +[912.40s] AMBIENT | scene='' +2026-07-13 08:30:35,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,479 | INFO | Music 0.456 0.000 0.297 ✓ +2026-07-13 08:30:35,479 | INFO | Mantra 0.062 0.000 0.041 ✗ +2026-07-13 08:30:35,479 | INFO | → WINNER: Music (combined=0.297) +2026-07-13 08:30:35,505 | INFO | +[912.60s] AMBIENT | scene='' +2026-07-13 08:30:35,505 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,505 | INFO | Music 0.740 0.000 0.481 ✓ +2026-07-13 08:30:35,505 | INFO | Musical instrument 0.107 0.000 0.069 ✗ +2026-07-13 08:30:35,505 | INFO | → WINNER: Music (combined=0.481) +2026-07-13 08:30:35,539 | INFO | +[912.80s] AMBIENT | scene='' +2026-07-13 08:30:35,539 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,539 | INFO | Music 0.799 0.000 0.519 ✓ +2026-07-13 08:30:35,539 | INFO | Sitar 0.212 0.000 0.138 ✓ +2026-07-13 08:30:35,539 | INFO | Musical instrument 0.110 0.000 0.071 ✗ +2026-07-13 08:30:35,539 | INFO | Middle Eastern music 0.076 0.000 0.050 ✗ +2026-07-13 08:30:35,539 | INFO | Folk music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:35,539 | INFO | Traditional music 0.075 0.000 0.049 ✗ +2026-07-13 08:30:35,539 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:35,561 | INFO | +[913.00s] AMBIENT | scene='' +2026-07-13 08:30:35,569 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,569 | INFO | Music 0.787 0.000 0.511 ✓ +2026-07-13 08:30:35,569 | INFO | Folk music 0.161 0.000 0.104 ✗ +2026-07-13 08:30:35,569 | INFO | Middle Eastern music 0.160 0.000 0.104 ✗ +2026-07-13 08:30:35,569 | INFO | Singing 0.126 0.000 0.082 ✗ +2026-07-13 08:30:35,569 | INFO | Sitar 0.101 0.000 0.066 ✗ +2026-07-13 08:30:35,569 | INFO | Musical instrument 0.098 0.000 0.064 ✗ +2026-07-13 08:30:35,569 | INFO | → WINNER: Music (combined=0.511) +2026-07-13 08:30:35,594 | INFO | +[913.20s] AMBIENT | scene='' +2026-07-13 08:30:35,594 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,594 | INFO | Music 0.797 0.000 0.518 ✓ +2026-07-13 08:30:35,594 | INFO | Middle Eastern music 0.158 0.000 0.103 ✗ +2026-07-13 08:30:35,594 | INFO | Folk music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:35,594 | INFO | Singing 0.130 0.000 0.085 ✗ +2026-07-13 08:30:35,594 | INFO | Musical instrument 0.114 0.000 0.074 ✗ +2026-07-13 08:30:35,594 | INFO | Sitar 0.073 0.000 0.047 ✗ +2026-07-13 08:30:35,594 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:35,627 | INFO | +[913.40s] AMBIENT | scene='' +2026-07-13 08:30:35,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,627 | INFO | Music 0.702 0.000 0.456 ✓ +2026-07-13 08:30:35,630 | INFO | Singing 0.203 0.000 0.132 ✓ +2026-07-13 08:30:35,630 | INFO | Middle Eastern music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:35,631 | INFO | Folk music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:35,631 | INFO | Mantra 0.063 0.000 0.041 ✗ +2026-07-13 08:30:35,631 | INFO | Musical instrument 0.057 0.000 0.037 ✗ +2026-07-13 08:30:35,631 | INFO | → WINNER: Music (combined=0.456) +2026-07-13 08:30:35,652 | INFO | +[913.60s] AMBIENT | scene='' +2026-07-13 08:30:35,652 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,652 | INFO | Music 0.695 0.000 0.452 ✓ +2026-07-13 08:30:35,660 | INFO | Singing 0.233 0.000 0.151 ✓ +2026-07-13 08:30:35,660 | INFO | Vocal music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:35,660 | INFO | A capella 0.061 0.000 0.040 ✗ +2026-07-13 08:30:35,660 | INFO | → WINNER: Music (combined=0.452) +2026-07-13 08:30:35,686 | INFO | +[913.80s] AMBIENT | scene='' +2026-07-13 08:30:35,686 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,686 | INFO | Music 0.480 0.000 0.312 ✓ +2026-07-13 08:30:35,686 | INFO | Singing 0.141 0.000 0.092 ✗ +2026-07-13 08:30:35,686 | INFO | Chant 0.076 0.000 0.049 ✗ +2026-07-13 08:30:35,686 | INFO | Mantra 0.060 0.000 0.039 ✗ +2026-07-13 08:30:35,686 | INFO | → WINNER: Music (combined=0.312) +2026-07-13 08:30:35,716 | INFO | +[914.00s] AMBIENT | scene='' +2026-07-13 08:30:35,718 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,719 | INFO | Music 0.352 0.000 0.229 ✓ +2026-07-13 08:30:35,719 | INFO | Singing 0.078 0.000 0.051 ✗ +2026-07-13 08:30:35,719 | INFO | → WINNER: Music (combined=0.229) +2026-07-13 08:30:35,754 | INFO | +[914.20s] AMBIENT | scene='' +2026-07-13 08:30:35,754 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,754 | INFO | Music 0.488 0.000 0.317 ✓ +2026-07-13 08:30:35,754 | INFO | Singing 0.101 0.000 0.066 ✗ +2026-07-13 08:30:35,754 | INFO | → WINNER: Music (combined=0.317) +2026-07-13 08:30:35,782 | INFO | +[914.40s] AMBIENT | scene='' +2026-07-13 08:30:35,782 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,782 | INFO | Music 0.438 0.000 0.285 ✓ +2026-07-13 08:30:35,782 | INFO | Singing 0.075 0.000 0.049 ✗ +2026-07-13 08:30:35,782 | INFO | → WINNER: Music (combined=0.285) +2026-07-13 08:30:35,806 | INFO | +[914.60s] AMBIENT | scene='' +2026-07-13 08:30:35,806 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,806 | INFO | Music 0.660 0.000 0.429 ✓ +2026-07-13 08:30:35,806 | INFO | Singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:35,806 | INFO | Mantra 0.076 0.000 0.049 ✗ +2026-07-13 08:30:35,806 | INFO | Ding 0.064 0.000 0.042 ✗ +2026-07-13 08:30:35,806 | INFO | Jingle, tinkle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:35,806 | INFO | → WINNER: Music (combined=0.429) +2026-07-13 08:30:35,832 | INFO | +[914.80s] AMBIENT | scene='' +2026-07-13 08:30:35,832 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,832 | INFO | Music 0.635 0.000 0.413 ✓ +2026-07-13 08:30:35,832 | INFO | Mantra 0.153 0.000 0.100 ✗ +2026-07-13 08:30:35,832 | INFO | Jingle, tinkle 0.112 0.000 0.073 ✗ +2026-07-13 08:30:35,832 | INFO | Jingle bell 0.089 0.000 0.058 ✗ +2026-07-13 08:30:35,832 | INFO | Chant 0.062 0.000 0.040 ✗ +2026-07-13 08:30:35,832 | INFO | Ding 0.058 0.000 0.038 ✗ +2026-07-13 08:30:35,832 | INFO | → WINNER: Music (combined=0.413) +2026-07-13 08:30:35,864 | INFO | +[915.00s] AMBIENT | scene='' +2026-07-13 08:30:35,864 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,865 | INFO | Music 0.679 0.000 0.441 ✓ +2026-07-13 08:30:35,865 | INFO | Mantra 0.269 0.000 0.175 ✓ +2026-07-13 08:30:35,865 | INFO | Carnatic music 0.133 0.000 0.087 ✗ +2026-07-13 08:30:35,865 | INFO | Singing 0.078 0.000 0.051 ✗ +2026-07-13 08:30:35,865 | INFO | Ding 0.056 0.000 0.037 ✗ +2026-07-13 08:30:35,865 | INFO | Chant 0.055 0.000 0.036 ✗ +2026-07-13 08:30:35,865 | INFO | → WINNER: Music (combined=0.441) +2026-07-13 08:30:35,889 | INFO | +[915.20s] AMBIENT | scene='' +2026-07-13 08:30:35,889 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,889 | INFO | Music 0.734 0.000 0.477 ✓ +2026-07-13 08:30:35,889 | INFO | Carnatic music 0.461 0.000 0.300 ✓ +2026-07-13 08:30:35,889 | INFO | Mantra 0.379 0.000 0.246 ✓ +2026-07-13 08:30:35,889 | INFO | Sitar 0.096 0.000 0.062 ✗ +2026-07-13 08:30:35,889 | INFO | Singing 0.090 0.000 0.058 ✗ +2026-07-13 08:30:35,889 | INFO | Tabla 0.072 0.000 0.047 ✗ +2026-07-13 08:30:35,889 | INFO | → WINNER: Music (combined=0.477) +2026-07-13 08:30:35,921 | INFO | +[915.40s] AMBIENT | scene='' +2026-07-13 08:30:35,921 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,921 | INFO | Music 0.771 0.000 0.501 ✓ +2026-07-13 08:30:35,921 | INFO | Mantra 0.240 0.000 0.156 ✓ +2026-07-13 08:30:35,921 | INFO | Carnatic music 0.237 0.000 0.154 ✓ +2026-07-13 08:30:35,921 | INFO | Singing 0.163 0.000 0.106 ✗ +2026-07-13 08:30:35,921 | INFO | Musical instrument 0.131 0.000 0.085 ✗ +2026-07-13 08:30:35,921 | INFO | Tabla 0.054 0.000 0.035 ✗ +2026-07-13 08:30:35,921 | INFO | → WINNER: Music (combined=0.501) +2026-07-13 08:30:35,948 | INFO | +[915.60s] AMBIENT | scene='' +2026-07-13 08:30:35,948 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,948 | INFO | Music 0.726 0.000 0.472 ✓ +2026-07-13 08:30:35,948 | INFO | Carnatic music 0.258 0.000 0.167 ✓ +2026-07-13 08:30:35,948 | INFO | Tabla 0.256 0.000 0.166 ✓ +2026-07-13 08:30:35,948 | INFO | Sitar 0.166 0.000 0.108 ✗ +2026-07-13 08:30:35,948 | INFO | Mantra 0.141 0.000 0.092 ✗ +2026-07-13 08:30:35,948 | INFO | Musical instrument 0.124 0.000 0.081 ✗ +2026-07-13 08:30:35,948 | INFO | → WINNER: Music (combined=0.472) +2026-07-13 08:30:35,979 | INFO | +[915.80s] AMBIENT | scene='' +2026-07-13 08:30:35,979 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:35,979 | INFO | Music 0.645 0.000 0.419 ✓ +2026-07-13 08:30:35,979 | INFO | Mantra 0.329 0.000 0.214 ✓ +2026-07-13 08:30:35,979 | INFO | Singing 0.094 0.000 0.061 ✗ +2026-07-13 08:30:35,979 | INFO | Chant 0.094 0.000 0.061 ✗ +2026-07-13 08:30:35,979 | INFO | Carnatic music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:35,979 | INFO | Musical instrument 0.062 0.000 0.041 ✗ +2026-07-13 08:30:35,979 | INFO | → WINNER: Music (combined=0.419) +2026-07-13 08:30:36,005 | INFO | +[916.00s] AMBIENT | scene='' +2026-07-13 08:30:36,012 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,012 | INFO | Music 0.459 0.000 0.298 ✓ +2026-07-13 08:30:36,012 | INFO | Mantra 0.384 0.000 0.249 ✓ +2026-07-13 08:30:36,012 | INFO | Singing 0.094 0.000 0.061 ✗ +2026-07-13 08:30:36,012 | INFO | Carnatic music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:36,012 | INFO | Chant 0.081 0.000 0.053 ✗ +2026-07-13 08:30:36,012 | INFO | → WINNER: Music (combined=0.298) +2026-07-13 08:30:36,036 | INFO | +[916.20s] AMBIENT | scene='' +2026-07-13 08:30:36,036 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,041 | INFO | Music 0.288 0.000 0.187 ✓ +2026-07-13 08:30:36,041 | INFO | Mantra 0.162 0.000 0.106 ✗ +2026-07-13 08:30:36,041 | INFO | → WINNER: Music (combined=0.187) +2026-07-13 08:30:36,061 | INFO | +[916.40s] AMBIENT | scene='' +2026-07-13 08:30:36,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,069 | INFO | Music 0.728 0.000 0.473 ✓ +2026-07-13 08:30:36,069 | INFO | Mantra 0.177 0.000 0.115 ✗ +2026-07-13 08:30:36,069 | INFO | Musical instrument 0.152 0.000 0.099 ✗ +2026-07-13 08:30:36,069 | INFO | Carnatic music 0.141 0.000 0.092 ✗ +2026-07-13 08:30:36,069 | INFO | Singing 0.108 0.000 0.071 ✗ +2026-07-13 08:30:36,069 | INFO | Tabla 0.084 0.000 0.054 ✗ +2026-07-13 08:30:36,069 | INFO | → WINNER: Music (combined=0.473) +2026-07-13 08:30:36,096 | INFO | +[916.60s] AMBIENT | scene='' +2026-07-13 08:30:36,098 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,098 | INFO | Music 0.757 0.000 0.492 ✓ +2026-07-13 08:30:36,098 | INFO | Carnatic music 0.298 0.000 0.194 ✓ +2026-07-13 08:30:36,098 | INFO | Mantra 0.205 0.000 0.133 ✓ +2026-07-13 08:30:36,098 | INFO | Musical instrument 0.170 0.000 0.110 ✗ +2026-07-13 08:30:36,098 | INFO | Sitar 0.151 0.000 0.098 ✗ +2026-07-13 08:30:36,098 | INFO | Tabla 0.132 0.000 0.086 ✗ +2026-07-13 08:30:36,098 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:30:36,126 | INFO | +[916.80s] AMBIENT | scene='' +2026-07-13 08:30:36,127 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,127 | INFO | Music 0.798 0.000 0.519 ✓ +2026-07-13 08:30:36,127 | INFO | Carnatic music 0.398 0.000 0.259 ✓ +2026-07-13 08:30:36,127 | INFO | Sitar 0.267 0.000 0.173 ✓ +2026-07-13 08:30:36,127 | INFO | Mantra 0.255 0.000 0.166 ✓ +2026-07-13 08:30:36,127 | INFO | Musical instrument 0.119 0.000 0.077 ✗ +2026-07-13 08:30:36,127 | INFO | Singing 0.098 0.000 0.064 ✗ +2026-07-13 08:30:36,127 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:36,151 | INFO | +[917.00s] AMBIENT | scene='' +2026-07-13 08:30:36,155 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,155 | INFO | Music 0.800 0.000 0.520 ✓ +2026-07-13 08:30:36,155 | INFO | Carnatic music 0.345 0.000 0.224 ✓ +2026-07-13 08:30:36,155 | INFO | Mantra 0.237 0.000 0.154 ✓ +2026-07-13 08:30:36,156 | INFO | Sitar 0.202 0.000 0.131 ✓ +2026-07-13 08:30:36,156 | INFO | Middle Eastern music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:36,156 | INFO | Tabla 0.111 0.000 0.072 ✗ +2026-07-13 08:30:36,156 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:36,176 | INFO | +[917.20s] AMBIENT | scene='' +2026-07-13 08:30:36,184 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,184 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:36,184 | INFO | Carnatic music 0.209 0.000 0.136 ✓ +2026-07-13 08:30:36,184 | INFO | Mantra 0.186 0.000 0.121 ✓ +2026-07-13 08:30:36,184 | INFO | Singing 0.125 0.000 0.081 ✗ +2026-07-13 08:30:36,184 | INFO | Middle Eastern music 0.081 0.000 0.052 ✗ +2026-07-13 08:30:36,184 | INFO | Musical instrument 0.057 0.000 0.037 ✗ +2026-07-13 08:30:36,184 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:36,211 | INFO | +[917.40s] AMBIENT | scene='' +2026-07-13 08:30:36,213 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,213 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:36,213 | INFO | Singing 0.204 0.000 0.133 ✓ +2026-07-13 08:30:36,213 | INFO | Middle Eastern music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:36,213 | INFO | Mantra 0.067 0.000 0.043 ✗ +2026-07-13 08:30:36,214 | INFO | Musical instrument 0.058 0.000 0.037 ✗ +2026-07-13 08:30:36,214 | INFO | Tabla 0.035 0.000 0.023 ✗ +2026-07-13 08:30:36,214 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:36,242 | INFO | +[917.60s] AMBIENT | scene='' +2026-07-13 08:30:36,242 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,242 | INFO | Music 0.696 0.000 0.452 ✓ +2026-07-13 08:30:36,242 | INFO | Singing 0.213 0.000 0.138 ✓ +2026-07-13 08:30:36,242 | INFO | Chant 0.163 0.000 0.106 ✗ +2026-07-13 08:30:36,242 | INFO | Mantra 0.153 0.000 0.099 ✗ +2026-07-13 08:30:36,242 | INFO | Choir 0.129 0.000 0.084 ✗ +2026-07-13 08:30:36,242 | INFO | A capella 0.101 0.000 0.066 ✗ +2026-07-13 08:30:36,242 | INFO | → WINNER: Music (combined=0.452) +2026-07-13 08:30:36,271 | INFO | +[917.80s] AMBIENT | scene='' +2026-07-13 08:30:36,271 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,271 | INFO | Music 0.631 0.000 0.410 ✓ +2026-07-13 08:30:36,271 | INFO | Singing 0.191 0.000 0.124 ✓ +2026-07-13 08:30:36,271 | INFO | Chant 0.117 0.000 0.076 ✗ +2026-07-13 08:30:36,271 | INFO | Mantra 0.107 0.000 0.070 ✗ +2026-07-13 08:30:36,271 | INFO | A capella 0.084 0.000 0.054 ✗ +2026-07-13 08:30:36,271 | INFO | Choir 0.076 0.000 0.050 ✗ +2026-07-13 08:30:36,271 | INFO | → WINNER: Music (combined=0.410) +2026-07-13 08:30:36,299 | INFO | +[918.00s] AMBIENT | scene='' +2026-07-13 08:30:36,299 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,299 | INFO | Music 0.456 0.000 0.297 ✓ +2026-07-13 08:30:36,299 | INFO | Singing 0.204 0.000 0.133 ✓ +2026-07-13 08:30:36,299 | INFO | Male singing 0.140 0.000 0.091 ✗ +2026-07-13 08:30:36,299 | INFO | Chant 0.138 0.000 0.090 ✗ +2026-07-13 08:30:36,299 | INFO | A capella 0.131 0.000 0.085 ✗ +2026-07-13 08:30:36,299 | INFO | Vocal music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:36,299 | INFO | → WINNER: Music (combined=0.297) +2026-07-13 08:30:36,327 | INFO | +[918.20s] AMBIENT | scene='' +2026-07-13 08:30:36,327 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,327 | INFO | Music 0.316 0.000 0.205 ✓ +2026-07-13 08:30:36,327 | INFO | Singing 0.119 0.000 0.077 ✗ +2026-07-13 08:30:36,327 | INFO | Male singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:36,327 | INFO | Chant 0.100 0.000 0.065 ✗ +2026-07-13 08:30:36,327 | INFO | Mantra 0.087 0.000 0.056 ✗ +2026-07-13 08:30:36,327 | INFO | → WINNER: Music (combined=0.205) +2026-07-13 08:30:36,356 | INFO | +[918.40s] AMBIENT | scene='' +2026-07-13 08:30:36,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,356 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:36,356 | INFO | Singing 0.169 0.000 0.110 ✗ +2026-07-13 08:30:36,356 | INFO | Musical instrument 0.106 0.000 0.069 ✗ +2026-07-13 08:30:36,356 | INFO | Mantra 0.065 0.000 0.042 ✗ +2026-07-13 08:30:36,356 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:36,384 | INFO | +[918.60s] AMBIENT | scene='' +2026-07-13 08:30:36,384 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,384 | INFO | Music 0.761 0.000 0.495 ✓ +2026-07-13 08:30:36,384 | INFO | Singing 0.142 0.000 0.092 ✗ +2026-07-13 08:30:36,384 | INFO | Middle Eastern music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:36,384 | INFO | Folk music 0.102 0.000 0.067 ✗ +2026-07-13 08:30:36,384 | INFO | Musical instrument 0.087 0.000 0.056 ✗ +2026-07-13 08:30:36,384 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:36,406 | INFO | +[918.80s] AMBIENT | scene='' +2026-07-13 08:30:36,406 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,406 | INFO | Music 0.568 0.000 0.369 ✓ +2026-07-13 08:30:36,406 | INFO | Singing 0.151 0.000 0.098 ✗ +2026-07-13 08:30:36,406 | INFO | Mantra 0.084 0.000 0.054 ✗ +2026-07-13 08:30:36,414 | INFO | → WINNER: Music (combined=0.369) +2026-07-13 08:30:36,441 | INFO | +[919.00s] AMBIENT | scene='' +2026-07-13 08:30:36,441 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,441 | INFO | Music 0.694 0.000 0.451 ✓ +2026-07-13 08:30:36,441 | INFO | Singing 0.157 0.000 0.102 ✗ +2026-07-13 08:30:36,441 | INFO | Middle Eastern music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:36,441 | INFO | Mantra 0.099 0.000 0.064 ✗ +2026-07-13 08:30:36,445 | INFO | Carnatic music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:36,445 | INFO | Musical instrument 0.086 0.000 0.056 ✗ +2026-07-13 08:30:36,445 | INFO | → WINNER: Music (combined=0.451) +2026-07-13 08:30:36,471 | INFO | +[919.20s] AMBIENT | scene='' +2026-07-13 08:30:36,471 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,471 | INFO | Music 0.436 0.000 0.283 ✓ +2026-07-13 08:30:36,471 | INFO | Singing 0.141 0.000 0.091 ✗ +2026-07-13 08:30:36,471 | INFO | Mantra 0.134 0.000 0.087 ✗ +2026-07-13 08:30:36,471 | INFO | Chant 0.128 0.000 0.084 ✗ +2026-07-13 08:30:36,471 | INFO | → WINNER: Music (combined=0.283) +2026-07-13 08:30:36,497 | INFO | +[919.40s] AMBIENT | scene='' +2026-07-13 08:30:36,497 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,497 | INFO | Music 0.341 0.000 0.222 ✓ +2026-07-13 08:30:36,497 | INFO | Chant 0.317 0.000 0.206 ✓ +2026-07-13 08:30:36,497 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:36,497 | INFO | A capella 0.150 0.000 0.098 ✗ +2026-07-13 08:30:36,504 | INFO | Vocal music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:36,504 | INFO | Mantra 0.134 0.000 0.087 ✗ +2026-07-13 08:30:36,504 | INFO | → WINNER: Music (combined=0.222) +2026-07-13 08:30:36,529 | INFO | +[919.60s] AMBIENT | scene='' +2026-07-13 08:30:36,529 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,529 | INFO | Chant 0.402 0.000 0.262 ✓ +2026-07-13 08:30:36,529 | INFO | Music 0.321 0.000 0.209 ✓ +2026-07-13 08:30:36,529 | INFO | Mantra 0.259 0.000 0.168 ✓ +2026-07-13 08:30:36,529 | INFO | Singing 0.157 0.000 0.102 ✗ +2026-07-13 08:30:36,529 | INFO | Vocal music 0.132 0.000 0.086 ✗ +2026-07-13 08:30:36,529 | INFO | A capella 0.131 0.000 0.085 ✗ +2026-07-13 08:30:36,529 | INFO | → WINNER: Chant (combined=0.262) +2026-07-13 08:30:36,555 | INFO | +[919.80s] AMBIENT | scene='' +2026-07-13 08:30:36,555 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,555 | INFO | Chant 0.361 0.000 0.235 ✓ +2026-07-13 08:30:36,555 | INFO | Music 0.336 0.000 0.218 ✓ +2026-07-13 08:30:36,555 | INFO | Mantra 0.290 0.000 0.189 ✓ +2026-07-13 08:30:36,555 | INFO | Carnatic music 0.125 0.000 0.081 ✗ +2026-07-13 08:30:36,555 | INFO | Singing 0.119 0.000 0.077 ✗ +2026-07-13 08:30:36,555 | INFO | Middle Eastern music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:36,555 | INFO | → WINNER: Chant (combined=0.235) +2026-07-13 08:30:36,585 | INFO | +[920.00s] AMBIENT | scene='' +2026-07-13 08:30:36,587 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,587 | INFO | Music 0.284 0.000 0.185 ✓ +2026-07-13 08:30:36,588 | INFO | Chant 0.250 0.000 0.163 ✓ +2026-07-13 08:30:36,588 | INFO | Mantra 0.151 0.000 0.098 ✗ +2026-07-13 08:30:36,588 | INFO | Singing 0.150 0.000 0.097 ✗ +2026-07-13 08:30:36,588 | INFO | Male singing 0.124 0.000 0.081 ✗ +2026-07-13 08:30:36,588 | INFO | Vocal music 0.073 0.000 0.048 ✗ +2026-07-13 08:30:36,588 | INFO | → WINNER: Music (combined=0.185) +2026-07-13 08:30:36,616 | INFO | +[920.20s] AMBIENT | scene='' +2026-07-13 08:30:36,616 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,616 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:36,616 | INFO | Singing 0.182 0.000 0.119 ✗ +2026-07-13 08:30:36,616 | INFO | Mantra 0.124 0.000 0.081 ✗ +2026-07-13 08:30:36,616 | INFO | Chant 0.085 0.000 0.055 ✗ +2026-07-13 08:30:36,616 | INFO | Middle Eastern music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:36,616 | INFO | Music of Bollywood 0.041 0.000 0.027 ✗ +2026-07-13 08:30:36,616 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:36,645 | INFO | +[920.40s] AMBIENT | scene='' +2026-07-13 08:30:36,645 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,645 | INFO | Music 0.764 0.000 0.497 ✓ +2026-07-13 08:30:36,645 | INFO | Singing 0.174 0.000 0.113 ✗ +2026-07-13 08:30:36,645 | INFO | Jingle bell 0.099 0.000 0.064 ✗ +2026-07-13 08:30:36,645 | INFO | Mantra 0.076 0.000 0.050 ✗ +2026-07-13 08:30:36,645 | INFO | Folk music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:36,645 | INFO | Music of Bollywood 0.053 0.000 0.035 ✗ +2026-07-13 08:30:36,645 | INFO | → WINNER: Music (combined=0.497) +2026-07-13 08:30:36,669 | INFO | +[920.60s] AMBIENT | scene='' +2026-07-13 08:30:36,669 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,669 | INFO | Music 0.761 0.000 0.495 ✓ +2026-07-13 08:30:36,669 | INFO | Singing 0.165 0.000 0.107 ✗ +2026-07-13 08:30:36,669 | INFO | Folk music 0.119 0.000 0.077 ✗ +2026-07-13 08:30:36,669 | INFO | Mantra 0.099 0.000 0.065 ✗ +2026-07-13 08:30:36,669 | INFO | Middle Eastern music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:36,669 | INFO | Music of Bollywood 0.080 0.000 0.052 ✗ +2026-07-13 08:30:36,669 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:36,702 | INFO | +[920.80s] AMBIENT | scene='' +2026-07-13 08:30:36,702 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,702 | INFO | Music 0.674 0.000 0.438 ✓ +2026-07-13 08:30:36,702 | INFO | Mantra 0.181 0.000 0.118 ✗ +2026-07-13 08:30:36,702 | INFO | Singing 0.150 0.000 0.097 ✗ +2026-07-13 08:30:36,702 | INFO | Music of Bollywood 0.089 0.000 0.058 ✗ +2026-07-13 08:30:36,702 | INFO | Middle Eastern music 0.074 0.000 0.048 ✗ +2026-07-13 08:30:36,702 | INFO | Folk music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:36,702 | INFO | → WINNER: Music (combined=0.438) +2026-07-13 08:30:36,727 | INFO | +[921.00s] AMBIENT | scene='' +2026-07-13 08:30:36,733 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,733 | INFO | Music 0.565 0.000 0.367 ✓ +2026-07-13 08:30:36,733 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:36,733 | INFO | Mantra 0.083 0.000 0.054 ✗ +2026-07-13 08:30:36,733 | INFO | Carnatic music 0.066 0.000 0.043 ✗ +2026-07-13 08:30:36,733 | INFO | → WINNER: Music (combined=0.367) +2026-07-13 08:30:36,759 | INFO | +[921.20s] AMBIENT | scene='' +2026-07-13 08:30:36,759 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,759 | INFO | Music 0.389 0.000 0.253 ✓ +2026-07-13 08:30:36,759 | INFO | Singing 0.173 0.000 0.113 ✗ +2026-07-13 08:30:36,759 | INFO | Male singing 0.091 0.000 0.059 ✗ +2026-07-13 08:30:36,759 | INFO | Mantra 0.058 0.000 0.037 ✗ +2026-07-13 08:30:36,759 | INFO | → WINNER: Music (combined=0.253) +2026-07-13 08:30:36,784 | INFO | +[921.40s] AMBIENT | scene='' +2026-07-13 08:30:36,784 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,784 | INFO | Music 0.240 0.000 0.156 ✓ +2026-07-13 08:30:36,784 | INFO | Singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:36,784 | INFO | → WINNER: Music (combined=0.156) +2026-07-13 08:30:36,818 | INFO | +[921.60s] AMBIENT | scene='' +2026-07-13 08:30:36,818 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,818 | INFO | Music 0.260 0.000 0.169 ✓ +2026-07-13 08:30:36,818 | INFO | Mantra 0.089 0.000 0.058 ✗ +2026-07-13 08:30:36,818 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:36,818 | INFO | Chant 0.061 0.000 0.040 ✗ +2026-07-13 08:30:36,818 | INFO | → WINNER: Music (combined=0.169) +2026-07-13 08:30:36,842 | INFO | +[921.80s] AMBIENT | scene='' +2026-07-13 08:30:36,842 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,842 | INFO | Music 0.257 0.000 0.167 ✓ +2026-07-13 08:30:36,842 | INFO | → WINNER: Music (combined=0.167) +2026-07-13 08:30:36,873 | INFO | +[922.00s] AMBIENT | scene='' +2026-07-13 08:30:36,875 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,875 | INFO | Music 0.375 0.000 0.244 ✓ +2026-07-13 08:30:36,875 | INFO | Singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:36,875 | INFO | Mantra 0.074 0.000 0.048 ✗ +2026-07-13 08:30:36,877 | INFO | → WINNER: Music (combined=0.244) +2026-07-13 08:30:36,900 | INFO | +[922.20s] AMBIENT | scene='' +2026-07-13 08:30:36,900 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,900 | INFO | Music 0.625 0.000 0.406 ✓ +2026-07-13 08:30:36,900 | INFO | Ding 0.113 0.000 0.073 ✗ +2026-07-13 08:30:36,900 | INFO | Mantra 0.090 0.000 0.058 ✗ +2026-07-13 08:30:36,900 | INFO | → WINNER: Music (combined=0.406) +2026-07-13 08:30:36,934 | INFO | +[922.40s] AMBIENT | scene='' +2026-07-13 08:30:36,934 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,934 | INFO | Music 0.673 0.000 0.437 ✓ +2026-07-13 08:30:36,934 | INFO | Ding 0.095 0.000 0.062 ✗ +2026-07-13 08:30:36,934 | INFO | Singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:36,934 | INFO | Mantra 0.080 0.000 0.052 ✗ +2026-07-13 08:30:36,934 | INFO | Jingle bell 0.061 0.000 0.040 ✗ +2026-07-13 08:30:36,934 | INFO | → WINNER: Music (combined=0.437) +2026-07-13 08:30:36,959 | INFO | +[922.60s] AMBIENT | scene='' +2026-07-13 08:30:36,959 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,959 | INFO | Music 0.681 0.000 0.443 ✓ +2026-07-13 08:30:36,959 | INFO | Mantra 0.131 0.000 0.085 ✗ +2026-07-13 08:30:36,959 | INFO | Ding 0.098 0.000 0.064 ✗ +2026-07-13 08:30:36,959 | INFO | Singing 0.089 0.000 0.058 ✗ +2026-07-13 08:30:36,959 | INFO | Musical instrument 0.055 0.000 0.036 ✗ +2026-07-13 08:30:36,959 | INFO | → WINNER: Music (combined=0.443) +2026-07-13 08:30:36,991 | INFO | +[922.80s] AMBIENT | scene='' +2026-07-13 08:30:36,992 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:36,992 | INFO | Music 0.609 0.000 0.396 ✓ +2026-07-13 08:30:36,992 | INFO | Mantra 0.322 0.000 0.209 ✓ +2026-07-13 08:30:36,992 | INFO | Carnatic music 0.209 0.000 0.136 ✓ +2026-07-13 08:30:36,992 | INFO | Ding 0.152 0.000 0.099 ✗ +2026-07-13 08:30:36,992 | INFO | Singing 0.081 0.000 0.052 ✗ +2026-07-13 08:30:36,992 | INFO | Tabla 0.043 0.000 0.028 ✗ +2026-07-13 08:30:36,992 | INFO | → WINNER: Music (combined=0.396) +2026-07-13 08:30:37,019 | INFO | +[923.00s] AMBIENT | scene='' +2026-07-13 08:30:37,019 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,019 | INFO | Music 0.662 0.000 0.430 ✓ +2026-07-13 08:30:37,019 | INFO | Mantra 0.448 0.000 0.291 ✓ +2026-07-13 08:30:37,019 | INFO | Singing 0.112 0.000 0.073 ✗ +2026-07-13 08:30:37,019 | INFO | Carnatic music 0.089 0.000 0.058 ✗ +2026-07-13 08:30:37,019 | INFO | Chant 0.086 0.000 0.056 ✗ +2026-07-13 08:30:37,024 | INFO | Musical instrument 0.057 0.000 0.037 ✗ +2026-07-13 08:30:37,024 | INFO | → WINNER: Music (combined=0.430) +2026-07-13 08:30:37,051 | INFO | +[923.20s] AMBIENT | scene='' +2026-07-13 08:30:37,051 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,051 | INFO | Music 0.718 0.000 0.467 ✓ +2026-07-13 08:30:37,053 | INFO | Tabla 0.262 0.000 0.170 ✓ +2026-07-13 08:30:37,053 | INFO | Mantra 0.185 0.000 0.120 ✓ +2026-07-13 08:30:37,053 | INFO | Carnatic music 0.174 0.000 0.113 ✗ +2026-07-13 08:30:37,054 | INFO | Singing 0.127 0.000 0.082 ✗ +2026-07-13 08:30:37,054 | INFO | Musical instrument 0.121 0.000 0.079 ✗ +2026-07-13 08:30:37,054 | INFO | → WINNER: Music (combined=0.467) +2026-07-13 08:30:37,074 | INFO | +[923.40s] AMBIENT | scene='' +2026-07-13 08:30:37,074 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,074 | INFO | Music 0.440 0.000 0.286 ✓ +2026-07-13 08:30:37,074 | INFO | Gargling 0.378 0.000 0.246 ✓ +2026-07-13 08:30:37,074 | INFO | Singing 0.084 0.000 0.055 ✗ +2026-07-13 08:30:37,082 | INFO | Chant 0.071 0.000 0.046 ✗ +2026-07-13 08:30:37,082 | INFO | Mantra 0.066 0.000 0.043 ✗ +2026-07-13 08:30:37,082 | INFO | → WINNER: Music (combined=0.286) +2026-07-13 08:30:37,108 | INFO | +[923.60s] AMBIENT | scene='' +2026-07-13 08:30:37,108 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,108 | INFO | Gargling 0.570 0.000 0.371 ✓ +2026-07-13 08:30:37,108 | INFO | Music 0.351 0.000 0.228 ✓ +2026-07-13 08:30:37,108 | INFO | → WINNER: Gargling (combined=0.371) +2026-07-13 08:30:37,134 | INFO | +[923.80s] AMBIENT | scene='' +2026-07-13 08:30:37,134 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,139 | INFO | Music 0.405 0.000 0.264 ✓ +2026-07-13 08:30:37,139 | INFO | Gargling 0.326 0.000 0.212 ✓ +2026-07-13 08:30:37,139 | INFO | Tubular bells 0.052 0.000 0.034 ✗ +2026-07-13 08:30:37,139 | INFO | → WINNER: Music (combined=0.264) +2026-07-13 08:30:37,166 | INFO | +[924.00s] AMBIENT | scene='' +2026-07-13 08:30:37,166 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,166 | INFO | Music 0.735 0.000 0.478 ✓ +2026-07-13 08:30:37,166 | INFO | Gargling 0.115 0.000 0.075 ✗ +2026-07-13 08:30:37,166 | INFO | Musical instrument 0.113 0.000 0.074 ✗ +2026-07-13 08:30:37,166 | INFO | Sitar 0.111 0.000 0.072 ✗ +2026-07-13 08:30:37,166 | INFO | Traditional music 0.101 0.000 0.066 ✗ +2026-07-13 08:30:37,166 | INFO | Tabla 0.097 0.000 0.063 ✗ +2026-07-13 08:30:37,166 | INFO | → WINNER: Music (combined=0.478) +2026-07-13 08:30:37,189 | INFO | +[924.20s] AMBIENT | scene='' +2026-07-13 08:30:37,189 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,198 | INFO | Music 0.656 0.000 0.426 ✓ +2026-07-13 08:30:37,198 | INFO | Bicycle bell 0.171 0.000 0.111 ✗ +2026-07-13 08:30:37,198 | INFO | Sitar 0.128 0.000 0.083 ✗ +2026-07-13 08:30:37,198 | INFO | Traditional music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:37,198 | INFO | Musical instrument 0.072 0.000 0.046 ✗ +2026-07-13 08:30:37,198 | INFO | Bell 0.059 0.000 0.038 ✗ +2026-07-13 08:30:37,198 | INFO | → WINNER: Music (combined=0.426) +2026-07-13 08:30:37,222 | INFO | +[924.40s] AMBIENT | scene='' +2026-07-13 08:30:37,222 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,222 | INFO | Music 0.665 0.000 0.432 ✓ +2026-07-13 08:30:37,222 | INFO | Sitar 0.153 0.000 0.100 ✗ +2026-07-13 08:30:37,222 | INFO | Tabla 0.150 0.000 0.098 ✗ +2026-07-13 08:30:37,222 | INFO | Carnatic music 0.141 0.000 0.092 ✗ +2026-07-13 08:30:37,222 | INFO | Musical instrument 0.139 0.000 0.090 ✗ +2026-07-13 08:30:37,222 | INFO | Traditional music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:37,222 | INFO | → WINNER: Music (combined=0.432) +2026-07-13 08:30:37,255 | INFO | +[924.60s] AMBIENT | scene='' +2026-07-13 08:30:37,255 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,255 | INFO | Music 0.697 0.000 0.453 ✓ +2026-07-13 08:30:37,255 | INFO | Tabla 0.255 0.000 0.166 ✓ +2026-07-13 08:30:37,255 | INFO | Musical instrument 0.177 0.000 0.115 ✗ +2026-07-13 08:30:37,255 | INFO | Carnatic music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:37,255 | INFO | Sitar 0.145 0.000 0.095 ✗ +2026-07-13 08:30:37,255 | INFO | Percussion 0.123 0.000 0.080 ✗ +2026-07-13 08:30:37,255 | INFO | → WINNER: Music (combined=0.453) +2026-07-13 08:30:37,280 | INFO | +[924.80s] AMBIENT | scene='' +2026-07-13 08:30:37,280 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,280 | INFO | Music 0.631 0.000 0.410 ✓ +2026-07-13 08:30:37,280 | INFO | Tabla 0.196 0.000 0.127 ✓ +2026-07-13 08:30:37,280 | INFO | Musical instrument 0.124 0.000 0.081 ✗ +2026-07-13 08:30:37,280 | INFO | Percussion 0.107 0.000 0.070 ✗ +2026-07-13 08:30:37,280 | INFO | Carnatic music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:37,280 | INFO | Drum 0.068 0.000 0.044 ✗ +2026-07-13 08:30:37,280 | INFO | → WINNER: Music (combined=0.410) +2026-07-13 08:30:37,314 | INFO | +[925.00s] AMBIENT | scene='' +2026-07-13 08:30:37,314 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,314 | INFO | Music 0.746 0.000 0.485 ✓ +2026-07-13 08:30:37,314 | INFO | Tabla 0.539 0.000 0.350 ✓ +2026-07-13 08:30:37,314 | INFO | Percussion 0.297 0.000 0.193 ✓ +2026-07-13 08:30:37,314 | INFO | Musical instrument 0.275 0.000 0.179 ✓ +2026-07-13 08:30:37,314 | INFO | Drum 0.215 0.000 0.140 ✓ +2026-07-13 08:30:37,314 | INFO | Carnatic music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:37,314 | INFO | → WINNER: Music (combined=0.485) +2026-07-13 08:30:37,337 | INFO | +[925.20s] AMBIENT | scene='' +2026-07-13 08:30:37,345 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,345 | INFO | Music 0.814 0.000 0.529 ✓ +2026-07-13 08:30:37,345 | INFO | Musical instrument 0.247 0.000 0.160 ✓ +2026-07-13 08:30:37,345 | INFO | Percussion 0.077 0.000 0.050 ✗ +2026-07-13 08:30:37,345 | INFO | Wood block 0.062 0.000 0.040 ✗ +2026-07-13 08:30:37,345 | INFO | → WINNER: Music (combined=0.529) +2026-07-13 08:30:37,370 | INFO | +[925.40s] AMBIENT | scene='' +2026-07-13 08:30:37,370 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,370 | INFO | Music 0.891 0.000 0.579 ✓ +2026-07-13 08:30:37,370 | INFO | Musical instrument 0.203 0.000 0.132 ✓ +2026-07-13 08:30:37,370 | INFO | Plucked string instrument 0.063 0.000 0.041 ✗ +2026-07-13 08:30:37,370 | INFO | Guitar 0.063 0.000 0.041 ✗ +2026-07-13 08:30:37,370 | INFO | → WINNER: Music (combined=0.579) +2026-07-13 08:30:37,402 | INFO | +[925.60s] AMBIENT | scene='' +2026-07-13 08:30:37,402 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,402 | INFO | Music 0.838 0.000 0.545 ✓ +2026-07-13 08:30:37,402 | INFO | Musical instrument 0.342 0.000 0.222 ✓ +2026-07-13 08:30:37,402 | INFO | Plucked string instrument 0.184 0.000 0.120 ✗ +2026-07-13 08:30:37,402 | INFO | Guitar 0.162 0.000 0.105 ✗ +2026-07-13 08:30:37,402 | INFO | → WINNER: Music (combined=0.545) +2026-07-13 08:30:37,427 | INFO | +[925.80s] AMBIENT | scene='' +2026-07-13 08:30:37,427 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,427 | INFO | Music 0.748 0.000 0.486 ✓ +2026-07-13 08:30:37,427 | INFO | Musical instrument 0.084 0.000 0.054 ✗ +2026-07-13 08:30:37,427 | INFO | Tubular bells 0.056 0.000 0.036 ✗ +2026-07-13 08:30:37,427 | INFO | → WINNER: Music (combined=0.486) +2026-07-13 08:30:37,455 | INFO | +[926.00s] AMBIENT | scene='' +2026-07-13 08:30:37,455 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,455 | INFO | Music 0.738 0.000 0.479 ✓ +2026-07-13 08:30:37,455 | INFO | Sitar 0.365 0.000 0.238 ✓ +2026-07-13 08:30:37,455 | INFO | Tabla 0.243 0.000 0.158 ✓ +2026-07-13 08:30:37,455 | INFO | Musical instrument 0.181 0.000 0.118 ✗ +2026-07-13 08:30:37,460 | INFO | Middle Eastern music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:37,460 | INFO | Carnatic music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:37,460 | INFO | → WINNER: Music (combined=0.479) +2026-07-13 08:30:37,485 | INFO | +[926.20s] AMBIENT | scene='' +2026-07-13 08:30:37,485 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,485 | INFO | Music 0.686 0.000 0.446 ✓ +2026-07-13 08:30:37,485 | INFO | Bicycle bell 0.360 0.000 0.234 ✓ +2026-07-13 08:30:37,485 | INFO | Tabla 0.147 0.000 0.096 ✗ +2026-07-13 08:30:37,485 | INFO | Musical instrument 0.139 0.000 0.091 ✗ +2026-07-13 08:30:37,485 | INFO | Sitar 0.134 0.000 0.087 ✗ +2026-07-13 08:30:37,485 | INFO | Bell 0.123 0.000 0.080 ✗ +2026-07-13 08:30:37,485 | INFO | → WINNER: Music (combined=0.446) +2026-07-13 08:30:37,509 | INFO | +[926.40s] AMBIENT | scene='' +2026-07-13 08:30:37,509 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,509 | INFO | Music 0.678 0.000 0.441 ✓ +2026-07-13 08:30:37,509 | INFO | Carnatic music 0.269 0.000 0.175 ✓ +2026-07-13 08:30:37,509 | INFO | Tabla 0.269 0.000 0.175 ✓ +2026-07-13 08:30:37,509 | INFO | Musical instrument 0.202 0.000 0.132 ✓ +2026-07-13 08:30:37,509 | INFO | Sitar 0.195 0.000 0.127 ✓ +2026-07-13 08:30:37,517 | INFO | Percussion 0.092 0.000 0.060 ✗ +2026-07-13 08:30:37,517 | INFO | → WINNER: Music (combined=0.441) +2026-07-13 08:30:37,543 | INFO | +[926.60s] AMBIENT | scene='' +2026-07-13 08:30:37,543 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,543 | INFO | Music 0.680 0.000 0.442 ✓ +2026-07-13 08:30:37,543 | INFO | Tabla 0.283 0.000 0.184 ✓ +2026-07-13 08:30:37,543 | INFO | Carnatic music 0.233 0.000 0.152 ✓ +2026-07-13 08:30:37,543 | INFO | Sitar 0.229 0.000 0.149 ✓ +2026-07-13 08:30:37,543 | INFO | Musical instrument 0.196 0.000 0.128 ✓ +2026-07-13 08:30:37,543 | INFO | Classical music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:37,543 | INFO | → WINNER: Music (combined=0.442) +2026-07-13 08:30:37,570 | INFO | +[926.80s] AMBIENT | scene='' +2026-07-13 08:30:37,570 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,570 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:37,570 | INFO | Sitar 0.052 0.000 0.034 ✗ +2026-07-13 08:30:37,570 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:37,600 | INFO | +[927.00s] AMBIENT | scene='' +2026-07-13 08:30:37,600 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,600 | INFO | Music 0.756 0.000 0.491 ✓ +2026-07-13 08:30:37,600 | INFO | Tabla 0.175 0.000 0.114 ✗ +2026-07-13 08:30:37,600 | INFO | Musical instrument 0.109 0.000 0.071 ✗ +2026-07-13 08:30:37,600 | INFO | Sitar 0.102 0.000 0.066 ✗ +2026-07-13 08:30:37,600 | INFO | Percussion 0.096 0.000 0.062 ✗ +2026-07-13 08:30:37,600 | INFO | Drum 0.080 0.000 0.052 ✗ +2026-07-13 08:30:37,600 | INFO | → WINNER: Music (combined=0.491) +2026-07-13 08:30:37,625 | INFO | +[927.20s] AMBIENT | scene='' +2026-07-13 08:30:37,625 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,625 | INFO | Music 0.846 0.000 0.550 ✓ +2026-07-13 08:30:37,625 | INFO | Musical instrument 0.087 0.000 0.057 ✗ +2026-07-13 08:30:37,625 | INFO | Traditional music 0.087 0.000 0.057 ✗ +2026-07-13 08:30:37,633 | INFO | Middle Eastern music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:37,634 | INFO | Sitar 0.049 0.000 0.032 ✗ +2026-07-13 08:30:37,634 | INFO | → WINNER: Music (combined=0.550) +2026-07-13 08:30:37,661 | INFO | +[927.40s] AMBIENT | scene='' +2026-07-13 08:30:37,661 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,661 | INFO | Music 0.833 0.000 0.541 ✓ +2026-07-13 08:30:37,661 | INFO | Musical instrument 0.262 0.000 0.170 ✓ +2026-07-13 08:30:37,661 | INFO | Guitar 0.066 0.000 0.043 ✗ +2026-07-13 08:30:37,661 | INFO | Plucked string instrument 0.065 0.000 0.042 ✗ +2026-07-13 08:30:37,661 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:37,683 | INFO | +[927.60s] AMBIENT | scene='' +2026-07-13 08:30:37,683 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,690 | INFO | Music 0.728 0.000 0.473 ✓ +2026-07-13 08:30:37,690 | INFO | Musical instrument 0.102 0.000 0.066 ✗ +2026-07-13 08:30:37,690 | INFO | → WINNER: Music (combined=0.473) +2026-07-13 08:30:37,716 | INFO | +[927.80s] AMBIENT | scene='' +2026-07-13 08:30:37,716 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,716 | INFO | Music 0.809 0.000 0.526 ✓ +2026-07-13 08:30:37,716 | INFO | Musical instrument 0.191 0.000 0.124 ✓ +2026-07-13 08:30:37,716 | INFO | Tabla 0.129 0.000 0.084 ✗ +2026-07-13 08:30:37,720 | INFO | Percussion 0.116 0.000 0.075 ✗ +2026-07-13 08:30:37,720 | INFO | Drum 0.101 0.000 0.066 ✗ +2026-07-13 08:30:37,720 | INFO | Middle Eastern music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:37,720 | INFO | → WINNER: Music (combined=0.526) +2026-07-13 08:30:37,749 | INFO | +[928.00s] AMBIENT | scene='' +2026-07-13 08:30:37,750 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,750 | INFO | Music 0.703 0.000 0.457 ✓ +2026-07-13 08:30:37,750 | INFO | Folk music 0.130 0.000 0.085 ✗ +2026-07-13 08:30:37,750 | INFO | Middle Eastern music 0.127 0.000 0.082 ✗ +2026-07-13 08:30:37,750 | INFO | Tabla 0.096 0.000 0.063 ✗ +2026-07-13 08:30:37,750 | INFO | Percussion 0.077 0.000 0.050 ✗ +2026-07-13 08:30:37,750 | INFO | Musical instrument 0.070 0.000 0.045 ✗ +2026-07-13 08:30:37,754 | INFO | → WINNER: Music (combined=0.457) +2026-07-13 08:30:37,780 | INFO | +[928.20s] AMBIENT | scene='' +2026-07-13 08:30:37,780 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,780 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:37,780 | INFO | Middle Eastern music 0.195 0.000 0.127 ✓ +2026-07-13 08:30:37,780 | INFO | Folk music 0.163 0.000 0.106 ✗ +2026-07-13 08:30:37,780 | INFO | Singing 0.079 0.000 0.051 ✗ +2026-07-13 08:30:37,780 | INFO | Traditional music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:37,780 | INFO | Musical instrument 0.066 0.000 0.043 ✗ +2026-07-13 08:30:37,780 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:37,805 | INFO | +[928.40s] AMBIENT | scene='' +2026-07-13 08:30:37,805 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,805 | INFO | Music 0.807 0.000 0.524 ✓ +2026-07-13 08:30:37,805 | INFO | Singing 0.141 0.000 0.091 ✗ +2026-07-13 08:30:37,805 | INFO | Musical instrument 0.101 0.000 0.066 ✗ +2026-07-13 08:30:37,805 | INFO | Folk music 0.092 0.000 0.059 ✗ +2026-07-13 08:30:37,805 | INFO | Middle Eastern music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:37,805 | INFO | Sitar 0.042 0.000 0.027 ✗ +2026-07-13 08:30:37,805 | INFO | → WINNER: Music (combined=0.524) +2026-07-13 08:30:37,835 | INFO | +[928.60s] AMBIENT | scene='' +2026-07-13 08:30:37,835 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,838 | INFO | Music 0.704 0.000 0.458 ✓ +2026-07-13 08:30:37,838 | INFO | Singing 0.152 0.000 0.099 ✗ +2026-07-13 08:30:37,838 | INFO | Mantra 0.084 0.000 0.054 ✗ +2026-07-13 08:30:37,838 | INFO | Bicycle bell 0.058 0.000 0.038 ✗ +2026-07-13 08:30:37,838 | INFO | → WINNER: Music (combined=0.458) +2026-07-13 08:30:37,864 | INFO | +[928.80s] AMBIENT | scene='' +2026-07-13 08:30:37,864 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,864 | INFO | Music 0.685 0.000 0.445 ✓ +2026-07-13 08:30:37,864 | INFO | Singing 0.226 0.000 0.147 ✓ +2026-07-13 08:30:37,864 | INFO | Mantra 0.087 0.000 0.056 ✗ +2026-07-13 08:30:37,864 | INFO | Vocal music 0.073 0.000 0.048 ✗ +2026-07-13 08:30:37,864 | INFO | Chant 0.071 0.000 0.046 ✗ +2026-07-13 08:30:37,868 | INFO | Choir 0.058 0.000 0.038 ✗ +2026-07-13 08:30:37,868 | INFO | → WINNER: Music (combined=0.445) +2026-07-13 08:30:37,890 | INFO | +[929.00s] AMBIENT | scene='' +2026-07-13 08:30:37,890 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,890 | INFO | Music 0.740 0.000 0.481 ✓ +2026-07-13 08:30:37,890 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:37,890 | INFO | Mantra 0.118 0.000 0.076 ✗ +2026-07-13 08:30:37,890 | INFO | Vocal music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:37,890 | INFO | A capella 0.064 0.000 0.042 ✗ +2026-07-13 08:30:37,890 | INFO | Chant 0.060 0.000 0.039 ✗ +2026-07-13 08:30:37,890 | INFO | → WINNER: Music (combined=0.481) +2026-07-13 08:30:37,922 | INFO | +[929.20s] AMBIENT | scene='' +2026-07-13 08:30:37,922 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,922 | INFO | Music 0.623 0.000 0.405 ✓ +2026-07-13 08:30:37,922 | INFO | Singing 0.187 0.000 0.122 ✓ +2026-07-13 08:30:37,922 | INFO | Mantra 0.112 0.000 0.073 ✗ +2026-07-13 08:30:37,922 | INFO | A capella 0.110 0.000 0.072 ✗ +2026-07-13 08:30:37,922 | INFO | Male singing 0.084 0.000 0.055 ✗ +2026-07-13 08:30:37,922 | INFO | Vocal music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:37,922 | INFO | → WINNER: Music (combined=0.405) +2026-07-13 08:30:37,951 | INFO | +[929.40s] AMBIENT | scene='' +2026-07-13 08:30:37,951 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,951 | INFO | Music 0.631 0.000 0.410 ✓ +2026-07-13 08:30:37,951 | INFO | Singing 0.205 0.000 0.133 ✓ +2026-07-13 08:30:37,951 | INFO | A capella 0.153 0.000 0.100 ✗ +2026-07-13 08:30:37,951 | INFO | Vocal music 0.093 0.000 0.061 ✗ +2026-07-13 08:30:37,951 | INFO | Mantra 0.087 0.000 0.057 ✗ +2026-07-13 08:30:37,954 | INFO | Chant 0.063 0.000 0.041 ✗ +2026-07-13 08:30:37,955 | INFO | → WINNER: Music (combined=0.410) +2026-07-13 08:30:37,979 | INFO | +[929.60s] AMBIENT | scene='' +2026-07-13 08:30:37,979 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:37,979 | INFO | Music 0.371 0.000 0.241 ✓ +2026-07-13 08:30:37,979 | INFO | Singing 0.170 0.000 0.110 ✗ +2026-07-13 08:30:37,979 | INFO | Male singing 0.105 0.000 0.069 ✗ +2026-07-13 08:30:37,979 | INFO | Mantra 0.091 0.000 0.059 ✗ +2026-07-13 08:30:37,979 | INFO | Chant 0.076 0.000 0.050 ✗ +2026-07-13 08:30:37,979 | INFO | A capella 0.068 0.000 0.044 ✗ +2026-07-13 08:30:37,979 | INFO | → WINNER: Music (combined=0.241) +2026-07-13 08:30:38,006 | INFO | +[929.80s] AMBIENT | scene='' +2026-07-13 08:30:38,006 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,006 | INFO | Music 0.821 0.000 0.534 ✓ +2026-07-13 08:30:38,006 | INFO | Singing 0.228 0.000 0.148 ✓ +2026-07-13 08:30:38,006 | INFO | Musical instrument 0.111 0.000 0.072 ✗ +2026-07-13 08:30:38,006 | INFO | Male singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:38,006 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:38,036 | INFO | +[930.00s] AMBIENT | scene='' +2026-07-13 08:30:38,036 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,036 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:30:38,036 | INFO | Singing 0.175 0.000 0.114 ✗ +2026-07-13 08:30:38,036 | INFO | Middle Eastern music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:38,036 | INFO | Folk music 0.094 0.000 0.061 ✗ +2026-07-13 08:30:38,036 | INFO | Musical instrument 0.091 0.000 0.059 ✗ +2026-07-13 08:30:38,036 | INFO | Mantra 0.056 0.000 0.036 ✗ +2026-07-13 08:30:38,036 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:38,061 | INFO | +[930.20s] AMBIENT | scene='' +2026-07-13 08:30:38,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,061 | INFO | Music 0.804 0.000 0.522 ✓ +2026-07-13 08:30:38,061 | INFO | Musical instrument 0.187 0.000 0.122 ✓ +2026-07-13 08:30:38,061 | INFO | Middle Eastern music 0.187 0.000 0.121 ✓ +2026-07-13 08:30:38,069 | INFO | Folk music 0.155 0.000 0.101 ✗ +2026-07-13 08:30:38,069 | INFO | Sitar 0.132 0.000 0.086 ✗ +2026-07-13 08:30:38,069 | INFO | Tabla 0.105 0.000 0.069 ✗ +2026-07-13 08:30:38,069 | INFO | → WINNER: Music (combined=0.522) +2026-07-13 08:30:38,093 | INFO | +[930.40s] AMBIENT | scene='' +2026-07-13 08:30:38,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,093 | INFO | Music 0.826 0.000 0.537 ✓ +2026-07-13 08:30:38,093 | INFO | Middle Eastern music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:38,093 | INFO | Folk music 0.128 0.000 0.083 ✗ +2026-07-13 08:30:38,093 | INFO | Singing 0.115 0.000 0.075 ✗ +2026-07-13 08:30:38,093 | INFO | Musical instrument 0.098 0.000 0.064 ✗ +2026-07-13 08:30:38,093 | INFO | Music of Bollywood 0.046 0.000 0.030 ✗ +2026-07-13 08:30:38,093 | INFO | → WINNER: Music (combined=0.537) +2026-07-13 08:30:38,125 | INFO | +[930.60s] AMBIENT | scene='' +2026-07-13 08:30:38,125 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,126 | INFO | Music 0.692 0.000 0.450 ✓ +2026-07-13 08:30:38,127 | INFO | Middle Eastern music 0.149 0.000 0.097 ✗ +2026-07-13 08:30:38,127 | INFO | Singing 0.140 0.000 0.091 ✗ +2026-07-13 08:30:38,127 | INFO | Mantra 0.079 0.000 0.051 ✗ +2026-07-13 08:30:38,127 | INFO | Music of Bollywood 0.043 0.000 0.028 ✗ +2026-07-13 08:30:38,128 | INFO | → WINNER: Music (combined=0.450) +2026-07-13 08:30:38,153 | INFO | +[930.80s] AMBIENT | scene='' +2026-07-13 08:30:38,153 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,153 | INFO | Music 0.701 0.000 0.456 ✓ +2026-07-13 08:30:38,153 | INFO | Singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:38,153 | INFO | Mantra 0.053 0.000 0.034 ✗ +2026-07-13 08:30:38,153 | INFO | → WINNER: Music (combined=0.456) +2026-07-13 08:30:38,183 | INFO | +[931.00s] AMBIENT | scene='' +2026-07-13 08:30:38,183 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,183 | INFO | Music 0.336 0.000 0.218 ✓ +2026-07-13 08:30:38,183 | INFO | Mantra 0.083 0.000 0.054 ✗ +2026-07-13 08:30:38,183 | INFO | Chant 0.054 0.000 0.035 ✗ +2026-07-13 08:30:38,183 | INFO | → WINNER: Music (combined=0.218) +2026-07-13 08:30:38,209 | INFO | +[931.20s] AMBIENT | scene='' +2026-07-13 08:30:38,209 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,209 | INFO | Music 0.213 0.000 0.139 ✓ +2026-07-13 08:30:38,209 | INFO | Chant 0.070 0.000 0.045 ✗ +2026-07-13 08:30:38,209 | INFO | Mantra 0.061 0.000 0.040 ✗ +2026-07-13 08:30:38,209 | INFO | → WINNER: Music (combined=0.139) +2026-07-13 08:30:38,240 | INFO | +[931.40s] AMBIENT | scene='' +2026-07-13 08:30:38,240 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,240 | INFO | Music 0.155 0.000 0.101 ✗ +2026-07-13 08:30:38,240 | INFO | Chant 0.080 0.000 0.052 ✗ +2026-07-13 08:30:38,240 | INFO | → no winner +2026-07-13 08:30:38,264 | INFO | +[931.60s] AMBIENT | scene='' +2026-07-13 08:30:38,264 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,264 | INFO | Chant 0.333 0.000 0.216 ✓ +2026-07-13 08:30:38,264 | INFO | Choir 0.328 0.000 0.213 ✓ +2026-07-13 08:30:38,264 | INFO | Music 0.292 0.000 0.190 ✓ +2026-07-13 08:30:38,264 | INFO | A capella 0.240 0.000 0.156 ✓ +2026-07-13 08:30:38,264 | INFO | Singing 0.233 0.000 0.152 ✓ +2026-07-13 08:30:38,264 | INFO | Vocal music 0.147 0.000 0.096 ✗ +2026-07-13 08:30:38,264 | INFO | → WINNER: Chant (combined=0.216) +2026-07-13 08:30:38,298 | INFO | +[931.80s] AMBIENT | scene='' +2026-07-13 08:30:38,298 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,298 | INFO | Music 0.701 0.000 0.455 ✓ +2026-07-13 08:30:38,298 | INFO | Singing 0.257 0.000 0.167 ✓ +2026-07-13 08:30:38,298 | INFO | Chant 0.246 0.000 0.160 ✓ +2026-07-13 08:30:38,298 | INFO | Choir 0.239 0.000 0.155 ✓ +2026-07-13 08:30:38,298 | INFO | A capella 0.150 0.000 0.097 ✗ +2026-07-13 08:30:38,298 | INFO | Vocal music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:38,298 | INFO | → WINNER: Music (combined=0.455) +2026-07-13 08:30:38,325 | INFO | +[932.00s] AMBIENT | scene='' +2026-07-13 08:30:38,329 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,329 | INFO | Music 0.660 0.000 0.429 ✓ +2026-07-13 08:30:38,329 | INFO | A capella 0.362 0.000 0.235 ✓ +2026-07-13 08:30:38,329 | INFO | Singing 0.362 0.000 0.235 ✓ +2026-07-13 08:30:38,329 | INFO | Vocal music 0.245 0.000 0.159 ✓ +2026-07-13 08:30:38,331 | INFO | Choir 0.214 0.000 0.139 ✓ +2026-07-13 08:30:38,331 | INFO | Chant 0.124 0.000 0.081 ✗ +2026-07-13 08:30:38,331 | INFO | → WINNER: Music (combined=0.429) +2026-07-13 08:30:38,356 | INFO | +[932.20s] AMBIENT | scene='' +2026-07-13 08:30:38,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,356 | INFO | Music 0.587 0.000 0.382 ✓ +2026-07-13 08:30:38,356 | INFO | Singing 0.291 0.000 0.189 ✓ +2026-07-13 08:30:38,356 | INFO | Vocal music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:38,356 | INFO | A capella 0.122 0.000 0.080 ✗ +2026-07-13 08:30:38,356 | INFO | Mantra 0.080 0.000 0.052 ✗ +2026-07-13 08:30:38,356 | INFO | Musical instrument 0.059 0.000 0.038 ✗ +2026-07-13 08:30:38,356 | INFO | → WINNER: Music (combined=0.382) +2026-07-13 08:30:38,381 | INFO | +[932.40s] AMBIENT | scene='' +2026-07-13 08:30:38,381 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,381 | INFO | Music 0.716 0.000 0.465 ✓ +2026-07-13 08:30:38,381 | INFO | Singing 0.300 0.000 0.195 ✓ +2026-07-13 08:30:38,381 | INFO | Vocal music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:38,381 | INFO | Music of Asia 0.062 0.000 0.040 ✗ +2026-07-13 08:30:38,381 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:38,409 | INFO | +[932.60s] AMBIENT | scene='' +2026-07-13 08:30:38,413 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,414 | INFO | Music 0.489 0.000 0.318 ✓ +2026-07-13 08:30:38,415 | INFO | Singing 0.329 0.000 0.214 ✓ +2026-07-13 08:30:38,415 | INFO | Chant 0.173 0.000 0.113 ✗ +2026-07-13 08:30:38,415 | INFO | A capella 0.132 0.000 0.086 ✗ +2026-07-13 08:30:38,415 | INFO | Vocal music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:38,415 | INFO | Male singing 0.075 0.000 0.049 ✗ +2026-07-13 08:30:38,415 | INFO | → WINNER: Music (combined=0.318) +2026-07-13 08:30:38,441 | INFO | +[932.80s] AMBIENT | scene='' +2026-07-13 08:30:38,441 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,441 | INFO | Chant 0.437 0.000 0.284 ✓ +2026-07-13 08:30:38,441 | INFO | Music 0.367 0.000 0.239 ✓ +2026-07-13 08:30:38,441 | INFO | Singing 0.227 0.000 0.147 ✓ +2026-07-13 08:30:38,441 | INFO | Mantra 0.150 0.000 0.097 ✗ +2026-07-13 08:30:38,441 | INFO | Choir 0.134 0.000 0.087 ✗ +2026-07-13 08:30:38,441 | INFO | Vocal music 0.105 0.000 0.068 ✗ +2026-07-13 08:30:38,441 | INFO | → WINNER: Chant (combined=0.284) +2026-07-13 08:30:38,471 | INFO | +[933.00s] AMBIENT | scene='' +2026-07-13 08:30:38,471 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,471 | INFO | Chant 0.503 0.000 0.327 ✓ +2026-07-13 08:30:38,471 | INFO | Music 0.324 0.000 0.211 ✓ +2026-07-13 08:30:38,471 | INFO | Choir 0.260 0.000 0.169 ✓ +2026-07-13 08:30:38,471 | INFO | Singing 0.230 0.000 0.149 ✓ +2026-07-13 08:30:38,471 | INFO | A capella 0.179 0.000 0.116 ✗ +2026-07-13 08:30:38,471 | INFO | Mantra 0.173 0.000 0.112 ✗ +2026-07-13 08:30:38,471 | INFO | → WINNER: Chant (combined=0.327) +2026-07-13 08:30:38,498 | INFO | +[933.20s] AMBIENT | scene='' +2026-07-13 08:30:38,502 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,502 | INFO | Chant 0.451 0.000 0.293 ✓ +2026-07-13 08:30:38,502 | INFO | Music 0.268 0.000 0.174 ✓ +2026-07-13 08:30:38,502 | INFO | Mantra 0.197 0.000 0.128 ✓ +2026-07-13 08:30:38,502 | INFO | Singing 0.155 0.000 0.101 ✗ +2026-07-13 08:30:38,502 | INFO | Male singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:38,502 | INFO | A capella 0.114 0.000 0.074 ✗ +2026-07-13 08:30:38,502 | INFO | → WINNER: Chant (combined=0.293) +2026-07-13 08:30:38,529 | INFO | +[933.40s] AMBIENT | scene='' +2026-07-13 08:30:38,529 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,529 | INFO | Chant 0.426 0.000 0.277 ✓ +2026-07-13 08:30:38,529 | INFO | Mantra 0.229 0.000 0.149 ✓ +2026-07-13 08:30:38,529 | INFO | Music 0.204 0.000 0.133 ✓ +2026-07-13 08:30:38,529 | INFO | Singing 0.089 0.000 0.058 ✗ +2026-07-13 08:30:38,529 | INFO | → WINNER: Chant (combined=0.277) +2026-07-13 08:30:38,554 | INFO | +[933.60s] AMBIENT | scene='' +2026-07-13 08:30:38,554 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,554 | INFO | Music 0.488 0.000 0.317 ✓ +2026-07-13 08:30:38,554 | INFO | Mantra 0.234 0.000 0.152 ✓ +2026-07-13 08:30:38,554 | INFO | Chant 0.213 0.000 0.138 ✓ +2026-07-13 08:30:38,554 | INFO | Singing 0.083 0.000 0.054 ✗ +2026-07-13 08:30:38,554 | INFO | Middle Eastern music 0.073 0.000 0.048 ✗ +2026-07-13 08:30:38,554 | INFO | → WINNER: Music (combined=0.317) +2026-07-13 08:30:38,585 | INFO | +[933.80s] AMBIENT | scene='' +2026-07-13 08:30:38,586 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,586 | INFO | Music 0.506 0.000 0.329 ✓ +2026-07-13 08:30:38,586 | INFO | Mantra 0.234 0.000 0.152 ✓ +2026-07-13 08:30:38,586 | INFO | Chant 0.129 0.000 0.084 ✗ +2026-07-13 08:30:38,586 | INFO | Singing 0.076 0.000 0.050 ✗ +2026-07-13 08:30:38,586 | INFO | Middle Eastern music 0.061 0.000 0.040 ✗ +2026-07-13 08:30:38,586 | INFO | → WINNER: Music (combined=0.329) +2026-07-13 08:30:38,611 | INFO | +[934.00s] AMBIENT | scene='' +2026-07-13 08:30:38,611 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,611 | INFO | Music 0.655 0.000 0.426 ✓ +2026-07-13 08:30:38,611 | INFO | Mantra 0.164 0.000 0.106 ✗ +2026-07-13 08:30:38,611 | INFO | Middle Eastern music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:38,611 | INFO | Chant 0.112 0.000 0.072 ✗ +2026-07-13 08:30:38,611 | INFO | Singing 0.100 0.000 0.065 ✗ +2026-07-13 08:30:38,611 | INFO | Carnatic music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:38,611 | INFO | → WINNER: Music (combined=0.426) +2026-07-13 08:30:38,644 | INFO | +[934.20s] AMBIENT | scene='' +2026-07-13 08:30:38,644 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,644 | INFO | Music 0.738 0.000 0.480 ✓ +2026-07-13 08:30:38,644 | INFO | Carnatic music 0.174 0.000 0.113 ✗ +2026-07-13 08:30:38,644 | INFO | Singing 0.171 0.000 0.111 ✗ +2026-07-13 08:30:38,644 | INFO | Middle Eastern music 0.170 0.000 0.110 ✗ +2026-07-13 08:30:38,644 | INFO | Mantra 0.136 0.000 0.088 ✗ +2026-07-13 08:30:38,644 | INFO | Music of Bollywood 0.103 0.000 0.067 ✗ +2026-07-13 08:30:38,644 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:38,669 | INFO | +[934.40s] AMBIENT | scene='' +2026-07-13 08:30:38,669 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,669 | INFO | Music 0.768 0.000 0.499 ✓ +2026-07-13 08:30:38,669 | INFO | Singing 0.269 0.000 0.175 ✓ +2026-07-13 08:30:38,669 | INFO | Middle Eastern music 0.129 0.000 0.084 ✗ +2026-07-13 08:30:38,669 | INFO | Chant 0.080 0.000 0.052 ✗ +2026-07-13 08:30:38,669 | INFO | Musical instrument 0.073 0.000 0.047 ✗ +2026-07-13 08:30:38,669 | INFO | Mantra 0.060 0.000 0.039 ✗ +2026-07-13 08:30:38,669 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:38,702 | INFO | +[934.60s] AMBIENT | scene='' +2026-07-13 08:30:38,702 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,702 | INFO | Music 0.604 0.000 0.393 ✓ +2026-07-13 08:30:38,702 | INFO | Singing 0.279 0.000 0.182 ✓ +2026-07-13 08:30:38,702 | INFO | Vocal music 0.084 0.000 0.054 ✗ +2026-07-13 08:30:38,702 | INFO | Musical instrument 0.075 0.000 0.049 ✗ +2026-07-13 08:30:38,702 | INFO | Chant 0.065 0.000 0.042 ✗ +2026-07-13 08:30:38,702 | INFO | → WINNER: Music (combined=0.393) +2026-07-13 08:30:38,727 | INFO | +[934.80s] AMBIENT | scene='' +2026-07-13 08:30:38,734 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,734 | INFO | Music 0.662 0.000 0.430 ✓ +2026-07-13 08:30:38,734 | INFO | Singing 0.226 0.000 0.147 ✓ +2026-07-13 08:30:38,734 | INFO | Musical instrument 0.127 0.000 0.083 ✗ +2026-07-13 08:30:38,735 | INFO | Vocal music 0.060 0.000 0.039 ✗ +2026-07-13 08:30:38,735 | INFO | Chant 0.057 0.000 0.037 ✗ +2026-07-13 08:30:38,735 | INFO | → WINNER: Music (combined=0.430) +2026-07-13 08:30:38,758 | INFO | +[935.00s] AMBIENT | scene='' +2026-07-13 08:30:38,758 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,758 | INFO | Music 0.486 0.000 0.316 ✓ +2026-07-13 08:30:38,758 | INFO | Singing 0.111 0.000 0.072 ✗ +2026-07-13 08:30:38,758 | INFO | Musical instrument 0.083 0.000 0.054 ✗ +2026-07-13 08:30:38,758 | INFO | Chant 0.053 0.000 0.035 ✗ +2026-07-13 08:30:38,758 | INFO | → WINNER: Music (combined=0.316) +2026-07-13 08:30:38,792 | INFO | +[935.20s] AMBIENT | scene='' +2026-07-13 08:30:38,792 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,792 | INFO | Music 0.364 0.000 0.236 ✓ +2026-07-13 08:30:38,792 | INFO | Singing 0.144 0.000 0.094 ✗ +2026-07-13 08:30:38,792 | INFO | Chant 0.138 0.000 0.090 ✗ +2026-07-13 08:30:38,792 | INFO | Mantra 0.130 0.000 0.085 ✗ +2026-07-13 08:30:38,792 | INFO | → WINNER: Music (combined=0.236) +2026-07-13 08:30:38,818 | INFO | +[935.40s] AMBIENT | scene='' +2026-07-13 08:30:38,820 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,820 | INFO | Music 0.801 0.000 0.520 ✓ +2026-07-13 08:30:38,820 | INFO | Singing 0.203 0.000 0.132 ✓ +2026-07-13 08:30:38,820 | INFO | Choir 0.069 0.000 0.045 ✗ +2026-07-13 08:30:38,820 | INFO | A capella 0.052 0.000 0.034 ✗ +2026-07-13 08:30:38,820 | INFO | → WINNER: Music (combined=0.520) +2026-07-13 08:30:38,849 | INFO | +[935.60s] AMBIENT | scene='' +2026-07-13 08:30:38,849 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,849 | INFO | Music 0.844 0.000 0.548 ✓ +2026-07-13 08:30:38,849 | INFO | Singing 0.140 0.000 0.091 ✗ +2026-07-13 08:30:38,849 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:38,873 | INFO | +[935.80s] AMBIENT | scene='' +2026-07-13 08:30:38,873 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,873 | INFO | Music 0.797 0.000 0.518 ✓ +2026-07-13 08:30:38,873 | INFO | Singing 0.105 0.000 0.068 ✗ +2026-07-13 08:30:38,873 | INFO | Musical instrument 0.056 0.000 0.036 ✗ +2026-07-13 08:30:38,873 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:38,905 | INFO | +[936.00s] AMBIENT | scene='' +2026-07-13 08:30:38,905 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,905 | INFO | Music 0.778 0.000 0.505 ✓ +2026-07-13 08:30:38,905 | INFO | Singing 0.126 0.000 0.082 ✗ +2026-07-13 08:30:38,905 | INFO | Musical instrument 0.057 0.000 0.037 ✗ +2026-07-13 08:30:38,905 | INFO | Mantra 0.057 0.000 0.037 ✗ +2026-07-13 08:30:38,905 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:38,930 | INFO | +[936.20s] AMBIENT | scene='' +2026-07-13 08:30:38,930 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,930 | INFO | Music 0.791 0.000 0.514 ✓ +2026-07-13 08:30:38,930 | INFO | Musical instrument 0.092 0.000 0.060 ✗ +2026-07-13 08:30:38,930 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:38,959 | INFO | +[936.40s] AMBIENT | scene='' +2026-07-13 08:30:38,963 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,964 | INFO | Music 0.835 0.000 0.543 ✓ +2026-07-13 08:30:38,964 | INFO | Singing 0.134 0.000 0.087 ✗ +2026-07-13 08:30:38,964 | INFO | → WINNER: Music (combined=0.543) +2026-07-13 08:30:38,987 | INFO | +[936.60s] AMBIENT | scene='' +2026-07-13 08:30:38,987 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:38,987 | INFO | Music 0.867 0.000 0.564 ✓ +2026-07-13 08:30:38,987 | INFO | Musical instrument 0.106 0.000 0.069 ✗ +2026-07-13 08:30:38,987 | INFO | Singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:38,987 | INFO | → WINNER: Music (combined=0.564) +2026-07-13 08:30:39,012 | INFO | +[936.80s] AMBIENT | scene='' +2026-07-13 08:30:39,012 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,020 | INFO | Music 0.886 0.000 0.576 ✓ +2026-07-13 08:30:39,020 | INFO | Singing 0.094 0.000 0.061 ✗ +2026-07-13 08:30:39,020 | INFO | Musical instrument 0.065 0.000 0.042 ✗ +2026-07-13 08:30:39,020 | INFO | → WINNER: Music (combined=0.576) +2026-07-13 08:30:39,044 | INFO | +[937.00s] AMBIENT | scene='' +2026-07-13 08:30:39,044 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,044 | INFO | Music 0.844 0.000 0.549 ✓ +2026-07-13 08:30:39,044 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:39,044 | INFO | Musical instrument 0.071 0.000 0.046 ✗ +2026-07-13 08:30:39,044 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:39,069 | INFO | +[937.20s] AMBIENT | scene='' +2026-07-13 08:30:39,069 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,069 | INFO | Music 0.519 0.000 0.337 ✓ +2026-07-13 08:30:39,069 | INFO | Mantra 0.133 0.000 0.086 ✗ +2026-07-13 08:30:39,069 | INFO | Singing 0.103 0.000 0.067 ✗ +2026-07-13 08:30:39,069 | INFO | Chant 0.052 0.000 0.034 ✗ +2026-07-13 08:30:39,069 | INFO | → WINNER: Music (combined=0.337) +2026-07-13 08:30:39,102 | INFO | +[937.40s] AMBIENT | scene='' +2026-07-13 08:30:39,102 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,102 | INFO | Music 0.775 0.000 0.504 ✓ +2026-07-13 08:30:39,102 | INFO | Mantra 0.199 0.000 0.129 ✓ +2026-07-13 08:30:39,102 | INFO | Carnatic music 0.102 0.000 0.067 ✗ +2026-07-13 08:30:39,102 | INFO | Singing 0.091 0.000 0.059 ✗ +2026-07-13 08:30:39,102 | INFO | Middle Eastern music 0.061 0.000 0.040 ✗ +2026-07-13 08:30:39,102 | INFO | → WINNER: Music (combined=0.504) +2026-07-13 08:30:39,128 | INFO | +[937.60s] AMBIENT | scene='' +2026-07-13 08:30:39,135 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,135 | INFO | Music 0.821 0.000 0.534 ✓ +2026-07-13 08:30:39,136 | INFO | Carnatic music 0.247 0.000 0.160 ✓ +2026-07-13 08:30:39,136 | INFO | Mantra 0.165 0.000 0.107 ✗ +2026-07-13 08:30:39,136 | INFO | Singing 0.131 0.000 0.085 ✗ +2026-07-13 08:30:39,137 | INFO | Sitar 0.131 0.000 0.085 ✗ +2026-07-13 08:30:39,137 | INFO | Middle Eastern music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:39,137 | INFO | → WINNER: Music (combined=0.534) +2026-07-13 08:30:39,159 | INFO | +[937.80s] AMBIENT | scene='' +2026-07-13 08:30:39,159 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,159 | INFO | Music 0.823 0.000 0.535 ✓ +2026-07-13 08:30:39,159 | INFO | Sitar 0.383 0.000 0.249 ✓ +2026-07-13 08:30:39,159 | INFO | Carnatic music 0.372 0.000 0.242 ✓ +2026-07-13 08:30:39,159 | INFO | Musical instrument 0.165 0.000 0.107 ✗ +2026-07-13 08:30:39,159 | INFO | Singing 0.160 0.000 0.104 ✗ +2026-07-13 08:30:39,159 | INFO | Tabla 0.159 0.000 0.103 ✗ +2026-07-13 08:30:39,159 | INFO | → WINNER: Music (combined=0.535) +2026-07-13 08:30:39,185 | INFO | +[938.00s] AMBIENT | scene='' +2026-07-13 08:30:39,192 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,192 | INFO | Music 0.774 0.000 0.503 ✓ +2026-07-13 08:30:39,193 | INFO | Sitar 0.304 0.000 0.198 ✓ +2026-07-13 08:30:39,193 | INFO | Carnatic music 0.251 0.000 0.163 ✓ +2026-07-13 08:30:39,193 | INFO | Mantra 0.122 0.000 0.079 ✗ +2026-07-13 08:30:39,193 | INFO | Singing 0.092 0.000 0.060 ✗ +2026-07-13 08:30:39,193 | INFO | Musical instrument 0.089 0.000 0.058 ✗ +2026-07-13 08:30:39,193 | INFO | → WINNER: Music (combined=0.503) +2026-07-13 08:30:39,217 | INFO | +[938.20s] AMBIENT | scene='' +2026-07-13 08:30:39,217 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,217 | INFO | Music 0.791 0.000 0.514 ✓ +2026-07-13 08:30:39,217 | INFO | Middle Eastern music 0.252 0.000 0.164 ✓ +2026-07-13 08:30:39,217 | INFO | Singing 0.150 0.000 0.097 ✗ +2026-07-13 08:30:39,217 | INFO | Carnatic music 0.148 0.000 0.097 ✗ +2026-07-13 08:30:39,217 | INFO | Folk music 0.121 0.000 0.079 ✗ +2026-07-13 08:30:39,225 | INFO | Musical instrument 0.108 0.000 0.070 ✗ +2026-07-13 08:30:39,225 | INFO | → WINNER: Music (combined=0.514) +2026-07-13 08:30:39,250 | INFO | +[938.40s] AMBIENT | scene='' +2026-07-13 08:30:39,250 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,250 | INFO | Music 0.676 0.000 0.439 ✓ +2026-07-13 08:30:39,250 | INFO | Singing 0.180 0.000 0.117 ✗ +2026-07-13 08:30:39,250 | INFO | Mantra 0.076 0.000 0.050 ✗ +2026-07-13 08:30:39,250 | INFO | → WINNER: Music (combined=0.439) +2026-07-13 08:30:39,274 | INFO | +[938.60s] AMBIENT | scene='' +2026-07-13 08:30:39,274 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,274 | INFO | Music 0.529 0.000 0.344 ✓ +2026-07-13 08:30:39,282 | INFO | Singing 0.173 0.000 0.113 ✗ +2026-07-13 08:30:39,282 | INFO | Mantra 0.077 0.000 0.050 ✗ +2026-07-13 08:30:39,282 | INFO | Chant 0.052 0.000 0.034 ✗ +2026-07-13 08:30:39,283 | INFO | → WINNER: Music (combined=0.344) +2026-07-13 08:30:39,307 | INFO | +[938.80s] AMBIENT | scene='' +2026-07-13 08:30:39,310 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,310 | INFO | Music 0.428 0.000 0.278 ✓ +2026-07-13 08:30:39,310 | INFO | Singing 0.185 0.000 0.120 ✓ +2026-07-13 08:30:39,310 | INFO | A capella 0.089 0.000 0.058 ✗ +2026-07-13 08:30:39,310 | INFO | Male singing 0.082 0.000 0.053 ✗ +2026-07-13 08:30:39,310 | INFO | Mantra 0.068 0.000 0.044 ✗ +2026-07-13 08:30:39,310 | INFO | Chant 0.058 0.000 0.038 ✗ +2026-07-13 08:30:39,310 | INFO | → WINNER: Music (combined=0.278) +2026-07-13 08:30:39,337 | INFO | +[939.00s] AMBIENT | scene='' +2026-07-13 08:30:39,337 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,337 | INFO | Music 0.226 0.000 0.147 ✓ +2026-07-13 08:30:39,339 | INFO | Singing 0.129 0.000 0.084 ✗ +2026-07-13 08:30:39,339 | INFO | Mantra 0.092 0.000 0.060 ✗ +2026-07-13 08:30:39,339 | INFO | Chant 0.084 0.000 0.054 ✗ +2026-07-13 08:30:39,339 | INFO | A capella 0.070 0.000 0.045 ✗ +2026-07-13 08:30:39,339 | INFO | → WINNER: Music (combined=0.147) +2026-07-13 08:30:39,365 | INFO | +[939.20s] AMBIENT | scene='' +2026-07-13 08:30:39,365 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,365 | INFO | Music 0.467 0.000 0.303 ✓ +2026-07-13 08:30:39,365 | INFO | Singing 0.200 0.000 0.130 ✓ +2026-07-13 08:30:39,365 | INFO | Male singing 0.109 0.000 0.071 ✗ +2026-07-13 08:30:39,365 | INFO | A capella 0.106 0.000 0.069 ✗ +2026-07-13 08:30:39,365 | INFO | Chant 0.100 0.000 0.065 ✗ +2026-07-13 08:30:39,365 | INFO | Choir 0.099 0.000 0.064 ✗ +2026-07-13 08:30:39,365 | INFO | → WINNER: Music (combined=0.303) +2026-07-13 08:30:39,389 | INFO | +[939.40s] AMBIENT | scene='' +2026-07-13 08:30:39,389 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,389 | INFO | Music 0.672 0.000 0.437 ✓ +2026-07-13 08:30:39,396 | INFO | Singing 0.168 0.000 0.109 ✗ +2026-07-13 08:30:39,396 | INFO | Chant 0.140 0.000 0.091 ✗ +2026-07-13 08:30:39,397 | INFO | Mantra 0.107 0.000 0.070 ✗ +2026-07-13 08:30:39,398 | INFO | Choir 0.093 0.000 0.060 ✗ +2026-07-13 08:30:39,398 | INFO | Crowd 0.046 0.000 0.030 ✗ +2026-07-13 08:30:39,398 | INFO | → WINNER: Music (combined=0.437) +2026-07-13 08:30:39,421 | INFO | +[939.60s] AMBIENT | scene='' +2026-07-13 08:30:39,421 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,426 | INFO | Music 0.715 0.000 0.465 ✓ +2026-07-13 08:30:39,426 | INFO | Singing 0.190 0.000 0.123 ✓ +2026-07-13 08:30:39,426 | INFO | Chant 0.164 0.000 0.107 ✗ +2026-07-13 08:30:39,426 | INFO | Mantra 0.137 0.000 0.089 ✗ +2026-07-13 08:30:39,426 | INFO | Choir 0.062 0.000 0.041 ✗ +2026-07-13 08:30:39,429 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:39,454 | INFO | +[939.80s] AMBIENT | scene='' +2026-07-13 08:30:39,454 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,454 | INFO | Music 0.778 0.000 0.505 ✓ +2026-07-13 08:30:39,454 | INFO | Singing 0.228 0.000 0.148 ✓ +2026-07-13 08:30:39,454 | INFO | Male singing 0.089 0.000 0.058 ✗ +2026-07-13 08:30:39,454 | INFO | Musical instrument 0.072 0.000 0.047 ✗ +2026-07-13 08:30:39,454 | INFO | Mantra 0.056 0.000 0.036 ✗ +2026-07-13 08:30:39,454 | INFO | → WINNER: Music (combined=0.505) +2026-07-13 08:30:39,479 | INFO | +[940.00s] AMBIENT | scene='' +2026-07-13 08:30:39,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,479 | INFO | Music 0.706 0.000 0.459 ✓ +2026-07-13 08:30:39,479 | INFO | Singing 0.213 0.000 0.138 ✓ +2026-07-13 08:30:39,479 | INFO | Male singing 0.109 0.000 0.071 ✗ +2026-07-13 08:30:39,479 | INFO | Mantra 0.086 0.000 0.056 ✗ +2026-07-13 08:30:39,479 | INFO | Middle Eastern music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:39,487 | INFO | Chant 0.064 0.000 0.042 ✗ +2026-07-13 08:30:39,487 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:39,512 | INFO | +[940.20s] AMBIENT | scene='' +2026-07-13 08:30:39,512 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,512 | INFO | Music 0.350 0.000 0.228 ✓ +2026-07-13 08:30:39,512 | INFO | Singing 0.207 0.000 0.135 ✓ +2026-07-13 08:30:39,512 | INFO | Male singing 0.097 0.000 0.063 ✗ +2026-07-13 08:30:39,512 | INFO | Chant 0.090 0.000 0.059 ✗ +2026-07-13 08:30:39,512 | INFO | → WINNER: Music (combined=0.228) +2026-07-13 08:30:39,537 | INFO | +[940.40s] AMBIENT | scene='' +2026-07-13 08:30:39,537 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,537 | INFO | Chant 0.431 0.000 0.280 ✓ +2026-07-13 08:30:39,537 | INFO | Music 0.250 0.000 0.163 ✓ +2026-07-13 08:30:39,537 | INFO | Mantra 0.170 0.000 0.110 ✗ +2026-07-13 08:30:39,537 | INFO | Singing 0.112 0.000 0.072 ✗ +2026-07-13 08:30:39,537 | INFO | Choir 0.055 0.000 0.036 ✗ +2026-07-13 08:30:39,537 | INFO | → WINNER: Chant (combined=0.280) +2026-07-13 08:30:39,569 | INFO | +[940.60s] AMBIENT | scene='' +2026-07-13 08:30:39,570 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,570 | INFO | Music 0.154 0.000 0.100 ✗ +2026-07-13 08:30:39,570 | INFO | Chant 0.113 0.000 0.073 ✗ +2026-07-13 08:30:39,571 | INFO | Mantra 0.075 0.000 0.049 ✗ +2026-07-13 08:30:39,571 | INFO | → no winner +2026-07-13 08:30:39,594 | INFO | +[940.80s] AMBIENT | scene='' +2026-07-13 08:30:39,594 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,594 | INFO | Music 0.184 0.000 0.119 ✗ +2026-07-13 08:30:39,594 | INFO | → no winner +2026-07-13 08:30:39,627 | INFO | +[941.00s] AMBIENT | scene='' +2026-07-13 08:30:39,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,627 | INFO | Music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:39,627 | INFO | → no winner +2026-07-13 08:30:39,651 | INFO | +[941.20s] AMBIENT | scene='' +2026-07-13 08:30:39,651 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,651 | INFO | Music 0.761 0.000 0.495 ✓ +2026-07-13 08:30:39,651 | INFO | Singing 0.149 0.000 0.097 ✗ +2026-07-13 08:30:39,651 | INFO | Musical instrument 0.106 0.000 0.069 ✗ +2026-07-13 08:30:39,651 | INFO | Middle Eastern music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:39,651 | INFO | Mantra 0.075 0.000 0.049 ✗ +2026-07-13 08:30:39,651 | INFO | Folk music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:39,651 | INFO | → WINNER: Music (combined=0.495) +2026-07-13 08:30:39,684 | INFO | +[941.40s] AMBIENT | scene='' +2026-07-13 08:30:39,684 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,684 | INFO | Music 0.770 0.000 0.500 ✓ +2026-07-13 08:30:39,684 | INFO | Mantra 0.130 0.000 0.085 ✗ +2026-07-13 08:30:39,684 | INFO | Singing 0.107 0.000 0.069 ✗ +2026-07-13 08:30:39,684 | INFO | Middle Eastern music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:39,684 | INFO | Folk music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:39,684 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:39,710 | INFO | +[941.60s] AMBIENT | scene='' +2026-07-13 08:30:39,710 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,710 | INFO | Music 0.685 0.000 0.445 ✓ +2026-07-13 08:30:39,710 | INFO | Mantra 0.144 0.000 0.093 ✗ +2026-07-13 08:30:39,710 | INFO | Carnatic music 0.115 0.000 0.074 ✗ +2026-07-13 08:30:39,710 | INFO | Singing 0.102 0.000 0.066 ✗ +2026-07-13 08:30:39,710 | INFO | Middle Eastern music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:39,710 | INFO | Music of Asia 0.060 0.000 0.039 ✗ +2026-07-13 08:30:39,710 | INFO | → WINNER: Music (combined=0.445) +2026-07-13 08:30:39,743 | INFO | +[941.80s] AMBIENT | scene='' +2026-07-13 08:30:39,743 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,743 | INFO | Music 0.667 0.000 0.434 ✓ +2026-07-13 08:30:39,743 | INFO | Mantra 0.308 0.000 0.200 ✓ +2026-07-13 08:30:39,743 | INFO | Chant 0.196 0.000 0.127 ✓ +2026-07-13 08:30:39,743 | INFO | Carnatic music 0.183 0.000 0.119 ✗ +2026-07-13 08:30:39,743 | INFO | Singing 0.132 0.000 0.086 ✗ +2026-07-13 08:30:39,743 | INFO | Vocal music 0.096 0.000 0.063 ✗ +2026-07-13 08:30:39,743 | INFO | → WINNER: Music (combined=0.434) +2026-07-13 08:30:39,767 | INFO | +[942.00s] AMBIENT | scene='' +2026-07-13 08:30:39,767 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,767 | INFO | Music 0.469 0.000 0.305 ✓ +2026-07-13 08:30:39,767 | INFO | Chant 0.246 0.000 0.160 ✓ +2026-07-13 08:30:39,774 | INFO | Singing 0.228 0.000 0.148 ✓ +2026-07-13 08:30:39,774 | INFO | Mantra 0.140 0.000 0.091 ✗ +2026-07-13 08:30:39,774 | INFO | Vocal music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:39,774 | INFO | Choir 0.098 0.000 0.063 ✗ +2026-07-13 08:30:39,774 | INFO | → WINNER: Music (combined=0.305) +2026-07-13 08:30:39,799 | INFO | +[942.20s] AMBIENT | scene='' +2026-07-13 08:30:39,799 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,799 | INFO | Music 0.352 0.000 0.229 ✓ +2026-07-13 08:30:39,799 | INFO | Chant 0.267 0.000 0.173 ✓ +2026-07-13 08:30:39,799 | INFO | Singing 0.204 0.000 0.133 ✓ +2026-07-13 08:30:39,799 | INFO | Mantra 0.103 0.000 0.067 ✗ +2026-07-13 08:30:39,799 | INFO | Male singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:39,799 | INFO | Vocal music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:39,799 | INFO | → WINNER: Music (combined=0.229) +2026-07-13 08:30:39,826 | INFO | +[942.40s] AMBIENT | scene='' +2026-07-13 08:30:39,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,826 | INFO | Chant 0.333 0.000 0.217 ✓ +2026-07-13 08:30:39,826 | INFO | Music 0.302 0.000 0.196 ✓ +2026-07-13 08:30:39,826 | INFO | Singing 0.172 0.000 0.112 ✗ +2026-07-13 08:30:39,826 | INFO | Mantra 0.128 0.000 0.083 ✗ +2026-07-13 08:30:39,826 | INFO | Choir 0.094 0.000 0.061 ✗ +2026-07-13 08:30:39,826 | INFO | Male singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:39,826 | INFO | → WINNER: Chant (combined=0.217) +2026-07-13 08:30:39,858 | INFO | +[942.60s] AMBIENT | scene='' +2026-07-13 08:30:39,858 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,858 | INFO | Music 0.300 0.000 0.195 ✓ +2026-07-13 08:30:39,858 | INFO | Chant 0.299 0.000 0.194 ✓ +2026-07-13 08:30:39,858 | INFO | Mantra 0.138 0.000 0.090 ✗ +2026-07-13 08:30:39,858 | INFO | Singing 0.118 0.000 0.076 ✗ +2026-07-13 08:30:39,858 | INFO | Male singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:39,858 | INFO | → WINNER: Music (combined=0.195) +2026-07-13 08:30:39,881 | INFO | +[942.80s] AMBIENT | scene='' +2026-07-13 08:30:39,881 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,889 | INFO | Music 0.179 0.000 0.117 ✗ +2026-07-13 08:30:39,889 | INFO | Chant 0.135 0.000 0.088 ✗ +2026-07-13 08:30:39,889 | INFO | Mantra 0.094 0.000 0.061 ✗ +2026-07-13 08:30:39,889 | INFO | → no winner +2026-07-13 08:30:39,916 | INFO | +[943.00s] AMBIENT | scene='' +2026-07-13 08:30:39,916 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,917 | INFO | Music 0.601 0.000 0.391 ✓ +2026-07-13 08:30:39,917 | INFO | Mantra 0.196 0.000 0.128 ✓ +2026-07-13 08:30:39,917 | INFO | Singing 0.114 0.000 0.074 ✗ +2026-07-13 08:30:39,917 | INFO | Chant 0.067 0.000 0.044 ✗ +2026-07-13 08:30:39,917 | INFO | → WINNER: Music (combined=0.391) +2026-07-13 08:30:39,943 | INFO | +[943.20s] AMBIENT | scene='' +2026-07-13 08:30:39,943 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,943 | INFO | Music 0.745 0.000 0.484 ✓ +2026-07-13 08:30:39,943 | INFO | Carnatic music 0.151 0.000 0.098 ✗ +2026-07-13 08:30:39,943 | INFO | Sitar 0.150 0.000 0.098 ✗ +2026-07-13 08:30:39,943 | INFO | Mantra 0.127 0.000 0.083 ✗ +2026-07-13 08:30:39,943 | INFO | Singing 0.085 0.000 0.055 ✗ +2026-07-13 08:30:39,947 | INFO | Musical instrument 0.070 0.000 0.046 ✗ +2026-07-13 08:30:39,947 | INFO | → WINNER: Music (combined=0.484) +2026-07-13 08:30:39,974 | INFO | +[943.40s] AMBIENT | scene='' +2026-07-13 08:30:39,974 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:39,974 | INFO | Music 0.782 0.000 0.508 ✓ +2026-07-13 08:30:39,974 | INFO | Mantra 0.380 0.000 0.247 ✓ +2026-07-13 08:30:39,974 | INFO | Carnatic music 0.187 0.000 0.122 ✓ +2026-07-13 08:30:39,974 | INFO | Singing 0.136 0.000 0.089 ✗ +2026-07-13 08:30:39,974 | INFO | Sitar 0.120 0.000 0.078 ✗ +2026-07-13 08:30:39,974 | INFO | Musical instrument 0.070 0.000 0.045 ✗ +2026-07-13 08:30:39,974 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:39,997 | INFO | +[943.60s] AMBIENT | scene='' +2026-07-13 08:30:39,997 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,004 | INFO | Music 0.764 0.000 0.497 ✓ +2026-07-13 08:30:40,004 | INFO | Mantra 0.140 0.000 0.091 ✗ +2026-07-13 08:30:40,005 | INFO | Singing 0.127 0.000 0.082 ✗ +2026-07-13 08:30:40,005 | INFO | Folk music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:40,005 | INFO | Carnatic music 0.103 0.000 0.067 ✗ +2026-07-13 08:30:40,005 | INFO | Sitar 0.090 0.000 0.059 ✗ +2026-07-13 08:30:40,005 | INFO | → WINNER: Music (combined=0.497) +2026-07-13 08:30:40,033 | INFO | +[943.80s] AMBIENT | scene='' +2026-07-13 08:30:40,033 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,033 | INFO | Music 0.721 0.000 0.469 ✓ +2026-07-13 08:30:40,033 | INFO | Mantra 0.174 0.000 0.113 ✗ +2026-07-13 08:30:40,033 | INFO | Carnatic music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:40,033 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:40,033 | INFO | Folk music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:40,033 | INFO | Middle Eastern music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:40,033 | INFO | → WINNER: Music (combined=0.469) +2026-07-13 08:30:40,061 | INFO | +[944.00s] AMBIENT | scene='' +2026-07-13 08:30:40,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,061 | INFO | Music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:40,061 | INFO | → no winner +2026-07-13 08:30:40,088 | INFO | +[944.20s] AMBIENT | scene='' +2026-07-13 08:30:40,088 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,088 | INFO | Music 0.122 0.000 0.080 ✗ +2026-07-13 08:30:40,088 | INFO | → no winner +2026-07-13 08:30:40,109 | INFO | +[944.40s] AMBIENT | scene='' +2026-07-13 08:30:40,109 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,109 | INFO | Music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:40,109 | INFO | → no winner +2026-07-13 08:30:40,142 | INFO | +[944.60s] AMBIENT | scene='' +2026-07-13 08:30:40,143 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,143 | INFO | Music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:40,143 | INFO | Mantra 0.062 0.000 0.041 ✗ +2026-07-13 08:30:40,143 | INFO | → no winner +2026-07-13 08:30:40,168 | INFO | +[944.80s] AMBIENT | scene='' +2026-07-13 08:30:40,168 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,168 | INFO | Music 0.263 0.000 0.171 ✓ +2026-07-13 08:30:40,168 | INFO | Singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:40,168 | INFO | Mantra 0.071 0.000 0.046 ✗ +2026-07-13 08:30:40,168 | INFO | → WINNER: Music (combined=0.171) +2026-07-13 08:30:40,199 | INFO | +[945.00s] AMBIENT | scene='' +2026-07-13 08:30:40,199 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,199 | INFO | Music 0.856 0.000 0.556 ✓ +2026-07-13 08:30:40,199 | INFO | Musical instrument 0.247 0.000 0.160 ✓ +2026-07-13 08:30:40,199 | INFO | Singing 0.226 0.000 0.147 ✓ +2026-07-13 08:30:40,199 | INFO | Plucked string instrument 0.134 0.000 0.087 ✗ +2026-07-13 08:30:40,199 | INFO | Guitar 0.130 0.000 0.084 ✗ +2026-07-13 08:30:40,199 | INFO | Acoustic guitar 0.052 0.000 0.034 ✗ +2026-07-13 08:30:40,199 | INFO | → WINNER: Music (combined=0.556) +2026-07-13 08:30:40,224 | INFO | +[945.20s] AMBIENT | scene='' +2026-07-13 08:30:40,224 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,224 | INFO | Music 0.835 0.000 0.542 ✓ +2026-07-13 08:30:40,224 | INFO | Musical instrument 0.237 0.000 0.154 ✓ +2026-07-13 08:30:40,224 | INFO | Singing 0.206 0.000 0.134 ✓ +2026-07-13 08:30:40,224 | INFO | Plucked string instrument 0.089 0.000 0.058 ✗ +2026-07-13 08:30:40,224 | INFO | Guitar 0.087 0.000 0.057 ✗ +2026-07-13 08:30:40,224 | INFO | Folk music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:40,224 | INFO | → WINNER: Music (combined=0.542) +2026-07-13 08:30:40,257 | INFO | +[945.40s] AMBIENT | scene='' +2026-07-13 08:30:40,257 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,257 | INFO | Music 0.829 0.000 0.539 ✓ +2026-07-13 08:30:40,257 | INFO | Singing 0.197 0.000 0.128 ✓ +2026-07-13 08:30:40,257 | INFO | Musical instrument 0.181 0.000 0.118 ✗ +2026-07-13 08:30:40,257 | INFO | Plucked string instrument 0.057 0.000 0.037 ✗ +2026-07-13 08:30:40,257 | INFO | Guitar 0.054 0.000 0.035 ✗ +2026-07-13 08:30:40,257 | INFO | → WINNER: Music (combined=0.539) +2026-07-13 08:30:40,281 | INFO | +[945.60s] AMBIENT | scene='' +2026-07-13 08:30:40,281 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,281 | INFO | Music 0.781 0.000 0.508 ✓ +2026-07-13 08:30:40,281 | INFO | Singing 0.180 0.000 0.117 ✗ +2026-07-13 08:30:40,281 | INFO | Musical instrument 0.144 0.000 0.093 ✗ +2026-07-13 08:30:40,281 | INFO | Folk music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:40,289 | INFO | Music of Latin America 0.066 0.000 0.043 ✗ +2026-07-13 08:30:40,289 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:40,315 | INFO | +[945.80s] AMBIENT | scene='' +2026-07-13 08:30:40,315 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,315 | INFO | Music 0.736 0.000 0.478 ✓ +2026-07-13 08:30:40,315 | INFO | Singing 0.199 0.000 0.129 ✓ +2026-07-13 08:30:40,315 | INFO | Musical instrument 0.061 0.000 0.039 ✗ +2026-07-13 08:30:40,315 | INFO | → WINNER: Music (combined=0.478) +2026-07-13 08:30:40,339 | INFO | +[946.00s] AMBIENT | scene='' +2026-07-13 08:30:40,339 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,339 | INFO | Music 0.463 0.000 0.301 ✓ +2026-07-13 08:30:40,339 | INFO | Singing 0.119 0.000 0.077 ✗ +2026-07-13 08:30:40,339 | INFO | → WINNER: Music (combined=0.301) +2026-07-13 08:30:40,372 | INFO | +[946.20s] AMBIENT | scene='' +2026-07-13 08:30:40,372 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,372 | INFO | Music 0.408 0.000 0.265 ✓ +2026-07-13 08:30:40,372 | INFO | Mantra 0.104 0.000 0.068 ✗ +2026-07-13 08:30:40,372 | INFO | Singing 0.094 0.000 0.061 ✗ +2026-07-13 08:30:40,372 | INFO | Chant 0.062 0.000 0.041 ✗ +2026-07-13 08:30:40,372 | INFO | → WINNER: Music (combined=0.265) +2026-07-13 08:30:40,400 | INFO | +[946.40s] AMBIENT | scene='' +2026-07-13 08:30:40,400 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,400 | INFO | Music 0.191 0.000 0.124 ✓ +2026-07-13 08:30:40,400 | INFO | → WINNER: Music (combined=0.124) +2026-07-13 08:30:40,428 | INFO | +[946.60s] AMBIENT | scene='' +2026-07-13 08:30:40,428 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,428 | INFO | Music 0.160 0.000 0.104 ✗ +2026-07-13 08:30:40,428 | INFO | Mantra 0.122 0.000 0.079 ✗ +2026-07-13 08:30:40,428 | INFO | Chant 0.121 0.000 0.079 ✗ +2026-07-13 08:30:40,428 | INFO | → no winner +2026-07-13 08:30:40,453 | INFO | +[946.80s] AMBIENT | scene='' +2026-07-13 08:30:40,453 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,453 | INFO | Music 0.257 0.000 0.167 ✓ +2026-07-13 08:30:40,453 | INFO | Chant 0.186 0.000 0.121 ✓ +2026-07-13 08:30:40,453 | INFO | Mantra 0.141 0.000 0.092 ✗ +2026-07-13 08:30:40,453 | INFO | Singing 0.137 0.000 0.089 ✗ +2026-07-13 08:30:40,453 | INFO | A capella 0.126 0.000 0.082 ✗ +2026-07-13 08:30:40,453 | INFO | Male singing 0.094 0.000 0.061 ✗ +2026-07-13 08:30:40,453 | INFO | → WINNER: Music (combined=0.167) +2026-07-13 08:30:40,485 | INFO | +[947.00s] AMBIENT | scene='' +2026-07-13 08:30:40,485 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,485 | INFO | Music 0.637 0.000 0.414 ✓ +2026-07-13 08:30:40,485 | INFO | Mantra 0.199 0.000 0.129 ✓ +2026-07-13 08:30:40,485 | INFO | Singing 0.093 0.000 0.060 ✗ +2026-07-13 08:30:40,485 | INFO | Chant 0.090 0.000 0.059 ✗ +2026-07-13 08:30:40,485 | INFO | → WINNER: Music (combined=0.414) +2026-07-13 08:30:40,518 | INFO | +[947.20s] AMBIENT | scene='' +2026-07-13 08:30:40,518 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,518 | INFO | Music 0.675 0.000 0.439 ✓ +2026-07-13 08:30:40,518 | INFO | Mantra 0.291 0.000 0.189 ✓ +2026-07-13 08:30:40,518 | INFO | Chant 0.193 0.000 0.125 ✓ +2026-07-13 08:30:40,518 | INFO | Singing 0.158 0.000 0.103 ✗ +2026-07-13 08:30:40,518 | INFO | Vocal music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:40,518 | INFO | → WINNER: Music (combined=0.439) +2026-07-13 08:30:40,544 | INFO | +[947.40s] AMBIENT | scene='' +2026-07-13 08:30:40,544 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,544 | INFO | Music 0.748 0.000 0.486 ✓ +2026-07-13 08:30:40,544 | INFO | Mantra 0.173 0.000 0.112 ✗ +2026-07-13 08:30:40,544 | INFO | Singing 0.108 0.000 0.070 ✗ +2026-07-13 08:30:40,544 | INFO | Jingle bell 0.074 0.000 0.048 ✗ +2026-07-13 08:30:40,544 | INFO | Chant 0.056 0.000 0.036 ✗ +2026-07-13 08:30:40,544 | INFO | → WINNER: Music (combined=0.486) +2026-07-13 08:30:40,568 | INFO | +[947.60s] AMBIENT | scene='' +2026-07-13 08:30:40,568 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,568 | INFO | Music 0.741 0.000 0.482 ✓ +2026-07-13 08:30:40,568 | INFO | Mantra 0.151 0.000 0.098 ✗ +2026-07-13 08:30:40,568 | INFO | Singing 0.132 0.000 0.086 ✗ +2026-07-13 08:30:40,568 | INFO | Jingle bell 0.085 0.000 0.055 ✗ +2026-07-13 08:30:40,568 | INFO | Folk music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:40,568 | INFO | Carnatic music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:40,568 | INFO | → WINNER: Music (combined=0.482) +2026-07-13 08:30:40,602 | INFO | +[947.80s] AMBIENT | scene='' +2026-07-13 08:30:40,602 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,602 | INFO | Music 0.681 0.000 0.443 ✓ +2026-07-13 08:30:40,602 | INFO | Singing 0.176 0.000 0.114 ✗ +2026-07-13 08:30:40,602 | INFO | → WINNER: Music (combined=0.443) +2026-07-13 08:30:40,631 | INFO | +[948.00s] AMBIENT | scene='' +2026-07-13 08:30:40,631 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,631 | INFO | Music 0.467 0.000 0.304 ✓ +2026-07-13 08:30:40,631 | INFO | Singing 0.146 0.000 0.095 ✗ +2026-07-13 08:30:40,631 | INFO | → WINNER: Music (combined=0.304) +2026-07-13 08:30:40,660 | INFO | +[948.20s] AMBIENT | scene='' +2026-07-13 08:30:40,660 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,660 | INFO | Music 0.657 0.000 0.427 ✓ +2026-07-13 08:30:40,660 | INFO | Singing 0.147 0.000 0.095 ✗ +2026-07-13 08:30:40,660 | INFO | Male singing 0.089 0.000 0.058 ✗ +2026-07-13 08:30:40,660 | INFO | → WINNER: Music (combined=0.427) +2026-07-13 08:30:40,684 | INFO | +[948.40s] AMBIENT | scene='' +2026-07-13 08:30:40,684 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,684 | INFO | Music 0.510 0.000 0.332 ✓ +2026-07-13 08:30:40,684 | INFO | Singing 0.085 0.000 0.055 ✗ +2026-07-13 08:30:40,684 | INFO | → WINNER: Music (combined=0.332) +2026-07-13 08:30:40,715 | INFO | +[948.60s] AMBIENT | scene='' +2026-07-13 08:30:40,715 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,715 | INFO | Music 0.312 0.000 0.203 ✓ +2026-07-13 08:30:40,717 | INFO | → WINNER: Music (combined=0.203) +2026-07-13 08:30:40,742 | INFO | +[948.80s] AMBIENT | scene='' +2026-07-13 08:30:40,744 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,744 | INFO | Music 0.781 0.000 0.508 ✓ +2026-07-13 08:30:40,744 | INFO | Mantra 0.180 0.000 0.117 ✗ +2026-07-13 08:30:40,744 | INFO | Chant 0.106 0.000 0.069 ✗ +2026-07-13 08:30:40,744 | INFO | Singing 0.097 0.000 0.063 ✗ +2026-07-13 08:30:40,744 | INFO | → WINNER: Music (combined=0.508) +2026-07-13 08:30:40,770 | INFO | +[949.00s] AMBIENT | scene='' +2026-07-13 08:30:40,772 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,772 | INFO | Music 0.705 0.000 0.459 ✓ +2026-07-13 08:30:40,772 | INFO | Mantra 0.509 0.000 0.331 ✓ +2026-07-13 08:30:40,772 | INFO | Chant 0.321 0.000 0.209 ✓ +2026-07-13 08:30:40,772 | INFO | Vocal music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:40,772 | INFO | → WINNER: Music (combined=0.459) +2026-07-13 08:30:40,797 | INFO | +[949.20s] AMBIENT | scene='' +2026-07-13 08:30:40,797 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,797 | INFO | Music 0.756 0.000 0.492 ✓ +2026-07-13 08:30:40,797 | INFO | Mantra 0.433 0.000 0.281 ✓ +2026-07-13 08:30:40,797 | INFO | Chant 0.178 0.000 0.116 ✗ +2026-07-13 08:30:40,797 | INFO | Carnatic music 0.128 0.000 0.083 ✗ +2026-07-13 08:30:40,797 | INFO | Singing 0.119 0.000 0.077 ✗ +2026-07-13 08:30:40,797 | INFO | Musical instrument 0.066 0.000 0.043 ✗ +2026-07-13 08:30:40,797 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:30:40,821 | INFO | +[949.40s] AMBIENT | scene='' +2026-07-13 08:30:40,821 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,829 | INFO | Music 0.677 0.000 0.440 ✓ +2026-07-13 08:30:40,829 | INFO | Mantra 0.633 0.000 0.412 ✓ +2026-07-13 08:30:40,829 | INFO | Chant 0.195 0.000 0.127 ✓ +2026-07-13 08:30:40,829 | INFO | Carnatic music 0.147 0.000 0.095 ✗ +2026-07-13 08:30:40,829 | INFO | Singing 0.079 0.000 0.051 ✗ +2026-07-13 08:30:40,829 | INFO | Vocal music 0.074 0.000 0.048 ✗ +2026-07-13 08:30:40,829 | INFO | → WINNER: Music (combined=0.440) +2026-07-13 08:30:40,854 | INFO | +[949.60s] AMBIENT | scene='' +2026-07-13 08:30:40,854 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,854 | INFO | Music 0.721 0.000 0.469 ✓ +2026-07-13 08:30:40,854 | INFO | Mantra 0.375 0.000 0.244 ✓ +2026-07-13 08:30:40,854 | INFO | Chant 0.197 0.000 0.128 ✓ +2026-07-13 08:30:40,854 | INFO | Singing 0.155 0.000 0.101 ✗ +2026-07-13 08:30:40,854 | INFO | Musical instrument 0.085 0.000 0.055 ✗ +2026-07-13 08:30:40,854 | INFO | Vocal music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:40,854 | INFO | → WINNER: Music (combined=0.469) +2026-07-13 08:30:40,879 | INFO | +[949.80s] AMBIENT | scene='' +2026-07-13 08:30:40,879 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,887 | INFO | Music 0.595 0.000 0.387 ✓ +2026-07-13 08:30:40,887 | INFO | Mantra 0.285 0.000 0.185 ✓ +2026-07-13 08:30:40,887 | INFO | Carnatic music 0.167 0.000 0.108 ✗ +2026-07-13 08:30:40,887 | INFO | Singing 0.162 0.000 0.105 ✗ +2026-07-13 08:30:40,887 | INFO | Tabla 0.130 0.000 0.084 ✗ +2026-07-13 08:30:40,887 | INFO | Chant 0.114 0.000 0.074 ✗ +2026-07-13 08:30:40,887 | INFO | → WINNER: Music (combined=0.387) +2026-07-13 08:30:40,912 | INFO | +[950.00s] AMBIENT | scene='' +2026-07-13 08:30:40,912 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,912 | INFO | Chant 0.344 0.000 0.224 ✓ +2026-07-13 08:30:40,912 | INFO | Music 0.316 0.000 0.206 ✓ +2026-07-13 08:30:40,912 | INFO | Singing 0.237 0.000 0.154 ✓ +2026-07-13 08:30:40,912 | INFO | Mantra 0.224 0.000 0.146 ✓ +2026-07-13 08:30:40,912 | INFO | A capella 0.164 0.000 0.106 ✗ +2026-07-13 08:30:40,912 | INFO | Vocal music 0.153 0.000 0.100 ✗ +2026-07-13 08:30:40,912 | INFO | → WINNER: Chant (combined=0.224) +2026-07-13 08:30:40,939 | INFO | +[950.20s] AMBIENT | scene='' +2026-07-13 08:30:40,939 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,945 | INFO | Chant 0.465 0.000 0.302 ✓ +2026-07-13 08:30:40,945 | INFO | Mantra 0.227 0.000 0.147 ✓ +2026-07-13 08:30:40,945 | INFO | Music 0.222 0.000 0.144 ✓ +2026-07-13 08:30:40,945 | INFO | Singing 0.127 0.000 0.083 ✗ +2026-07-13 08:30:40,945 | INFO | Vocal music 0.084 0.000 0.055 ✗ +2026-07-13 08:30:40,945 | INFO | A capella 0.059 0.000 0.038 ✗ +2026-07-13 08:30:40,945 | INFO | → WINNER: Chant (combined=0.302) +2026-07-13 08:30:40,969 | INFO | +[950.40s] AMBIENT | scene='' +2026-07-13 08:30:40,969 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:40,969 | INFO | Chant 0.378 0.000 0.246 ✓ +2026-07-13 08:30:40,969 | INFO | Music 0.245 0.000 0.159 ✓ +2026-07-13 08:30:40,969 | INFO | Mantra 0.172 0.000 0.112 ✗ +2026-07-13 08:30:40,969 | INFO | Singing 0.147 0.000 0.095 ✗ +2026-07-13 08:30:40,969 | INFO | Carnatic music 0.098 0.000 0.064 ✗ +2026-07-13 08:30:40,969 | INFO | Vocal music 0.062 0.000 0.041 ✗ +2026-07-13 08:30:40,969 | INFO | → WINNER: Chant (combined=0.246) +2026-07-13 08:30:40,997 | INFO | +[950.60s] AMBIENT | scene='' +2026-07-13 08:30:41,002 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,002 | INFO | Music 0.432 0.000 0.281 ✓ +2026-07-13 08:30:41,002 | INFO | Chant 0.390 0.000 0.254 ✓ +2026-07-13 08:30:41,002 | INFO | Mantra 0.217 0.000 0.141 ✓ +2026-07-13 08:30:41,002 | INFO | Singing 0.168 0.000 0.109 ✗ +2026-07-13 08:30:41,002 | INFO | A capella 0.120 0.000 0.078 ✗ +2026-07-13 08:30:41,002 | INFO | Vocal music 0.111 0.000 0.072 ✗ +2026-07-13 08:30:41,002 | INFO | → WINNER: Music (combined=0.281) +2026-07-13 08:30:41,027 | INFO | +[950.80s] AMBIENT | scene='' +2026-07-13 08:30:41,027 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,035 | INFO | Music 0.754 0.000 0.490 ✓ +2026-07-13 08:30:41,035 | INFO | Mantra 0.265 0.000 0.172 ✓ +2026-07-13 08:30:41,036 | INFO | Chant 0.260 0.000 0.169 ✓ +2026-07-13 08:30:41,036 | INFO | Middle Eastern music 0.236 0.000 0.154 ✓ +2026-07-13 08:30:41,036 | INFO | Carnatic music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:41,036 | INFO | Singing 0.100 0.000 0.065 ✗ +2026-07-13 08:30:41,036 | INFO | → WINNER: Music (combined=0.490) +2026-07-13 08:30:41,061 | INFO | +[951.00s] AMBIENT | scene='' +2026-07-13 08:30:41,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,061 | INFO | Music 0.738 0.000 0.480 ✓ +2026-07-13 08:30:41,061 | INFO | Mantra 0.400 0.000 0.260 ✓ +2026-07-13 08:30:41,061 | INFO | Chant 0.228 0.000 0.148 ✓ +2026-07-13 08:30:41,061 | INFO | Middle Eastern music 0.164 0.000 0.106 ✗ +2026-07-13 08:30:41,061 | INFO | Carnatic music 0.114 0.000 0.074 ✗ +2026-07-13 08:30:41,061 | INFO | Music of Bollywood 0.095 0.000 0.062 ✗ +2026-07-13 08:30:41,061 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:41,087 | INFO | +[951.20s] AMBIENT | scene='' +2026-07-13 08:30:41,092 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,092 | INFO | Music 0.710 0.000 0.461 ✓ +2026-07-13 08:30:41,093 | INFO | Mantra 0.179 0.000 0.117 ✗ +2026-07-13 08:30:41,093 | INFO | Carnatic music 0.116 0.000 0.075 ✗ +2026-07-13 08:30:41,093 | INFO | Middle Eastern music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:41,093 | INFO | Singing 0.095 0.000 0.062 ✗ +2026-07-13 08:30:41,093 | INFO | Chant 0.072 0.000 0.047 ✗ +2026-07-13 08:30:41,093 | INFO | → WINNER: Music (combined=0.461) +2026-07-13 08:30:41,117 | INFO | +[951.40s] AMBIENT | scene='' +2026-07-13 08:30:41,117 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,117 | INFO | Music 0.707 0.000 0.460 ✓ +2026-07-13 08:30:41,117 | INFO | Mantra 0.182 0.000 0.118 ✗ +2026-07-13 08:30:41,117 | INFO | Singing 0.124 0.000 0.081 ✗ +2026-07-13 08:30:41,117 | INFO | Carnatic music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:41,117 | INFO | Middle Eastern music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:41,117 | INFO | Chant 0.085 0.000 0.055 ✗ +2026-07-13 08:30:41,117 | INFO | → WINNER: Music (combined=0.460) +2026-07-13 08:30:41,143 | INFO | +[951.60s] AMBIENT | scene='' +2026-07-13 08:30:41,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,150 | INFO | Music 0.353 0.000 0.229 ✓ +2026-07-13 08:30:41,150 | INFO | Chant 0.134 0.000 0.087 ✗ +2026-07-13 08:30:41,150 | INFO | Mantra 0.128 0.000 0.083 ✗ +2026-07-13 08:30:41,150 | INFO | Singing 0.098 0.000 0.064 ✗ +2026-07-13 08:30:41,150 | INFO | → WINNER: Music (combined=0.229) +2026-07-13 08:30:41,175 | INFO | +[951.80s] AMBIENT | scene='' +2026-07-13 08:30:41,175 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,175 | INFO | Music 0.317 0.000 0.206 ✓ +2026-07-13 08:30:41,175 | INFO | Chant 0.256 0.000 0.167 ✓ +2026-07-13 08:30:41,175 | INFO | Mantra 0.177 0.000 0.115 ✗ +2026-07-13 08:30:41,175 | INFO | Singing 0.108 0.000 0.070 ✗ +2026-07-13 08:30:41,175 | INFO | Male singing 0.101 0.000 0.066 ✗ +2026-07-13 08:30:41,175 | INFO | A capella 0.061 0.000 0.040 ✗ +2026-07-13 08:30:41,175 | INFO | → WINNER: Music (combined=0.206) +2026-07-13 08:30:41,202 | INFO | +[952.00s] AMBIENT | scene='' +2026-07-13 08:30:41,208 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,208 | INFO | Music 0.432 0.000 0.281 ✓ +2026-07-13 08:30:41,208 | INFO | Chant 0.219 0.000 0.142 ✓ +2026-07-13 08:30:41,208 | INFO | Mantra 0.145 0.000 0.094 ✗ +2026-07-13 08:30:41,208 | INFO | Male singing 0.105 0.000 0.069 ✗ +2026-07-13 08:30:41,208 | INFO | Singing 0.098 0.000 0.063 ✗ +2026-07-13 08:30:41,208 | INFO | → WINNER: Music (combined=0.281) +2026-07-13 08:30:41,233 | INFO | +[952.20s] AMBIENT | scene='' +2026-07-13 08:30:41,233 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,233 | INFO | Music 0.379 0.000 0.246 ✓ +2026-07-13 08:30:41,233 | INFO | → WINNER: Music (combined=0.246) +2026-07-13 08:30:41,258 | INFO | +[952.40s] AMBIENT | scene='' +2026-07-13 08:30:41,258 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,258 | INFO | Music 0.274 0.000 0.178 ✓ +2026-07-13 08:30:41,258 | INFO | → WINNER: Music (combined=0.178) +2026-07-13 08:30:41,290 | INFO | +[952.60s] AMBIENT | scene='' +2026-07-13 08:30:41,290 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,290 | INFO | Music 0.805 0.000 0.523 ✓ +2026-07-13 08:30:41,290 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:41,290 | INFO | → WINNER: Music (combined=0.523) +2026-07-13 08:30:41,318 | INFO | +[952.80s] AMBIENT | scene='' +2026-07-13 08:30:41,318 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,318 | INFO | Music 0.783 0.000 0.509 ✓ +2026-07-13 08:30:41,318 | INFO | Singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:41,318 | INFO | Music of Bollywood 0.105 0.000 0.069 ✗ +2026-07-13 08:30:41,318 | INFO | Middle Eastern music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:41,318 | INFO | Jingle bell 0.064 0.000 0.042 ✗ +2026-07-13 08:30:41,318 | INFO | Folk music 0.062 0.000 0.041 ✗ +2026-07-13 08:30:41,318 | INFO | → WINNER: Music (combined=0.509) +2026-07-13 08:30:41,348 | INFO | +[953.00s] AMBIENT | scene='' +2026-07-13 08:30:41,348 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,348 | INFO | Music 0.811 0.000 0.527 ✓ +2026-07-13 08:30:41,348 | INFO | Music of Bollywood 0.383 0.000 0.249 ✓ +2026-07-13 08:30:41,348 | INFO | Singing 0.141 0.000 0.091 ✗ +2026-07-13 08:30:41,348 | INFO | Middle Eastern music 0.122 0.000 0.080 ✗ +2026-07-13 08:30:41,348 | INFO | Folk music 0.121 0.000 0.079 ✗ +2026-07-13 08:30:41,348 | INFO | Song 0.084 0.000 0.055 ✗ +2026-07-13 08:30:41,348 | INFO | → WINNER: Music (combined=0.527) +2026-07-13 08:30:41,374 | INFO | +[953.20s] AMBIENT | scene='' +2026-07-13 08:30:41,374 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,374 | INFO | Music 0.787 0.000 0.512 ✓ +2026-07-13 08:30:41,374 | INFO | Music of Bollywood 0.319 0.000 0.207 ✓ +2026-07-13 08:30:41,374 | INFO | Mantra 0.227 0.000 0.148 ✓ +2026-07-13 08:30:41,374 | INFO | Singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:41,374 | INFO | Carnatic music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:41,374 | INFO | Folk music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:41,374 | INFO | → WINNER: Music (combined=0.512) +2026-07-13 08:30:41,406 | INFO | +[953.40s] AMBIENT | scene='' +2026-07-13 08:30:41,406 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,406 | INFO | Music 0.739 0.000 0.480 ✓ +2026-07-13 08:30:41,406 | INFO | Music of Bollywood 0.321 0.000 0.209 ✓ +2026-07-13 08:30:41,406 | INFO | Middle Eastern music 0.181 0.000 0.118 ✗ +2026-07-13 08:30:41,406 | INFO | Singing 0.177 0.000 0.115 ✗ +2026-07-13 08:30:41,406 | INFO | Carnatic music 0.132 0.000 0.086 ✗ +2026-07-13 08:30:41,406 | INFO | Folk music 0.096 0.000 0.063 ✗ +2026-07-13 08:30:41,406 | INFO | → WINNER: Music (combined=0.480) +2026-07-13 08:30:41,430 | INFO | +[953.60s] AMBIENT | scene='' +2026-07-13 08:30:41,430 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,430 | INFO | Music 0.459 0.000 0.298 ✓ +2026-07-13 08:30:41,430 | INFO | Singing 0.195 0.000 0.127 ✓ +2026-07-13 08:30:41,430 | INFO | Carnatic music 0.168 0.000 0.109 ✗ +2026-07-13 08:30:41,430 | INFO | Mantra 0.138 0.000 0.090 ✗ +2026-07-13 08:30:41,430 | INFO | Vocal music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:41,438 | INFO | Chant 0.063 0.000 0.041 ✗ +2026-07-13 08:30:41,438 | INFO | → WINNER: Music (combined=0.298) +2026-07-13 08:30:41,465 | INFO | +[953.80s] AMBIENT | scene='' +2026-07-13 08:30:41,465 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,465 | INFO | Music 0.378 0.000 0.245 ✓ +2026-07-13 08:30:41,465 | INFO | Singing 0.204 0.000 0.133 ✓ +2026-07-13 08:30:41,465 | INFO | Mantra 0.171 0.000 0.111 ✗ +2026-07-13 08:30:41,465 | INFO | Vocal music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:41,465 | INFO | A capella 0.134 0.000 0.087 ✗ +2026-07-13 08:30:41,465 | INFO | Chant 0.125 0.000 0.082 ✗ +2026-07-13 08:30:41,465 | INFO | → WINNER: Music (combined=0.245) +2026-07-13 08:30:41,495 | INFO | +[954.00s] AMBIENT | scene='' +2026-07-13 08:30:41,495 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,495 | INFO | Music 0.411 0.000 0.267 ✓ +2026-07-13 08:30:41,495 | INFO | Mantra 0.370 0.000 0.241 ✓ +2026-07-13 08:30:41,495 | INFO | Chant 0.146 0.000 0.095 ✗ +2026-07-13 08:30:41,495 | INFO | Singing 0.108 0.000 0.070 ✗ +2026-07-13 08:30:41,495 | INFO | → WINNER: Music (combined=0.267) +2026-07-13 08:30:41,520 | INFO | +[954.20s] AMBIENT | scene='' +2026-07-13 08:30:41,520 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,520 | INFO | Music 0.367 0.000 0.238 ✓ +2026-07-13 08:30:41,520 | INFO | Mantra 0.329 0.000 0.214 ✓ +2026-07-13 08:30:41,520 | INFO | Chant 0.070 0.000 0.045 ✗ +2026-07-13 08:30:41,520 | INFO | → WINNER: Music (combined=0.238) +2026-07-13 08:30:41,552 | INFO | +[954.40s] AMBIENT | scene='' +2026-07-13 08:30:41,552 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,552 | INFO | Music 0.667 0.000 0.433 ✓ +2026-07-13 08:30:41,552 | INFO | Tubular bells 0.076 0.000 0.049 ✗ +2026-07-13 08:30:41,552 | INFO | Bell 0.063 0.000 0.041 ✗ +2026-07-13 08:30:41,552 | INFO | → WINNER: Music (combined=0.433) +2026-07-13 08:30:41,579 | INFO | +[954.60s] AMBIENT | scene='' +2026-07-13 08:30:41,579 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,579 | INFO | Music 0.767 0.000 0.499 ✓ +2026-07-13 08:30:41,579 | INFO | Sitar 0.162 0.000 0.105 ✗ +2026-07-13 08:30:41,579 | INFO | Mantra 0.093 0.000 0.061 ✗ +2026-07-13 08:30:41,579 | INFO | Middle Eastern music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:41,579 | INFO | Folk music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:41,579 | INFO | Carnatic music 0.070 0.000 0.045 ✗ +2026-07-13 08:30:41,579 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:41,610 | INFO | +[954.80s] AMBIENT | scene='' +2026-07-13 08:30:41,610 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,610 | INFO | Music 0.776 0.000 0.504 ✓ +2026-07-13 08:30:41,610 | INFO | Mantra 0.140 0.000 0.091 ✗ +2026-07-13 08:30:41,610 | INFO | Sitar 0.130 0.000 0.084 ✗ +2026-07-13 08:30:41,610 | INFO | Carnatic music 0.097 0.000 0.063 ✗ +2026-07-13 08:30:41,610 | INFO | Singing 0.096 0.000 0.063 ✗ +2026-07-13 08:30:41,610 | INFO | Folk music 0.070 0.000 0.046 ✗ +2026-07-13 08:30:41,610 | INFO | → WINNER: Music (combined=0.504) +2026-07-13 08:30:41,642 | INFO | +[955.00s] AMBIENT | scene='' +2026-07-13 08:30:41,642 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,642 | INFO | Music 0.799 0.000 0.519 ✓ +2026-07-13 08:30:41,642 | INFO | Middle Eastern music 0.198 0.000 0.129 ✓ +2026-07-13 08:30:41,642 | INFO | Music of Bollywood 0.155 0.000 0.101 ✗ +2026-07-13 08:30:41,642 | INFO | Mantra 0.131 0.000 0.085 ✗ +2026-07-13 08:30:41,642 | INFO | Singing 0.123 0.000 0.080 ✗ +2026-07-13 08:30:41,642 | INFO | Folk music 0.117 0.000 0.076 ✗ +2026-07-13 08:30:41,642 | INFO | → WINNER: Music (combined=0.519) +2026-07-13 08:30:41,668 | INFO | +[955.20s] AMBIENT | scene='' +2026-07-13 08:30:41,668 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,668 | INFO | Music 0.665 0.000 0.432 ✓ +2026-07-13 08:30:41,668 | INFO | Mantra 0.188 0.000 0.122 ✓ +2026-07-13 08:30:41,668 | INFO | Carnatic music 0.171 0.000 0.111 ✗ +2026-07-13 08:30:41,668 | INFO | Middle Eastern music 0.144 0.000 0.093 ✗ +2026-07-13 08:30:41,668 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:41,668 | INFO | Music of Bollywood 0.079 0.000 0.052 ✗ +2026-07-13 08:30:41,668 | INFO | → WINNER: Music (combined=0.432) +2026-07-13 08:30:41,700 | INFO | +[955.40s] AMBIENT | scene='' +2026-07-13 08:30:41,700 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,700 | INFO | Music 0.537 0.000 0.349 ✓ +2026-07-13 08:30:41,700 | INFO | Singing 0.133 0.000 0.086 ✗ +2026-07-13 08:30:41,700 | INFO | Middle Eastern music 0.074 0.000 0.048 ✗ +2026-07-13 08:30:41,700 | INFO | Mantra 0.071 0.000 0.046 ✗ +2026-07-13 08:30:41,700 | INFO | Chant 0.054 0.000 0.035 ✗ +2026-07-13 08:30:41,700 | INFO | Music of Bollywood 0.036 0.000 0.024 ✗ +2026-07-13 08:30:41,700 | INFO | → WINNER: Music (combined=0.349) +2026-07-13 08:30:41,724 | INFO | +[955.60s] AMBIENT | scene='' +2026-07-13 08:30:41,724 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,724 | INFO | Music 0.356 0.000 0.232 ✓ +2026-07-13 08:30:41,724 | INFO | Mantra 0.113 0.000 0.074 ✗ +2026-07-13 08:30:41,724 | INFO | Chant 0.083 0.000 0.054 ✗ +2026-07-13 08:30:41,724 | INFO | Singing 0.077 0.000 0.050 ✗ +2026-07-13 08:30:41,724 | INFO | → WINNER: Music (combined=0.232) +2026-07-13 08:30:41,757 | INFO | +[955.80s] AMBIENT | scene='' +2026-07-13 08:30:41,757 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,757 | INFO | Music 0.373 0.000 0.242 ✓ +2026-07-13 08:30:41,757 | INFO | Mantra 0.217 0.000 0.141 ✓ +2026-07-13 08:30:41,759 | INFO | Chant 0.166 0.000 0.108 ✗ +2026-07-13 08:30:41,759 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:41,759 | INFO | → WINNER: Music (combined=0.242) +2026-07-13 08:30:41,783 | INFO | +[956.00s] AMBIENT | scene='' +2026-07-13 08:30:41,783 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,787 | INFO | Music 0.384 0.000 0.250 ✓ +2026-07-13 08:30:41,787 | INFO | Mantra 0.201 0.000 0.131 ✓ +2026-07-13 08:30:41,787 | INFO | Singing 0.186 0.000 0.121 ✓ +2026-07-13 08:30:41,787 | INFO | A capella 0.155 0.000 0.101 ✗ +2026-07-13 08:30:41,787 | INFO | Chant 0.149 0.000 0.097 ✗ +2026-07-13 08:30:41,787 | INFO | Vocal music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:41,787 | INFO | → WINNER: Music (combined=0.250) +2026-07-13 08:30:41,811 | INFO | +[956.20s] AMBIENT | scene='' +2026-07-13 08:30:41,814 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,814 | INFO | Music 0.479 0.000 0.311 ✓ +2026-07-13 08:30:41,814 | INFO | Mantra 0.262 0.000 0.170 ✓ +2026-07-13 08:30:41,814 | INFO | Singing 0.185 0.000 0.120 ✓ +2026-07-13 08:30:41,814 | INFO | Chant 0.168 0.000 0.109 ✗ +2026-07-13 08:30:41,814 | INFO | A capella 0.149 0.000 0.097 ✗ +2026-07-13 08:30:41,814 | INFO | Vocal music 0.140 0.000 0.091 ✗ +2026-07-13 08:30:41,814 | INFO | → WINNER: Music (combined=0.311) +2026-07-13 08:30:41,840 | INFO | +[956.40s] AMBIENT | scene='' +2026-07-13 08:30:41,840 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,840 | INFO | Music 0.691 0.000 0.449 ✓ +2026-07-13 08:30:41,840 | INFO | Mantra 0.644 0.000 0.418 ✓ +2026-07-13 08:30:41,840 | INFO | Chant 0.248 0.000 0.161 ✓ +2026-07-13 08:30:41,840 | INFO | Carnatic music 0.165 0.000 0.107 ✗ +2026-07-13 08:30:41,840 | INFO | Vocal music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:41,840 | INFO | → WINNER: Music (combined=0.449) +2026-07-13 08:30:41,865 | INFO | +[956.60s] AMBIENT | scene='' +2026-07-13 08:30:41,865 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,871 | INFO | Music 0.590 0.000 0.383 ✓ +2026-07-13 08:30:41,871 | INFO | Mantra 0.411 0.000 0.267 ✓ +2026-07-13 08:30:41,871 | INFO | Bicycle bell 0.107 0.000 0.069 ✗ +2026-07-13 08:30:41,871 | INFO | Chant 0.106 0.000 0.069 ✗ +2026-07-13 08:30:41,871 | INFO | Ding 0.095 0.000 0.061 ✗ +2026-07-13 08:30:41,871 | INFO | Jingle, tinkle 0.090 0.000 0.059 ✗ +2026-07-13 08:30:41,871 | INFO | → WINNER: Music (combined=0.383) +2026-07-13 08:30:41,896 | INFO | +[956.80s] AMBIENT | scene='' +2026-07-13 08:30:41,896 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,896 | INFO | Music 0.725 0.000 0.471 ✓ +2026-07-13 08:30:41,896 | INFO | Mantra 0.481 0.000 0.312 ✓ +2026-07-13 08:30:41,896 | INFO | Carnatic music 0.337 0.000 0.219 ✓ +2026-07-13 08:30:41,896 | INFO | Bicycle bell 0.098 0.000 0.064 ✗ +2026-07-13 08:30:41,896 | INFO | Chant 0.095 0.000 0.062 ✗ +2026-07-13 08:30:41,896 | INFO | Singing 0.079 0.000 0.051 ✗ +2026-07-13 08:30:41,896 | INFO | → WINNER: Music (combined=0.471) +2026-07-13 08:30:41,920 | INFO | +[957.00s] AMBIENT | scene='' +2026-07-13 08:30:41,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,928 | INFO | Music 0.688 0.000 0.447 ✓ +2026-07-13 08:30:41,928 | INFO | Carnatic music 0.432 0.000 0.281 ✓ +2026-07-13 08:30:41,928 | INFO | Mantra 0.366 0.000 0.238 ✓ +2026-07-13 08:30:41,928 | INFO | Tabla 0.115 0.000 0.075 ✗ +2026-07-13 08:30:41,928 | INFO | Singing 0.110 0.000 0.072 ✗ +2026-07-13 08:30:41,928 | INFO | Bicycle bell 0.097 0.000 0.063 ✗ +2026-07-13 08:30:41,928 | INFO | → WINNER: Music (combined=0.447) +2026-07-13 08:30:41,955 | INFO | +[957.20s] AMBIENT | scene='' +2026-07-13 08:30:41,955 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,955 | INFO | Music 0.624 0.000 0.405 ✓ +2026-07-13 08:30:41,955 | INFO | Mantra 0.342 0.000 0.223 ✓ +2026-07-13 08:30:41,955 | INFO | Carnatic music 0.309 0.000 0.201 ✓ +2026-07-13 08:30:41,955 | INFO | Singing 0.111 0.000 0.072 ✗ +2026-07-13 08:30:41,955 | INFO | Musical instrument 0.092 0.000 0.060 ✗ +2026-07-13 08:30:41,955 | INFO | Tabla 0.065 0.000 0.042 ✗ +2026-07-13 08:30:41,955 | INFO | → WINNER: Music (combined=0.405) +2026-07-13 08:30:41,977 | INFO | +[957.40s] AMBIENT | scene='' +2026-07-13 08:30:41,977 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:41,977 | INFO | Music 0.582 0.000 0.379 ✓ +2026-07-13 08:30:41,977 | INFO | Tabla 0.202 0.000 0.132 ✓ +2026-07-13 08:30:41,977 | INFO | Mantra 0.133 0.000 0.086 ✗ +2026-07-13 08:30:41,977 | INFO | Percussion 0.127 0.000 0.082 ✗ +2026-07-13 08:30:41,977 | INFO | Singing 0.113 0.000 0.073 ✗ +2026-07-13 08:30:41,985 | INFO | Musical instrument 0.098 0.000 0.064 ✗ +2026-07-13 08:30:41,985 | INFO | → WINNER: Music (combined=0.379) +2026-07-13 08:30:42,012 | INFO | +[957.60s] AMBIENT | scene='' +2026-07-13 08:30:42,013 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,013 | INFO | Music 0.277 0.000 0.180 ✓ +2026-07-13 08:30:42,013 | INFO | Gargling 0.212 0.000 0.138 ✓ +2026-07-13 08:30:42,013 | INFO | Chant 0.087 0.000 0.056 ✗ +2026-07-13 08:30:42,013 | INFO | Mantra 0.066 0.000 0.043 ✗ +2026-07-13 08:30:42,013 | INFO | → WINNER: Music (combined=0.180) +2026-07-13 08:30:42,040 | INFO | +[957.80s] AMBIENT | scene='' +2026-07-13 08:30:42,040 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,040 | INFO | Music 0.455 0.000 0.295 ✓ +2026-07-13 08:30:42,040 | INFO | Musical instrument 0.166 0.000 0.108 ✗ +2026-07-13 08:30:42,040 | INFO | Guitar 0.061 0.000 0.040 ✗ +2026-07-13 08:30:42,040 | INFO | Inside, small room 0.058 0.000 0.038 ✗ +2026-07-13 08:30:42,040 | INFO | → WINNER: Music (combined=0.295) +2026-07-13 08:30:42,068 | INFO | +[958.00s] AMBIENT | scene='' +2026-07-13 08:30:42,068 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,068 | INFO | Music 0.871 0.000 0.566 ✓ +2026-07-13 08:30:42,071 | INFO | Musical instrument 0.493 0.000 0.321 ✓ +2026-07-13 08:30:42,071 | INFO | Guitar 0.386 0.000 0.251 ✓ +2026-07-13 08:30:42,071 | INFO | Plucked string instrument 0.355 0.000 0.231 ✓ +2026-07-13 08:30:42,071 | INFO | Effects unit 0.183 0.000 0.119 ✗ +2026-07-13 08:30:42,071 | INFO | Electric guitar 0.086 0.000 0.056 ✗ +2026-07-13 08:30:42,071 | INFO | → WINNER: Music (combined=0.566) +2026-07-13 08:30:42,093 | INFO | +[958.20s] AMBIENT | scene='' +2026-07-13 08:30:42,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,093 | INFO | Music 0.760 0.000 0.494 ✓ +2026-07-13 08:30:42,093 | INFO | Musical instrument 0.211 0.000 0.137 ✓ +2026-07-13 08:30:42,093 | INFO | Doorbell 0.105 0.000 0.068 ✗ +2026-07-13 08:30:42,093 | INFO | → WINNER: Music (combined=0.494) +2026-07-13 08:30:42,127 | INFO | +[958.40s] AMBIENT | scene='' +2026-07-13 08:30:42,127 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,127 | INFO | Music 0.774 0.000 0.503 ✓ +2026-07-13 08:30:42,127 | INFO | Musical instrument 0.090 0.000 0.058 ✗ +2026-07-13 08:30:42,127 | INFO | Jingle, tinkle 0.079 0.000 0.052 ✗ +2026-07-13 08:30:42,127 | INFO | Mantra 0.069 0.000 0.045 ✗ +2026-07-13 08:30:42,127 | INFO | Sitar 0.068 0.000 0.044 ✗ +2026-07-13 08:30:42,127 | INFO | → WINNER: Music (combined=0.503) +2026-07-13 08:30:42,152 | INFO | +[958.60s] AMBIENT | scene='' +2026-07-13 08:30:42,152 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,152 | INFO | Music 0.807 0.000 0.525 ✓ +2026-07-13 08:30:42,152 | INFO | Musical instrument 0.162 0.000 0.105 ✗ +2026-07-13 08:30:42,152 | INFO | Country 0.156 0.000 0.101 ✗ +2026-07-13 08:30:42,152 | INFO | Singing 0.125 0.000 0.081 ✗ +2026-07-13 08:30:42,152 | INFO | Bluegrass 0.106 0.000 0.069 ✗ +2026-07-13 08:30:42,152 | INFO | Banjo 0.089 0.000 0.058 ✗ +2026-07-13 08:30:42,159 | INFO | → WINNER: Music (combined=0.525) +2026-07-13 08:30:42,183 | INFO | +[958.80s] AMBIENT | scene='' +2026-07-13 08:30:42,183 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,183 | INFO | Music 0.832 0.000 0.541 ✓ +2026-07-13 08:30:42,183 | INFO | Sitar 0.380 0.000 0.247 ✓ +2026-07-13 08:30:42,187 | INFO | Carnatic music 0.291 0.000 0.189 ✓ +2026-07-13 08:30:42,187 | INFO | Mantra 0.177 0.000 0.115 ✗ +2026-07-13 08:30:42,187 | INFO | Musical instrument 0.140 0.000 0.091 ✗ +2026-07-13 08:30:42,187 | INFO | Singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:42,187 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:42,210 | INFO | +[959.00s] AMBIENT | scene='' +2026-07-13 08:30:42,210 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,210 | INFO | Music 0.767 0.000 0.498 ✓ +2026-07-13 08:30:42,210 | INFO | Mantra 0.176 0.000 0.115 ✗ +2026-07-13 08:30:42,210 | INFO | Carnatic music 0.137 0.000 0.089 ✗ +2026-07-13 08:30:42,215 | INFO | Singing 0.131 0.000 0.085 ✗ +2026-07-13 08:30:42,215 | INFO | Folk music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:42,215 | INFO | Musical instrument 0.102 0.000 0.066 ✗ +2026-07-13 08:30:42,216 | INFO | → WINNER: Music (combined=0.498) +2026-07-13 08:30:42,243 | INFO | +[959.20s] AMBIENT | scene='' +2026-07-13 08:30:42,243 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,243 | INFO | Music 0.872 0.000 0.567 ✓ +2026-07-13 08:30:42,243 | INFO | Middle Eastern music 0.270 0.000 0.176 ✓ +2026-07-13 08:30:42,243 | INFO | Folk music 0.194 0.000 0.126 ✓ +2026-07-13 08:30:42,243 | INFO | Musical instrument 0.144 0.000 0.093 ✗ +2026-07-13 08:30:42,243 | INFO | Singing 0.136 0.000 0.088 ✗ +2026-07-13 08:30:42,243 | INFO | Traditional music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:42,243 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:42,269 | INFO | +[959.40s] AMBIENT | scene='' +2026-07-13 08:30:42,269 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,269 | INFO | Music 0.797 0.000 0.518 ✓ +2026-07-13 08:30:42,274 | INFO | Musical instrument 0.133 0.000 0.086 ✗ +2026-07-13 08:30:42,274 | INFO | Middle Eastern music 0.116 0.000 0.075 ✗ +2026-07-13 08:30:42,274 | INFO | Carnatic music 0.102 0.000 0.066 ✗ +2026-07-13 08:30:42,274 | INFO | Folk music 0.087 0.000 0.057 ✗ +2026-07-13 08:30:42,274 | INFO | Mantra 0.082 0.000 0.053 ✗ +2026-07-13 08:30:42,274 | INFO | → WINNER: Music (combined=0.518) +2026-07-13 08:30:42,298 | INFO | +[959.60s] AMBIENT | scene='' +2026-07-13 08:30:42,298 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,298 | INFO | Music 0.655 0.000 0.426 ✓ +2026-07-13 08:30:42,298 | INFO | Mantra 0.104 0.000 0.068 ✗ +2026-07-13 08:30:42,298 | INFO | → WINNER: Music (combined=0.426) +2026-07-13 08:30:42,323 | INFO | +[959.80s] AMBIENT | scene='' +2026-07-13 08:30:42,331 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,331 | INFO | Music 0.344 0.000 0.223 ✓ +2026-07-13 08:30:42,332 | INFO | Mantra 0.308 0.000 0.200 ✓ +2026-07-13 08:30:42,332 | INFO | Chant 0.169 0.000 0.110 ✗ +2026-07-13 08:30:42,332 | INFO | Singing 0.092 0.000 0.060 ✗ +2026-07-13 08:30:42,333 | INFO | → WINNER: Music (combined=0.223) +2026-07-13 08:30:42,356 | INFO | +[960.00s] AMBIENT | scene='' +2026-07-13 08:30:42,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,356 | INFO | Mantra 0.346 0.000 0.225 ✓ +2026-07-13 08:30:42,356 | INFO | Music 0.276 0.000 0.179 ✓ +2026-07-13 08:30:42,356 | INFO | Chant 0.205 0.000 0.134 ✓ +2026-07-13 08:30:42,356 | INFO | Singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:42,356 | INFO | → WINNER: Mantra (combined=0.225) +2026-07-13 08:30:42,385 | INFO | +[960.20s] AMBIENT | scene='' +2026-07-13 08:30:42,385 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,388 | INFO | Music 0.770 0.000 0.500 ✓ +2026-07-13 08:30:42,388 | INFO | Mantra 0.198 0.000 0.129 ✓ +2026-07-13 08:30:42,389 | INFO | Singing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:42,389 | INFO | Chant 0.060 0.000 0.039 ✗ +2026-07-13 08:30:42,389 | INFO | → WINNER: Music (combined=0.500) +2026-07-13 08:30:42,412 | INFO | +[960.40s] AMBIENT | scene='' +2026-07-13 08:30:42,412 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,412 | INFO | Music 0.711 0.000 0.462 ✓ +2026-07-13 08:30:42,412 | INFO | Mantra 0.145 0.000 0.095 ✗ +2026-07-13 08:30:42,412 | INFO | Singing 0.088 0.000 0.057 ✗ +2026-07-13 08:30:42,412 | INFO | → WINNER: Music (combined=0.462) +2026-07-13 08:30:42,447 | INFO | +[960.60s] AMBIENT | scene='' +2026-07-13 08:30:42,447 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,447 | INFO | Music 0.715 0.000 0.465 ✓ +2026-07-13 08:30:42,447 | INFO | Mantra 0.339 0.000 0.220 ✓ +2026-07-13 08:30:42,447 | INFO | Carnatic music 0.268 0.000 0.174 ✓ +2026-07-13 08:30:42,447 | INFO | Bicycle bell 0.088 0.000 0.057 ✗ +2026-07-13 08:30:42,447 | INFO | Musical instrument 0.060 0.000 0.039 ✗ +2026-07-13 08:30:42,447 | INFO | Chant 0.055 0.000 0.036 ✗ +2026-07-13 08:30:42,447 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:42,475 | INFO | +[960.80s] AMBIENT | scene='' +2026-07-13 08:30:42,477 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,477 | INFO | Music 0.590 0.000 0.384 ✓ +2026-07-13 08:30:42,477 | INFO | Mantra 0.300 0.000 0.195 ✓ +2026-07-13 08:30:42,477 | INFO | Carnatic music 0.182 0.000 0.118 ✗ +2026-07-13 08:30:42,477 | INFO | Bicycle bell 0.138 0.000 0.089 ✗ +2026-07-13 08:30:42,477 | INFO | Singing 0.075 0.000 0.049 ✗ +2026-07-13 08:30:42,477 | INFO | → WINNER: Music (combined=0.384) +2026-07-13 08:30:42,506 | INFO | +[961.00s] AMBIENT | scene='' +2026-07-13 08:30:42,506 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,506 | INFO | Mantra 0.471 0.000 0.306 ✓ +2026-07-13 08:30:42,506 | INFO | Music 0.336 0.000 0.218 ✓ +2026-07-13 08:30:42,506 | INFO | Chant 0.178 0.000 0.116 ✗ +2026-07-13 08:30:42,506 | INFO | Carnatic music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:42,506 | INFO | Singing 0.116 0.000 0.075 ✗ +2026-07-13 08:30:42,506 | INFO | → WINNER: Mantra (combined=0.306) +2026-07-13 08:30:42,529 | INFO | +[961.20s] AMBIENT | scene='' +2026-07-13 08:30:42,529 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,529 | INFO | Music 0.360 0.000 0.234 ✓ +2026-07-13 08:30:42,535 | INFO | Mantra 0.219 0.000 0.142 ✓ +2026-07-13 08:30:42,535 | INFO | Chant 0.117 0.000 0.076 ✗ +2026-07-13 08:30:42,535 | INFO | Singing 0.090 0.000 0.059 ✗ +2026-07-13 08:30:42,535 | INFO | → WINNER: Music (combined=0.234) +2026-07-13 08:30:42,562 | INFO | +[961.40s] AMBIENT | scene='' +2026-07-13 08:30:42,562 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,562 | INFO | Music 0.664 0.000 0.431 ✓ +2026-07-13 08:30:42,562 | INFO | Mantra 0.180 0.000 0.117 ✗ +2026-07-13 08:30:42,562 | INFO | Singing 0.131 0.000 0.085 ✗ +2026-07-13 08:30:42,562 | INFO | Chant 0.105 0.000 0.068 ✗ +2026-07-13 08:30:42,562 | INFO | Carnatic music 0.095 0.000 0.062 ✗ +2026-07-13 08:30:42,562 | INFO | Middle Eastern music 0.086 0.000 0.056 ✗ +2026-07-13 08:30:42,562 | INFO | → WINNER: Music (combined=0.431) +2026-07-13 08:30:42,593 | INFO | +[961.60s] AMBIENT | scene='' +2026-07-13 08:30:42,593 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,593 | INFO | Music 0.730 0.000 0.474 ✓ +2026-07-13 08:30:42,593 | INFO | Carnatic music 0.240 0.000 0.156 ✓ +2026-07-13 08:30:42,593 | INFO | Mantra 0.185 0.000 0.120 ✓ +2026-07-13 08:30:42,593 | INFO | Singing 0.158 0.000 0.103 ✗ +2026-07-13 08:30:42,593 | INFO | Middle Eastern music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:42,593 | INFO | Music of Bollywood 0.089 0.000 0.058 ✗ +2026-07-13 08:30:42,593 | INFO | → WINNER: Music (combined=0.474) +2026-07-13 08:30:42,618 | INFO | +[961.80s] AMBIENT | scene='' +2026-07-13 08:30:42,618 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,618 | INFO | Music 0.648 0.000 0.421 ✓ +2026-07-13 08:30:42,618 | INFO | Mantra 0.241 0.000 0.157 ✓ +2026-07-13 08:30:42,618 | INFO | Middle Eastern music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:42,618 | INFO | Singing 0.104 0.000 0.068 ✗ +2026-07-13 08:30:42,618 | INFO | Carnatic music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:42,618 | INFO | Music of Bollywood 0.074 0.000 0.048 ✗ +2026-07-13 08:30:42,618 | INFO | → WINNER: Music (combined=0.421) +2026-07-13 08:30:42,649 | INFO | +[962.00s] AMBIENT | scene='' +2026-07-13 08:30:42,649 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,649 | INFO | Music 0.552 0.000 0.359 ✓ +2026-07-13 08:30:42,649 | INFO | Mantra 0.244 0.000 0.159 ✓ +2026-07-13 08:30:42,649 | INFO | Chant 0.126 0.000 0.082 ✗ +2026-07-13 08:30:42,649 | INFO | Singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:42,649 | INFO | Carnatic music 0.061 0.000 0.040 ✗ +2026-07-13 08:30:42,649 | INFO | Middle Eastern music 0.060 0.000 0.039 ✗ +2026-07-13 08:30:42,649 | INFO | → WINNER: Music (combined=0.359) +2026-07-13 08:30:42,675 | INFO | +[962.20s] AMBIENT | scene='' +2026-07-13 08:30:42,675 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,675 | INFO | Music 0.774 0.000 0.503 ✓ +2026-07-13 08:30:42,675 | INFO | Mantra 0.330 0.000 0.214 ✓ +2026-07-13 08:30:42,675 | INFO | Carnatic music 0.295 0.000 0.192 ✓ +2026-07-13 08:30:42,675 | INFO | Chant 0.088 0.000 0.057 ✗ +2026-07-13 08:30:42,675 | INFO | Singing 0.087 0.000 0.057 ✗ +2026-07-13 08:30:42,682 | INFO | Middle Eastern music 0.076 0.000 0.050 ✗ +2026-07-13 08:30:42,682 | INFO | → WINNER: Music (combined=0.503) +2026-07-13 08:30:42,707 | INFO | +[962.40s] AMBIENT | scene='' +2026-07-13 08:30:42,707 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,707 | INFO | Music 0.715 0.000 0.465 ✓ +2026-07-13 08:30:42,707 | INFO | Mantra 0.288 0.000 0.187 ✓ +2026-07-13 08:30:42,707 | INFO | Chant 0.150 0.000 0.097 ✗ +2026-07-13 08:30:42,707 | INFO | Carnatic music 0.119 0.000 0.078 ✗ +2026-07-13 08:30:42,707 | INFO | Singing 0.104 0.000 0.068 ✗ +2026-07-13 08:30:42,707 | INFO | Middle Eastern music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:42,707 | INFO | → WINNER: Music (combined=0.465) +2026-07-13 08:30:42,733 | INFO | +[962.60s] AMBIENT | scene='' +2026-07-13 08:30:42,733 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,733 | INFO | Music 0.579 0.000 0.376 ✓ +2026-07-13 08:30:42,733 | INFO | Mantra 0.383 0.000 0.249 ✓ +2026-07-13 08:30:42,733 | INFO | Chant 0.220 0.000 0.143 ✓ +2026-07-13 08:30:42,733 | INFO | Singing 0.106 0.000 0.069 ✗ +2026-07-13 08:30:42,733 | INFO | Carnatic music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:42,733 | INFO | Middle Eastern music 0.060 0.000 0.039 ✗ +2026-07-13 08:30:42,733 | INFO | → WINNER: Music (combined=0.376) +2026-07-13 08:30:42,757 | INFO | +[962.80s] AMBIENT | scene='' +2026-07-13 08:30:42,766 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,766 | INFO | Music 0.425 0.000 0.277 ✓ +2026-07-13 08:30:42,766 | INFO | Mantra 0.309 0.000 0.201 ✓ +2026-07-13 08:30:42,766 | INFO | Chant 0.152 0.000 0.099 ✗ +2026-07-13 08:30:42,766 | INFO | Singing 0.091 0.000 0.059 ✗ +2026-07-13 08:30:42,766 | INFO | Middle Eastern music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:42,766 | INFO | → WINNER: Music (combined=0.277) +2026-07-13 08:30:42,794 | INFO | +[963.00s] AMBIENT | scene='' +2026-07-13 08:30:42,794 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,794 | INFO | Music 0.365 0.000 0.237 ✓ +2026-07-13 08:30:42,794 | INFO | Singing 0.166 0.000 0.108 ✗ +2026-07-13 08:30:42,794 | INFO | Male singing 0.090 0.000 0.058 ✗ +2026-07-13 08:30:42,794 | INFO | Mantra 0.061 0.000 0.040 ✗ +2026-07-13 08:30:42,794 | INFO | → WINNER: Music (combined=0.237) +2026-07-13 08:30:42,816 | INFO | +[963.20s] AMBIENT | scene='' +2026-07-13 08:30:42,823 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,823 | INFO | Music 0.310 0.000 0.201 ✓ +2026-07-13 08:30:42,824 | INFO | Singing 0.113 0.000 0.073 ✗ +2026-07-13 08:30:42,824 | INFO | Male singing 0.102 0.000 0.066 ✗ +2026-07-13 08:30:42,824 | INFO | Mantra 0.092 0.000 0.060 ✗ +2026-07-13 08:30:42,824 | INFO | Chant 0.082 0.000 0.053 ✗ +2026-07-13 08:30:42,824 | INFO | → WINNER: Music (combined=0.201) +2026-07-13 08:30:42,848 | INFO | +[963.40s] AMBIENT | scene='' +2026-07-13 08:30:42,848 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,848 | INFO | Music 0.259 0.000 0.168 ✓ +2026-07-13 08:30:42,848 | INFO | Singing 0.081 0.000 0.053 ✗ +2026-07-13 08:30:42,848 | INFO | Mantra 0.069 0.000 0.045 ✗ +2026-07-13 08:30:42,848 | INFO | Chant 0.054 0.000 0.035 ✗ +2026-07-13 08:30:42,848 | INFO | → WINNER: Music (combined=0.168) +2026-07-13 08:30:42,873 | INFO | +[963.60s] AMBIENT | scene='' +2026-07-13 08:30:42,873 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,873 | INFO | Music 0.156 0.000 0.101 ✗ +2026-07-13 08:30:42,873 | INFO | → no winner +2026-07-13 08:30:42,898 | INFO | +[963.80s] AMBIENT | scene='' +2026-07-13 08:30:42,906 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,906 | INFO | Music 0.422 0.000 0.274 ✓ +2026-07-13 08:30:42,906 | INFO | → WINNER: Music (combined=0.274) +2026-07-13 08:30:42,931 | INFO | +[964.00s] AMBIENT | scene='' +2026-07-13 08:30:42,931 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,931 | INFO | Music 0.486 0.000 0.316 ✓ +2026-07-13 08:30:42,931 | INFO | → WINNER: Music (combined=0.316) +2026-07-13 08:30:42,955 | INFO | +[964.20s] AMBIENT | scene='' +2026-07-13 08:30:42,955 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,955 | INFO | Music 0.568 0.000 0.369 ✓ +2026-07-13 08:30:42,955 | INFO | Vehicle 0.073 0.000 0.047 ✗ +2026-07-13 08:30:42,955 | INFO | → WINNER: Music (combined=0.369) +2026-07-13 08:30:42,988 | INFO | +[964.40s] AMBIENT | scene='' +2026-07-13 08:30:42,988 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:42,988 | INFO | Vehicle 0.257 0.000 0.167 ✓ +2026-07-13 08:30:42,988 | INFO | Printer 0.213 0.000 0.139 ✓ +2026-07-13 08:30:42,988 | INFO | Mechanisms 0.102 0.000 0.066 ✗ +2026-07-13 08:30:42,988 | INFO | Music 0.085 0.000 0.055 ✗ +2026-07-13 08:30:42,988 | INFO | Power windows, electric windows 0.045 0.000 0.029 ✗ +2026-07-13 08:30:42,988 | INFO | → WINNER: Vehicle (combined=0.167) +2026-07-13 08:30:43,014 | INFO | +[964.60s] AMBIENT | scene='' +2026-07-13 08:30:43,014 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,014 | INFO | Printer 0.351 0.000 0.228 ✓ +2026-07-13 08:30:43,014 | INFO | Vehicle 0.121 0.000 0.079 ✗ +2026-07-13 08:30:43,014 | INFO | Music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:43,014 | INFO | → WINNER: Printer (combined=0.228) +2026-07-13 08:30:43,042 | INFO | +[964.80s] AMBIENT | scene='' +2026-07-13 08:30:43,046 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,046 | INFO | Printer 0.124 0.000 0.081 ✗ +2026-07-13 08:30:43,046 | INFO | Mechanisms 0.105 0.000 0.069 ✗ +2026-07-13 08:30:43,046 | INFO | Vehicle 0.084 0.000 0.055 ✗ +2026-07-13 08:30:43,046 | INFO | → no winner +2026-07-13 08:30:43,072 | INFO | +[965.00s] AMBIENT | scene='' +2026-07-13 08:30:43,072 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,072 | INFO | Vehicle 0.149 0.000 0.097 ✗ +2026-07-13 08:30:43,072 | INFO | Boat, Water vehicle 0.077 0.000 0.050 ✗ +2026-07-13 08:30:43,072 | INFO | Music 0.061 0.000 0.040 ✗ +2026-07-13 08:30:43,072 | INFO | → no winner +2026-07-13 08:30:43,104 | INFO | +[969.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,104 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,105 | INFO | Bird vocalization, bird call, bird song 0.039 0.306 0.132 ✓ +2026-07-13 08:30:43,105 | INFO | Animal 0.158 0.000 0.102 ✗ +2026-07-13 08:30:43,105 | INFO | Bird 0.096 0.000 0.062 ✗ +2026-07-13 08:30:43,105 | INFO | Music 0.067 0.000 0.044 ✗ +2026-07-13 08:30:43,105 | INFO | Mouse 0.064 0.000 0.042 ✗ +2026-07-13 08:30:43,105 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.132) +2026-07-13 08:30:43,129 | INFO | +[969.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,129 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,129 | INFO | Animal 0.278 0.000 0.181 ✓ +2026-07-13 08:30:43,129 | INFO | Bird vocalization, bird call, bird song 0.081 0.306 0.160 ✓ +2026-07-13 08:30:43,129 | INFO | Bird 0.186 0.000 0.121 ✓ +2026-07-13 08:30:43,129 | INFO | Chirp, tweet 0.079 0.000 0.051 ✗ +2026-07-13 08:30:43,129 | INFO | Mouse 0.077 0.000 0.050 ✗ +2026-07-13 08:30:43,129 | INFO | → WINNER: Animal (combined=0.181) +2026-07-13 08:30:43,161 | INFO | +[970.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,162 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,162 | INFO | Bird vocalization, bird call, bird song 0.125 0.306 0.189 ✓ +2026-07-13 08:30:43,162 | INFO | Bird 0.241 0.000 0.157 ✓ +2026-07-13 08:30:43,162 | INFO | Animal 0.191 0.000 0.124 ✓ +2026-07-13 08:30:43,162 | INFO | Chirp, tweet 0.118 0.000 0.077 ✗ +2026-07-13 08:30:43,162 | INFO | Mouse 0.107 0.000 0.069 ✗ +2026-07-13 08:30:43,162 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.189) +2026-07-13 08:30:43,187 | INFO | +[970.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,187 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,187 | INFO | Bird 0.271 0.000 0.176 ✓ +2026-07-13 08:30:43,187 | INFO | Bird vocalization, bird call, bird song 0.084 0.306 0.162 ✓ +2026-07-13 08:30:43,195 | INFO | Animal 0.218 0.000 0.141 ✓ +2026-07-13 08:30:43,195 | INFO | Squawk 0.107 0.000 0.070 ✗ +2026-07-13 08:30:43,195 | INFO | Duck 0.102 0.000 0.066 ✗ +2026-07-13 08:30:43,195 | INFO | Chirp, tweet 0.068 0.000 0.044 ✗ +2026-07-13 08:30:43,195 | INFO | → WINNER: Bird (combined=0.176) +2026-07-13 08:30:43,219 | INFO | +[970.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,219 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,219 | INFO | Bird vocalization, bird call, bird song 0.054 0.306 0.142 ✓ +2026-07-13 08:30:43,219 | INFO | Bird 0.126 0.000 0.082 ✗ +2026-07-13 08:30:43,219 | INFO | Animal 0.105 0.000 0.068 ✗ +2026-07-13 08:30:43,219 | INFO | Mouse 0.055 0.000 0.036 ✗ +2026-07-13 08:30:43,219 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.142) +2026-07-13 08:30:43,252 | INFO | +[970.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,252 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,252 | INFO | Animal 0.213 0.000 0.138 ✓ +2026-07-13 08:30:43,252 | INFO | Duck 0.153 0.000 0.099 ✗ +2026-07-13 08:30:43,252 | INFO | Bird 0.103 0.000 0.067 ✗ +2026-07-13 08:30:43,252 | INFO | Vehicle 0.055 0.000 0.036 ✗ +2026-07-13 08:30:43,252 | INFO | → WINNER: Animal (combined=0.138) +2026-07-13 08:30:43,289 | INFO | +[970.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,290 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,291 | INFO | Animal 0.146 0.000 0.095 ✗ +2026-07-13 08:30:43,291 | INFO | Vehicle 0.112 0.000 0.073 ✗ +2026-07-13 08:30:43,291 | INFO | Outside, rural or natural 0.071 0.000 0.046 ✗ +2026-07-13 08:30:43,293 | INFO | Bird 0.053 0.000 0.034 ✗ +2026-07-13 08:30:43,293 | INFO | → no winner +2026-07-13 08:30:43,321 | INFO | +[971.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,323 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,323 | INFO | Vehicle 0.211 0.000 0.137 ✓ +2026-07-13 08:30:43,323 | INFO | Animal 0.202 0.000 0.131 ✓ +2026-07-13 08:30:43,323 | INFO | Outside, rural or natural 0.121 0.000 0.079 ✗ +2026-07-13 08:30:43,327 | INFO | Bird 0.059 0.000 0.038 ✗ +2026-07-13 08:30:43,329 | INFO | → WINNER: Vehicle (combined=0.137) +2026-07-13 08:30:43,358 | INFO | +[971.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,358 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,358 | INFO | Animal 0.230 0.000 0.149 ✓ +2026-07-13 08:30:43,358 | INFO | Bird vocalization, bird call, bird song 0.033 0.306 0.129 ✓ +2026-07-13 08:30:43,358 | INFO | Vehicle 0.197 0.000 0.128 ✓ +2026-07-13 08:30:43,358 | INFO | Outside, rural or natural 0.112 0.000 0.073 ✗ +2026-07-13 08:30:43,358 | INFO | Bird 0.102 0.000 0.067 ✗ +2026-07-13 08:30:43,358 | INFO | → WINNER: Animal (combined=0.149) +2026-07-13 08:30:43,383 | INFO | +[971.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,383 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,383 | INFO | Animal 0.257 0.000 0.167 ✓ +2026-07-13 08:30:43,383 | INFO | Bird vocalization, bird call, bird song 0.042 0.306 0.134 ✓ +2026-07-13 08:30:43,383 | INFO | Bird 0.146 0.000 0.095 ✗ +2026-07-13 08:30:43,383 | INFO | Vehicle 0.116 0.000 0.076 ✗ +2026-07-13 08:30:43,383 | INFO | Outside, rural or natural 0.090 0.000 0.059 ✗ +2026-07-13 08:30:43,383 | INFO | → WINNER: Animal (combined=0.167) +2026-07-13 08:30:43,411 | INFO | +[971.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,411 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,411 | INFO | Bird vocalization, bird call, bird song 0.103 0.306 0.174 ✓ +2026-07-13 08:30:43,411 | INFO | Environmental noise 0.104 0.287 0.168 ✓ +2026-07-13 08:30:43,411 | INFO | Animal 0.249 0.000 0.162 ✓ +2026-07-13 08:30:43,411 | INFO | Bird 0.221 0.000 0.144 ✓ +2026-07-13 08:30:43,416 | INFO | Outside, rural or natural 0.101 0.000 0.066 ✗ +2026-07-13 08:30:43,416 | INFO | Chirp, tweet 0.097 0.000 0.063 ✗ +2026-07-13 08:30:43,417 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.174) +2026-07-13 08:30:43,442 | INFO | +[971.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,442 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,442 | INFO | Environmental noise 0.114 0.287 0.175 ✓ +2026-07-13 08:30:43,442 | INFO | Bird vocalization, bird call, bird song 0.103 0.306 0.174 ✓ +2026-07-13 08:30:43,442 | INFO | Animal 0.259 0.000 0.168 ✓ +2026-07-13 08:30:43,442 | INFO | Bird 0.228 0.000 0.148 ✓ +2026-07-13 08:30:43,442 | INFO | Outside, rural or natural 0.094 0.000 0.061 ✗ +2026-07-13 08:30:43,442 | INFO | Chirp, tweet 0.092 0.000 0.060 ✗ +2026-07-13 08:30:43,442 | INFO | → WINNER: Environmental noise (combined=0.175) +2026-07-13 08:30:43,499 | INFO | +[972.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,499 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,499 | INFO | Insect 0.289 0.309 0.296 ✓ +2026-07-13 08:30:43,499 | INFO | Cricket 0.213 0.290 0.240 ✓ +2026-07-13 08:30:43,499 | INFO | Bird vocalization, bird call, bird song 0.085 0.306 0.162 ✓ +2026-07-13 08:30:43,499 | INFO | Bird 0.204 0.000 0.132 ✓ +2026-07-13 08:30:43,499 | INFO | Animal 0.188 0.000 0.122 ✓ +2026-07-13 08:30:43,499 | INFO | Chirp, tweet 0.081 0.000 0.053 ✗ +2026-07-13 08:30:43,499 | INFO | → WINNER: Insect (combined=0.296) +2026-07-13 08:30:43,548 | INFO | +[972.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,556 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,556 | INFO | Insect 0.211 0.309 0.245 ✓ +2026-07-13 08:30:43,556 | INFO | Cricket 0.183 0.290 0.220 ✓ +2026-07-13 08:30:43,556 | INFO | Bird vocalization, bird call, bird song 0.043 0.306 0.135 ✓ +2026-07-13 08:30:43,558 | INFO | Animal 0.191 0.000 0.124 ✓ +2026-07-13 08:30:43,558 | INFO | Bird 0.126 0.000 0.082 ✗ +2026-07-13 08:30:43,558 | INFO | → WINNER: Insect (combined=0.245) +2026-07-13 08:30:43,607 | INFO | +[972.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,607 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,607 | INFO | Bird vocalization, bird call, bird song 0.045 0.306 0.136 ✓ +2026-07-13 08:30:43,607 | INFO | Animal 0.169 0.000 0.110 ✗ +2026-07-13 08:30:43,607 | INFO | Bird 0.115 0.000 0.074 ✗ +2026-07-13 08:30:43,614 | INFO | Mouse 0.105 0.000 0.069 ✗ +2026-07-13 08:30:43,614 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.136) +2026-07-13 08:30:43,656 | INFO | +[972.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,656 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,656 | INFO | Animal 0.276 0.000 0.179 ✓ +2026-07-13 08:30:43,656 | INFO | Bird vocalization, bird call, bird song 0.094 0.306 0.168 ✓ +2026-07-13 08:30:43,656 | INFO | Environmental noise 0.061 0.287 0.140 ✓ +2026-07-13 08:30:43,656 | INFO | Bird 0.192 0.000 0.124 ✓ +2026-07-13 08:30:43,656 | INFO | Chirp, tweet 0.109 0.000 0.071 ✗ +2026-07-13 08:30:43,656 | INFO | Outside, rural or natural 0.068 0.000 0.044 ✗ +2026-07-13 08:30:43,656 | INFO | → WINNER: Animal (combined=0.179) +2026-07-13 08:30:43,689 | INFO | +[972.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,689 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,689 | INFO | Animal 0.349 0.000 0.227 ✓ +2026-07-13 08:30:43,689 | INFO | Bird vocalization, bird call, bird song 0.112 0.306 0.180 ✓ +2026-07-13 08:30:43,689 | INFO | Environmental noise 0.107 0.287 0.170 ✓ +2026-07-13 08:30:43,689 | INFO | Bird 0.210 0.000 0.137 ✓ +2026-07-13 08:30:43,689 | INFO | Chirp, tweet 0.152 0.000 0.099 ✗ +2026-07-13 08:30:43,689 | INFO | Outside, rural or natural 0.084 0.000 0.054 ✗ +2026-07-13 08:30:43,689 | INFO | → WINNER: Animal (combined=0.227) +2026-07-13 08:30:43,713 | INFO | +[973.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,713 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,713 | INFO | Bird vocalization, bird call, bird song 0.199 0.306 0.236 ✓ +2026-07-13 08:30:43,713 | INFO | Bird 0.280 0.000 0.182 ✓ +2026-07-13 08:30:43,713 | INFO | Environmental noise 0.115 0.287 0.175 ✓ +2026-07-13 08:30:43,713 | INFO | Animal 0.244 0.000 0.158 ✓ +2026-07-13 08:30:43,713 | INFO | Chirp, tweet 0.229 0.000 0.149 ✓ +2026-07-13 08:30:43,713 | INFO | Outside, rural or natural 0.078 0.000 0.051 ✗ +2026-07-13 08:30:43,713 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.236) +2026-07-13 08:30:43,747 | INFO | +[973.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,747 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,747 | INFO | Environmental noise 0.143 0.287 0.193 ✓ +2026-07-13 08:30:43,747 | INFO | Bird vocalization, bird call, bird song 0.123 0.306 0.187 ✓ +2026-07-13 08:30:43,747 | INFO | Animal 0.267 0.000 0.174 ✓ +2026-07-13 08:30:43,747 | INFO | Bird 0.235 0.000 0.153 ✓ +2026-07-13 08:30:43,747 | INFO | Chirp, tweet 0.115 0.000 0.075 ✗ +2026-07-13 08:30:43,747 | INFO | Outside, rural or natural 0.062 0.000 0.041 ✗ +2026-07-13 08:30:43,747 | INFO | → WINNER: Environmental noise (combined=0.193) +2026-07-13 08:30:43,779 | INFO | +[973.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,779 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,779 | INFO | Environmental noise 0.200 0.287 0.230 ✓ +2026-07-13 08:30:43,779 | INFO | Bird vocalization, bird call, bird song 0.109 0.306 0.178 ✓ +2026-07-13 08:30:43,779 | INFO | Animal 0.245 0.000 0.159 ✓ +2026-07-13 08:30:43,779 | INFO | Bird 0.207 0.000 0.135 ✓ +2026-07-13 08:30:43,779 | INFO | Chirp, tweet 0.102 0.000 0.066 ✗ +2026-07-13 08:30:43,779 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:30:43,779 | INFO | → WINNER: Environmental noise (combined=0.230) +2026-07-13 08:30:43,804 | INFO | +[973.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,804 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,804 | INFO | Animal 0.264 0.000 0.172 ✓ +2026-07-13 08:30:43,804 | INFO | Bird vocalization, bird call, bird song 0.062 0.306 0.147 ✓ +2026-07-13 08:30:43,804 | INFO | Environmental noise 0.072 0.287 0.147 ✓ +2026-07-13 08:30:43,804 | INFO | Bird 0.170 0.000 0.111 ✗ +2026-07-13 08:30:43,804 | INFO | Duck 0.122 0.000 0.079 ✗ +2026-07-13 08:30:43,804 | INFO | Outside, rural or natural 0.056 0.000 0.036 ✗ +2026-07-13 08:30:43,804 | INFO | → WINNER: Animal (combined=0.172) +2026-07-13 08:30:43,837 | INFO | +[973.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,837 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,837 | INFO | Duck 0.407 0.000 0.265 ✓ +2026-07-13 08:30:43,837 | INFO | Animal 0.384 0.000 0.249 ✓ +2026-07-13 08:30:43,837 | INFO | Quack 0.229 0.000 0.149 ✓ +2026-07-13 08:30:43,837 | INFO | Bird vocalization, bird call, bird song 0.060 0.306 0.146 ✓ +2026-07-13 08:30:43,837 | INFO | Environmental noise 0.066 0.287 0.143 ✓ +2026-07-13 08:30:43,837 | INFO | Bird 0.173 0.000 0.113 ✗ +2026-07-13 08:30:43,837 | INFO | → WINNER: Duck (combined=0.265) +2026-07-13 08:30:43,862 | INFO | +[974.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,862 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,862 | INFO | Duck 0.351 0.000 0.228 ✓ +2026-07-13 08:30:43,862 | INFO | Animal 0.329 0.000 0.214 ✓ +2026-07-13 08:30:43,862 | INFO | Bird vocalization, bird call, bird song 0.032 0.306 0.128 ✓ +2026-07-13 08:30:43,862 | INFO | Goose 0.188 0.000 0.122 ✓ +2026-07-13 08:30:43,862 | INFO | Quack 0.179 0.000 0.117 ✗ +2026-07-13 08:30:43,862 | INFO | Honk 0.161 0.000 0.104 ✗ +2026-07-13 08:30:43,862 | INFO | → WINNER: Duck (combined=0.228) +2026-07-13 08:30:43,895 | INFO | +[974.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,895 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,895 | INFO | Duck 0.467 0.000 0.303 ✓ +2026-07-13 08:30:43,895 | INFO | Animal 0.361 0.000 0.235 ✓ +2026-07-13 08:30:43,895 | INFO | Bird 0.261 0.000 0.169 ✓ +2026-07-13 08:30:43,895 | INFO | Bird vocalization, bird call, bird song 0.075 0.306 0.156 ✓ +2026-07-13 08:30:43,895 | INFO | Quack 0.234 0.000 0.152 ✓ +2026-07-13 08:30:43,895 | INFO | Outside, rural or natural 0.066 0.000 0.043 ✗ +2026-07-13 08:30:43,895 | INFO | → WINNER: Duck (combined=0.303) +2026-07-13 08:30:43,919 | INFO | +[974.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,919 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,919 | INFO | Duck 0.333 0.000 0.216 ✓ +2026-07-13 08:30:43,919 | INFO | Bird 0.296 0.000 0.192 ✓ +2026-07-13 08:30:43,927 | INFO | Bird vocalization, bird call, bird song 0.099 0.306 0.171 ✓ +2026-07-13 08:30:43,927 | INFO | Animal 0.213 0.000 0.139 ✓ +2026-07-13 08:30:43,928 | INFO | Quack 0.180 0.000 0.117 ✗ +2026-07-13 08:30:43,928 | INFO | Chirp, tweet 0.098 0.000 0.063 ✗ +2026-07-13 08:30:43,928 | INFO | → WINNER: Duck (combined=0.216) +2026-07-13 08:30:43,952 | INFO | +[974.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,952 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,952 | INFO | Bird 0.443 0.000 0.288 ✓ +2026-07-13 08:30:43,952 | INFO | Bird vocalization, bird call, bird song 0.232 0.306 0.257 ✓ +2026-07-13 08:30:43,952 | INFO | Chirp, tweet 0.308 0.000 0.200 ✓ +2026-07-13 08:30:43,952 | INFO | Animal 0.132 0.000 0.086 ✗ +2026-07-13 08:30:43,952 | INFO | → WINNER: Bird (combined=0.288) +2026-07-13 08:30:43,985 | INFO | +[974.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-07-13 08:30:43,985 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:43,985 | INFO | Bird 0.470 0.000 0.306 ✓ +2026-07-13 08:30:43,985 | INFO | Bird vocalization, bird call, bird song 0.168 0.306 0.216 ✓ +2026-07-13 08:30:43,985 | INFO | Duck 0.262 0.000 0.170 ✓ +2026-07-13 08:30:43,985 | INFO | Chirp, tweet 0.197 0.000 0.128 ✓ +2026-07-13 08:30:43,985 | INFO | Animal 0.182 0.000 0.118 ✗ +2026-07-13 08:30:43,985 | INFO | Quack 0.103 0.000 0.067 ✗ +2026-07-13 08:30:43,985 | INFO | → WINNER: Bird (combined=0.306) +2026-07-13 08:30:44,025 | INFO | +[999.80s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,025 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,025 | INFO | Bird vocalization, bird call, bird song 0.042 0.277 0.124 ✓ +2026-07-13 08:30:44,025 | INFO | Animal 0.157 0.000 0.102 ✗ +2026-07-13 08:30:44,025 | INFO | Bird 0.114 0.000 0.074 ✗ +2026-07-13 08:30:44,025 | INFO | Outside, rural or natural 0.062 0.000 0.041 ✗ +2026-07-13 08:30:44,025 | INFO | Vehicle 0.053 0.000 0.035 ✗ +2026-07-13 08:30:44,025 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.124) +2026-07-13 08:30:44,050 | INFO | +[1000.00s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,050 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,050 | INFO | Chop 0.084 0.000 0.054 ✗ +2026-07-13 08:30:44,050 | INFO | Arrow 0.081 0.000 0.053 ✗ +2026-07-13 08:30:44,050 | INFO | Vehicle 0.076 0.000 0.050 ✗ +2026-07-13 08:30:44,050 | INFO | → no winner +2026-07-13 08:30:44,079 | INFO | +[1000.20s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,079 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,079 | INFO | Chop 0.171 0.000 0.111 ✗ +2026-07-13 08:30:44,079 | INFO | Basketball bounce 0.127 0.000 0.082 ✗ +2026-07-13 08:30:44,079 | INFO | Animal 0.121 0.000 0.079 ✗ +2026-07-13 08:30:44,079 | INFO | → no winner +2026-07-13 08:30:44,107 | INFO | +[1000.40s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,107 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,107 | INFO | Fireworks 0.146 0.000 0.095 ✗ +2026-07-13 08:30:44,107 | INFO | Animal 0.093 0.000 0.060 ✗ +2026-07-13 08:30:44,107 | INFO | Firecracker 0.079 0.000 0.051 ✗ +2026-07-13 08:30:44,107 | INFO | Scrape 0.064 0.000 0.041 ✗ +2026-07-13 08:30:44,107 | INFO | Chainsaw 0.056 0.000 0.037 ✗ +2026-07-13 08:30:44,107 | INFO | Outside, rural or natural 0.053 0.000 0.035 ✗ +2026-07-13 08:30:44,107 | INFO | → no winner +2026-07-13 08:30:44,131 | INFO | +[1000.60s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,131 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,131 | INFO | Vehicle 0.149 0.000 0.097 ✗ +2026-07-13 08:30:44,131 | INFO | Skateboard 0.068 0.000 0.044 ✗ +2026-07-13 08:30:44,131 | INFO | → no winner +2026-07-13 08:30:44,164 | INFO | +[1000.80s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,164 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,164 | INFO | Wood 0.167 0.000 0.108 ✗ +2026-07-13 08:30:44,164 | INFO | Scrape 0.130 0.000 0.085 ✗ +2026-07-13 08:30:44,164 | INFO | Rub 0.126 0.000 0.082 ✗ +2026-07-13 08:30:44,164 | INFO | Vehicle 0.075 0.000 0.049 ✗ +2026-07-13 08:30:44,164 | INFO | Engine 0.054 0.000 0.035 ✗ +2026-07-13 08:30:44,164 | INFO | → no winner +2026-07-13 08:30:44,196 | INFO | +[1001.00s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-07-13 08:30:44,197 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,197 | INFO | Vehicle 0.207 0.000 0.134 ✓ +2026-07-13 08:30:44,197 | INFO | Engine 0.065 0.000 0.042 ✗ +2026-07-13 08:30:44,197 | INFO | Car 0.058 0.000 0.038 ✗ +2026-07-13 08:30:44,197 | INFO | Boat, Water vehicle 0.039 0.000 0.025 ✗ +2026-07-13 08:30:44,197 | INFO | → WINNER: Vehicle (combined=0.134) +2026-07-13 08:30:44,221 | INFO | +[1001.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,221 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,221 | INFO | Vehicle 0.200 0.000 0.130 ✓ +2026-07-13 08:30:44,221 | INFO | Boat, Water vehicle 0.074 0.000 0.048 ✗ +2026-07-13 08:30:44,221 | INFO | Mechanisms 0.060 0.000 0.039 ✗ +2026-07-13 08:30:44,221 | INFO | Wood 0.044 0.000 0.028 ✗ +2026-07-13 08:30:44,221 | INFO | → WINNER: Vehicle (combined=0.130) +2026-07-13 08:30:44,246 | INFO | +[1001.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,246 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,253 | INFO | Animal 0.119 0.000 0.077 ✗ +2026-07-13 08:30:44,254 | INFO | Vehicle 0.112 0.000 0.073 ✗ +2026-07-13 08:30:44,254 | INFO | Clip-clop 0.070 0.000 0.045 ✗ +2026-07-13 08:30:44,254 | INFO | Horse 0.066 0.000 0.043 ✗ +2026-07-13 08:30:44,254 | INFO | → no winner +2026-07-13 08:30:44,278 | INFO | +[1001.60s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,278 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,278 | INFO | Vehicle 0.138 0.000 0.090 ✗ +2026-07-13 08:30:44,278 | INFO | Animal 0.113 0.000 0.073 ✗ +2026-07-13 08:30:44,278 | INFO | Horse 0.075 0.000 0.049 ✗ +2026-07-13 08:30:44,278 | INFO | Clip-clop 0.054 0.000 0.035 ✗ +2026-07-13 08:30:44,278 | INFO | → no winner +2026-07-13 08:30:44,303 | INFO | +[1001.80s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,303 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,303 | INFO | Chop 0.079 0.000 0.051 ✗ +2026-07-13 08:30:44,303 | INFO | Vehicle 0.071 0.000 0.046 ✗ +2026-07-13 08:30:44,303 | INFO | Wood 0.063 0.000 0.041 ✗ +2026-07-13 08:30:44,303 | INFO | → no winner +2026-07-13 08:30:44,335 | INFO | +[1002.00s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,335 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,336 | INFO | Wood 0.252 0.000 0.164 ✓ +2026-07-13 08:30:44,336 | INFO | Rub 0.210 0.000 0.136 ✓ +2026-07-13 08:30:44,336 | INFO | Vehicle 0.100 0.000 0.065 ✗ +2026-07-13 08:30:44,336 | INFO | Scrape 0.062 0.000 0.040 ✗ +2026-07-13 08:30:44,336 | INFO | → WINNER: Wood (combined=0.164) +2026-07-13 08:30:44,360 | INFO | +[1002.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,360 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,360 | INFO | Patter 0.096 0.000 0.062 ✗ +2026-07-13 08:30:44,360 | INFO | Music 0.081 0.000 0.053 ✗ +2026-07-13 08:30:44,368 | INFO | Vehicle 0.061 0.000 0.040 ✗ +2026-07-13 08:30:44,368 | INFO | → no winner +2026-07-13 08:30:44,393 | INFO | +[1002.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,393 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,393 | INFO | Patter 0.075 0.000 0.049 ✗ +2026-07-13 08:30:44,393 | INFO | Crackle 0.070 0.000 0.045 ✗ +2026-07-13 08:30:44,393 | INFO | Bird 0.065 0.000 0.042 ✗ +2026-07-13 08:30:44,393 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:44,393 | INFO | → no winner +2026-07-13 08:30:44,443 | INFO | +[1059.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,444 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,444 | INFO | Animal 0.194 0.000 0.126 ✓ +2026-07-13 08:30:44,444 | INFO | Patter 0.126 0.000 0.082 ✗ +2026-07-13 08:30:44,444 | INFO | Rodents, rats, mice 0.090 0.000 0.058 ✗ +2026-07-13 08:30:44,444 | INFO | Mouse 0.072 0.000 0.047 ✗ +2026-07-13 08:30:44,444 | INFO | Walk, footsteps 0.038 0.000 0.025 ✗ +2026-07-13 08:30:44,444 | INFO | → WINNER: Animal (combined=0.126) +2026-07-13 08:30:44,499 | INFO | +[1059.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,499 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,499 | INFO | Animal 0.339 0.000 0.220 ✓ +2026-07-13 08:30:44,499 | INFO | Bird 0.043 0.271 0.123 ✓ +2026-07-13 08:30:44,499 | INFO | Clip-clop 0.091 0.000 0.059 ✗ +2026-07-13 08:30:44,499 | INFO | Horse 0.072 0.000 0.047 ✗ +2026-07-13 08:30:44,499 | INFO | Vehicle 0.064 0.000 0.042 ✗ +2026-07-13 08:30:44,499 | INFO | Outside, rural or natural 0.059 0.000 0.039 ✗ +2026-07-13 08:30:44,499 | INFO | → WINNER: Animal (combined=0.220) +2026-07-13 08:30:44,548 | INFO | +[1059.60s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,548 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,548 | INFO | Animal 0.367 0.000 0.238 ✓ +2026-07-13 08:30:44,548 | INFO | Bird 0.069 0.271 0.140 ✓ +2026-07-13 08:30:44,548 | INFO | Clip-clop 0.106 0.000 0.069 ✗ +2026-07-13 08:30:44,548 | INFO | Horse 0.099 0.000 0.064 ✗ +2026-07-13 08:30:44,548 | INFO | Patter 0.071 0.000 0.046 ✗ +2026-07-13 08:30:44,548 | INFO | Outside, rural or natural 0.070 0.000 0.046 ✗ +2026-07-13 08:30:44,548 | INFO | → WINNER: Animal (combined=0.238) +2026-07-13 08:30:44,607 | INFO | +[1059.80s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,607 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,607 | INFO | Animal 0.737 0.000 0.479 ✓ +2026-07-13 08:30:44,607 | INFO | Horse 0.603 0.000 0.392 ✓ +2026-07-13 08:30:44,607 | INFO | Clip-clop 0.565 0.000 0.367 ✓ +2026-07-13 08:30:44,607 | INFO | Bird 0.036 0.271 0.118 ✗ +2026-07-13 08:30:44,607 | INFO | Outside, rural or natural 0.109 0.000 0.071 ✗ +2026-07-13 08:30:44,607 | INFO | Walk, footsteps 0.063 0.000 0.041 ✗ +2026-07-13 08:30:44,607 | INFO | → WINNER: Animal (combined=0.479) +2026-07-13 08:30:44,656 | INFO | +[1060.00s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,656 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,656 | INFO | Animal 0.568 0.000 0.369 ✓ +2026-07-13 08:30:44,656 | INFO | Horse 0.418 0.000 0.272 ✓ +2026-07-13 08:30:44,656 | INFO | Clip-clop 0.380 0.000 0.247 ✓ +2026-07-13 08:30:44,656 | INFO | Bird 0.064 0.271 0.136 ✓ +2026-07-13 08:30:44,656 | INFO | Environmental noise 0.054 0.277 0.132 ✓ +2026-07-13 08:30:44,656 | INFO | Outside, rural or natural 0.126 0.000 0.082 ✗ +2026-07-13 08:30:44,656 | INFO | → WINNER: Animal (combined=0.369) +2026-07-13 08:30:44,688 | INFO | +[1060.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,688 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,688 | INFO | Animal 0.416 0.000 0.270 ✓ +2026-07-13 08:30:44,688 | INFO | Clip-clop 0.236 0.000 0.153 ✓ +2026-07-13 08:30:44,688 | INFO | Horse 0.232 0.000 0.151 ✓ +2026-07-13 08:30:44,688 | INFO | Bird 0.067 0.271 0.139 ✓ +2026-07-13 08:30:44,688 | INFO | Outside, rural or natural 0.095 0.000 0.062 ✗ +2026-07-13 08:30:44,688 | INFO | Patter 0.060 0.000 0.039 ✗ +2026-07-13 08:30:44,688 | INFO | → WINNER: Animal (combined=0.270) +2026-07-13 08:30:44,714 | INFO | +[1060.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-07-13 08:30:44,714 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,714 | INFO | Animal 0.218 0.000 0.142 ✓ +2026-07-13 08:30:44,714 | INFO | Bird 0.065 0.271 0.137 ✓ +2026-07-13 08:30:44,714 | INFO | Music 0.093 0.000 0.061 ✗ +2026-07-13 08:30:44,714 | INFO | Clip-clop 0.077 0.000 0.050 ✗ +2026-07-13 08:30:44,714 | INFO | Horse 0.077 0.000 0.050 ✗ +2026-07-13 08:30:44,714 | INFO | → WINNER: Animal (combined=0.142) +2026-07-13 08:30:44,747 | INFO | +[1060.60s] AMBIENT | scene='' +2026-07-13 08:30:44,747 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,747 | INFO | Animal 0.208 0.000 0.136 ✓ +2026-07-13 08:30:44,747 | INFO | Bird 0.064 0.000 0.041 ✗ +2026-07-13 08:30:44,747 | INFO | → WINNER: Animal (combined=0.136) +2026-07-13 08:30:44,772 | INFO | +[1060.80s] AMBIENT | scene='' +2026-07-13 08:30:44,772 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,772 | INFO | Animal 0.135 0.000 0.088 ✗ +2026-07-13 08:30:44,772 | INFO | → no winner +2026-07-13 08:30:44,799 | INFO | +[1061.00s] AMBIENT | scene='' +2026-07-13 08:30:44,804 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,805 | INFO | Animal 0.254 0.000 0.165 ✓ +2026-07-13 08:30:44,805 | INFO | Patter 0.055 0.000 0.036 ✗ +2026-07-13 08:30:44,805 | INFO | Bird 0.044 0.000 0.029 ✗ +2026-07-13 08:30:44,805 | INFO | → WINNER: Animal (combined=0.165) +2026-07-13 08:30:44,829 | INFO | +[1061.20s] AMBIENT | scene='' +2026-07-13 08:30:44,829 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,829 | INFO | Animal 0.282 0.000 0.183 ✓ +2026-07-13 08:30:44,829 | INFO | Bird 0.111 0.000 0.072 ✗ +2026-07-13 08:30:44,829 | INFO | Outside, rural or natural 0.068 0.000 0.044 ✗ +2026-07-13 08:30:44,829 | INFO | Mouse 0.063 0.000 0.041 ✗ +2026-07-13 08:30:44,829 | INFO | Bird vocalization, bird call, bird song 0.033 0.000 0.022 ✗ +2026-07-13 08:30:44,829 | INFO | → WINNER: Animal (combined=0.183) +2026-07-13 08:30:44,853 | INFO | +[1061.40s] AMBIENT | scene='' +2026-07-13 08:30:44,853 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,853 | INFO | Animal 0.252 0.000 0.164 ✓ +2026-07-13 08:30:44,853 | INFO | Bird 0.181 0.000 0.117 ✗ +2026-07-13 08:30:44,853 | INFO | Outside, rural or natural 0.086 0.000 0.056 ✗ +2026-07-13 08:30:44,862 | INFO | Bird vocalization, bird call, bird song 0.061 0.000 0.039 ✗ +2026-07-13 08:30:44,862 | INFO | Chirp, tweet 0.053 0.000 0.035 ✗ +2026-07-13 08:30:44,862 | INFO | → WINNER: Animal (combined=0.164) +2026-07-13 08:30:44,887 | INFO | +[1061.60s] AMBIENT | scene='' +2026-07-13 08:30:44,887 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,887 | INFO | Animal 0.323 0.000 0.210 ✓ +2026-07-13 08:30:44,887 | INFO | Bird 0.137 0.000 0.089 ✗ +2026-07-13 08:30:44,887 | INFO | Outside, rural or natural 0.112 0.000 0.073 ✗ +2026-07-13 08:30:44,887 | INFO | Environmental noise 0.069 0.000 0.044 ✗ +2026-07-13 08:30:44,887 | INFO | Horse 0.057 0.000 0.037 ✗ +2026-07-13 08:30:44,887 | INFO | Clip-clop 0.055 0.000 0.036 ✗ +2026-07-13 08:30:44,887 | INFO | → WINNER: Animal (combined=0.210) +2026-07-13 08:30:44,912 | INFO | +[1061.80s] AMBIENT | scene='' +2026-07-13 08:30:44,912 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,919 | INFO | Animal 0.244 0.000 0.159 ✓ +2026-07-13 08:30:44,919 | INFO | Bird 0.170 0.000 0.111 ✗ +2026-07-13 08:30:44,919 | INFO | Insect 0.097 0.000 0.063 ✗ +2026-07-13 08:30:44,919 | INFO | Outside, rural or natural 0.089 0.000 0.058 ✗ +2026-07-13 08:30:44,919 | INFO | Cricket 0.077 0.000 0.050 ✗ +2026-07-13 08:30:44,919 | INFO | Bird vocalization, bird call, bird song 0.063 0.000 0.041 ✗ +2026-07-13 08:30:44,919 | INFO | → WINNER: Animal (combined=0.159) +2026-07-13 08:30:44,945 | INFO | +[1062.00s] AMBIENT | scene='' +2026-07-13 08:30:44,945 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,945 | INFO | Animal 0.685 0.000 0.445 ✓ +2026-07-13 08:30:44,945 | INFO | Clip-clop 0.665 0.000 0.432 ✓ +2026-07-13 08:30:44,945 | INFO | Horse 0.655 0.000 0.426 ✓ +2026-07-13 08:30:44,945 | INFO | Outside, rural or natural 0.095 0.000 0.061 ✗ +2026-07-13 08:30:44,945 | INFO | Neigh, whinny 0.076 0.000 0.049 ✗ +2026-07-13 08:30:44,945 | INFO | Patter 0.073 0.000 0.047 ✗ +2026-07-13 08:30:44,945 | INFO | → WINNER: Animal (combined=0.445) +2026-07-13 08:30:44,977 | INFO | +[1062.20s] AMBIENT | scene='' +2026-07-13 08:30:44,978 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:44,978 | INFO | Animal 0.306 0.000 0.199 ✓ +2026-07-13 08:30:44,978 | INFO | Bird 0.108 0.000 0.070 ✗ +2026-07-13 08:30:44,978 | INFO | Boat, Water vehicle 0.072 0.000 0.047 ✗ +2026-07-13 08:30:44,978 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:30:44,978 | INFO | Rowboat, canoe, kayak 0.058 0.000 0.038 ✗ +2026-07-13 08:30:44,978 | INFO | Chirp, tweet 0.056 0.000 0.036 ✗ +2026-07-13 08:30:44,978 | INFO | → WINNER: Animal (combined=0.199) +2026-07-13 08:30:45,003 | INFO | +[1062.40s] AMBIENT | scene='' +2026-07-13 08:30:45,003 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,003 | INFO | Animal 0.217 0.000 0.141 ✓ +2026-07-13 08:30:45,003 | INFO | Bird 0.085 0.000 0.055 ✗ +2026-07-13 08:30:45,003 | INFO | Liquid 0.072 0.000 0.047 ✗ +2026-07-13 08:30:45,003 | INFO | Water 0.070 0.000 0.046 ✗ +2026-07-13 08:30:45,003 | INFO | Outside, rural or natural 0.064 0.000 0.041 ✗ +2026-07-13 08:30:45,003 | INFO | Drip 0.054 0.000 0.035 ✗ +2026-07-13 08:30:45,003 | INFO | → WINNER: Animal (combined=0.141) +2026-07-13 08:30:45,035 | INFO | +[1062.60s] AMBIENT | scene='' +2026-07-13 08:30:45,035 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,035 | INFO | Drip 0.146 0.000 0.095 ✗ +2026-07-13 08:30:45,035 | INFO | Squish 0.104 0.000 0.067 ✗ +2026-07-13 08:30:45,035 | INFO | Music 0.089 0.000 0.058 ✗ +2026-07-13 08:30:45,035 | INFO | Liquid 0.072 0.000 0.047 ✗ +2026-07-13 08:30:45,035 | INFO | Water 0.072 0.000 0.046 ✗ +2026-07-13 08:30:45,035 | INFO | → no winner +2026-07-13 08:30:45,063 | INFO | +[1062.80s] AMBIENT | scene='' +2026-07-13 08:30:45,063 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,063 | INFO | Squish 0.228 0.000 0.148 ✓ +2026-07-13 08:30:45,063 | INFO | Drip 0.219 0.000 0.142 ✓ +2026-07-13 08:30:45,063 | INFO | Water 0.118 0.000 0.077 ✗ +2026-07-13 08:30:45,063 | INFO | Liquid 0.108 0.000 0.070 ✗ +2026-07-13 08:30:45,063 | INFO | Fill (with liquid) 0.091 0.000 0.059 ✗ +2026-07-13 08:30:45,063 | INFO | → WINNER: Squish (combined=0.148) +2026-07-13 08:30:45,085 | INFO | +[1063.00s] AMBIENT | scene='' +2026-07-13 08:30:45,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,094 | INFO | Squish 0.851 0.000 0.553 ✓ +2026-07-13 08:30:45,094 | INFO | Drip 0.428 0.000 0.279 ✓ +2026-07-13 08:30:45,094 | INFO | Liquid 0.093 0.000 0.061 ✗ +2026-07-13 08:30:45,094 | INFO | Fill (with liquid) 0.081 0.000 0.053 ✗ +2026-07-13 08:30:45,094 | INFO | Water 0.069 0.000 0.044 ✗ +2026-07-13 08:30:45,094 | INFO | Static 0.064 0.000 0.042 ✗ +2026-07-13 08:30:45,094 | INFO | → WINNER: Squish (combined=0.553) +2026-07-13 08:30:45,121 | INFO | +[1063.20s] AMBIENT | scene='' +2026-07-13 08:30:45,122 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,122 | INFO | Patter 0.129 0.000 0.084 ✗ +2026-07-13 08:30:45,122 | INFO | Static 0.060 0.000 0.039 ✗ +2026-07-13 08:30:45,122 | INFO | Squish 0.060 0.000 0.039 ✗ +2026-07-13 08:30:45,122 | INFO | → no winner +2026-07-13 08:30:45,150 | INFO | +[1063.40s] AMBIENT | scene='' +2026-07-13 08:30:45,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,150 | INFO | Patter 0.185 0.000 0.120 ✓ +2026-07-13 08:30:45,150 | INFO | Static 0.103 0.000 0.067 ✗ +2026-07-13 08:30:45,150 | INFO | Squish 0.081 0.000 0.053 ✗ +2026-07-13 08:30:45,150 | INFO | Rustle 0.032 0.000 0.021 ✗ +2026-07-13 08:30:45,150 | INFO | → WINNER: Patter (combined=0.120) +2026-07-13 08:30:45,175 | INFO | +[1063.60s] AMBIENT | scene='' +2026-07-13 08:30:45,175 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,175 | INFO | Static 0.253 0.000 0.165 ✓ +2026-07-13 08:30:45,175 | INFO | Patter 0.242 0.000 0.158 ✓ +2026-07-13 08:30:45,175 | INFO | Noise 0.126 0.000 0.082 ✗ +2026-07-13 08:30:45,175 | INFO | White noise 0.122 0.000 0.080 ✗ +2026-07-13 08:30:45,175 | INFO | Boiling 0.116 0.000 0.075 ✗ +2026-07-13 08:30:45,175 | INFO | Mouse 0.080 0.000 0.052 ✗ +2026-07-13 08:30:45,175 | INFO | → WINNER: Static (combined=0.165) +2026-07-13 08:30:45,208 | INFO | +[1063.80s] AMBIENT | scene='' +2026-07-13 08:30:45,208 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,208 | INFO | Patter 0.173 0.000 0.113 ✗ +2026-07-13 08:30:45,208 | INFO | Static 0.115 0.000 0.075 ✗ +2026-07-13 08:30:45,208 | INFO | Mouse 0.072 0.000 0.047 ✗ +2026-07-13 08:30:45,208 | INFO | Boiling 0.068 0.000 0.044 ✗ +2026-07-13 08:30:45,208 | INFO | → no winner +2026-07-13 08:30:45,232 | INFO | +[1064.00s] AMBIENT | scene='' +2026-07-13 08:30:45,232 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,232 | INFO | Patter 0.557 0.000 0.362 ✓ +2026-07-13 08:30:45,232 | INFO | Mouse 0.411 0.000 0.267 ✓ +2026-07-13 08:30:45,232 | INFO | Rodents, rats, mice 0.384 0.000 0.250 ✓ +2026-07-13 08:30:45,232 | INFO | Static 0.060 0.000 0.039 ✗ +2026-07-13 08:30:45,232 | INFO | → WINNER: Patter (combined=0.362) +2026-07-13 08:30:45,263 | INFO | +[1064.20s] AMBIENT | scene='' +2026-07-13 08:30:45,263 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,263 | INFO | Patter 0.172 0.000 0.112 ✗ +2026-07-13 08:30:45,263 | INFO | Mouse 0.057 0.000 0.037 ✗ +2026-07-13 08:30:45,263 | INFO | Static 0.056 0.000 0.036 ✗ +2026-07-13 08:30:45,263 | INFO | → no winner +2026-07-13 08:30:45,288 | INFO | +[1064.40s] AMBIENT | scene='' +2026-07-13 08:30:45,288 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,288 | INFO | Patter 0.102 0.000 0.066 ✗ +2026-07-13 08:30:45,288 | INFO | Static 0.072 0.000 0.046 ✗ +2026-07-13 08:30:45,288 | INFO | Squish 0.062 0.000 0.040 ✗ +2026-07-13 08:30:45,288 | INFO | → no winner +2026-07-13 08:30:45,321 | INFO | +[1064.60s] AMBIENT | scene='' +2026-07-13 08:30:45,321 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,321 | INFO | Squish 0.083 0.000 0.054 ✗ +2026-07-13 08:30:45,321 | INFO | Patter 0.075 0.000 0.049 ✗ +2026-07-13 08:30:45,321 | INFO | Music 0.068 0.000 0.044 ✗ +2026-07-13 08:30:45,321 | INFO | Static 0.059 0.000 0.038 ✗ +2026-07-13 08:30:45,324 | INFO | Mouse 0.053 0.000 0.034 ✗ +2026-07-13 08:30:45,324 | INFO | → no winner +2026-07-13 08:30:45,347 | INFO | +[1064.80s] AMBIENT | scene='' +2026-07-13 08:30:45,347 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,347 | INFO | Music 0.195 0.000 0.127 ✓ +2026-07-13 08:30:45,347 | INFO | Static 0.146 0.000 0.095 ✗ +2026-07-13 08:30:45,347 | INFO | → WINNER: Music (combined=0.127) +2026-07-13 08:30:45,378 | INFO | +[1065.00s] AMBIENT | scene='' +2026-07-13 08:30:45,378 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,378 | INFO | Music 0.106 0.000 0.069 ✗ +2026-07-13 08:30:45,378 | INFO | → no winner +2026-07-13 08:30:45,403 | INFO | +[1065.20s] AMBIENT | scene='' +2026-07-13 08:30:45,403 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,403 | INFO | Music 0.287 0.000 0.187 ✓ +2026-07-13 08:30:45,403 | INFO | Vehicle 0.104 0.000 0.068 ✗ +2026-07-13 08:30:45,403 | INFO | Printer 0.052 0.000 0.034 ✗ +2026-07-13 08:30:45,403 | INFO | → WINNER: Music (combined=0.187) +2026-07-13 08:30:45,428 | INFO | +[1065.40s] AMBIENT | scene='' +2026-07-13 08:30:45,436 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,436 | INFO | Music 0.198 0.000 0.129 ✓ +2026-07-13 08:30:45,436 | INFO | Vehicle 0.130 0.000 0.084 ✗ +2026-07-13 08:30:45,438 | INFO | → WINNER: Music (combined=0.129) +2026-07-13 08:30:45,462 | INFO | +[1065.60s] AMBIENT | scene='' +2026-07-13 08:30:45,462 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,462 | INFO | Vehicle 0.127 0.000 0.083 ✗ +2026-07-13 08:30:45,462 | INFO | Music 0.099 0.000 0.064 ✗ +2026-07-13 08:30:45,462 | INFO | → no winner +2026-07-13 08:30:45,486 | INFO | +[1065.80s] AMBIENT | scene='' +2026-07-13 08:30:45,494 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,494 | INFO | Animal 0.162 0.000 0.105 ✗ +2026-07-13 08:30:45,495 | INFO | Bird 0.117 0.000 0.076 ✗ +2026-07-13 08:30:45,495 | INFO | Vehicle 0.108 0.000 0.070 ✗ +2026-07-13 08:30:45,495 | INFO | Outside, rural or natural 0.090 0.000 0.059 ✗ +2026-07-13 08:30:45,495 | INFO | Train 0.058 0.000 0.038 ✗ +2026-07-13 08:30:45,495 | INFO | → no winner +2026-07-13 08:30:45,518 | INFO | +[1066.00s] AMBIENT | scene='' +2026-07-13 08:30:45,518 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,518 | INFO | Animal 0.153 0.000 0.099 ✗ +2026-07-13 08:30:45,518 | INFO | Vehicle 0.101 0.000 0.066 ✗ +2026-07-13 08:30:45,518 | INFO | Bird 0.060 0.000 0.039 ✗ +2026-07-13 08:30:45,518 | INFO | Mouse 0.059 0.000 0.038 ✗ +2026-07-13 08:30:45,518 | INFO | → no winner +2026-07-13 08:30:45,550 | INFO | +[1066.20s] AMBIENT | scene='' +2026-07-13 08:30:45,550 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,551 | INFO | Animal 0.133 0.000 0.087 ✗ +2026-07-13 08:30:45,552 | INFO | Vehicle 0.104 0.000 0.068 ✗ +2026-07-13 08:30:45,552 | INFO | Music 0.088 0.000 0.057 ✗ +2026-07-13 08:30:45,552 | INFO | Clip-clop 0.059 0.000 0.038 ✗ +2026-07-13 08:30:45,552 | INFO | Horse 0.053 0.000 0.034 ✗ +2026-07-13 08:30:45,552 | INFO | Bird 0.037 0.000 0.024 ✗ +2026-07-13 08:30:45,552 | INFO | → no winner +2026-07-13 08:30:45,577 | INFO | +[1066.40s] AMBIENT | scene='' +2026-07-13 08:30:45,577 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,577 | INFO | Vehicle 0.272 0.000 0.177 ✓ +2026-07-13 08:30:45,577 | INFO | Boat, Water vehicle 0.218 0.000 0.142 ✓ +2026-07-13 08:30:45,577 | INFO | Animal 0.096 0.000 0.062 ✗ +2026-07-13 08:30:45,577 | INFO | Clip-clop 0.079 0.000 0.051 ✗ +2026-07-13 08:30:45,577 | INFO | Horse 0.071 0.000 0.046 ✗ +2026-07-13 08:30:45,577 | INFO | Music 0.067 0.000 0.043 ✗ +2026-07-13 08:30:45,577 | INFO | → WINNER: Vehicle (combined=0.177) +2026-07-13 08:30:45,605 | INFO | +[1066.60s] AMBIENT | scene='' +2026-07-13 08:30:45,605 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,605 | INFO | Animal 0.278 0.000 0.181 ✓ +2026-07-13 08:30:45,609 | INFO | Boat, Water vehicle 0.149 0.000 0.097 ✗ +2026-07-13 08:30:45,609 | INFO | Vehicle 0.139 0.000 0.091 ✗ +2026-07-13 08:30:45,609 | INFO | Clip-clop 0.067 0.000 0.044 ✗ +2026-07-13 08:30:45,609 | INFO | → WINNER: Animal (combined=0.181) +2026-07-13 08:30:45,634 | INFO | +[1066.80s] AMBIENT | scene='' +2026-07-13 08:30:45,634 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,634 | INFO | Boat, Water vehicle 0.129 0.000 0.084 ✗ +2026-07-13 08:30:45,634 | INFO | Vehicle 0.121 0.000 0.079 ✗ +2026-07-13 08:30:45,634 | INFO | Water 0.089 0.000 0.058 ✗ +2026-07-13 08:30:45,634 | INFO | Pour 0.059 0.000 0.038 ✗ +2026-07-13 08:30:45,634 | INFO | Stream 0.053 0.000 0.035 ✗ +2026-07-13 08:30:45,634 | INFO | → no winner +2026-07-13 08:30:45,659 | INFO | +[1067.00s] AMBIENT | scene='' +2026-07-13 08:30:45,659 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,666 | INFO | Animal 0.184 0.000 0.119 ✗ +2026-07-13 08:30:45,666 | INFO | Vehicle 0.086 0.000 0.056 ✗ +2026-07-13 08:30:45,666 | INFO | Boat, Water vehicle 0.054 0.000 0.035 ✗ +2026-07-13 08:30:45,666 | INFO | Bird 0.040 0.000 0.026 ✗ +2026-07-13 08:30:45,666 | INFO | → no winner +2026-07-13 08:30:45,691 | INFO | +[1067.20s] AMBIENT | scene='' +2026-07-13 08:30:45,691 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,691 | INFO | Animal 0.306 0.000 0.199 ✓ +2026-07-13 08:30:45,691 | INFO | Vehicle 0.073 0.000 0.048 ✗ +2026-07-13 08:30:45,691 | INFO | Bird 0.071 0.000 0.046 ✗ +2026-07-13 08:30:45,691 | INFO | → WINNER: Animal (combined=0.199) +2026-07-13 08:30:45,716 | INFO | +[1067.40s] AMBIENT | scene='' +2026-07-13 08:30:45,716 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,716 | INFO | Pour 0.120 0.000 0.078 ✗ +2026-07-13 08:30:45,716 | INFO | Water 0.089 0.000 0.058 ✗ +2026-07-13 08:30:45,716 | INFO | Vehicle 0.065 0.000 0.042 ✗ +2026-07-13 08:30:45,716 | INFO | Boat, Water vehicle 0.043 0.000 0.028 ✗ +2026-07-13 08:30:45,716 | INFO | → no winner +2026-07-13 08:30:45,745 | INFO | +[1067.60s] AMBIENT | scene='' +2026-07-13 08:30:45,749 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,749 | INFO | Vehicle 0.140 0.000 0.091 ✗ +2026-07-13 08:30:45,749 | INFO | Boat, Water vehicle 0.085 0.000 0.055 ✗ +2026-07-13 08:30:45,749 | INFO | Pour 0.060 0.000 0.039 ✗ +2026-07-13 08:30:45,749 | INFO | Water 0.059 0.000 0.039 ✗ +2026-07-13 08:30:45,749 | INFO | Stream 0.050 0.000 0.032 ✗ +2026-07-13 08:30:45,749 | INFO | → no winner +2026-07-13 08:30:45,774 | INFO | +[1067.80s] AMBIENT | scene='' +2026-07-13 08:30:45,774 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,774 | INFO | Animal 0.262 0.000 0.170 ✓ +2026-07-13 08:30:45,774 | INFO | Insect 0.153 0.000 0.099 ✗ +2026-07-13 08:30:45,774 | INFO | Vehicle 0.079 0.000 0.051 ✗ +2026-07-13 08:30:45,774 | INFO | Outside, rural or natural 0.069 0.000 0.044 ✗ +2026-07-13 08:30:45,774 | INFO | Bee, wasp, etc. 0.054 0.000 0.035 ✗ +2026-07-13 08:30:45,774 | INFO | Bird 0.038 0.000 0.025 ✗ +2026-07-13 08:30:45,774 | INFO | → WINNER: Animal (combined=0.170) +2026-07-13 08:30:45,800 | INFO | +[1068.00s] AMBIENT | scene='' +2026-07-13 08:30:45,806 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,806 | INFO | Boat, Water vehicle 0.236 0.000 0.154 ✓ +2026-07-13 08:30:45,808 | INFO | Vehicle 0.221 0.000 0.143 ✓ +2026-07-13 08:30:45,808 | INFO | Whale vocalization 0.144 0.000 0.093 ✗ +2026-07-13 08:30:45,808 | INFO | Animal 0.115 0.000 0.075 ✗ +2026-07-13 08:30:45,808 | INFO | Rowboat, canoe, kayak 0.073 0.000 0.047 ✗ +2026-07-13 08:30:45,808 | INFO | Music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:45,808 | INFO | → WINNER: Boat, Water vehicle (combined=0.154) +2026-07-13 08:30:45,833 | INFO | +[1068.20s] AMBIENT | scene='' +2026-07-13 08:30:45,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,833 | INFO | Animal 0.522 0.000 0.339 ✓ +2026-07-13 08:30:45,833 | INFO | Whale vocalization 0.315 0.000 0.205 ✓ +2026-07-13 08:30:45,833 | INFO | Wild animals 0.280 0.000 0.182 ✓ +2026-07-13 08:30:45,833 | INFO | Cattle, bovinae 0.209 0.000 0.136 ✓ +2026-07-13 08:30:45,833 | INFO | Roaring cats (lions, tigers) 0.174 0.000 0.113 ✗ +2026-07-13 08:30:45,833 | INFO | Livestock, farm animals, working animals 0.157 0.000 0.102 ✗ +2026-07-13 08:30:45,833 | INFO | → WINNER: Animal (combined=0.339) +2026-07-13 08:30:45,863 | INFO | +[1068.40s] AMBIENT | scene='' +2026-07-13 08:30:45,863 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,863 | INFO | Animal 0.664 0.000 0.431 ✓ +2026-07-13 08:30:45,863 | INFO | Wild animals 0.532 0.000 0.346 ✓ +2026-07-13 08:30:45,863 | INFO | Roaring cats (lions, tigers) 0.438 0.000 0.285 ✓ +2026-07-13 08:30:45,863 | INFO | Roar 0.175 0.000 0.114 ✗ +2026-07-13 08:30:45,863 | INFO | Cattle, bovinae 0.141 0.000 0.092 ✗ +2026-07-13 08:30:45,863 | INFO | Whale vocalization 0.074 0.000 0.048 ✗ +2026-07-13 08:30:45,863 | INFO | → WINNER: Animal (combined=0.431) +2026-07-13 08:30:45,889 | INFO | +[1068.60s] AMBIENT | scene='' +2026-07-13 08:30:45,889 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,889 | INFO | Animal 0.660 0.000 0.429 ✓ +2026-07-13 08:30:45,896 | INFO | Wild animals 0.491 0.000 0.319 ✓ +2026-07-13 08:30:45,896 | INFO | Roaring cats (lions, tigers) 0.480 0.000 0.312 ✓ +2026-07-13 08:30:45,896 | INFO | Roar 0.185 0.000 0.120 ✓ +2026-07-13 08:30:45,896 | INFO | Whale vocalization 0.157 0.000 0.102 ✗ +2026-07-13 08:30:45,896 | INFO | Cattle, bovinae 0.117 0.000 0.076 ✗ +2026-07-13 08:30:45,896 | INFO | → WINNER: Animal (combined=0.429) +2026-07-13 08:30:45,920 | INFO | +[1068.80s] AMBIENT | scene='' +2026-07-13 08:30:45,920 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,920 | INFO | Animal 0.566 0.000 0.368 ✓ +2026-07-13 08:30:45,920 | INFO | Hoot 0.362 0.000 0.236 ✓ +2026-07-13 08:30:45,920 | INFO | Wild animals 0.349 0.000 0.227 ✓ +2026-07-13 08:30:45,920 | INFO | Roaring cats (lions, tigers) 0.219 0.000 0.142 ✓ +2026-07-13 08:30:45,920 | INFO | Cattle, bovinae 0.086 0.000 0.056 ✗ +2026-07-13 08:30:45,920 | INFO | Whale vocalization 0.074 0.000 0.048 ✗ +2026-07-13 08:30:45,920 | INFO | → WINNER: Animal (combined=0.368) +2026-07-13 08:30:45,946 | INFO | +[1069.00s] AMBIENT | scene='' +2026-07-13 08:30:45,946 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,946 | INFO | Hoot 0.686 0.000 0.446 ✓ +2026-07-13 08:30:45,946 | INFO | Owl 0.598 0.000 0.389 ✓ +2026-07-13 08:30:45,946 | INFO | Animal 0.193 0.000 0.125 ✓ +2026-07-13 08:30:45,946 | INFO | Wild animals 0.102 0.000 0.066 ✗ +2026-07-13 08:30:45,954 | INFO | Bird 0.040 0.000 0.026 ✗ +2026-07-13 08:30:45,954 | INFO | → WINNER: Hoot (combined=0.446) +2026-07-13 08:30:45,978 | INFO | +[1069.20s] AMBIENT | scene='' +2026-07-13 08:30:45,978 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:45,978 | INFO | Hoot 0.765 0.000 0.497 ✓ +2026-07-13 08:30:45,978 | INFO | Owl 0.701 0.000 0.456 ✓ +2026-07-13 08:30:45,978 | INFO | Animal 0.189 0.000 0.122 ✓ +2026-07-13 08:30:45,978 | INFO | Wild animals 0.133 0.000 0.086 ✗ +2026-07-13 08:30:45,983 | INFO | Roaring cats (lions, tigers) 0.129 0.000 0.084 ✗ +2026-07-13 08:30:45,983 | INFO | → WINNER: Hoot (combined=0.497) +2026-07-13 08:30:46,006 | INFO | +[1069.40s] AMBIENT | scene='' +2026-07-13 08:30:46,006 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,006 | INFO | Hoot 0.380 0.000 0.247 ✓ +2026-07-13 08:30:46,011 | INFO | Animal 0.363 0.000 0.236 ✓ +2026-07-13 08:30:46,011 | INFO | Wild animals 0.195 0.000 0.127 ✓ +2026-07-13 08:30:46,011 | INFO | Roaring cats (lions, tigers) 0.126 0.000 0.082 ✗ +2026-07-13 08:30:46,011 | INFO | Cattle, bovinae 0.055 0.000 0.036 ✗ +2026-07-13 08:30:46,011 | INFO | Bird 0.046 0.000 0.030 ✗ +2026-07-13 08:30:46,011 | INFO | → WINNER: Hoot (combined=0.247) +2026-07-13 08:30:46,036 | INFO | +[1069.60s] AMBIENT | scene='' +2026-07-13 08:30:46,036 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,036 | INFO | Animal 0.331 0.000 0.215 ✓ +2026-07-13 08:30:46,036 | INFO | Bird 0.134 0.000 0.087 ✗ +2026-07-13 08:30:46,036 | INFO | Wild animals 0.116 0.000 0.075 ✗ +2026-07-13 08:30:46,036 | INFO | Pigeon, dove 0.084 0.000 0.054 ✗ +2026-07-13 08:30:46,036 | INFO | Coo 0.069 0.000 0.045 ✗ +2026-07-13 08:30:46,036 | INFO | Outside, rural or natural 0.061 0.000 0.040 ✗ +2026-07-13 08:30:46,036 | INFO | → WINNER: Animal (combined=0.215) +2026-07-13 08:30:46,060 | INFO | +[1069.80s] AMBIENT | scene='' +2026-07-13 08:30:46,060 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,060 | INFO | Animal 0.335 0.000 0.217 ✓ +2026-07-13 08:30:46,060 | INFO | Clip-clop 0.187 0.000 0.122 ✓ +2026-07-13 08:30:46,069 | INFO | Horse 0.166 0.000 0.108 ✗ +2026-07-13 08:30:46,069 | INFO | Vehicle 0.083 0.000 0.054 ✗ +2026-07-13 08:30:46,069 | INFO | Outside, rural or natural 0.075 0.000 0.049 ✗ +2026-07-13 08:30:46,070 | INFO | → WINNER: Animal (combined=0.217) +2026-07-13 08:30:46,093 | INFO | +[1070.00s] AMBIENT | scene='' +2026-07-13 08:30:46,093 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,093 | INFO | Animal 0.472 0.000 0.307 ✓ +2026-07-13 08:30:46,093 | INFO | Horse 0.190 0.000 0.124 ✓ +2026-07-13 08:30:46,093 | INFO | Clip-clop 0.185 0.000 0.120 ✓ +2026-07-13 08:30:46,093 | INFO | Sheep 0.146 0.000 0.095 ✗ +2026-07-13 08:30:46,093 | INFO | Vehicle 0.133 0.000 0.086 ✗ +2026-07-13 08:30:46,093 | INFO | Bleat 0.100 0.000 0.065 ✗ +2026-07-13 08:30:46,093 | INFO | → WINNER: Animal (combined=0.307) +2026-07-13 08:30:46,126 | INFO | +[1070.20s] AMBIENT | scene='' +2026-07-13 08:30:46,126 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,126 | INFO | Animal 0.245 0.000 0.159 ✓ +2026-07-13 08:30:46,126 | INFO | Clip-clop 0.198 0.000 0.129 ✓ +2026-07-13 08:30:46,126 | INFO | Vehicle 0.186 0.000 0.121 ✓ +2026-07-13 08:30:46,126 | INFO | Horse 0.142 0.000 0.092 ✗ +2026-07-13 08:30:46,126 | INFO | Boat, Water vehicle 0.076 0.000 0.050 ✗ +2026-07-13 08:30:46,126 | INFO | Outside, urban or manmade 0.059 0.000 0.038 ✗ +2026-07-13 08:30:46,126 | INFO | → WINNER: Animal (combined=0.159) +2026-07-13 08:30:46,150 | INFO | +[1070.40s] AMBIENT | scene='' +2026-07-13 08:30:46,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,150 | INFO | Animal 0.242 0.000 0.157 ✓ +2026-07-13 08:30:46,150 | INFO | Clip-clop 0.131 0.000 0.085 ✗ +2026-07-13 08:30:46,150 | INFO | Vehicle 0.102 0.000 0.066 ✗ +2026-07-13 08:30:46,150 | INFO | Outside, urban or manmade 0.081 0.000 0.053 ✗ +2026-07-13 08:30:46,150 | INFO | Horse 0.081 0.000 0.052 ✗ +2026-07-13 08:30:46,150 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:30:46,150 | INFO | → WINNER: Animal (combined=0.157) +2026-07-13 08:30:46,183 | INFO | +[1070.60s] AMBIENT | scene='' +2026-07-13 08:30:46,183 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,183 | INFO | Vehicle 0.127 0.000 0.083 ✗ +2026-07-13 08:30:46,183 | INFO | Animal 0.115 0.000 0.075 ✗ +2026-07-13 08:30:46,183 | INFO | Clip-clop 0.060 0.000 0.039 ✗ +2026-07-13 08:30:46,183 | INFO | Boat, Water vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:46,183 | INFO | → no winner +2026-07-13 08:30:46,207 | INFO | +[1070.80s] AMBIENT | scene='' +2026-07-13 08:30:46,207 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,207 | INFO | Vehicle 0.198 0.000 0.129 ✓ +2026-07-13 08:30:46,207 | INFO | Boat, Water vehicle 0.064 0.000 0.042 ✗ +2026-07-13 08:30:46,207 | INFO | → WINNER: Vehicle (combined=0.129) +2026-07-13 08:30:46,232 | INFO | +[1071.00s] AMBIENT | scene='' +2026-07-13 08:30:46,232 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,232 | INFO | Animal 0.171 0.000 0.111 ✗ +2026-07-13 08:30:46,232 | INFO | Vehicle 0.083 0.000 0.054 ✗ +2026-07-13 08:30:46,232 | INFO | Outside, rural or natural 0.057 0.000 0.037 ✗ +2026-07-13 08:30:46,240 | INFO | → no winner +2026-07-13 08:30:46,267 | INFO | +[1071.20s] AMBIENT | scene='' +2026-07-13 08:30:46,267 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,267 | INFO | Animal 0.202 0.000 0.131 ✓ +2026-07-13 08:30:46,267 | INFO | Vehicle 0.052 0.000 0.034 ✗ +2026-07-13 08:30:46,267 | INFO | Bird 0.045 0.000 0.029 ✗ +2026-07-13 08:30:46,267 | INFO | → WINNER: Animal (combined=0.131) +2026-07-13 08:30:46,297 | INFO | +[1071.40s] AMBIENT | scene='' +2026-07-13 08:30:46,297 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,297 | INFO | Animal 0.186 0.000 0.121 ✓ +2026-07-13 08:30:46,299 | INFO | Bird 0.058 0.000 0.038 ✗ +2026-07-13 08:30:46,299 | INFO | → WINNER: Animal (combined=0.121) +2026-07-13 08:30:46,322 | INFO | +[1071.60s] AMBIENT | scene='' +2026-07-13 08:30:46,322 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,322 | INFO | Animal 0.226 0.000 0.147 ✓ +2026-07-13 08:30:46,322 | INFO | Outside, rural or natural 0.076 0.000 0.050 ✗ +2026-07-13 08:30:46,322 | INFO | Frog 0.075 0.000 0.049 ✗ +2026-07-13 08:30:46,322 | INFO | Bird 0.065 0.000 0.042 ✗ +2026-07-13 08:30:46,322 | INFO | → WINNER: Animal (combined=0.147) +2026-07-13 08:30:46,349 | INFO | +[1071.80s] AMBIENT | scene='' +2026-07-13 08:30:46,349 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,349 | INFO | Vehicle 0.097 0.000 0.063 ✗ +2026-07-13 08:30:46,349 | INFO | Radio 0.095 0.000 0.062 ✗ +2026-07-13 08:30:46,349 | INFO | Car alarm 0.082 0.000 0.053 ✗ +2026-07-13 08:30:46,349 | INFO | Fire 0.081 0.000 0.052 ✗ +2026-07-13 08:30:46,349 | INFO | Outside, rural or natural 0.079 0.000 0.051 ✗ +2026-07-13 08:30:46,349 | INFO | → no winner +2026-07-13 08:30:46,382 | INFO | +[1072.00s] AMBIENT | scene='' +2026-07-13 08:30:46,382 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,382 | INFO | Car alarm 0.151 0.000 0.098 ✗ +2026-07-13 08:30:46,382 | INFO | Fire 0.099 0.000 0.064 ✗ +2026-07-13 08:30:46,382 | INFO | Vehicle 0.069 0.000 0.045 ✗ +2026-07-13 08:30:46,382 | INFO | → no winner +2026-07-13 08:30:46,407 | INFO | +[1072.20s] AMBIENT | scene='' +2026-07-13 08:30:46,407 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,407 | INFO | Animal 0.124 0.000 0.081 ✗ +2026-07-13 08:30:46,407 | INFO | Vehicle 0.080 0.000 0.052 ✗ +2026-07-13 08:30:46,407 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:30:46,407 | INFO | Bird 0.040 0.000 0.026 ✗ +2026-07-13 08:30:46,407 | INFO | Fire 0.038 0.000 0.025 ✗ +2026-07-13 08:30:46,407 | INFO | → no winner +2026-07-13 08:30:46,440 | INFO | +[1072.40s] AMBIENT | scene='' +2026-07-13 08:30:46,440 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,440 | INFO | Animal 0.134 0.000 0.087 ✗ +2026-07-13 08:30:46,440 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:46,440 | INFO | Bird 0.051 0.000 0.033 ✗ +2026-07-13 08:30:46,440 | INFO | → no winner +2026-07-13 08:30:46,468 | INFO | +[1072.60s] AMBIENT | scene='' +2026-07-13 08:30:46,468 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,468 | INFO | Animal 0.253 0.000 0.164 ✓ +2026-07-13 08:30:46,468 | INFO | Bird 0.091 0.000 0.059 ✗ +2026-07-13 08:30:46,468 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:30:46,468 | INFO | Horse 0.062 0.000 0.040 ✗ +2026-07-13 08:30:46,468 | INFO | Clip-clop 0.061 0.000 0.039 ✗ +2026-07-13 08:30:46,468 | INFO | → WINNER: Animal (combined=0.164) +2026-07-13 08:30:46,489 | INFO | +[1072.80s] AMBIENT | scene='' +2026-07-13 08:30:46,497 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,497 | INFO | Music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:46,497 | INFO | Animal 0.094 0.000 0.061 ✗ +2026-07-13 08:30:46,497 | INFO | → no winner +2026-07-13 08:30:46,522 | INFO | +[1073.00s] AMBIENT | scene='' +2026-07-13 08:30:46,522 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,522 | INFO | Livestock, farm animals, working animals 0.210 0.000 0.137 ✓ +2026-07-13 08:30:46,522 | INFO | Cattle, bovinae 0.205 0.000 0.133 ✓ +2026-07-13 08:30:46,522 | INFO | Moo 0.178 0.000 0.116 ✗ +2026-07-13 08:30:46,522 | INFO | Animal 0.137 0.000 0.089 ✗ +2026-07-13 08:30:46,522 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.137) +2026-07-13 08:30:46,553 | INFO | +[1073.20s] AMBIENT | scene='' +2026-07-13 08:30:46,553 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,553 | INFO | Livestock, farm animals, working animals 0.834 0.000 0.542 ✓ +2026-07-13 08:30:46,554 | INFO | Moo 0.831 0.000 0.540 ✓ +2026-07-13 08:30:46,554 | INFO | Cattle, bovinae 0.805 0.000 0.523 ✓ +2026-07-13 08:30:46,554 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.542) +2026-07-13 08:30:46,580 | INFO | +[1073.40s] AMBIENT | scene='' +2026-07-13 08:30:46,580 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,580 | INFO | Cattle, bovinae 0.706 0.000 0.459 ✓ +2026-07-13 08:30:46,580 | INFO | Livestock, farm animals, working animals 0.700 0.000 0.455 ✓ +2026-07-13 08:30:46,580 | INFO | Moo 0.665 0.000 0.432 ✓ +2026-07-13 08:30:46,580 | INFO | Animal 0.153 0.000 0.100 ✗ +2026-07-13 08:30:46,580 | INFO | Whale vocalization 0.055 0.000 0.035 ✗ +2026-07-13 08:30:46,580 | INFO | → WINNER: Cattle, bovinae (combined=0.459) +2026-07-13 08:30:46,604 | INFO | +[1073.60s] AMBIENT | scene='' +2026-07-13 08:30:46,604 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,604 | INFO | Moo 0.793 0.000 0.515 ✓ +2026-07-13 08:30:46,604 | INFO | Cattle, bovinae 0.784 0.000 0.510 ✓ +2026-07-13 08:30:46,611 | INFO | Livestock, farm animals, working animals 0.781 0.000 0.508 ✓ +2026-07-13 08:30:46,611 | INFO | → WINNER: Moo (combined=0.515) +2026-07-13 08:30:46,636 | INFO | +[1073.80s] AMBIENT | scene='' +2026-07-13 08:30:46,636 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,636 | INFO | Cattle, bovinae 0.877 0.000 0.570 ✓ +2026-07-13 08:30:46,636 | INFO | Moo 0.874 0.000 0.568 ✓ +2026-07-13 08:30:46,636 | INFO | Livestock, farm animals, working animals 0.815 0.000 0.530 ✓ +2026-07-13 08:30:46,636 | INFO | → WINNER: Cattle, bovinae (combined=0.570) +2026-07-13 08:30:46,661 | INFO | +[1074.00s] AMBIENT | scene='' +2026-07-13 08:30:46,661 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,661 | INFO | Cattle, bovinae 0.643 0.000 0.418 ✓ +2026-07-13 08:30:46,669 | INFO | Livestock, farm animals, working animals 0.600 0.000 0.390 ✓ +2026-07-13 08:30:46,669 | INFO | Moo 0.574 0.000 0.373 ✓ +2026-07-13 08:30:46,669 | INFO | → WINNER: Cattle, bovinae (combined=0.418) +2026-07-13 08:30:46,695 | INFO | +[1074.20s] AMBIENT | scene='' +2026-07-13 08:30:46,695 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,695 | INFO | Animal 0.242 0.000 0.158 ✓ +2026-07-13 08:30:46,695 | INFO | Clip-clop 0.165 0.000 0.107 ✗ +2026-07-13 08:30:46,695 | INFO | Horse 0.126 0.000 0.082 ✗ +2026-07-13 08:30:46,695 | INFO | Outside, urban or manmade 0.089 0.000 0.058 ✗ +2026-07-13 08:30:46,695 | INFO | Vehicle 0.071 0.000 0.046 ✗ +2026-07-13 08:30:46,695 | INFO | Run 0.068 0.000 0.044 ✗ +2026-07-13 08:30:46,695 | INFO | → WINNER: Animal (combined=0.158) +2026-07-13 08:30:46,719 | INFO | +[1074.40s] AMBIENT | scene='' +2026-07-13 08:30:46,719 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,719 | INFO | Clip-clop 0.239 0.000 0.155 ✓ +2026-07-13 08:30:46,719 | INFO | Animal 0.199 0.000 0.130 ✓ +2026-07-13 08:30:46,719 | INFO | Horse 0.188 0.000 0.122 ✓ +2026-07-13 08:30:46,727 | INFO | Vehicle 0.166 0.000 0.108 ✗ +2026-07-13 08:30:46,727 | INFO | Boat, Water vehicle 0.065 0.000 0.042 ✗ +2026-07-13 08:30:46,727 | INFO | Outside, urban or manmade 0.064 0.000 0.041 ✗ +2026-07-13 08:30:46,727 | INFO | → WINNER: Clip-clop (combined=0.155) +2026-07-13 08:30:46,753 | INFO | +[1074.60s] AMBIENT | scene='' +2026-07-13 08:30:46,753 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,753 | INFO | Clip-clop 0.419 0.000 0.273 ✓ +2026-07-13 08:30:46,753 | INFO | Horse 0.348 0.000 0.226 ✓ +2026-07-13 08:30:46,753 | INFO | Animal 0.284 0.000 0.184 ✓ +2026-07-13 08:30:46,753 | INFO | Vehicle 0.163 0.000 0.106 ✗ +2026-07-13 08:30:46,757 | INFO | Run 0.119 0.000 0.077 ✗ +2026-07-13 08:30:46,757 | INFO | Boat, Water vehicle 0.093 0.000 0.060 ✗ +2026-07-13 08:30:46,757 | INFO | → WINNER: Clip-clop (combined=0.273) +2026-07-13 08:30:46,784 | INFO | +[1074.80s] AMBIENT | scene='' +2026-07-13 08:30:46,784 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,784 | INFO | Clip-clop 0.264 0.000 0.172 ✓ +2026-07-13 08:30:46,784 | INFO | Animal 0.234 0.000 0.152 ✓ +2026-07-13 08:30:46,784 | INFO | Horse 0.223 0.000 0.145 ✓ +2026-07-13 08:30:46,784 | INFO | Vehicle 0.153 0.000 0.099 ✗ +2026-07-13 08:30:46,784 | INFO | Boat, Water vehicle 0.145 0.000 0.094 ✗ +2026-07-13 08:30:46,784 | INFO | Rowboat, canoe, kayak 0.072 0.000 0.047 ✗ +2026-07-13 08:30:46,784 | INFO | → WINNER: Clip-clop (combined=0.172) +2026-07-13 08:30:46,809 | INFO | +[1075.00s] AMBIENT | scene='' +2026-07-13 08:30:46,809 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,809 | INFO | Vehicle 0.146 0.000 0.095 ✗ +2026-07-13 08:30:46,809 | INFO | Boat, Water vehicle 0.132 0.000 0.086 ✗ +2026-07-13 08:30:46,809 | INFO | Animal 0.117 0.000 0.076 ✗ +2026-07-13 08:30:46,809 | INFO | Clip-clop 0.102 0.000 0.066 ✗ +2026-07-13 08:30:46,809 | INFO | Horse 0.077 0.000 0.050 ✗ +2026-07-13 08:30:46,816 | INFO | Pump (liquid) 0.055 0.000 0.036 ✗ +2026-07-13 08:30:46,816 | INFO | → no winner +2026-07-13 08:30:46,841 | INFO | +[1075.20s] AMBIENT | scene='' +2026-07-13 08:30:46,841 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,841 | INFO | Water 0.130 0.000 0.084 ✗ +2026-07-13 08:30:46,841 | INFO | Vehicle 0.064 0.000 0.042 ✗ +2026-07-13 08:30:46,841 | INFO | Pump (liquid) 0.060 0.000 0.039 ✗ +2026-07-13 08:30:46,841 | INFO | Stream 0.040 0.000 0.026 ✗ +2026-07-13 08:30:46,841 | INFO | → no winner +2026-07-13 08:30:46,870 | INFO | +[1075.40s] AMBIENT | scene='' +2026-07-13 08:30:46,870 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,870 | INFO | Animal 0.197 0.000 0.128 ✓ +2026-07-13 08:30:46,870 | INFO | Vehicle 0.081 0.000 0.053 ✗ +2026-07-13 08:30:46,870 | INFO | Boat, Water vehicle 0.065 0.000 0.042 ✗ +2026-07-13 08:30:46,870 | INFO | Bird 0.039 0.000 0.025 ✗ +2026-07-13 08:30:46,870 | INFO | → WINNER: Animal (combined=0.128) +2026-07-13 08:30:46,890 | INFO | +[1075.60s] AMBIENT | scene='' +2026-07-13 08:30:46,899 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,899 | INFO | Animal 0.203 0.000 0.132 ✓ +2026-07-13 08:30:46,899 | INFO | Vehicle 0.120 0.000 0.078 ✗ +2026-07-13 08:30:46,899 | INFO | Boat, Water vehicle 0.104 0.000 0.068 ✗ +2026-07-13 08:30:46,899 | INFO | Outside, rural or natural 0.054 0.000 0.035 ✗ +2026-07-13 08:30:46,899 | INFO | → WINNER: Animal (combined=0.132) +2026-07-13 08:30:46,925 | INFO | +[1075.80s] AMBIENT | scene='' +2026-07-13 08:30:46,925 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,925 | INFO | Quack 0.187 0.000 0.122 ✓ +2026-07-13 08:30:46,925 | INFO | Duck 0.186 0.000 0.121 ✓ +2026-07-13 08:30:46,925 | INFO | Animal 0.160 0.000 0.104 ✗ +2026-07-13 08:30:46,925 | INFO | Honk 0.095 0.000 0.062 ✗ +2026-07-13 08:30:46,925 | INFO | Vehicle 0.077 0.000 0.050 ✗ +2026-07-13 08:30:46,925 | INFO | Boat, Water vehicle 0.052 0.000 0.034 ✗ +2026-07-13 08:30:46,931 | INFO | → WINNER: Quack (combined=0.122) +2026-07-13 08:30:46,957 | INFO | +[1076.00s] AMBIENT | scene='' +2026-07-13 08:30:46,957 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,957 | INFO | Quack 0.225 0.000 0.146 ✓ +2026-07-13 08:30:46,957 | INFO | Animal 0.192 0.000 0.125 ✓ +2026-07-13 08:30:46,957 | INFO | Duck 0.188 0.000 0.122 ✓ +2026-07-13 08:30:46,957 | INFO | Vehicle 0.089 0.000 0.058 ✗ +2026-07-13 08:30:46,957 | INFO | Boat, Water vehicle 0.048 0.000 0.031 ✗ +2026-07-13 08:30:46,957 | INFO | → WINNER: Quack (combined=0.146) +2026-07-13 08:30:46,981 | INFO | +[1076.20s] AMBIENT | scene='' +2026-07-13 08:30:46,981 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:46,981 | INFO | Vehicle 0.146 0.000 0.095 ✗ +2026-07-13 08:30:46,981 | INFO | Animal 0.118 0.000 0.076 ✗ +2026-07-13 08:30:46,981 | INFO | Boat, Water vehicle 0.074 0.000 0.048 ✗ +2026-07-13 08:30:46,981 | INFO | → no winner +2026-07-13 08:30:47,015 | INFO | +[1076.40s] AMBIENT | scene='' +2026-07-13 08:30:47,015 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,015 | INFO | Music 0.178 0.000 0.116 ✗ +2026-07-13 08:30:47,015 | INFO | Animal 0.121 0.000 0.079 ✗ +2026-07-13 08:30:47,015 | INFO | Vehicle 0.115 0.000 0.075 ✗ +2026-07-13 08:30:47,015 | INFO | Boat, Water vehicle 0.066 0.000 0.043 ✗ +2026-07-13 08:30:47,015 | INFO | Clip-clop 0.059 0.000 0.038 ✗ +2026-07-13 08:30:47,015 | INFO | → no winner +2026-07-13 08:30:47,039 | INFO | +[1076.60s] AMBIENT | scene='' +2026-07-13 08:30:47,039 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,047 | INFO | Music 0.474 0.000 0.308 ✓ +2026-07-13 08:30:47,047 | INFO | Radio 0.145 0.000 0.094 ✗ +2026-07-13 08:30:47,047 | INFO | Television 0.099 0.000 0.064 ✗ +2026-07-13 08:30:47,047 | INFO | Vehicle 0.073 0.000 0.048 ✗ +2026-07-13 08:30:47,047 | INFO | → WINNER: Music (combined=0.308) +2026-07-13 08:30:47,072 | INFO | +[1076.80s] AMBIENT | scene='' +2026-07-13 08:30:47,074 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,074 | INFO | Music 0.341 0.000 0.222 ✓ +2026-07-13 08:30:47,074 | INFO | Radio 0.102 0.000 0.067 ✗ +2026-07-13 08:30:47,074 | INFO | Television 0.088 0.000 0.057 ✗ +2026-07-13 08:30:47,074 | INFO | → WINNER: Music (combined=0.222) +2026-07-13 08:30:47,096 | INFO | +[1077.00s] AMBIENT | scene='' +2026-07-13 08:30:47,096 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,096 | INFO | Music 0.282 0.000 0.184 ✓ +2026-07-13 08:30:47,096 | INFO | Whale vocalization 0.127 0.000 0.083 ✗ +2026-07-13 08:30:47,096 | INFO | → WINNER: Music (combined=0.184) +2026-07-13 08:30:47,129 | INFO | +[1077.20s] AMBIENT | scene='' +2026-07-13 08:30:47,129 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,129 | INFO | Music 0.276 0.000 0.180 ✓ +2026-07-13 08:30:47,129 | INFO | → WINNER: Music (combined=0.180) +2026-07-13 08:30:47,155 | INFO | +[1077.40s] AMBIENT | scene='' +2026-07-13 08:30:47,155 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,155 | INFO | Music 0.110 0.000 0.071 ✗ +2026-07-13 08:30:47,155 | INFO | Whale vocalization 0.061 0.000 0.040 ✗ +2026-07-13 08:30:47,155 | INFO | → no winner +2026-07-13 08:30:47,177 | INFO | +[1077.60s] AMBIENT | scene='' +2026-07-13 08:30:47,177 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,186 | INFO | Radio 0.143 0.000 0.093 ✗ +2026-07-13 08:30:47,186 | INFO | Music 0.107 0.000 0.070 ✗ +2026-07-13 08:30:47,186 | INFO | Vehicle 0.080 0.000 0.052 ✗ +2026-07-13 08:30:47,186 | INFO | → no winner +2026-07-13 08:30:47,209 | INFO | +[1077.80s] AMBIENT | scene='' +2026-07-13 08:30:47,209 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,209 | INFO | Vehicle 0.082 0.000 0.053 ✗ +2026-07-13 08:30:47,209 | INFO | Music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:47,209 | INFO | Radio 0.053 0.000 0.034 ✗ +2026-07-13 08:30:47,209 | INFO | → no winner +2026-07-13 08:30:47,239 | INFO | +[1078.00s] AMBIENT | scene='' +2026-07-13 08:30:47,239 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,239 | INFO | Vehicle 0.111 0.000 0.072 ✗ +2026-07-13 08:30:47,242 | INFO | Animal 0.096 0.000 0.063 ✗ +2026-07-13 08:30:47,242 | INFO | → no winner +2026-07-13 08:30:47,269 | INFO | +[1078.20s] AMBIENT | scene='' +2026-07-13 08:30:47,269 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,269 | INFO | Animal 0.159 0.000 0.103 ✗ +2026-07-13 08:30:47,269 | INFO | Vehicle 0.082 0.000 0.053 ✗ +2026-07-13 08:30:47,269 | INFO | Boat, Water vehicle 0.041 0.000 0.026 ✗ +2026-07-13 08:30:47,269 | INFO | → no winner +2026-07-13 08:30:47,292 | INFO | +[1078.40s] AMBIENT | scene='' +2026-07-13 08:30:47,292 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,292 | INFO | Animal 0.220 0.000 0.143 ✓ +2026-07-13 08:30:47,292 | INFO | Horse 0.102 0.000 0.066 ✗ +2026-07-13 08:30:47,292 | INFO | Clip-clop 0.098 0.000 0.064 ✗ +2026-07-13 08:30:47,292 | INFO | Vehicle 0.081 0.000 0.053 ✗ +2026-07-13 08:30:47,292 | INFO | Boat, Water vehicle 0.058 0.000 0.037 ✗ +2026-07-13 08:30:47,292 | INFO | → WINNER: Animal (combined=0.143) +2026-07-13 08:30:47,325 | INFO | +[1078.60s] AMBIENT | scene='' +2026-07-13 08:30:47,325 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,325 | INFO | Whale vocalization 0.765 0.000 0.497 ✓ +2026-07-13 08:30:47,325 | INFO | Livestock, farm animals, working animals 0.539 0.000 0.350 ✓ +2026-07-13 08:30:47,325 | INFO | Cattle, bovinae 0.491 0.000 0.319 ✓ +2026-07-13 08:30:47,325 | INFO | Moo 0.452 0.000 0.293 ✓ +2026-07-13 08:30:47,325 | INFO | Animal 0.376 0.000 0.244 ✓ +2026-07-13 08:30:47,325 | INFO | Wild animals 0.145 0.000 0.094 ✗ +2026-07-13 08:30:47,325 | INFO | → WINNER: Whale vocalization (combined=0.497) +2026-07-13 08:30:47,349 | INFO | +[1078.80s] AMBIENT | scene='' +2026-07-13 08:30:47,349 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,349 | INFO | Livestock, farm animals, working animals 0.753 0.000 0.490 ✓ +2026-07-13 08:30:47,349 | INFO | Moo 0.742 0.000 0.482 ✓ +2026-07-13 08:30:47,349 | INFO | Cattle, bovinae 0.736 0.000 0.478 ✓ +2026-07-13 08:30:47,349 | INFO | Whale vocalization 0.192 0.000 0.125 ✓ +2026-07-13 08:30:47,349 | INFO | Animal 0.122 0.000 0.079 ✗ +2026-07-13 08:30:47,349 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.490) +2026-07-13 08:30:47,375 | INFO | +[1079.00s] AMBIENT | scene='' +2026-07-13 08:30:47,375 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,382 | INFO | Livestock, farm animals, working animals 0.817 0.000 0.531 ✓ +2026-07-13 08:30:47,382 | INFO | Moo 0.816 0.000 0.530 ✓ +2026-07-13 08:30:47,382 | INFO | Cattle, bovinae 0.783 0.000 0.509 ✓ +2026-07-13 08:30:47,382 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.531) +2026-07-13 08:30:47,408 | INFO | +[1079.20s] AMBIENT | scene='' +2026-07-13 08:30:47,408 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,408 | INFO | Livestock, farm animals, working animals 0.817 0.000 0.531 ✓ +2026-07-13 08:30:47,408 | INFO | Moo 0.810 0.000 0.527 ✓ +2026-07-13 08:30:47,408 | INFO | Cattle, bovinae 0.758 0.000 0.493 ✓ +2026-07-13 08:30:47,408 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.531) +2026-07-13 08:30:47,431 | INFO | +[1079.40s] AMBIENT | scene='' +2026-07-13 08:30:47,431 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,431 | INFO | Moo 0.898 0.000 0.584 ✓ +2026-07-13 08:30:47,439 | INFO | Cattle, bovinae 0.876 0.000 0.569 ✓ +2026-07-13 08:30:47,439 | INFO | Livestock, farm animals, working animals 0.861 0.000 0.560 ✓ +2026-07-13 08:30:47,439 | INFO | → WINNER: Moo (combined=0.584) +2026-07-13 08:30:47,466 | INFO | +[1079.60s] AMBIENT | scene='' +2026-07-13 08:30:47,466 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,466 | INFO | Moo 0.894 0.000 0.581 ✓ +2026-07-13 08:30:47,466 | INFO | Cattle, bovinae 0.892 0.000 0.580 ✓ +2026-07-13 08:30:47,466 | INFO | Livestock, farm animals, working animals 0.817 0.000 0.531 ✓ +2026-07-13 08:30:47,466 | INFO | → WINNER: Moo (combined=0.581) +2026-07-13 08:30:47,491 | INFO | +[1079.80s] AMBIENT | scene='' +2026-07-13 08:30:47,496 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,497 | INFO | Cattle, bovinae 0.802 0.000 0.521 ✓ +2026-07-13 08:30:47,497 | INFO | Moo 0.793 0.000 0.515 ✓ +2026-07-13 08:30:47,497 | INFO | Livestock, farm animals, working animals 0.708 0.000 0.460 ✓ +2026-07-13 08:30:47,497 | INFO | → WINNER: Cattle, bovinae (combined=0.521) +2026-07-13 08:30:47,523 | INFO | +[1080.00s] AMBIENT | scene='' +2026-07-13 08:30:47,523 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,523 | INFO | Cattle, bovinae 0.615 0.000 0.400 ✓ +2026-07-13 08:30:47,523 | INFO | Moo 0.588 0.000 0.382 ✓ +2026-07-13 08:30:47,523 | INFO | Livestock, farm animals, working animals 0.539 0.000 0.350 ✓ +2026-07-13 08:30:47,523 | INFO | Vehicle 0.055 0.000 0.035 ✗ +2026-07-13 08:30:47,523 | INFO | → WINNER: Cattle, bovinae (combined=0.400) +2026-07-13 08:30:47,550 | INFO | +[1080.20s] AMBIENT | scene='' +2026-07-13 08:30:47,554 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,555 | INFO | Animal 0.098 0.000 0.064 ✗ +2026-07-13 08:30:47,555 | INFO | Vehicle 0.081 0.000 0.052 ✗ +2026-07-13 08:30:47,555 | INFO | → no winner +2026-07-13 08:30:47,580 | INFO | +[1080.40s] AMBIENT | scene='' +2026-07-13 08:30:47,580 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,580 | INFO | Vehicle 0.444 0.000 0.288 ✓ +2026-07-13 08:30:47,580 | INFO | Boat, Water vehicle 0.252 0.000 0.164 ✓ +2026-07-13 08:30:47,580 | INFO | Motorboat, speedboat 0.169 0.000 0.110 ✗ +2026-07-13 08:30:47,580 | INFO | Car 0.096 0.000 0.062 ✗ +2026-07-13 08:30:47,580 | INFO | → WINNER: Vehicle (combined=0.288) +2026-07-13 08:30:47,605 | INFO | +[1080.60s] AMBIENT | scene='' +2026-07-13 08:30:47,605 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,605 | INFO | Vehicle 0.218 0.000 0.142 ✓ +2026-07-13 08:30:47,613 | INFO | Boat, Water vehicle 0.073 0.000 0.048 ✗ +2026-07-13 08:30:47,613 | INFO | Motorboat, speedboat 0.069 0.000 0.045 ✗ +2026-07-13 08:30:47,613 | INFO | → WINNER: Vehicle (combined=0.142) +2026-07-13 08:30:47,641 | INFO | +[1080.80s] AMBIENT | scene='' +2026-07-13 08:30:47,641 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,641 | INFO | Moo 0.405 0.000 0.263 ✓ +2026-07-13 08:30:47,641 | INFO | Cattle, bovinae 0.397 0.000 0.258 ✓ +2026-07-13 08:30:47,641 | INFO | Livestock, farm animals, working animals 0.394 0.000 0.256 ✓ +2026-07-13 08:30:47,641 | INFO | → WINNER: Moo (combined=0.263) +2026-07-13 08:30:47,667 | INFO | +[1081.00s] AMBIENT | scene='' +2026-07-13 08:30:47,669 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,669 | INFO | Civil defense siren 0.462 0.000 0.300 ✓ +2026-07-13 08:30:47,669 | INFO | Livestock, farm animals, working animals 0.323 0.000 0.210 ✓ +2026-07-13 08:30:47,669 | INFO | Siren 0.313 0.000 0.203 ✓ +2026-07-13 08:30:47,669 | INFO | Moo 0.261 0.000 0.169 ✓ +2026-07-13 08:30:47,669 | INFO | Cattle, bovinae 0.255 0.000 0.166 ✓ +2026-07-13 08:30:47,669 | INFO | → WINNER: Civil defense siren (combined=0.300) +2026-07-13 08:30:47,694 | INFO | +[1081.20s] AMBIENT | scene='' +2026-07-13 08:30:47,694 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,694 | INFO | Civil defense siren 0.561 0.000 0.364 ✓ +2026-07-13 08:30:47,694 | INFO | Siren 0.361 0.000 0.235 ✓ +2026-07-13 08:30:47,694 | INFO | Livestock, farm animals, working animals 0.255 0.000 0.166 ✓ +2026-07-13 08:30:47,694 | INFO | Moo 0.203 0.000 0.132 ✓ +2026-07-13 08:30:47,694 | INFO | Cattle, bovinae 0.195 0.000 0.127 ✓ +2026-07-13 08:30:47,694 | INFO | → WINNER: Civil defense siren (combined=0.364) +2026-07-13 08:30:47,726 | INFO | +[1081.40s] AMBIENT | scene='' +2026-07-13 08:30:47,727 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,727 | INFO | Civil defense siren 0.551 0.000 0.358 ✓ +2026-07-13 08:30:47,728 | INFO | Siren 0.358 0.000 0.232 ✓ +2026-07-13 08:30:47,728 | INFO | → WINNER: Civil defense siren (combined=0.358) +2026-07-13 08:30:47,751 | INFO | +[1081.60s] AMBIENT | scene='' +2026-07-13 08:30:47,751 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,751 | INFO | Moo 0.627 0.000 0.407 ✓ +2026-07-13 08:30:47,751 | INFO | Livestock, farm animals, working animals 0.591 0.000 0.384 ✓ +2026-07-13 08:30:47,751 | INFO | Cattle, bovinae 0.581 0.000 0.378 ✓ +2026-07-13 08:30:47,751 | INFO | → WINNER: Moo (combined=0.407) +2026-07-13 08:30:47,784 | INFO | +[1081.80s] AMBIENT | scene='' +2026-07-13 08:30:47,786 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,787 | INFO | Livestock, farm animals, working animals 0.632 0.000 0.411 ✓ +2026-07-13 08:30:47,787 | INFO | Moo 0.579 0.000 0.376 ✓ +2026-07-13 08:30:47,787 | INFO | Cattle, bovinae 0.566 0.000 0.368 ✓ +2026-07-13 08:30:47,787 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.411) +2026-07-13 08:30:47,816 | INFO | +[1082.00s] AMBIENT | scene='' +2026-07-13 08:30:47,817 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,817 | INFO | Livestock, farm animals, working animals 0.609 0.000 0.396 ✓ +2026-07-13 08:30:47,817 | INFO | Cattle, bovinae 0.490 0.000 0.319 ✓ +2026-07-13 08:30:47,817 | INFO | Moo 0.477 0.000 0.310 ✓ +2026-07-13 08:30:47,817 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.396) +2026-07-13 08:30:47,842 | INFO | +[1082.20s] AMBIENT | scene='' +2026-07-13 08:30:47,845 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,845 | INFO | Livestock, farm animals, working animals 0.378 0.000 0.246 ✓ +2026-07-13 08:30:47,846 | INFO | Cattle, bovinae 0.279 0.000 0.181 ✓ +2026-07-13 08:30:47,846 | INFO | Moo 0.253 0.000 0.165 ✓ +2026-07-13 08:30:47,846 | INFO | Whale vocalization 0.075 0.000 0.049 ✗ +2026-07-13 08:30:47,846 | INFO | Music 0.070 0.000 0.045 ✗ +2026-07-13 08:30:47,846 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.246) +2026-07-13 08:30:47,883 | INFO | +[1082.40s] AMBIENT | scene='' +2026-07-13 08:30:47,883 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,883 | INFO | Animal 0.171 0.000 0.111 ✗ +2026-07-13 08:30:47,883 | INFO | Water 0.081 0.000 0.052 ✗ +2026-07-13 08:30:47,883 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:47,883 | INFO | Boat, Water vehicle 0.046 0.000 0.030 ✗ +2026-07-13 08:30:47,883 | INFO | Bird 0.033 0.000 0.021 ✗ +2026-07-13 08:30:47,883 | INFO | → no winner +2026-07-13 08:30:47,907 | INFO | +[1087.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:47,907 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,907 | INFO | Vehicle 0.069 0.000 0.045 ✗ +2026-07-13 08:30:47,915 | INFO | Squish 0.053 0.000 0.035 ✗ +2026-07-13 08:30:47,915 | INFO | Boat, Water vehicle 0.046 0.000 0.030 ✗ +2026-07-13 08:30:47,915 | INFO | Water 0.041 0.000 0.027 ✗ +2026-07-13 08:30:47,915 | INFO | → no winner +2026-07-13 08:30:47,939 | INFO | +[1088.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:47,939 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,939 | INFO | Vehicle 0.073 0.000 0.048 ✗ +2026-07-13 08:30:47,939 | INFO | Patter 0.062 0.000 0.040 ✗ +2026-07-13 08:30:47,939 | INFO | Boat, Water vehicle 0.038 0.000 0.025 ✗ +2026-07-13 08:30:47,939 | INFO | → no winner +2026-07-13 08:30:47,964 | INFO | +[1088.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:47,964 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,964 | INFO | Vehicle 0.215 0.000 0.140 ✓ +2026-07-13 08:30:47,964 | INFO | Boat, Water vehicle 0.102 0.000 0.066 ✗ +2026-07-13 08:30:47,964 | INFO | Rowboat, canoe, kayak 0.069 0.000 0.045 ✗ +2026-07-13 08:30:47,964 | INFO | Scrape 0.057 0.000 0.037 ✗ +2026-07-13 08:30:47,964 | INFO | → WINNER: Vehicle (combined=0.140) +2026-07-13 08:30:47,988 | INFO | +[1088.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:47,988 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:47,997 | INFO | Vehicle 0.085 0.000 0.055 ✗ +2026-07-13 08:30:47,997 | INFO | → no winner +2026-07-13 08:30:48,025 | INFO | +[1090.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,025 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,025 | INFO | Animal 0.149 0.374 0.228 ✓ +2026-07-13 08:30:48,025 | INFO | Bird 0.061 0.314 0.150 ✓ +2026-07-13 08:30:48,025 | INFO | Outside, rural or natural 0.059 0.301 0.144 ✓ +2026-07-13 08:30:48,025 | INFO | Vehicle 0.117 0.000 0.076 ✗ +2026-07-13 08:30:48,025 | INFO | Boat, Water vehicle 0.042 0.000 0.027 ✗ +2026-07-13 08:30:48,025 | INFO | → WINNER: Animal (combined=0.228) +2026-07-13 08:30:48,048 | INFO | +[1091.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,054 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,054 | INFO | Animal 0.253 0.374 0.295 ✓ +2026-07-13 08:30:48,055 | INFO | Bird 0.075 0.314 0.159 ✓ +2026-07-13 08:30:48,055 | INFO | Outside, rural or natural 0.072 0.301 0.152 ✓ +2026-07-13 08:30:48,055 | INFO | Bird vocalization, bird call, bird song 0.032 0.000 0.021 ✗ +2026-07-13 08:30:48,055 | INFO | → WINNER: Animal (combined=0.295) +2026-07-13 08:30:48,080 | INFO | +[1091.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,080 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,080 | INFO | Animal 0.128 0.374 0.214 ✓ +2026-07-13 08:30:48,080 | INFO | Vehicle 0.087 0.000 0.057 ✗ +2026-07-13 08:30:48,080 | INFO | Frog 0.068 0.000 0.044 ✗ +2026-07-13 08:30:48,080 | INFO | → WINNER: Animal (combined=0.214) +2026-07-13 08:30:48,112 | INFO | +[1091.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,112 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,112 | INFO | Animal 0.233 0.374 0.282 ✓ +2026-07-13 08:30:48,112 | INFO | Outside, rural or natural 0.086 0.301 0.161 ✓ +2026-07-13 08:30:48,112 | INFO | Frog 0.089 0.000 0.058 ✗ +2026-07-13 08:30:48,112 | INFO | Patter 0.055 0.000 0.036 ✗ +2026-07-13 08:30:48,112 | INFO | → WINNER: Animal (combined=0.282) +2026-07-13 08:30:48,137 | INFO | +[1091.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,137 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,137 | INFO | Animal 0.315 0.374 0.335 ✓ +2026-07-13 08:30:48,137 | INFO | Outside, rural or natural 0.089 0.301 0.163 ✓ +2026-07-13 08:30:48,137 | INFO | Bird 0.036 0.314 0.133 ✓ +2026-07-13 08:30:48,137 | INFO | → WINNER: Animal (combined=0.335) +2026-07-13 08:30:48,169 | INFO | +[1091.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,169 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,169 | INFO | Animal 0.794 0.374 0.647 ✓ +2026-07-13 08:30:48,169 | INFO | Wild animals 0.614 0.445 0.555 ✓ +2026-07-13 08:30:48,169 | INFO | Roaring cats (lions, tigers) 0.457 0.292 0.400 ✓ +2026-07-13 08:30:48,169 | INFO | Outside, rural or natural 0.102 0.301 0.171 ✓ +2026-07-13 08:30:48,169 | INFO | → WINNER: Animal (combined=0.647) +2026-07-13 08:30:48,199 | INFO | +[1092.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,199 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,199 | INFO | Animal 0.573 0.374 0.503 ✓ +2026-07-13 08:30:48,199 | INFO | Wild animals 0.238 0.445 0.310 ✓ +2026-07-13 08:30:48,199 | INFO | Roaring cats (lions, tigers) 0.102 0.292 0.168 ✓ +2026-07-13 08:30:48,199 | INFO | Bird 0.036 0.314 0.133 ✓ +2026-07-13 08:30:48,199 | INFO | Rodents, rats, mice 0.061 0.000 0.040 ✗ +2026-07-13 08:30:48,201 | INFO | → WINNER: Animal (combined=0.503) +2026-07-13 08:30:48,228 | INFO | +[1092.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,228 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,228 | INFO | Animal 0.558 0.374 0.494 ✓ +2026-07-13 08:30:48,228 | INFO | Wild animals 0.123 0.445 0.236 ✓ +2026-07-13 08:30:48,228 | INFO | Horse 0.074 0.300 0.153 ✓ +2026-07-13 08:30:48,228 | INFO | Music 0.159 0.000 0.103 ✗ +2026-07-13 08:30:48,228 | INFO | Clip-clop 0.054 0.000 0.035 ✗ +2026-07-13 08:30:48,228 | INFO | → WINNER: Animal (combined=0.494) +2026-07-13 08:30:48,255 | INFO | +[1092.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,255 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,255 | INFO | Animal 0.201 0.374 0.262 ✓ +2026-07-13 08:30:48,255 | INFO | Music 0.140 0.000 0.091 ✗ +2026-07-13 08:30:48,255 | INFO | Vehicle 0.095 0.000 0.061 ✗ +2026-07-13 08:30:48,259 | INFO | Boat, Water vehicle 0.071 0.000 0.046 ✗ +2026-07-13 08:30:48,259 | INFO | → WINNER: Animal (combined=0.262) +2026-07-13 08:30:48,284 | INFO | +[1092.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,284 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,284 | INFO | Music 0.223 0.000 0.145 ✓ +2026-07-13 08:30:48,284 | INFO | Vehicle 0.088 0.000 0.057 ✗ +2026-07-13 08:30:48,284 | INFO | Boat, Water vehicle 0.071 0.000 0.046 ✗ +2026-07-13 08:30:48,284 | INFO | → WINNER: Music (combined=0.145) +2026-07-13 08:30:48,311 | INFO | +[1095.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,316 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,316 | INFO | Animal 0.288 0.374 0.318 ✓ +2026-07-13 08:30:48,316 | INFO | Bird 0.128 0.314 0.193 ✓ +2026-07-13 08:30:48,316 | INFO | Chicken, rooster 0.072 0.000 0.047 ✗ +2026-07-13 08:30:48,316 | INFO | → WINNER: Animal (combined=0.318) +2026-07-13 08:30:48,341 | INFO | +[1095.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,341 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,341 | INFO | Animal 0.259 0.374 0.299 ✓ +2026-07-13 08:30:48,341 | INFO | Outside, rural or natural 0.071 0.301 0.151 ✓ +2026-07-13 08:30:48,341 | INFO | Bird 0.044 0.314 0.138 ✓ +2026-07-13 08:30:48,341 | INFO | Radio 0.083 0.000 0.054 ✗ +2026-07-13 08:30:48,341 | INFO | Vehicle 0.052 0.000 0.034 ✗ +2026-07-13 08:30:48,341 | INFO | → WINNER: Animal (combined=0.299) +2026-07-13 08:30:48,366 | INFO | +[1095.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,366 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,366 | INFO | Animal 0.133 0.374 0.218 ✓ +2026-07-13 08:30:48,373 | INFO | Outside, rural or natural 0.091 0.301 0.165 ✓ +2026-07-13 08:30:48,373 | INFO | Vehicle 0.091 0.000 0.059 ✗ +2026-07-13 08:30:48,373 | INFO | Radio 0.060 0.000 0.039 ✗ +2026-07-13 08:30:48,373 | INFO | → WINNER: Animal (combined=0.218) +2026-07-13 08:30:48,398 | INFO | +[1095.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,398 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,398 | INFO | Outside, rural or natural 0.067 0.301 0.149 ✓ +2026-07-13 08:30:48,398 | INFO | Radio 0.100 0.000 0.065 ✗ +2026-07-13 08:30:48,398 | INFO | Vehicle 0.095 0.000 0.062 ✗ +2026-07-13 08:30:48,398 | INFO | → WINNER: Outside, rural or natural (combined=0.149) +2026-07-13 08:30:48,422 | INFO | +[1096.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,422 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,430 | INFO | Outside, rural or natural 0.060 0.301 0.144 ✓ +2026-07-13 08:30:48,430 | INFO | → WINNER: Outside, rural or natural (combined=0.144) +2026-07-13 08:30:48,456 | INFO | +[1096.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,456 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,456 | INFO | Inside, small room 0.066 0.000 0.043 ✗ +2026-07-13 08:30:48,456 | INFO | Vehicle 0.056 0.000 0.036 ✗ +2026-07-13 08:30:48,456 | INFO | Radio 0.053 0.000 0.034 ✗ +2026-07-13 08:30:48,456 | INFO | → no winner +2026-07-13 08:30:48,479 | INFO | +[1096.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,479 | INFO | Vehicle 0.054 0.000 0.035 ✗ +2026-07-13 08:30:48,479 | INFO | → no winner +2026-07-13 08:30:48,513 | INFO | +[1096.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,513 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,513 | INFO | Animal 0.128 0.374 0.214 ✓ +2026-07-13 08:30:48,513 | INFO | Bird 0.066 0.314 0.153 ✓ +2026-07-13 08:30:48,513 | INFO | → WINNER: Animal (combined=0.214) +2026-07-13 08:30:48,539 | INFO | +[1101.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,539 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,539 | INFO | Vehicle 0.095 0.000 0.062 ✗ +2026-07-13 08:30:48,539 | INFO | Radio 0.075 0.000 0.049 ✗ +2026-07-13 08:30:48,539 | INFO | Music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:48,539 | INFO | → no winner +2026-07-13 08:30:48,571 | INFO | +[1101.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,571 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,572 | INFO | Vehicle 0.125 0.000 0.081 ✗ +2026-07-13 08:30:48,572 | INFO | Outside, rural or natural 0.059 0.000 0.039 ✗ +2026-07-13 08:30:48,572 | INFO | Snake 0.057 0.000 0.037 ✗ +2026-07-13 08:30:48,572 | INFO | Fire 0.046 0.000 0.030 ✗ +2026-07-13 08:30:48,572 | INFO | → no winner +2026-07-13 08:30:48,596 | INFO | +[1101.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,596 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,596 | INFO | Vehicle 0.101 0.000 0.066 ✗ +2026-07-13 08:30:48,596 | INFO | Outside, rural or natural 0.073 0.000 0.047 ✗ +2026-07-13 08:30:48,596 | INFO | Fire 0.069 0.000 0.045 ✗ +2026-07-13 08:30:48,596 | INFO | → no winner +2026-07-13 08:30:48,627 | INFO | +[1102.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,628 | INFO | Insect 0.110 0.338 0.189 ✓ +2026-07-13 08:30:48,628 | INFO | Vehicle 0.120 0.000 0.078 ✗ +2026-07-13 08:30:48,628 | INFO | Hiss 0.099 0.000 0.065 ✗ +2026-07-13 08:30:48,628 | INFO | Snake 0.069 0.000 0.045 ✗ +2026-07-13 08:30:48,628 | INFO | → WINNER: Insect (combined=0.189) +2026-07-13 08:30:48,653 | INFO | +[1102.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,653 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,653 | INFO | Patter 0.311 0.000 0.202 ✓ +2026-07-13 08:30:48,653 | INFO | Rodents, rats, mice 0.300 0.000 0.195 ✓ +2026-07-13 08:30:48,657 | INFO | Mouse 0.087 0.000 0.057 ✗ +2026-07-13 08:30:48,657 | INFO | → WINNER: Patter (combined=0.202) +2026-07-13 08:30:48,678 | INFO | +[1102.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,686 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,686 | INFO | Animal 0.230 0.361 0.276 ✓ +2026-07-13 08:30:48,686 | INFO | Rodents, rats, mice 0.108 0.000 0.070 ✗ +2026-07-13 08:30:48,686 | INFO | Patter 0.093 0.000 0.060 ✗ +2026-07-13 08:30:48,686 | INFO | Hiss 0.054 0.000 0.035 ✗ +2026-07-13 08:30:48,686 | INFO | → WINNER: Animal (combined=0.276) +2026-07-13 08:30:48,710 | INFO | +[1102.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,710 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,710 | INFO | Animal 0.204 0.361 0.259 ✓ +2026-07-13 08:30:48,710 | INFO | Bird 0.034 0.321 0.135 ✓ +2026-07-13 08:30:48,710 | INFO | Rodents, rats, mice 0.078 0.000 0.050 ✗ +2026-07-13 08:30:48,710 | INFO | Patter 0.067 0.000 0.044 ✗ +2026-07-13 08:30:48,710 | INFO | → WINNER: Animal (combined=0.259) +2026-07-13 08:30:48,741 | INFO | +[1102.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,741 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,743 | INFO | Animal 0.379 0.361 0.372 ✓ +2026-07-13 08:30:48,743 | INFO | Bird 0.034 0.321 0.135 ✓ +2026-07-13 08:30:48,743 | INFO | Sheep 0.079 0.000 0.051 ✗ +2026-07-13 08:30:48,743 | INFO | Goat 0.064 0.000 0.042 ✗ +2026-07-13 08:30:48,743 | INFO | → WINNER: Animal (combined=0.372) +2026-07-13 08:30:48,768 | INFO | +[1103.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,768 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,768 | INFO | Animal 0.171 0.361 0.238 ✓ +2026-07-13 08:30:48,768 | INFO | Vehicle 0.066 0.000 0.043 ✗ +2026-07-13 08:30:48,768 | INFO | → WINNER: Animal (combined=0.238) +2026-07-13 08:30:48,793 | INFO | +[1103.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,799 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,801 | INFO | Animal 0.092 0.361 0.186 ✓ +2026-07-13 08:30:48,801 | INFO | Vehicle 0.113 0.000 0.073 ✗ +2026-07-13 08:30:48,801 | INFO | Music 0.063 0.000 0.041 ✗ +2026-07-13 08:30:48,801 | INFO | Fire 0.042 0.000 0.027 ✗ +2026-07-13 08:30:48,801 | INFO | → WINNER: Animal (combined=0.186) +2026-07-13 08:30:48,827 | INFO | +[1103.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,827 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,827 | INFO | Animal 0.095 0.361 0.188 ✓ +2026-07-13 08:30:48,827 | INFO | Vehicle 0.089 0.000 0.058 ✗ +2026-07-13 08:30:48,827 | INFO | Fire 0.033 0.000 0.022 ✗ +2026-07-13 08:30:48,827 | INFO | → WINNER: Animal (combined=0.188) +2026-07-13 08:30:48,850 | INFO | +[1103.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,850 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,850 | INFO | Animal 0.147 0.361 0.222 ✓ +2026-07-13 08:30:48,850 | INFO | Bird 0.047 0.321 0.143 ✓ +2026-07-13 08:30:48,850 | INFO | Rodents, rats, mice 0.087 0.000 0.057 ✗ +2026-07-13 08:30:48,858 | INFO | → WINNER: Animal (combined=0.222) +2026-07-13 08:30:48,883 | INFO | +[1103.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,883 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,883 | INFO | Animal 0.174 0.361 0.240 ✓ +2026-07-13 08:30:48,883 | INFO | Bird 0.119 0.321 0.190 ✓ +2026-07-13 08:30:48,883 | INFO | Bird vocalization, bird call, bird song 0.038 0.336 0.142 ✓ +2026-07-13 08:30:48,883 | INFO | Rodents, rats, mice 0.121 0.000 0.079 ✗ +2026-07-13 08:30:48,883 | INFO | Patter 0.085 0.000 0.055 ✗ +2026-07-13 08:30:48,883 | INFO | Mouse 0.061 0.000 0.040 ✗ +2026-07-13 08:30:48,883 | INFO | → WINNER: Animal (combined=0.240) +2026-07-13 08:30:48,908 | INFO | +[1104.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,908 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,915 | INFO | Rodents, rats, mice 0.509 0.000 0.331 ✓ +2026-07-13 08:30:48,915 | INFO | Patter 0.259 0.000 0.169 ✓ +2026-07-13 08:30:48,915 | INFO | Bird vocalization, bird call, bird song 0.028 0.309 0.127 ✓ +2026-07-13 08:30:48,915 | INFO | Animal 0.136 0.000 0.088 ✗ +2026-07-13 08:30:48,915 | INFO | Music 0.110 0.000 0.071 ✗ +2026-07-13 08:30:48,915 | INFO | Mouse 0.075 0.000 0.049 ✗ +2026-07-13 08:30:48,915 | INFO | → WINNER: Rodents, rats, mice (combined=0.331) +2026-07-13 08:30:48,940 | INFO | +[1104.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,940 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,940 | INFO | Bird vocalization, bird call, bird song 0.029 0.309 0.127 ✓ +2026-07-13 08:30:48,940 | INFO | Rodents, rats, mice 0.131 0.000 0.085 ✗ +2026-07-13 08:30:48,940 | INFO | Animal 0.122 0.000 0.079 ✗ +2026-07-13 08:30:48,940 | INFO | Music 0.083 0.000 0.054 ✗ +2026-07-13 08:30:48,940 | INFO | Bird 0.077 0.000 0.050 ✗ +2026-07-13 08:30:48,940 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.127) +2026-07-13 08:30:48,972 | INFO | +[1104.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,972 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,972 | INFO | Bird vocalization, bird call, bird song 0.034 0.309 0.130 ✓ +2026-07-13 08:30:48,972 | INFO | Animal 0.175 0.000 0.114 ✗ +2026-07-13 08:30:48,972 | INFO | Bird 0.142 0.000 0.092 ✗ +2026-07-13 08:30:48,972 | INFO | Music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:48,972 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.130) +2026-07-13 08:30:48,997 | INFO | +[1104.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:48,997 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:48,997 | INFO | Music 0.092 0.000 0.060 ✗ +2026-07-13 08:30:48,997 | INFO | Radio 0.076 0.000 0.049 ✗ +2026-07-13 08:30:48,997 | INFO | Vehicle 0.059 0.000 0.038 ✗ +2026-07-13 08:30:48,997 | INFO | → no winner +2026-07-13 08:30:49,030 | INFO | +[1104.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,030 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,030 | INFO | Telephone 0.145 0.000 0.095 ✗ +2026-07-13 08:30:49,030 | INFO | Telephone dialing, DTMF 0.102 0.000 0.067 ✗ +2026-07-13 08:30:49,030 | INFO | Radio 0.067 0.000 0.043 ✗ +2026-07-13 08:30:49,030 | INFO | Music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:49,030 | INFO | → no winner +2026-07-13 08:30:49,055 | INFO | +[1105.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,055 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,055 | INFO | Animal 0.110 0.000 0.071 ✗ +2026-07-13 08:30:49,062 | INFO | Vehicle 0.072 0.000 0.047 ✗ +2026-07-13 08:30:49,062 | INFO | Outside, rural or natural 0.058 0.000 0.037 ✗ +2026-07-13 08:30:49,062 | INFO | → no winner +2026-07-13 08:30:49,087 | INFO | +[1105.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,087 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,087 | INFO | Animal 0.167 0.000 0.108 ✗ +2026-07-13 08:30:49,087 | INFO | Bird 0.070 0.000 0.045 ✗ +2026-07-13 08:30:49,087 | INFO | Outside, rural or natural 0.063 0.000 0.041 ✗ +2026-07-13 08:30:49,087 | INFO | → no winner +2026-07-13 08:30:49,115 | INFO | +[1105.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,115 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,115 | INFO | Animal 0.133 0.000 0.087 ✗ +2026-07-13 08:30:49,115 | INFO | Vehicle 0.076 0.000 0.050 ✗ +2026-07-13 08:30:49,115 | INFO | Outside, rural or natural 0.052 0.000 0.034 ✗ +2026-07-13 08:30:49,115 | INFO | → no winner +2026-07-13 08:30:49,144 | INFO | +[1105.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,144 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,144 | INFO | Animal 0.142 0.000 0.092 ✗ +2026-07-13 08:30:49,147 | INFO | Vehicle 0.093 0.000 0.061 ✗ +2026-07-13 08:30:49,148 | INFO | Outside, rural or natural 0.064 0.000 0.042 ✗ +2026-07-13 08:30:49,148 | INFO | Bee, wasp, etc. 0.055 0.000 0.035 ✗ +2026-07-13 08:30:49,148 | INFO | → no winner +2026-07-13 08:30:49,169 | INFO | +[1105.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,169 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,169 | INFO | Insect 0.095 0.312 0.171 ✓ +2026-07-13 08:30:49,169 | INFO | Animal 0.151 0.000 0.098 ✗ +2026-07-13 08:30:49,169 | INFO | Bee, wasp, etc. 0.071 0.000 0.046 ✗ +2026-07-13 08:30:49,169 | INFO | Vehicle 0.071 0.000 0.046 ✗ +2026-07-13 08:30:49,169 | INFO | Outside, rural or natural 0.063 0.000 0.041 ✗ +2026-07-13 08:30:49,169 | INFO | Bird 0.036 0.000 0.023 ✗ +2026-07-13 08:30:49,177 | INFO | → WINNER: Insect (combined=0.171) +2026-07-13 08:30:49,203 | INFO | +[1106.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,203 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,203 | INFO | Rustling leaves 0.045 0.337 0.147 ✓ +2026-07-13 08:30:49,203 | INFO | Wind 0.038 0.341 0.144 ✓ +2026-07-13 08:30:49,203 | INFO | Animal 0.140 0.000 0.091 ✗ +2026-07-13 08:30:49,203 | INFO | Outside, rural or natural 0.090 0.000 0.059 ✗ +2026-07-13 08:30:49,203 | INFO | Vehicle 0.080 0.000 0.052 ✗ +2026-07-13 08:30:49,203 | INFO | Bird 0.038 0.000 0.025 ✗ +2026-07-13 08:30:49,203 | INFO | → WINNER: Rustling leaves (combined=0.147) +2026-07-13 08:30:49,234 | INFO | +[1106.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,235 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,235 | INFO | Animal 0.100 0.000 0.065 ✗ +2026-07-13 08:30:49,235 | INFO | Outside, rural or natural 0.056 0.000 0.037 ✗ +2026-07-13 08:30:49,235 | INFO | → no winner +2026-07-13 08:30:49,259 | INFO | +[1106.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,259 | INFO | → no winner +2026-07-13 08:30:49,285 | INFO | +[1106.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,285 | INFO | → no winner +2026-07-13 08:30:49,309 | INFO | +[1106.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,309 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,309 | INFO | Music 0.097 0.000 0.063 ✗ +2026-07-13 08:30:49,317 | INFO | → no winner +2026-07-13 08:30:49,343 | INFO | +[1107.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,343 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,343 | INFO | Rain 0.040 0.319 0.138 ✓ +2026-07-13 08:30:49,343 | INFO | Rain on surface 0.048 0.301 0.137 ✓ +2026-07-13 08:30:49,343 | INFO | Animal 0.092 0.000 0.060 ✗ +2026-07-13 08:30:49,343 | INFO | Music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:49,343 | INFO | Fire 0.059 0.000 0.038 ✗ +2026-07-13 08:30:49,343 | INFO | → WINNER: Rain (combined=0.138) +2026-07-13 08:30:49,367 | INFO | +[1107.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,367 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,374 | INFO | Rain on surface 0.059 0.301 0.144 ✓ +2026-07-13 08:30:49,374 | INFO | Rain 0.044 0.319 0.140 ✓ +2026-07-13 08:30:49,375 | INFO | Music 0.158 0.000 0.103 ✗ +2026-07-13 08:30:49,376 | INFO | Run 0.079 0.000 0.051 ✗ +2026-07-13 08:30:49,376 | INFO | Vehicle 0.055 0.000 0.036 ✗ +2026-07-13 08:30:49,376 | INFO | Fire 0.055 0.000 0.036 ✗ +2026-07-13 08:30:49,376 | INFO | → WINNER: Rain on surface (combined=0.144) +2026-07-13 08:30:49,398 | INFO | +[1107.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,398 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,398 | INFO | Animal 0.271 0.000 0.176 ✓ +2026-07-13 08:30:49,398 | INFO | Clip-clop 0.134 0.000 0.087 ✗ +2026-07-13 08:30:49,398 | INFO | Horse 0.088 0.000 0.058 ✗ +2026-07-13 08:30:49,398 | INFO | Vehicle 0.062 0.000 0.040 ✗ +2026-07-13 08:30:49,398 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:49,398 | INFO | Bird 0.058 0.000 0.038 ✗ +2026-07-13 08:30:49,398 | INFO | → WINNER: Animal (combined=0.176) +2026-07-13 08:30:49,432 | INFO | +[1107.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,432 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,432 | INFO | Animal 0.170 0.000 0.110 ✗ +2026-07-13 08:30:49,432 | INFO | Vehicle 0.138 0.000 0.090 ✗ +2026-07-13 08:30:49,432 | INFO | Clip-clop 0.056 0.000 0.036 ✗ +2026-07-13 08:30:49,432 | INFO | Bird 0.054 0.000 0.035 ✗ +2026-07-13 08:30:49,432 | INFO | → no winner +2026-07-13 08:30:49,459 | INFO | +[1107.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,459 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,459 | INFO | Vehicle 0.170 0.000 0.110 ✗ +2026-07-13 08:30:49,459 | INFO | Animal 0.167 0.000 0.109 ✗ +2026-07-13 08:30:49,459 | INFO | Bird 0.086 0.000 0.056 ✗ +2026-07-13 08:30:49,459 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:30:49,459 | INFO | → no winner +2026-07-13 08:30:49,482 | INFO | +[1108.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,489 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,489 | INFO | Animal 0.161 0.000 0.105 ✗ +2026-07-13 08:30:49,489 | INFO | Vehicle 0.129 0.000 0.084 ✗ +2026-07-13 08:30:49,489 | INFO | Outside, rural or natural 0.081 0.000 0.053 ✗ +2026-07-13 08:30:49,489 | INFO | Clip-clop 0.060 0.000 0.039 ✗ +2026-07-13 08:30:49,489 | INFO | → no winner +2026-07-13 08:30:49,514 | INFO | +[1108.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,514 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,514 | INFO | Vehicle 0.201 0.000 0.130 ✓ +2026-07-13 08:30:49,514 | INFO | Animal 0.126 0.000 0.082 ✗ +2026-07-13 08:30:49,514 | INFO | Clip-clop 0.091 0.000 0.059 ✗ +2026-07-13 08:30:49,514 | INFO | Outside, rural or natural 0.066 0.000 0.043 ✗ +2026-07-13 08:30:49,514 | INFO | Outside, urban or manmade 0.059 0.000 0.039 ✗ +2026-07-13 08:30:49,514 | INFO | Boat, Water vehicle 0.046 0.000 0.030 ✗ +2026-07-13 08:30:49,514 | INFO | → WINNER: Vehicle (combined=0.130) +2026-07-13 08:30:49,545 | INFO | +[1108.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,545 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,547 | INFO | Animal 0.160 0.000 0.104 ✗ +2026-07-13 08:30:49,547 | INFO | Vehicle 0.108 0.000 0.070 ✗ +2026-07-13 08:30:49,547 | INFO | Outside, rural or natural 0.076 0.000 0.049 ✗ +2026-07-13 08:30:49,547 | INFO | Clip-clop 0.071 0.000 0.046 ✗ +2026-07-13 08:30:49,547 | INFO | → no winner +2026-07-13 08:30:49,572 | INFO | +[1108.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,572 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,572 | INFO | Animal 0.125 0.000 0.081 ✗ +2026-07-13 08:30:49,572 | INFO | Vehicle 0.092 0.000 0.060 ✗ +2026-07-13 08:30:49,572 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:30:49,572 | INFO | → no winner +2026-07-13 08:30:49,596 | INFO | +[1108.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,596 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,605 | INFO | Animal 0.442 0.000 0.287 ✓ +2026-07-13 08:30:49,606 | INFO | Sheep 0.164 0.000 0.106 ✗ +2026-07-13 08:30:49,606 | INFO | Bleat 0.149 0.000 0.097 ✗ +2026-07-13 08:30:49,606 | INFO | Goat 0.094 0.000 0.061 ✗ +2026-07-13 08:30:49,606 | INFO | Bird 0.070 0.000 0.045 ✗ +2026-07-13 08:30:49,606 | INFO | Outside, rural or natural 0.057 0.000 0.037 ✗ +2026-07-13 08:30:49,606 | INFO | → WINNER: Animal (combined=0.287) +2026-07-13 08:30:49,634 | INFO | +[1109.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,634 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,634 | INFO | Animal 0.172 0.000 0.112 ✗ +2026-07-13 08:30:49,634 | INFO | Bird 0.110 0.000 0.072 ✗ +2026-07-13 08:30:49,634 | INFO | Mouse 0.061 0.000 0.040 ✗ +2026-07-13 08:30:49,634 | INFO | → no winner +2026-07-13 08:30:49,663 | INFO | +[1109.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,663 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,663 | INFO | Animal 0.246 0.000 0.160 ✓ +2026-07-13 08:30:49,663 | INFO | Clip-clop 0.068 0.000 0.044 ✗ +2026-07-13 08:30:49,663 | INFO | → WINNER: Animal (combined=0.160) +2026-07-13 08:30:49,692 | INFO | +[1109.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,692 | INFO | → no winner +2026-07-13 08:30:49,713 | INFO | +[1109.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,713 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,713 | INFO | Bird vocalization, bird call, bird song 0.034 0.309 0.130 ✓ +2026-07-13 08:30:49,721 | INFO | Animal 0.178 0.000 0.115 ✗ +2026-07-13 08:30:49,721 | INFO | Music 0.135 0.000 0.087 ✗ +2026-07-13 08:30:49,721 | INFO | Bird 0.118 0.000 0.077 ✗ +2026-07-13 08:30:49,721 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.130) +2026-07-13 08:30:49,746 | INFO | +[1109.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:49,746 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,746 | INFO | Animal 0.287 0.000 0.187 ✓ +2026-07-13 08:30:49,746 | INFO | Bird 0.098 0.000 0.063 ✗ +2026-07-13 08:30:49,746 | INFO | Outside, rural or natural 0.093 0.000 0.061 ✗ +2026-07-13 08:30:49,746 | INFO | → WINNER: Animal (combined=0.187) +2026-07-13 08:30:49,770 | INFO | +[1110.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,770 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,770 | INFO | Animal 0.172 0.000 0.112 ✗ +2026-07-13 08:30:49,778 | INFO | Bird 0.116 0.000 0.075 ✗ +2026-07-13 08:30:49,778 | INFO | → no winner +2026-07-13 08:30:49,804 | INFO | +[1110.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,804 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,804 | INFO | Animal 0.120 0.000 0.078 ✗ +2026-07-13 08:30:49,804 | INFO | → no winner +2026-07-13 08:30:49,833 | INFO | +[1110.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,833 | INFO | Animal 0.110 0.000 0.071 ✗ +2026-07-13 08:30:49,833 | INFO | Frog 0.070 0.000 0.045 ✗ +2026-07-13 08:30:49,833 | INFO | → no winner +2026-07-13 08:30:49,861 | INFO | +[1110.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,861 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,861 | INFO | Music 0.060 0.000 0.039 ✗ +2026-07-13 08:30:49,861 | INFO | Inside, small room 0.055 0.000 0.036 ✗ +2026-07-13 08:30:49,861 | INFO | → no winner +2026-07-13 08:30:49,889 | INFO | +[1110.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,889 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,889 | INFO | Music 0.071 0.000 0.046 ✗ +2026-07-13 08:30:49,889 | INFO | → no winner +2026-07-13 08:30:49,914 | INFO | +[1111.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,914 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,918 | INFO | Animal 0.093 0.000 0.060 ✗ +2026-07-13 08:30:49,918 | INFO | Whistle 0.066 0.000 0.043 ✗ +2026-07-13 08:30:49,919 | INFO | Music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:49,919 | INFO | → no winner +2026-07-13 08:30:49,942 | INFO | +[1111.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,942 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,942 | INFO | Whistle 0.104 0.000 0.068 ✗ +2026-07-13 08:30:49,942 | INFO | Whistling 0.072 0.000 0.047 ✗ +2026-07-13 08:30:49,942 | INFO | Music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:49,942 | INFO | → no winner +2026-07-13 08:30:49,969 | INFO | +[1111.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:49,975 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:49,976 | INFO | Whistle 0.117 0.000 0.076 ✗ +2026-07-13 08:30:49,976 | INFO | Whistling 0.080 0.000 0.052 ✗ +2026-07-13 08:30:49,976 | INFO | → no winner +2026-07-13 08:30:50,001 | INFO | +[1111.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,001 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,001 | INFO | Animal 0.123 0.000 0.080 ✗ +2026-07-13 08:30:50,001 | INFO | → no winner +2026-07-13 08:30:50,026 | INFO | +[1111.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,026 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,026 | INFO | Animal 0.110 0.000 0.071 ✗ +2026-07-13 08:30:50,033 | INFO | Music 0.082 0.000 0.053 ✗ +2026-07-13 08:30:50,034 | INFO | Bird 0.047 0.000 0.031 ✗ +2026-07-13 08:30:50,034 | INFO | → no winner +2026-07-13 08:30:50,058 | INFO | +[1112.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,058 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,058 | INFO | Whistling 0.214 0.000 0.139 ✓ +2026-07-13 08:30:50,058 | INFO | Whistle 0.150 0.000 0.097 ✗ +2026-07-13 08:30:50,058 | INFO | Music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:50,058 | INFO | Bird 0.041 0.000 0.027 ✗ +2026-07-13 08:30:50,058 | INFO | → WINNER: Whistling (combined=0.139) +2026-07-13 08:30:50,084 | INFO | +[1112.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,084 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,084 | INFO | Animal 0.099 0.000 0.065 ✗ +2026-07-13 08:30:50,084 | INFO | Music 0.079 0.000 0.051 ✗ +2026-07-13 08:30:50,084 | INFO | Whistling 0.078 0.000 0.050 ✗ +2026-07-13 08:30:50,084 | INFO | Bird 0.056 0.000 0.036 ✗ +2026-07-13 08:30:50,084 | INFO | → no winner +2026-07-13 08:30:50,116 | INFO | +[1112.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,117 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,117 | INFO | Animal 0.191 0.000 0.124 ✓ +2026-07-13 08:30:50,117 | INFO | Bird 0.053 0.000 0.034 ✗ +2026-07-13 08:30:50,117 | INFO | → WINNER: Animal (combined=0.124) +2026-07-13 08:30:50,141 | INFO | +[1112.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,141 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,141 | INFO | Animal 0.174 0.000 0.113 ✗ +2026-07-13 08:30:50,141 | INFO | Vehicle 0.086 0.000 0.056 ✗ +2026-07-13 08:30:50,141 | INFO | Outside, rural or natural 0.066 0.000 0.043 ✗ +2026-07-13 08:30:50,141 | INFO | Fire 0.050 0.000 0.033 ✗ +2026-07-13 08:30:50,141 | INFO | → no winner +2026-07-13 08:30:50,167 | INFO | +[1112.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,167 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,167 | INFO | Animal 0.147 0.000 0.096 ✗ +2026-07-13 08:30:50,167 | INFO | Vehicle 0.102 0.000 0.066 ✗ +2026-07-13 08:30:50,167 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:50,167 | INFO | Fire 0.046 0.000 0.030 ✗ +2026-07-13 08:30:50,167 | INFO | → no winner +2026-07-13 08:30:50,198 | INFO | +[1113.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,201 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,201 | INFO | Animal 0.188 0.000 0.122 ✓ +2026-07-13 08:30:50,201 | INFO | Vehicle 0.110 0.000 0.071 ✗ +2026-07-13 08:30:50,201 | INFO | Clip-clop 0.091 0.000 0.059 ✗ +2026-07-13 08:30:50,201 | INFO | Outside, rural or natural 0.070 0.000 0.046 ✗ +2026-07-13 08:30:50,201 | INFO | Outside, urban or manmade 0.064 0.000 0.041 ✗ +2026-07-13 08:30:50,201 | INFO | Horse 0.058 0.000 0.038 ✗ +2026-07-13 08:30:50,201 | INFO | → WINNER: Animal (combined=0.122) +2026-07-13 08:30:50,223 | INFO | +[1113.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,223 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,223 | INFO | Vehicle 0.143 0.000 0.093 ✗ +2026-07-13 08:30:50,231 | INFO | Animal 0.132 0.000 0.086 ✗ +2026-07-13 08:30:50,231 | INFO | Clip-clop 0.079 0.000 0.052 ✗ +2026-07-13 08:30:50,231 | INFO | Horse 0.052 0.000 0.034 ✗ +2026-07-13 08:30:50,231 | INFO | Fire 0.051 0.000 0.033 ✗ +2026-07-13 08:30:50,231 | INFO | Boat, Water vehicle 0.038 0.000 0.025 ✗ +2026-07-13 08:30:50,231 | INFO | → no winner +2026-07-13 08:30:50,256 | INFO | +[1113.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,256 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,256 | INFO | Vehicle 0.163 0.000 0.106 ✗ +2026-07-13 08:30:50,256 | INFO | Animal 0.121 0.000 0.079 ✗ +2026-07-13 08:30:50,256 | INFO | Clip-clop 0.062 0.000 0.040 ✗ +2026-07-13 08:30:50,256 | INFO | Outside, urban or manmade 0.059 0.000 0.038 ✗ +2026-07-13 08:30:50,256 | INFO | Outside, rural or natural 0.053 0.000 0.034 ✗ +2026-07-13 08:30:50,256 | INFO | Fire 0.047 0.000 0.030 ✗ +2026-07-13 08:30:50,256 | INFO | → no winner +2026-07-13 08:30:50,280 | INFO | +[1113.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,280 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,280 | INFO | Vehicle 0.152 0.000 0.099 ✗ +2026-07-13 08:30:50,288 | INFO | Fire 0.036 0.000 0.023 ✗ +2026-07-13 08:30:50,288 | INFO | → no winner +2026-07-13 08:30:50,313 | INFO | +[1113.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,313 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,313 | INFO | Vehicle 0.112 0.000 0.073 ✗ +2026-07-13 08:30:50,313 | INFO | Radio 0.085 0.000 0.055 ✗ +2026-07-13 08:30:50,313 | INFO | Telephone 0.075 0.000 0.049 ✗ +2026-07-13 08:30:50,313 | INFO | Fire 0.037 0.000 0.024 ✗ +2026-07-13 08:30:50,313 | INFO | → no winner +2026-07-13 08:30:50,339 | INFO | +[1114.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,339 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,339 | INFO | Vehicle 0.136 0.000 0.088 ✗ +2026-07-13 08:30:50,346 | INFO | Telephone 0.079 0.000 0.051 ✗ +2026-07-13 08:30:50,346 | INFO | Radio 0.061 0.000 0.040 ✗ +2026-07-13 08:30:50,346 | INFO | Fire 0.033 0.000 0.022 ✗ +2026-07-13 08:30:50,346 | INFO | → no winner +2026-07-13 08:30:50,370 | INFO | +[1114.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,370 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,370 | INFO | Animal 0.275 0.000 0.178 ✓ +2026-07-13 08:30:50,370 | INFO | Frog 0.211 0.000 0.137 ✓ +2026-07-13 08:30:50,370 | INFO | Vehicle 0.058 0.000 0.038 ✗ +2026-07-13 08:30:50,370 | INFO | Radio 0.058 0.000 0.037 ✗ +2026-07-13 08:30:50,370 | INFO | Sheep 0.054 0.000 0.035 ✗ +2026-07-13 08:30:50,370 | INFO | Bird 0.054 0.000 0.035 ✗ +2026-07-13 08:30:50,370 | INFO | → WINNER: Animal (combined=0.178) +2026-07-13 08:30:50,395 | INFO | +[1114.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,395 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,395 | INFO | Animal 0.257 0.000 0.167 ✓ +2026-07-13 08:30:50,395 | INFO | Vehicle 0.083 0.000 0.054 ✗ +2026-07-13 08:30:50,395 | INFO | Snake 0.074 0.000 0.048 ✗ +2026-07-13 08:30:50,403 | INFO | Frog 0.069 0.000 0.045 ✗ +2026-07-13 08:30:50,403 | INFO | Outside, rural or natural 0.063 0.000 0.041 ✗ +2026-07-13 08:30:50,403 | INFO | Bird 0.040 0.000 0.026 ✗ +2026-07-13 08:30:50,403 | INFO | → WINNER: Animal (combined=0.167) +2026-07-13 08:30:50,429 | INFO | +[1114.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,429 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,429 | INFO | Animal 0.351 0.000 0.228 ✓ +2026-07-13 08:30:50,429 | INFO | Duck 0.130 0.000 0.084 ✗ +2026-07-13 08:30:50,429 | INFO | Snake 0.084 0.000 0.054 ✗ +2026-07-13 08:30:50,429 | INFO | Bird 0.076 0.000 0.049 ✗ +2026-07-13 08:30:50,429 | INFO | Frog 0.067 0.000 0.044 ✗ +2026-07-13 08:30:50,429 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:30:50,429 | INFO | → WINNER: Animal (combined=0.228) +2026-07-13 08:30:50,455 | INFO | +[1114.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,455 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,455 | INFO | Animal 0.150 0.000 0.098 ✗ +2026-07-13 08:30:50,455 | INFO | Radio 0.118 0.000 0.077 ✗ +2026-07-13 08:30:50,455 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:50,461 | INFO | Fire 0.045 0.000 0.029 ✗ +2026-07-13 08:30:50,461 | INFO | → no winner +2026-07-13 08:30:50,486 | INFO | +[1115.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,486 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,486 | INFO | Radio 0.238 0.000 0.154 ✓ +2026-07-13 08:30:50,486 | INFO | Vehicle 0.096 0.000 0.062 ✗ +2026-07-13 08:30:50,486 | INFO | Telephone 0.060 0.000 0.039 ✗ +2026-07-13 08:30:50,486 | INFO | Fire 0.032 0.000 0.021 ✗ +2026-07-13 08:30:50,486 | INFO | → WINNER: Radio (combined=0.154) +2026-07-13 08:30:50,509 | INFO | +[1115.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,509 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,509 | INFO | Radio 0.163 0.000 0.106 ✗ +2026-07-13 08:30:50,509 | INFO | Vehicle 0.088 0.000 0.058 ✗ +2026-07-13 08:30:50,509 | INFO | Telephone 0.056 0.000 0.036 ✗ +2026-07-13 08:30:50,517 | INFO | Fire 0.034 0.000 0.022 ✗ +2026-07-13 08:30:50,517 | INFO | → no winner +2026-07-13 08:30:50,542 | INFO | +[1115.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,542 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,542 | INFO | Radio 0.164 0.000 0.106 ✗ +2026-07-13 08:30:50,546 | INFO | Vehicle 0.079 0.000 0.051 ✗ +2026-07-13 08:30:50,546 | INFO | → no winner +2026-07-13 08:30:50,567 | INFO | +[1115.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,567 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,567 | INFO | Animal 0.200 0.000 0.130 ✓ +2026-07-13 08:30:50,567 | INFO | Radio 0.074 0.000 0.048 ✗ +2026-07-13 08:30:50,575 | INFO | Outside, rural or natural 0.067 0.000 0.043 ✗ +2026-07-13 08:30:50,575 | INFO | Vehicle 0.065 0.000 0.043 ✗ +2026-07-13 08:30:50,575 | INFO | Bird 0.041 0.000 0.027 ✗ +2026-07-13 08:30:50,575 | INFO | → WINNER: Animal (combined=0.130) +2026-07-13 08:30:50,602 | INFO | +[1115.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-07-13 08:30:50,602 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,602 | INFO | Bird 0.092 0.000 0.060 ✗ +2026-07-13 08:30:50,602 | INFO | Vehicle 0.090 0.000 0.059 ✗ +2026-07-13 08:30:50,602 | INFO | Arrow 0.069 0.000 0.045 ✗ +2026-07-13 08:30:50,602 | INFO | Pigeon, dove 0.059 0.000 0.038 ✗ +2026-07-13 08:30:50,602 | INFO | Printer 0.057 0.000 0.037 ✗ +2026-07-13 08:30:50,602 | INFO | Door 0.053 0.000 0.035 ✗ +2026-07-13 08:30:50,602 | INFO | → no winner +2026-07-13 08:30:50,624 | INFO | +[1116.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,624 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,632 | INFO | Bird 0.078 0.332 0.167 ✓ +2026-07-13 08:30:50,633 | INFO | Printer 0.085 0.000 0.055 ✗ +2026-07-13 08:30:50,633 | INFO | Pigeon, dove 0.054 0.000 0.035 ✗ +2026-07-13 08:30:50,633 | INFO | → WINNER: Bird (combined=0.167) +2026-07-13 08:30:50,661 | INFO | +[1116.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,661 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,664 | INFO | Bird 0.162 0.332 0.221 ✓ +2026-07-13 08:30:50,664 | INFO | Printer 0.287 0.000 0.187 ✓ +2026-07-13 08:30:50,664 | INFO | Bird vocalization, bird call, bird song 0.040 0.330 0.141 ✓ +2026-07-13 08:30:50,664 | INFO | Pigeon, dove 0.159 0.000 0.103 ✗ +2026-07-13 08:30:50,664 | INFO | Coo 0.074 0.000 0.048 ✗ +2026-07-13 08:30:50,664 | INFO | Vehicle 0.056 0.000 0.036 ✗ +2026-07-13 08:30:50,664 | INFO | → WINNER: Bird (combined=0.221) +2026-07-13 08:30:50,692 | INFO | +[1116.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,692 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,697 | INFO | Bird 0.039 0.332 0.141 ✓ +2026-07-13 08:30:50,697 | INFO | Mechanisms 0.187 0.000 0.122 ✓ +2026-07-13 08:30:50,697 | INFO | Printer 0.119 0.000 0.078 ✗ +2026-07-13 08:30:50,697 | INFO | Vehicle 0.073 0.000 0.047 ✗ +2026-07-13 08:30:50,697 | INFO | Ratchet, pawl 0.059 0.000 0.038 ✗ +2026-07-13 08:30:50,697 | INFO | → WINNER: Bird (combined=0.141) +2026-07-13 08:30:50,722 | INFO | +[1116.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,722 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,722 | INFO | Bird 0.048 0.332 0.147 ✓ +2026-07-13 08:30:50,722 | INFO | Mechanisms 0.181 0.000 0.118 ✗ +2026-07-13 08:30:50,722 | INFO | Ratchet, pawl 0.092 0.000 0.060 ✗ +2026-07-13 08:30:50,722 | INFO | Vehicle 0.060 0.000 0.039 ✗ +2026-07-13 08:30:50,722 | INFO | Printer 0.059 0.000 0.038 ✗ +2026-07-13 08:30:50,722 | INFO | → WINNER: Bird (combined=0.147) +2026-07-13 08:30:50,753 | INFO | +[1116.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,753 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,753 | INFO | Animal 0.220 0.320 0.255 ✓ +2026-07-13 08:30:50,753 | INFO | Outside, rural or natural 0.059 0.308 0.146 ✓ +2026-07-13 08:30:50,753 | INFO | Bird 0.033 0.332 0.138 ✓ +2026-07-13 08:30:50,753 | INFO | Vehicle 0.057 0.000 0.037 ✗ +2026-07-13 08:30:50,753 | INFO | Fire 0.034 0.000 0.022 ✗ +2026-07-13 08:30:50,753 | INFO | → WINNER: Animal (combined=0.255) +2026-07-13 08:30:50,779 | INFO | +[1117.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,779 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,779 | INFO | Animal 0.154 0.320 0.212 ✓ +2026-07-13 08:30:50,779 | INFO | Radio 0.061 0.000 0.040 ✗ +2026-07-13 08:30:50,779 | INFO | → WINNER: Animal (combined=0.212) +2026-07-13 08:30:50,803 | INFO | +[1117.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,803 | INFO | → no winner +2026-07-13 08:30:50,837 | INFO | +[1117.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,837 | INFO | → no winner +2026-07-13 08:30:50,862 | INFO | +[1117.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,862 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,862 | INFO | Animal 0.115 0.320 0.186 ✓ +2026-07-13 08:30:50,862 | INFO | → WINNER: Animal (combined=0.186) +2026-07-13 08:30:50,892 | INFO | +[1117.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,892 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,892 | INFO | Animal 0.123 0.320 0.192 ✓ +2026-07-13 08:30:50,892 | INFO | Bird 0.041 0.332 0.143 ✓ +2026-07-13 08:30:50,892 | INFO | → WINNER: Animal (combined=0.192) +2026-07-13 08:30:50,919 | INFO | +[1118.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,919 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,919 | INFO | Animal 0.171 0.320 0.223 ✓ +2026-07-13 08:30:50,919 | INFO | Bird 0.123 0.332 0.196 ✓ +2026-07-13 08:30:50,919 | INFO | Bird vocalization, bird call, bird song 0.031 0.330 0.135 ✓ +2026-07-13 08:30:50,919 | INFO | Duck 0.106 0.000 0.069 ✗ +2026-07-13 08:30:50,919 | INFO | → WINNER: Animal (combined=0.223) +2026-07-13 08:30:50,945 | INFO | +[1118.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,945 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,945 | INFO | Animal 0.218 0.320 0.254 ✓ +2026-07-13 08:30:50,945 | INFO | Bird 0.101 0.332 0.181 ✓ +2026-07-13 08:30:50,952 | INFO | Vehicle 0.065 0.000 0.042 ✗ +2026-07-13 08:30:50,952 | INFO | → WINNER: Animal (combined=0.254) +2026-07-13 08:30:50,978 | INFO | +[1118.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:50,978 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:50,978 | INFO | Animal 0.354 0.320 0.342 ✓ +2026-07-13 08:30:50,978 | INFO | Outside, rural or natural 0.060 0.308 0.147 ✓ +2026-07-13 08:30:50,978 | INFO | Bird 0.047 0.332 0.147 ✓ +2026-07-13 08:30:50,978 | INFO | Clip-clop 0.100 0.000 0.065 ✗ +2026-07-13 08:30:50,978 | INFO | Vehicle 0.094 0.000 0.061 ✗ +2026-07-13 08:30:50,978 | INFO | Horse 0.086 0.000 0.056 ✗ +2026-07-13 08:30:50,978 | INFO | → WINNER: Animal (combined=0.342) +2026-07-13 08:30:51,003 | INFO | +[1118.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:51,003 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,003 | INFO | Animal 0.168 0.320 0.221 ✓ +2026-07-13 08:30:51,003 | INFO | Wind 0.063 0.329 0.156 ✓ +2026-07-13 08:30:51,003 | INFO | Vehicle 0.222 0.000 0.144 ✓ +2026-07-13 08:30:51,003 | INFO | Outside, rural or natural 0.055 0.308 0.143 ✓ +2026-07-13 08:30:51,003 | INFO | Boat, Water vehicle 0.129 0.000 0.084 ✗ +2026-07-13 08:30:51,003 | INFO | Clip-clop 0.098 0.000 0.063 ✗ +2026-07-13 08:30:51,003 | INFO | → WINNER: Animal (combined=0.221) +2026-07-13 08:30:51,036 | INFO | +[1118.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:51,037 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,037 | INFO | Boat, Water vehicle 0.313 0.000 0.203 ✓ +2026-07-13 08:30:51,037 | INFO | Wind 0.128 0.329 0.199 ✓ +2026-07-13 08:30:51,037 | INFO | Vehicle 0.305 0.000 0.198 ✓ +2026-07-13 08:30:51,037 | INFO | Animal 0.098 0.320 0.176 ✓ +2026-07-13 08:30:51,037 | INFO | Rowboat, canoe, kayak 0.163 0.000 0.106 ✗ +2026-07-13 08:30:51,037 | INFO | Wind noise (microphone) 0.115 0.000 0.075 ✗ +2026-07-13 08:30:51,037 | INFO | → WINNER: Boat, Water vehicle (combined=0.203) +2026-07-13 08:30:51,061 | INFO | +[1119.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:51,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,061 | INFO | Animal 0.147 0.320 0.207 ✓ +2026-07-13 08:30:51,061 | INFO | Wind 0.045 0.329 0.145 ✓ +2026-07-13 08:30:51,061 | INFO | Bird 0.033 0.332 0.137 ✓ +2026-07-13 08:30:51,061 | INFO | Vehicle 0.198 0.000 0.128 ✓ +2026-07-13 08:30:51,061 | INFO | Boat, Water vehicle 0.108 0.000 0.070 ✗ +2026-07-13 08:30:51,061 | INFO | Clip-clop 0.070 0.000 0.045 ✗ +2026-07-13 08:30:51,061 | INFO | → WINNER: Animal (combined=0.207) +2026-07-13 08:30:51,094 | INFO | +[1119.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:51,094 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,094 | INFO | Animal 0.361 0.320 0.346 ✓ +2026-07-13 08:30:51,094 | INFO | Sheep 0.202 0.000 0.131 ✓ +2026-07-13 08:30:51,094 | INFO | Bleat 0.148 0.000 0.096 ✗ +2026-07-13 08:30:51,094 | INFO | Vehicle 0.107 0.000 0.070 ✗ +2026-07-13 08:30:51,094 | INFO | Clip-clop 0.087 0.000 0.057 ✗ +2026-07-13 08:30:51,094 | INFO | Music 0.074 0.000 0.049 ✗ +2026-07-13 08:30:51,094 | INFO | → WINNER: Animal (combined=0.346) +2026-07-13 08:30:51,119 | INFO | +[1119.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:51,119 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,119 | INFO | Animal 0.144 0.320 0.205 ✓ +2026-07-13 08:30:51,119 | INFO | Bird 0.074 0.332 0.164 ✓ +2026-07-13 08:30:51,119 | INFO | Vehicle 0.108 0.000 0.070 ✗ +2026-07-13 08:30:51,119 | INFO | Music 0.070 0.000 0.046 ✗ +2026-07-13 08:30:51,119 | INFO | Boat, Water vehicle 0.060 0.000 0.039 ✗ +2026-07-13 08:30:51,119 | INFO | → WINNER: Animal (combined=0.205) +2026-07-13 08:30:51,144 | INFO | +[1119.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-07-13 08:30:51,144 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,144 | INFO | Animal 0.249 0.320 0.274 ✓ +2026-07-13 08:30:51,151 | INFO | Bird 0.035 0.332 0.139 ✓ +2026-07-13 08:30:51,152 | INFO | Music 0.161 0.000 0.105 ✗ +2026-07-13 08:30:51,152 | INFO | Vehicle 0.096 0.000 0.063 ✗ +2026-07-13 08:30:51,152 | INFO | Sheep 0.060 0.000 0.039 ✗ +2026-07-13 08:30:51,152 | INFO | → WINNER: Animal (combined=0.274) +2026-07-13 08:30:51,180 | INFO | +[1132.80s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-07-13 08:30:51,184 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,184 | INFO | Patter 0.075 0.000 0.049 ✗ +2026-07-13 08:30:51,185 | INFO | → no winner +2026-07-13 08:30:51,209 | INFO | +[1133.00s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-07-13 08:30:51,209 | INFO | → no winner +2026-07-13 08:30:51,235 | INFO | +[1133.20s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-07-13 08:30:51,235 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,235 | INFO | Music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:51,235 | INFO | → no winner +2026-07-13 08:30:51,262 | INFO | +[1133.40s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-07-13 08:30:51,262 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,262 | INFO | Mouse 0.076 0.000 0.050 ✗ +2026-07-13 08:30:51,262 | INFO | Music 0.061 0.000 0.039 ✗ +2026-07-13 08:30:51,262 | INFO | → no winner +2026-07-13 08:30:51,291 | INFO | +[1133.60s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-07-13 08:30:51,291 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,291 | INFO | Cricket 0.199 0.000 0.130 ✓ +2026-07-13 08:30:51,291 | INFO | Insect 0.164 0.000 0.107 ✗ +2026-07-13 08:30:51,291 | INFO | Mouse 0.107 0.000 0.069 ✗ +2026-07-13 08:30:51,291 | INFO | Patter 0.080 0.000 0.052 ✗ +2026-07-13 08:30:51,291 | INFO | Bird 0.042 0.000 0.028 ✗ +2026-07-13 08:30:51,291 | INFO | → WINNER: Cricket (combined=0.130) +2026-07-13 08:30:51,317 | INFO | +[1143.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,317 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,324 | INFO | Frog 0.093 0.000 0.060 ✗ +2026-07-13 08:30:51,324 | INFO | → no winner +2026-07-13 08:30:51,348 | INFO | +[1143.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,348 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,348 | INFO | Music 0.101 0.000 0.066 ✗ +2026-07-13 08:30:51,348 | INFO | Whistle 0.096 0.000 0.062 ✗ +2026-07-13 08:30:51,348 | INFO | → no winner +2026-07-13 08:30:51,373 | INFO | +[1143.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,373 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,373 | INFO | Music 0.076 0.000 0.050 ✗ +2026-07-13 08:30:51,373 | INFO | → no winner +2026-07-13 08:30:51,405 | INFO | +[1143.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,405 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,405 | INFO | Animal 0.143 0.000 0.093 ✗ +2026-07-13 08:30:51,405 | INFO | Music 0.066 0.000 0.043 ✗ +2026-07-13 08:30:51,405 | INFO | Rodents, rats, mice 0.053 0.000 0.035 ✗ +2026-07-13 08:30:51,405 | INFO | → no winner +2026-07-13 08:30:51,430 | INFO | +[1144.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,430 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,430 | INFO | Animal 0.190 0.000 0.124 ✓ +2026-07-13 08:30:51,430 | INFO | Music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:51,430 | INFO | Rodents, rats, mice 0.056 0.000 0.036 ✗ +2026-07-13 08:30:51,430 | INFO | Bird 0.055 0.000 0.036 ✗ +2026-07-13 08:30:51,430 | INFO | → WINNER: Animal (combined=0.124) +2026-07-13 08:30:51,454 | INFO | +[1144.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,462 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,463 | INFO | Rodents, rats, mice 0.170 0.000 0.110 ✗ +2026-07-13 08:30:51,463 | INFO | Animal 0.112 0.000 0.073 ✗ +2026-07-13 08:30:51,463 | INFO | Mouse 0.111 0.000 0.072 ✗ +2026-07-13 08:30:51,463 | INFO | Patter 0.090 0.000 0.058 ✗ +2026-07-13 08:30:51,463 | INFO | Bird 0.035 0.000 0.022 ✗ +2026-07-13 08:30:51,463 | INFO | → no winner +2026-07-13 08:30:51,487 | INFO | +[1144.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,487 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,487 | INFO | Music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:51,487 | INFO | → no winner +2026-07-13 08:30:51,511 | INFO | +[1144.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,519 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,519 | INFO | Inside, small room 0.064 0.000 0.042 ✗ +2026-07-13 08:30:51,519 | INFO | Music 0.062 0.000 0.040 ✗ +2026-07-13 08:30:51,519 | INFO | Tick 0.055 0.000 0.036 ✗ +2026-07-13 08:30:51,519 | INFO | Tick-tock 0.054 0.000 0.035 ✗ +2026-07-13 08:30:51,519 | INFO | → no winner +2026-07-13 08:30:51,545 | INFO | +[1144.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,545 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,545 | INFO | Patter 0.103 0.000 0.067 ✗ +2026-07-13 08:30:51,545 | INFO | Inside, small room 0.058 0.000 0.038 ✗ +2026-07-13 08:30:51,545 | INFO | → no winner +2026-07-13 08:30:51,574 | INFO | +[1145.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,576 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,576 | INFO | Patter 0.083 0.000 0.054 ✗ +2026-07-13 08:30:51,576 | INFO | Squish 0.079 0.000 0.051 ✗ +2026-07-13 08:30:51,578 | INFO | Mouse 0.054 0.000 0.035 ✗ +2026-07-13 08:30:51,578 | INFO | → no winner +2026-07-13 08:30:51,603 | INFO | +[1145.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,603 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,603 | INFO | Animal 0.100 0.000 0.065 ✗ +2026-07-13 08:30:51,606 | INFO | Patter 0.084 0.000 0.055 ✗ +2026-07-13 08:30:51,606 | INFO | Squish 0.075 0.000 0.049 ✗ +2026-07-13 08:30:51,606 | INFO | → no winner +2026-07-13 08:30:51,628 | INFO | +[1145.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,628 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,628 | INFO | Animal 0.105 0.000 0.068 ✗ +2026-07-13 08:30:51,628 | INFO | Patter 0.076 0.000 0.050 ✗ +2026-07-13 08:30:51,628 | INFO | Mouse 0.074 0.000 0.048 ✗ +2026-07-13 08:30:51,628 | INFO | Rodents, rats, mice 0.062 0.000 0.040 ✗ +2026-07-13 08:30:51,628 | INFO | → no winner +2026-07-13 08:30:51,660 | INFO | +[1145.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,660 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,660 | INFO | Animal 0.186 0.000 0.121 ✓ +2026-07-13 08:30:51,660 | INFO | Turkey 0.101 0.000 0.066 ✗ +2026-07-13 08:30:51,660 | INFO | Frog 0.101 0.000 0.065 ✗ +2026-07-13 08:30:51,660 | INFO | Rodents, rats, mice 0.084 0.000 0.054 ✗ +2026-07-13 08:30:51,660 | INFO | Bird 0.082 0.000 0.053 ✗ +2026-07-13 08:30:51,660 | INFO | Gobble 0.071 0.000 0.046 ✗ +2026-07-13 08:30:51,660 | INFO | → WINNER: Animal (combined=0.121) +2026-07-13 08:30:51,685 | INFO | +[1145.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,685 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,685 | INFO | Animal 0.259 0.000 0.168 ✓ +2026-07-13 08:30:51,685 | INFO | Bird vocalization, bird call, bird song 0.070 0.321 0.158 ✓ +2026-07-13 08:30:51,685 | INFO | Bird 0.156 0.000 0.102 ✗ +2026-07-13 08:30:51,685 | INFO | Cricket 0.122 0.000 0.080 ✗ +2026-07-13 08:30:51,685 | INFO | Insect 0.118 0.000 0.077 ✗ +2026-07-13 08:30:51,685 | INFO | Rodents, rats, mice 0.085 0.000 0.055 ✗ +2026-07-13 08:30:51,685 | INFO | → WINNER: Animal (combined=0.168) +2026-07-13 08:30:51,709 | INFO | +[1146.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,718 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,718 | INFO | Bird vocalization, bird call, bird song 0.105 0.321 0.180 ✓ +2026-07-13 08:30:51,718 | INFO | Insect 0.212 0.000 0.138 ✓ +2026-07-13 08:30:51,719 | INFO | Cricket 0.206 0.000 0.134 ✓ +2026-07-13 08:30:51,719 | INFO | Bird 0.176 0.000 0.114 ✗ +2026-07-13 08:30:51,719 | INFO | Animal 0.147 0.000 0.096 ✗ +2026-07-13 08:30:51,719 | INFO | Chirp, tweet 0.097 0.000 0.063 ✗ +2026-07-13 08:30:51,719 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.180) +2026-07-13 08:30:51,743 | INFO | +[1146.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,743 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,743 | INFO | Animal 0.259 0.000 0.168 ✓ +2026-07-13 08:30:51,743 | INFO | Bird vocalization, bird call, bird song 0.068 0.321 0.156 ✓ +2026-07-13 08:30:51,743 | INFO | Bird 0.181 0.000 0.118 ✗ +2026-07-13 08:30:51,743 | INFO | Insect 0.092 0.000 0.060 ✗ +2026-07-13 08:30:51,743 | INFO | Cricket 0.091 0.000 0.059 ✗ +2026-07-13 08:30:51,743 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:51,743 | INFO | → WINNER: Animal (combined=0.168) +2026-07-13 08:30:51,774 | INFO | +[1146.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,775 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,775 | INFO | Bird vocalization, bird call, bird song 0.077 0.321 0.163 ✓ +2026-07-13 08:30:51,775 | INFO | Animal 0.191 0.000 0.124 ✓ +2026-07-13 08:30:51,775 | INFO | Bird 0.182 0.000 0.118 ✗ +2026-07-13 08:30:51,775 | INFO | Chirp, tweet 0.074 0.000 0.048 ✗ +2026-07-13 08:30:51,775 | INFO | Outside, rural or natural 0.062 0.000 0.040 ✗ +2026-07-13 08:30:51,775 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.163) +2026-07-13 08:30:51,799 | INFO | +[1146.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,799 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,799 | INFO | Bird vocalization, bird call, bird song 0.072 0.321 0.159 ✓ +2026-07-13 08:30:51,799 | INFO | Animal 0.182 0.000 0.118 ✗ +2026-07-13 08:30:51,799 | INFO | Bird 0.169 0.000 0.110 ✗ +2026-07-13 08:30:51,799 | INFO | Music 0.072 0.000 0.047 ✗ +2026-07-13 08:30:51,799 | INFO | Chirp, tweet 0.069 0.000 0.045 ✗ +2026-07-13 08:30:51,799 | INFO | Outside, rural or natural 0.056 0.000 0.036 ✗ +2026-07-13 08:30:51,807 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.159) +2026-07-13 08:30:51,833 | INFO | +[1146.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,833 | INFO | Bird vocalization, bird call, bird song 0.081 0.321 0.165 ✓ +2026-07-13 08:30:51,833 | INFO | Animal 0.253 0.000 0.164 ✓ +2026-07-13 08:30:51,833 | INFO | Bird 0.186 0.000 0.121 ✓ +2026-07-13 08:30:51,833 | INFO | Chirp, tweet 0.077 0.000 0.050 ✗ +2026-07-13 08:30:51,833 | INFO | Outside, rural or natural 0.065 0.000 0.042 ✗ +2026-07-13 08:30:51,833 | INFO | Environmental noise 0.052 0.000 0.034 ✗ +2026-07-13 08:30:51,833 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.165) +2026-07-13 08:30:51,864 | INFO | +[1147.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,864 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,864 | INFO | Animal 0.384 0.000 0.250 ✓ +2026-07-13 08:30:51,864 | INFO | Bird vocalization, bird call, bird song 0.046 0.321 0.142 ✓ +2026-07-13 08:30:51,864 | INFO | Bird 0.173 0.000 0.113 ✗ +2026-07-13 08:30:51,864 | INFO | Livestock, farm animals, working animals 0.111 0.000 0.072 ✗ +2026-07-13 08:30:51,864 | INFO | Chicken, rooster 0.107 0.000 0.069 ✗ +2026-07-13 08:30:51,864 | INFO | Horse 0.078 0.000 0.051 ✗ +2026-07-13 08:30:51,864 | INFO | → WINNER: Animal (combined=0.250) +2026-07-13 08:30:51,890 | INFO | +[1147.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,890 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,890 | INFO | Animal 0.369 0.000 0.240 ✓ +2026-07-13 08:30:51,890 | INFO | Bird vocalization, bird call, bird song 0.056 0.321 0.149 ✓ +2026-07-13 08:30:51,890 | INFO | Bird 0.178 0.000 0.116 ✗ +2026-07-13 08:30:51,890 | INFO | Outside, rural or natural 0.070 0.000 0.045 ✗ +2026-07-13 08:30:51,890 | INFO | Horse 0.064 0.000 0.042 ✗ +2026-07-13 08:30:51,890 | INFO | Chirp, tweet 0.058 0.000 0.038 ✗ +2026-07-13 08:30:51,890 | INFO | → WINNER: Animal (combined=0.240) +2026-07-13 08:30:51,921 | INFO | +[1147.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,921 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,921 | INFO | Animal 0.344 0.000 0.224 ✓ +2026-07-13 08:30:51,921 | INFO | Bird vocalization, bird call, bird song 0.039 0.321 0.138 ✓ +2026-07-13 08:30:51,921 | INFO | Bird 0.131 0.000 0.085 ✗ +2026-07-13 08:30:51,921 | INFO | Outside, rural or natural 0.100 0.000 0.065 ✗ +2026-07-13 08:30:51,921 | INFO | Vehicle 0.067 0.000 0.043 ✗ +2026-07-13 08:30:51,921 | INFO | Horse 0.063 0.000 0.041 ✗ +2026-07-13 08:30:51,921 | INFO | → WINNER: Animal (combined=0.224) +2026-07-13 08:30:51,947 | INFO | +[1147.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,947 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,947 | INFO | Bird vocalization, bird call, bird song 0.034 0.321 0.134 ✓ +2026-07-13 08:30:51,947 | INFO | Animal 0.202 0.000 0.131 ✓ +2026-07-13 08:30:51,954 | INFO | Bird 0.094 0.000 0.061 ✗ +2026-07-13 08:30:51,954 | INFO | Outside, rural or natural 0.060 0.000 0.039 ✗ +2026-07-13 08:30:51,955 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.134) +2026-07-13 08:30:51,979 | INFO | +[1147.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:51,979 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:51,979 | INFO | Animal 0.120 0.000 0.078 ✗ +2026-07-13 08:30:51,979 | INFO | Bird 0.036 0.000 0.023 ✗ +2026-07-13 08:30:51,979 | INFO | → no winner +2026-07-13 08:30:52,009 | INFO | +[1148.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,009 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,009 | INFO | Animal 0.093 0.000 0.060 ✗ +2026-07-13 08:30:52,009 | INFO | → no winner +2026-07-13 08:30:52,037 | INFO | +[1148.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,037 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,037 | INFO | Frog 0.229 0.000 0.149 ✓ +2026-07-13 08:30:52,037 | INFO | Animal 0.096 0.000 0.062 ✗ +2026-07-13 08:30:52,037 | INFO | → WINNER: Frog (combined=0.149) +2026-07-13 08:30:52,062 | INFO | +[1148.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,062 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,062 | INFO | Animal 0.179 0.000 0.117 ✗ +2026-07-13 08:30:52,062 | INFO | Frog 0.125 0.000 0.081 ✗ +2026-07-13 08:30:52,062 | INFO | Bird 0.046 0.000 0.030 ✗ +2026-07-13 08:30:52,062 | INFO | → no winner +2026-07-13 08:30:52,094 | INFO | +[1148.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,095 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,095 | INFO | Animal 0.143 0.000 0.093 ✗ +2026-07-13 08:30:52,095 | INFO | Bird 0.036 0.000 0.023 ✗ +2026-07-13 08:30:52,095 | INFO | → no winner +2026-07-13 08:30:52,119 | INFO | +[1148.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,119 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,119 | INFO | Telephone 0.113 0.000 0.074 ✗ +2026-07-13 08:30:52,119 | INFO | Telephone dialing, DTMF 0.062 0.000 0.040 ✗ +2026-07-13 08:30:52,119 | INFO | Inside, small room 0.059 0.000 0.039 ✗ +2026-07-13 08:30:52,119 | INFO | → no winner +2026-07-13 08:30:52,150 | INFO | +[1149.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,150 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,150 | INFO | Telephone 0.247 0.000 0.161 ✓ +2026-07-13 08:30:52,150 | INFO | Ringtone 0.057 0.346 0.158 ✓ +2026-07-13 08:30:52,150 | INFO | Animal 0.091 0.000 0.059 ✗ +2026-07-13 08:30:52,150 | INFO | Telephone dialing, DTMF 0.079 0.000 0.051 ✗ +2026-07-13 08:30:52,154 | INFO | Telephone bell ringing 0.076 0.000 0.049 ✗ +2026-07-13 08:30:52,154 | INFO | → WINNER: Telephone (combined=0.161) +2026-07-13 08:30:52,180 | INFO | +[1149.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,180 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,180 | INFO | Telephone 0.203 0.000 0.132 ✓ +2026-07-13 08:30:52,180 | INFO | Animal 0.117 0.000 0.076 ✗ +2026-07-13 08:30:52,183 | INFO | Telephone dialing, DTMF 0.081 0.000 0.052 ✗ +2026-07-13 08:30:52,183 | INFO | Inside, small room 0.059 0.000 0.038 ✗ +2026-07-13 08:30:52,184 | INFO | → WINNER: Telephone (combined=0.132) +2026-07-13 08:30:52,208 | INFO | +[1149.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,208 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,208 | INFO | Animal 0.131 0.000 0.085 ✗ +2026-07-13 08:30:52,208 | INFO | Bird 0.046 0.000 0.030 ✗ +2026-07-13 08:30:52,208 | INFO | → no winner +2026-07-13 08:30:52,233 | INFO | +[1149.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,233 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,233 | INFO | Bird vocalization, bird call, bird song 0.029 0.321 0.131 ✓ +2026-07-13 08:30:52,233 | INFO | Cricket 0.121 0.000 0.079 ✗ +2026-07-13 08:30:52,233 | INFO | Animal 0.112 0.000 0.073 ✗ +2026-07-13 08:30:52,233 | INFO | Bird 0.083 0.000 0.054 ✗ +2026-07-13 08:30:52,233 | INFO | Mouse 0.052 0.000 0.034 ✗ +2026-07-13 08:30:52,233 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.131) +2026-07-13 08:30:52,264 | INFO | +[1149.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,264 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,264 | INFO | Vehicle 0.054 0.000 0.035 ✗ +2026-07-13 08:30:52,264 | INFO | → no winner +2026-07-13 08:30:52,293 | INFO | +[1150.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,293 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,293 | INFO | Boiling 0.083 0.000 0.054 ✗ +2026-07-13 08:30:52,293 | INFO | → no winner +2026-07-13 08:30:52,322 | INFO | +[1150.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,322 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,322 | INFO | Squish 0.108 0.000 0.070 ✗ +2026-07-13 08:30:52,322 | INFO | Boiling 0.106 0.000 0.069 ✗ +2026-07-13 08:30:52,322 | INFO | Inside, small room 0.084 0.000 0.054 ✗ +2026-07-13 08:30:52,322 | INFO | Water 0.082 0.000 0.053 ✗ +2026-07-13 08:30:52,322 | INFO | Fill (with liquid) 0.055 0.000 0.036 ✗ +2026-07-13 08:30:52,322 | INFO | Patter 0.053 0.000 0.035 ✗ +2026-07-13 08:30:52,322 | INFO | → no winner +2026-07-13 08:30:52,347 | INFO | +[1150.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,347 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,347 | INFO | Typing 0.107 0.000 0.070 ✗ +2026-07-13 08:30:52,347 | INFO | Computer keyboard 0.070 0.000 0.046 ✗ +2026-07-13 08:30:52,347 | INFO | Patter 0.056 0.000 0.036 ✗ +2026-07-13 08:30:52,347 | INFO | → no winner +2026-07-13 08:30:52,373 | INFO | +[1150.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,373 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,381 | INFO | Patter 0.070 0.000 0.046 ✗ +2026-07-13 08:30:52,381 | INFO | → no winner +2026-07-13 08:30:52,405 | INFO | +[1150.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-07-13 08:30:52,407 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,407 | INFO | Animal 0.229 0.000 0.149 ✓ +2026-07-13 08:30:52,407 | INFO | Clip-clop 0.129 0.000 0.084 ✗ +2026-07-13 08:30:52,407 | INFO | Horse 0.076 0.000 0.049 ✗ +2026-07-13 08:30:52,407 | INFO | Outside, rural or natural 0.059 0.000 0.038 ✗ +2026-07-13 08:30:52,407 | INFO | Typing 0.056 0.000 0.036 ✗ +2026-07-13 08:30:52,407 | INFO | Run 0.048 0.000 0.031 ✗ +2026-07-13 08:30:52,407 | INFO | → WINNER: Animal (combined=0.149) +2026-07-13 08:30:52,487 | INFO | +[1233.80s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-07-13 08:30:52,487 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,487 | INFO | Music 0.525 0.000 0.341 ✓ +2026-07-13 08:30:52,496 | INFO | Singing bowl 0.240 0.000 0.156 ✓ +2026-07-13 08:30:52,496 | INFO | Musical instrument 0.102 0.000 0.066 ✗ +2026-07-13 08:30:52,496 | INFO | → WINNER: Music (combined=0.341) +2026-07-13 08:30:52,551 | INFO | +[1234.00s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-07-13 08:30:52,551 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,551 | INFO | Music 0.563 0.000 0.366 ✓ +2026-07-13 08:30:52,551 | INFO | Singing bowl 0.128 0.000 0.083 ✗ +2026-07-13 08:30:52,553 | INFO | Musical instrument 0.095 0.000 0.062 ✗ +2026-07-13 08:30:52,553 | INFO | → WINNER: Music (combined=0.366) +2026-07-13 08:30:52,625 | INFO | +[1277.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,628 | INFO | Whale vocalization 0.091 0.278 0.157 ✓ +2026-07-13 08:30:52,629 | INFO | Music 0.113 0.000 0.074 ✗ +2026-07-13 08:30:52,629 | INFO | Vehicle 0.095 0.000 0.061 ✗ +2026-07-13 08:30:52,629 | INFO | Boat, Water vehicle 0.044 0.000 0.029 ✗ +2026-07-13 08:30:52,629 | INFO | → WINNER: Whale vocalization (combined=0.157) +2026-07-13 08:30:52,661 | INFO | +[1278.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,661 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,661 | INFO | Music 0.192 0.000 0.125 ✓ +2026-07-13 08:30:52,661 | INFO | Theremin 0.053 0.000 0.035 ✗ +2026-07-13 08:30:52,661 | INFO | → WINNER: Music (combined=0.125) +2026-07-13 08:30:52,694 | INFO | +[1278.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,694 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,694 | INFO | Music 0.455 0.000 0.296 ✓ +2026-07-13 08:30:52,694 | INFO | Whale vocalization 0.082 0.278 0.150 ✓ +2026-07-13 08:30:52,694 | INFO | Theremin 0.194 0.000 0.126 ✓ +2026-07-13 08:30:52,694 | INFO | → WINNER: Music (combined=0.296) +2026-07-13 08:30:52,719 | INFO | +[1278.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,726 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,726 | INFO | Music 0.820 0.000 0.533 ✓ +2026-07-13 08:30:52,726 | INFO | Theremin 0.346 0.000 0.225 ✓ +2026-07-13 08:30:52,726 | INFO | Musical instrument 0.072 0.000 0.047 ✗ +2026-07-13 08:30:52,726 | INFO | Flute 0.053 0.000 0.035 ✗ +2026-07-13 08:30:52,726 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:52,753 | INFO | +[1278.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,755 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,755 | INFO | Music 0.723 0.000 0.470 ✓ +2026-07-13 08:30:52,755 | INFO | Theremin 0.508 0.000 0.330 ✓ +2026-07-13 08:30:52,755 | INFO | Whale vocalization 0.115 0.278 0.172 ✓ +2026-07-13 08:30:52,755 | INFO | → WINNER: Music (combined=0.470) +2026-07-13 08:30:52,781 | INFO | +[1278.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,783 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,783 | INFO | Music 0.311 0.000 0.202 ✓ +2026-07-13 08:30:52,783 | INFO | Whale vocalization 0.052 0.278 0.131 ✓ +2026-07-13 08:30:52,783 | INFO | Theremin 0.053 0.000 0.034 ✗ +2026-07-13 08:30:52,784 | INFO | → WINNER: Music (combined=0.202) +2026-07-13 08:30:52,809 | INFO | +[1279.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,809 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,809 | INFO | Music 0.243 0.000 0.158 ✓ +2026-07-13 08:30:52,809 | INFO | → WINNER: Music (combined=0.158) +2026-07-13 08:30:52,834 | INFO | +[1279.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,834 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,838 | INFO | Music 0.244 0.000 0.158 ✓ +2026-07-13 08:30:52,838 | INFO | Whale vocalization 0.076 0.278 0.146 ✓ +2026-07-13 08:30:52,838 | INFO | Theremin 0.066 0.000 0.043 ✗ +2026-07-13 08:30:52,838 | INFO | Civil defense siren 0.065 0.000 0.042 ✗ +2026-07-13 08:30:52,838 | INFO | → WINNER: Music (combined=0.158) +2026-07-13 08:30:52,858 | INFO | +[1279.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,858 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,868 | INFO | Music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:52,868 | INFO | → no winner +2026-07-13 08:30:52,892 | INFO | +[1279.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,892 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,892 | INFO | Music 0.327 0.000 0.213 ✓ +2026-07-13 08:30:52,892 | INFO | Theremin 0.118 0.000 0.076 ✗ +2026-07-13 08:30:52,892 | INFO | Musical instrument 0.083 0.000 0.054 ✗ +2026-07-13 08:30:52,892 | INFO | Inside, small room 0.058 0.000 0.038 ✗ +2026-07-13 08:30:52,892 | INFO | → WINNER: Music (combined=0.213) +2026-07-13 08:30:52,922 | INFO | +[1279.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,922 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,924 | INFO | Music 0.793 0.000 0.515 ✓ +2026-07-13 08:30:52,924 | INFO | Theremin 0.520 0.000 0.338 ✓ +2026-07-13 08:30:52,925 | INFO | Musical instrument 0.204 0.000 0.133 ✓ +2026-07-13 08:30:52,925 | INFO | Inside, small room 0.055 0.000 0.036 ✗ +2026-07-13 08:30:52,925 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:52,949 | INFO | +[1280.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,949 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,949 | INFO | Music 0.911 0.000 0.592 ✓ +2026-07-13 08:30:52,949 | INFO | Theremin 0.491 0.000 0.319 ✓ +2026-07-13 08:30:52,949 | INFO | Musical instrument 0.242 0.000 0.157 ✓ +2026-07-13 08:30:52,949 | INFO | Guitar 0.104 0.000 0.068 ✗ +2026-07-13 08:30:52,949 | INFO | Plucked string instrument 0.075 0.000 0.049 ✗ +2026-07-13 08:30:52,949 | INFO | → WINNER: Music (combined=0.592) +2026-07-13 08:30:52,975 | INFO | +[1280.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:52,982 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:52,982 | INFO | Music 0.748 0.000 0.486 ✓ +2026-07-13 08:30:52,982 | INFO | Theremin 0.305 0.000 0.198 ✓ +2026-07-13 08:30:52,982 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:52,982 | INFO | → WINNER: Music (combined=0.486) +2026-07-13 08:30:53,008 | INFO | +[1280.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,010 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,010 | INFO | Music 0.842 0.000 0.547 ✓ +2026-07-13 08:30:53,010 | INFO | Musical instrument 0.158 0.000 0.102 ✗ +2026-07-13 08:30:53,010 | INFO | Brass instrument 0.097 0.000 0.063 ✗ +2026-07-13 08:30:53,010 | INFO | Flute 0.064 0.000 0.042 ✗ +2026-07-13 08:30:53,010 | INFO | Theremin 0.054 0.000 0.035 ✗ +2026-07-13 08:30:53,010 | INFO | Wind instrument, woodwind instrument 0.043 0.000 0.028 ✗ +2026-07-13 08:30:53,010 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:30:53,039 | INFO | +[1280.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,040 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,040 | INFO | Music 0.807 0.000 0.524 ✓ +2026-07-13 08:30:53,040 | INFO | Brass instrument 0.233 0.000 0.151 ✓ +2026-07-13 08:30:53,040 | INFO | French horn 0.149 0.000 0.097 ✗ +2026-07-13 08:30:53,040 | INFO | Musical instrument 0.138 0.000 0.090 ✗ +2026-07-13 08:30:53,040 | INFO | Orchestra 0.105 0.000 0.068 ✗ +2026-07-13 08:30:53,040 | INFO | Flute 0.065 0.000 0.042 ✗ +2026-07-13 08:30:53,040 | INFO | → WINNER: Music (combined=0.524) +2026-07-13 08:30:53,066 | INFO | +[1280.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,066 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,066 | INFO | Music 0.722 0.000 0.469 ✓ +2026-07-13 08:30:53,066 | INFO | Musical instrument 0.208 0.000 0.135 ✓ +2026-07-13 08:30:53,066 | INFO | Brass instrument 0.204 0.000 0.132 ✓ +2026-07-13 08:30:53,066 | INFO | Flute 0.130 0.000 0.084 ✗ +2026-07-13 08:30:53,066 | INFO | Wind instrument, woodwind instrument 0.100 0.000 0.065 ✗ +2026-07-13 08:30:53,066 | INFO | French horn 0.076 0.000 0.049 ✗ +2026-07-13 08:30:53,066 | INFO | → WINNER: Music (combined=0.469) +2026-07-13 08:30:53,097 | INFO | +[1281.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,097 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,097 | INFO | Music 0.502 0.000 0.326 ✓ +2026-07-13 08:30:53,097 | INFO | Brass instrument 0.261 0.000 0.170 ✓ +2026-07-13 08:30:53,097 | INFO | Wind instrument, woodwind instrument 0.165 0.000 0.107 ✗ +2026-07-13 08:30:53,097 | INFO | French horn 0.160 0.000 0.104 ✗ +2026-07-13 08:30:53,097 | INFO | Musical instrument 0.146 0.000 0.095 ✗ +2026-07-13 08:30:53,097 | INFO | Trumpet 0.084 0.000 0.054 ✗ +2026-07-13 08:30:53,097 | INFO | → WINNER: Music (combined=0.326) +2026-07-13 08:30:53,123 | INFO | +[1281.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,123 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,123 | INFO | Music 0.331 0.000 0.215 ✓ +2026-07-13 08:30:53,123 | INFO | Animal 0.113 0.283 0.172 ✓ +2026-07-13 08:30:53,123 | INFO | Musical instrument 0.063 0.000 0.041 ✗ +2026-07-13 08:30:53,123 | INFO | Wind instrument, woodwind instrument 0.058 0.000 0.037 ✗ +2026-07-13 08:30:53,123 | INFO | Horse 0.057 0.000 0.037 ✗ +2026-07-13 08:30:53,123 | INFO | → WINNER: Music (combined=0.215) +2026-07-13 08:30:53,153 | INFO | +[1281.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,153 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,154 | INFO | Animal 0.205 0.283 0.232 ✓ +2026-07-13 08:30:53,154 | INFO | Whale vocalization 0.070 0.278 0.143 ✓ +2026-07-13 08:30:53,154 | INFO | Music 0.186 0.000 0.121 ✓ +2026-07-13 08:30:53,154 | INFO | Horse 0.077 0.000 0.050 ✗ +2026-07-13 08:30:53,154 | INFO | Clip-clop 0.055 0.000 0.036 ✗ +2026-07-13 08:30:53,154 | INFO | Wind instrument, woodwind instrument 0.047 0.000 0.030 ✗ +2026-07-13 08:30:53,154 | INFO | → WINNER: Animal (combined=0.232) +2026-07-13 08:30:53,179 | INFO | +[1281.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,179 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,179 | INFO | Animal 0.195 0.283 0.226 ✓ +2026-07-13 08:30:53,179 | INFO | Outside, rural or natural 0.076 0.310 0.158 ✓ +2026-07-13 08:30:53,179 | INFO | Music 0.102 0.000 0.066 ✗ +2026-07-13 08:30:53,179 | INFO | Vehicle 0.102 0.000 0.066 ✗ +2026-07-13 08:30:53,179 | INFO | Horse 0.086 0.000 0.056 ✗ +2026-07-13 08:30:53,179 | INFO | Clip-clop 0.084 0.000 0.055 ✗ +2026-07-13 08:30:53,179 | INFO | → WINNER: Animal (combined=0.226) +2026-07-13 08:30:53,210 | INFO | +[1281.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,210 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,210 | INFO | Animal 0.230 0.283 0.248 ✓ +2026-07-13 08:30:53,210 | INFO | Outside, rural or natural 0.055 0.310 0.145 ✓ +2026-07-13 08:30:53,210 | INFO | Music 0.188 0.000 0.122 ✓ +2026-07-13 08:30:53,210 | INFO | Horse 0.087 0.000 0.057 ✗ +2026-07-13 08:30:53,210 | INFO | Patter 0.080 0.000 0.052 ✗ +2026-07-13 08:30:53,210 | INFO | Vehicle 0.073 0.000 0.048 ✗ +2026-07-13 08:30:53,210 | INFO | → WINNER: Animal (combined=0.248) +2026-07-13 08:30:53,240 | INFO | +[1282.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,240 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,240 | INFO | Music 0.494 0.000 0.321 ✓ +2026-07-13 08:30:53,242 | INFO | Flute 0.229 0.000 0.149 ✓ +2026-07-13 08:30:53,242 | INFO | Wind instrument, woodwind instrument 0.158 0.000 0.103 ✗ +2026-07-13 08:30:53,242 | INFO | Musical instrument 0.092 0.000 0.060 ✗ +2026-07-13 08:30:53,242 | INFO | → WINNER: Music (combined=0.321) +2026-07-13 08:30:53,268 | INFO | +[1282.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,268 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,268 | INFO | Music 0.821 0.000 0.533 ✓ +2026-07-13 08:30:53,271 | INFO | Flute 0.101 0.000 0.066 ✗ +2026-07-13 08:30:53,271 | INFO | → WINNER: Music (combined=0.533) +2026-07-13 08:30:53,292 | INFO | +[1282.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,300 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,300 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:30:53,300 | INFO | Flute 0.168 0.000 0.109 ✗ +2026-07-13 08:30:53,300 | INFO | → WINNER: Music (combined=0.551) +2026-07-13 08:30:53,327 | INFO | +[1282.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,327 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,327 | INFO | Music 0.845 0.000 0.549 ✓ +2026-07-13 08:30:53,327 | INFO | Flute 0.118 0.000 0.077 ✗ +2026-07-13 08:30:53,327 | INFO | Theremin 0.066 0.000 0.043 ✗ +2026-07-13 08:30:53,327 | INFO | Musical instrument 0.056 0.000 0.036 ✗ +2026-07-13 08:30:53,327 | INFO | → WINNER: Music (combined=0.549) +2026-07-13 08:30:53,356 | INFO | +[1282.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,356 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,357 | INFO | Music 0.872 0.000 0.567 ✓ +2026-07-13 08:30:53,357 | INFO | Theremin 0.200 0.000 0.130 ✓ +2026-07-13 08:30:53,357 | INFO | Flute 0.054 0.000 0.035 ✗ +2026-07-13 08:30:53,357 | INFO | → WINNER: Music (combined=0.567) +2026-07-13 08:30:53,381 | INFO | +[1283.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,381 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,381 | INFO | Music 0.837 0.000 0.544 ✓ +2026-07-13 08:30:53,381 | INFO | Flute 0.140 0.000 0.091 ✗ +2026-07-13 08:30:53,381 | INFO | Theremin 0.105 0.000 0.068 ✗ +2026-07-13 08:30:53,381 | INFO | Whistle 0.069 0.000 0.045 ✗ +2026-07-13 08:30:53,381 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:30:53,412 | INFO | +[1283.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,414 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,414 | INFO | Music 0.892 0.000 0.580 ✓ +2026-07-13 08:30:53,414 | INFO | Theremin 0.252 0.000 0.164 ✓ +2026-07-13 08:30:53,414 | INFO | Flute 0.144 0.000 0.093 ✗ +2026-07-13 08:30:53,414 | INFO | Musical instrument 0.083 0.000 0.054 ✗ +2026-07-13 08:30:53,414 | INFO | Wind instrument, woodwind instrument 0.033 0.000 0.021 ✗ +2026-07-13 08:30:53,414 | INFO | → WINNER: Music (combined=0.580) +2026-07-13 08:30:53,439 | INFO | +[1283.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,439 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,439 | INFO | Music 0.836 0.000 0.543 ✓ +2026-07-13 08:30:53,439 | INFO | Flute 0.263 0.000 0.171 ✓ +2026-07-13 08:30:53,439 | INFO | Theremin 0.262 0.000 0.170 ✓ +2026-07-13 08:30:53,439 | INFO | Musical instrument 0.222 0.000 0.144 ✓ +2026-07-13 08:30:53,439 | INFO | Wind instrument, woodwind instrument 0.102 0.000 0.067 ✗ +2026-07-13 08:30:53,439 | INFO | → WINNER: Music (combined=0.543) +2026-07-13 08:30:53,472 | INFO | +[1283.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,472 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,472 | INFO | Music 0.874 0.000 0.568 ✓ +2026-07-13 08:30:53,472 | INFO | Musical instrument 0.258 0.000 0.168 ✓ +2026-07-13 08:30:53,472 | INFO | Theremin 0.235 0.000 0.153 ✓ +2026-07-13 08:30:53,472 | INFO | Flute 0.064 0.000 0.042 ✗ +2026-07-13 08:30:53,472 | INFO | Inside, small room 0.053 0.000 0.035 ✗ +2026-07-13 08:30:53,472 | INFO | → WINNER: Music (combined=0.568) +2026-07-13 08:30:53,499 | INFO | +[1283.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,499 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,499 | INFO | Music 0.628 0.000 0.408 ✓ +2026-07-13 08:30:53,499 | INFO | Theremin 0.111 0.000 0.072 ✗ +2026-07-13 08:30:53,499 | INFO | Musical instrument 0.103 0.000 0.067 ✗ +2026-07-13 08:30:53,499 | INFO | Wind instrument, woodwind instrument 0.035 0.000 0.022 ✗ +2026-07-13 08:30:53,499 | INFO | → WINNER: Music (combined=0.408) +2026-07-13 08:30:53,526 | INFO | +[1284.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,526 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,526 | INFO | Music 0.238 0.000 0.155 ✓ +2026-07-13 08:30:53,526 | INFO | Wind instrument, woodwind instrument 0.184 0.000 0.120 ✗ +2026-07-13 08:30:53,529 | INFO | Shofar 0.148 0.000 0.096 ✗ +2026-07-13 08:30:53,529 | INFO | Musical instrument 0.064 0.000 0.041 ✗ +2026-07-13 08:30:53,529 | INFO | → WINNER: Music (combined=0.155) +2026-07-13 08:30:53,557 | INFO | +[1284.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-07-13 08:30:53,557 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,557 | INFO | Music 0.659 0.000 0.428 ✓ +2026-07-13 08:30:53,557 | INFO | Wind instrument, woodwind instrument 0.228 0.000 0.148 ✓ +2026-07-13 08:30:53,557 | INFO | Musical instrument 0.213 0.000 0.139 ✓ +2026-07-13 08:30:53,557 | INFO | Flute 0.170 0.000 0.110 ✗ +2026-07-13 08:30:53,557 | INFO | Shofar 0.080 0.000 0.052 ✗ +2026-07-13 08:30:53,557 | INFO | Theremin 0.074 0.000 0.048 ✗ +2026-07-13 08:30:53,557 | INFO | → WINNER: Music (combined=0.428) +2026-07-13 08:30:53,579 | INFO | +[1284.40s] AMBIENT | scene='' +2026-07-13 08:30:53,579 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,587 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:53,587 | INFO | Musical instrument 0.336 0.000 0.218 ✓ +2026-07-13 08:30:53,587 | INFO | Wind instrument, woodwind instrument 0.268 0.000 0.174 ✓ +2026-07-13 08:30:53,587 | INFO | Theremin 0.218 0.000 0.141 ✓ +2026-07-13 08:30:53,587 | INFO | Flute 0.200 0.000 0.130 ✓ +2026-07-13 08:30:53,587 | INFO | Shofar 0.057 0.000 0.037 ✗ +2026-07-13 08:30:53,587 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:53,612 | INFO | +[1284.60s] AMBIENT | scene='' +2026-07-13 08:30:53,612 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,612 | INFO | Music 0.801 0.000 0.521 ✓ +2026-07-13 08:30:53,612 | INFO | Flute 0.431 0.000 0.280 ✓ +2026-07-13 08:30:53,612 | INFO | Musical instrument 0.350 0.000 0.227 ✓ +2026-07-13 08:30:53,612 | INFO | Wind instrument, woodwind instrument 0.249 0.000 0.162 ✓ +2026-07-13 08:30:53,612 | INFO | Theremin 0.206 0.000 0.134 ✓ +2026-07-13 08:30:53,612 | INFO | → WINNER: Music (combined=0.521) +2026-07-13 08:30:53,636 | INFO | +[1284.80s] AMBIENT | scene='' +2026-07-13 08:30:53,644 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,644 | INFO | Music 0.783 0.000 0.509 ✓ +2026-07-13 08:30:53,644 | INFO | Flute 0.562 0.000 0.366 ✓ +2026-07-13 08:30:53,644 | INFO | Musical instrument 0.246 0.000 0.160 ✓ +2026-07-13 08:30:53,644 | INFO | Wind instrument, woodwind instrument 0.218 0.000 0.141 ✓ +2026-07-13 08:30:53,644 | INFO | Traditional music 0.126 0.000 0.082 ✗ +2026-07-13 08:30:53,646 | INFO | → WINNER: Music (combined=0.509) +2026-07-13 08:30:53,669 | INFO | +[1285.00s] AMBIENT | scene='' +2026-07-13 08:30:53,669 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,669 | INFO | Music 0.780 0.000 0.507 ✓ +2026-07-13 08:30:53,669 | INFO | Flute 0.428 0.000 0.278 ✓ +2026-07-13 08:30:53,669 | INFO | Musical instrument 0.180 0.000 0.117 ✗ +2026-07-13 08:30:53,669 | INFO | Wind instrument, woodwind instrument 0.166 0.000 0.108 ✗ +2026-07-13 08:30:53,669 | INFO | Theremin 0.063 0.000 0.041 ✗ +2026-07-13 08:30:53,669 | INFO | → WINNER: Music (combined=0.507) +2026-07-13 08:30:53,701 | INFO | +[1285.20s] AMBIENT | scene='' +2026-07-13 08:30:53,701 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,701 | INFO | Music 0.779 0.000 0.506 ✓ +2026-07-13 08:30:53,701 | INFO | Flute 0.584 0.000 0.380 ✓ +2026-07-13 08:30:53,701 | INFO | Wind instrument, woodwind instrument 0.215 0.000 0.140 ✓ +2026-07-13 08:30:53,701 | INFO | Musical instrument 0.198 0.000 0.129 ✓ +2026-07-13 08:30:53,701 | INFO | → WINNER: Music (combined=0.506) +2026-07-13 08:30:53,725 | INFO | +[1285.40s] AMBIENT | scene='' +2026-07-13 08:30:53,725 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,725 | INFO | Flute 0.651 0.000 0.423 ✓ +2026-07-13 08:30:53,725 | INFO | Music 0.622 0.000 0.404 ✓ +2026-07-13 08:30:53,725 | INFO | Wind instrument, woodwind instrument 0.356 0.000 0.231 ✓ +2026-07-13 08:30:53,725 | INFO | Musical instrument 0.210 0.000 0.136 ✓ +2026-07-13 08:30:53,725 | INFO | → WINNER: Flute (combined=0.423) +2026-07-13 08:30:53,750 | INFO | +[1285.60s] AMBIENT | scene='' +2026-07-13 08:30:53,750 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,750 | INFO | Music 0.319 0.000 0.207 ✓ +2026-07-13 08:30:53,757 | INFO | Wind instrument, woodwind instrument 0.135 0.000 0.088 ✗ +2026-07-13 08:30:53,757 | INFO | Theremin 0.091 0.000 0.059 ✗ +2026-07-13 08:30:53,757 | INFO | Shofar 0.066 0.000 0.043 ✗ +2026-07-13 08:30:53,757 | INFO | Humming 0.064 0.000 0.042 ✗ +2026-07-13 08:30:53,757 | INFO | Musical instrument 0.061 0.000 0.040 ✗ +2026-07-13 08:30:53,758 | INFO | → WINNER: Music (combined=0.207) +2026-07-13 08:30:53,783 | INFO | +[1285.80s] AMBIENT | scene='' +2026-07-13 08:30:53,783 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,783 | INFO | Music 0.424 0.000 0.275 ✓ +2026-07-13 08:30:53,783 | INFO | Theremin 0.229 0.000 0.148 ✓ +2026-07-13 08:30:53,783 | INFO | Wind instrument, woodwind instrument 0.072 0.000 0.047 ✗ +2026-07-13 08:30:53,783 | INFO | Musical instrument 0.070 0.000 0.046 ✗ +2026-07-13 08:30:53,783 | INFO | → WINNER: Music (combined=0.275) +2026-07-13 08:30:53,808 | INFO | +[1286.00s] AMBIENT | scene='' +2026-07-13 08:30:53,808 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,808 | INFO | Music 0.626 0.000 0.407 ✓ +2026-07-13 08:30:53,808 | INFO | Theremin 0.274 0.000 0.178 ✓ +2026-07-13 08:30:53,808 | INFO | Musical instrument 0.158 0.000 0.103 ✗ +2026-07-13 08:30:53,815 | INFO | Wind instrument, woodwind instrument 0.058 0.000 0.037 ✗ +2026-07-13 08:30:53,815 | INFO | → WINNER: Music (combined=0.407) +2026-07-13 08:30:53,840 | INFO | +[1286.20s] AMBIENT | scene='' +2026-07-13 08:30:53,840 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,840 | INFO | Music 0.690 0.000 0.448 ✓ +2026-07-13 08:30:53,840 | INFO | Howl 0.366 0.000 0.238 ✓ +2026-07-13 08:30:53,840 | INFO | Animal 0.256 0.000 0.166 ✓ +2026-07-13 08:30:53,840 | INFO | Musical instrument 0.200 0.000 0.130 ✓ +2026-07-13 08:30:53,840 | INFO | Dog 0.148 0.000 0.096 ✗ +2026-07-13 08:30:53,840 | INFO | Domestic animals, pets 0.147 0.000 0.095 ✗ +2026-07-13 08:30:53,840 | INFO | → WINNER: Music (combined=0.448) +2026-07-13 08:30:53,867 | INFO | +[1286.40s] AMBIENT | scene='' +2026-07-13 08:30:53,867 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,867 | INFO | Music 0.672 0.000 0.437 ✓ +2026-07-13 08:30:53,867 | INFO | Musical instrument 0.177 0.000 0.115 ✗ +2026-07-13 08:30:53,867 | INFO | Plucked string instrument 0.105 0.000 0.068 ✗ +2026-07-13 08:30:53,873 | INFO | Guitar 0.089 0.000 0.058 ✗ +2026-07-13 08:30:53,873 | INFO | → WINNER: Music (combined=0.437) +2026-07-13 08:30:53,898 | INFO | +[1286.60s] AMBIENT | scene='' +2026-07-13 08:30:53,898 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,898 | INFO | Music 0.496 0.000 0.322 ✓ +2026-07-13 08:30:53,898 | INFO | Wind instrument, woodwind instrument 0.176 0.000 0.115 ✗ +2026-07-13 08:30:53,898 | INFO | Musical instrument 0.139 0.000 0.090 ✗ +2026-07-13 08:30:53,898 | INFO | Shofar 0.127 0.000 0.082 ✗ +2026-07-13 08:30:53,898 | INFO | → WINNER: Music (combined=0.322) +2026-07-13 08:30:53,930 | INFO | +[1286.80s] AMBIENT | scene='' +2026-07-13 08:30:53,932 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,932 | INFO | Music 0.609 0.000 0.396 ✓ +2026-07-13 08:30:53,932 | INFO | Musical instrument 0.209 0.000 0.136 ✓ +2026-07-13 08:30:53,932 | INFO | Guitar 0.157 0.000 0.102 ✗ +2026-07-13 08:30:53,932 | INFO | Plucked string instrument 0.143 0.000 0.093 ✗ +2026-07-13 08:30:53,932 | INFO | → WINNER: Music (combined=0.396) +2026-07-13 08:30:53,957 | INFO | +[1287.00s] AMBIENT | scene='' +2026-07-13 08:30:53,957 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,962 | INFO | Music 0.736 0.000 0.478 ✓ +2026-07-13 08:30:53,962 | INFO | Musical instrument 0.276 0.000 0.179 ✓ +2026-07-13 08:30:53,962 | INFO | Wind instrument, woodwind instrument 0.109 0.000 0.071 ✗ +2026-07-13 08:30:53,962 | INFO | Flute 0.097 0.000 0.063 ✗ +2026-07-13 08:30:53,962 | INFO | Theremin 0.083 0.000 0.054 ✗ +2026-07-13 08:30:53,962 | INFO | Guitar 0.062 0.000 0.040 ✗ +2026-07-13 08:30:53,962 | INFO | → WINNER: Music (combined=0.478) +2026-07-13 08:30:53,991 | INFO | +[1287.20s] AMBIENT | scene='' +2026-07-13 08:30:53,991 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:53,991 | INFO | Music 0.851 0.000 0.553 ✓ +2026-07-13 08:30:53,991 | INFO | Musical instrument 0.254 0.000 0.165 ✓ +2026-07-13 08:30:53,991 | INFO | Theremin 0.251 0.000 0.163 ✓ +2026-07-13 08:30:53,991 | INFO | Flute 0.109 0.000 0.071 ✗ +2026-07-13 08:30:53,991 | INFO | Plucked string instrument 0.056 0.000 0.036 ✗ +2026-07-13 08:30:53,991 | INFO | Wind instrument, woodwind instrument 0.035 0.000 0.023 ✗ +2026-07-13 08:30:53,991 | INFO | → WINNER: Music (combined=0.553) +2026-07-13 08:30:54,020 | INFO | +[1287.40s] AMBIENT | scene='' +2026-07-13 08:30:54,020 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,020 | INFO | Music 0.869 0.000 0.565 ✓ +2026-07-13 08:30:54,020 | INFO | Theremin 0.464 0.000 0.301 ✓ +2026-07-13 08:30:54,020 | INFO | Musical instrument 0.193 0.000 0.125 ✓ +2026-07-13 08:30:54,020 | INFO | → WINNER: Music (combined=0.565) +2026-07-13 08:30:54,048 | INFO | +[1287.60s] AMBIENT | scene='' +2026-07-13 08:30:54,048 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,048 | INFO | Music 0.834 0.000 0.542 ✓ +2026-07-13 08:30:54,048 | INFO | Theremin 0.171 0.000 0.111 ✗ +2026-07-13 08:30:54,048 | INFO | Musical instrument 0.112 0.000 0.072 ✗ +2026-07-13 08:30:54,048 | INFO | Whistle 0.062 0.000 0.040 ✗ +2026-07-13 08:30:54,048 | INFO | Flute 0.056 0.000 0.036 ✗ +2026-07-13 08:30:54,053 | INFO | → WINNER: Music (combined=0.542) +2026-07-13 08:30:54,079 | INFO | +[1287.80s] AMBIENT | scene='' +2026-07-13 08:30:54,080 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,080 | INFO | Music 0.812 0.000 0.528 ✓ +2026-07-13 08:30:54,080 | INFO | Theremin 0.355 0.000 0.231 ✓ +2026-07-13 08:30:54,080 | INFO | Musical instrument 0.123 0.000 0.080 ✗ +2026-07-13 08:30:54,080 | INFO | → WINNER: Music (combined=0.528) +2026-07-13 08:30:54,102 | INFO | +[1288.00s] AMBIENT | scene='' +2026-07-13 08:30:54,102 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,102 | INFO | Music 0.392 0.000 0.255 ✓ +2026-07-13 08:30:54,102 | INFO | Theremin 0.052 0.000 0.034 ✗ +2026-07-13 08:30:54,102 | INFO | → WINNER: Music (combined=0.255) +2026-07-13 08:30:54,135 | INFO | +[1288.20s] AMBIENT | scene='' +2026-07-13 08:30:54,135 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,135 | INFO | Music 0.193 0.000 0.125 ✓ +2026-07-13 08:30:54,135 | INFO | Musical instrument 0.061 0.000 0.040 ✗ +2026-07-13 08:30:54,135 | INFO | → WINNER: Music (combined=0.125) +2026-07-13 08:30:54,161 | INFO | +[1288.40s] AMBIENT | scene='' +2026-07-13 08:30:54,161 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,161 | INFO | Music 0.281 0.000 0.182 ✓ +2026-07-13 08:30:54,164 | INFO | Musical instrument 0.166 0.000 0.108 ✗ +2026-07-13 08:30:54,164 | INFO | Guitar 0.116 0.000 0.076 ✗ +2026-07-13 08:30:54,164 | INFO | Plucked string instrument 0.091 0.000 0.059 ✗ +2026-07-13 08:30:54,164 | INFO | Theremin 0.056 0.000 0.036 ✗ +2026-07-13 08:30:54,164 | INFO | Inside, small room 0.052 0.000 0.034 ✗ +2026-07-13 08:30:54,164 | INFO | → WINNER: Music (combined=0.182) +2026-07-13 08:30:54,194 | INFO | +[1288.60s] AMBIENT | scene='' +2026-07-13 08:30:54,194 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,194 | INFO | Music 0.588 0.000 0.382 ✓ +2026-07-13 08:30:54,194 | INFO | Musical instrument 0.374 0.000 0.243 ✓ +2026-07-13 08:30:54,194 | INFO | Theremin 0.289 0.000 0.188 ✓ +2026-07-13 08:30:54,194 | INFO | Guitar 0.215 0.000 0.140 ✓ +2026-07-13 08:30:54,194 | INFO | Plucked string instrument 0.183 0.000 0.119 ✗ +2026-07-13 08:30:54,194 | INFO | Inside, small room 0.093 0.000 0.061 ✗ +2026-07-13 08:30:54,194 | INFO | → WINNER: Music (combined=0.382) +2026-07-13 08:30:54,218 | INFO | +[1288.80s] AMBIENT | scene='' +2026-07-13 08:30:54,218 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,218 | INFO | Music 0.837 0.000 0.544 ✓ +2026-07-13 08:30:54,218 | INFO | Musical instrument 0.474 0.000 0.308 ✓ +2026-07-13 08:30:54,218 | INFO | Theremin 0.293 0.000 0.191 ✓ +2026-07-13 08:30:54,218 | INFO | Guitar 0.163 0.000 0.106 ✗ +2026-07-13 08:30:54,218 | INFO | Plucked string instrument 0.162 0.000 0.105 ✗ +2026-07-13 08:30:54,226 | INFO | Inside, small room 0.102 0.000 0.066 ✗ +2026-07-13 08:30:54,226 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:30:54,251 | INFO | +[1289.00s] AMBIENT | scene='' +2026-07-13 08:30:54,251 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,251 | INFO | Music 0.896 0.000 0.582 ✓ +2026-07-13 08:30:54,251 | INFO | Musical instrument 0.359 0.000 0.233 ✓ +2026-07-13 08:30:54,251 | INFO | Theremin 0.346 0.000 0.225 ✓ +2026-07-13 08:30:54,251 | INFO | Plucked string instrument 0.064 0.000 0.042 ✗ +2026-07-13 08:30:54,251 | INFO | Guitar 0.057 0.000 0.037 ✗ +2026-07-13 08:30:54,251 | INFO | → WINNER: Music (combined=0.582) +2026-07-13 08:30:54,276 | INFO | +[1289.20s] AMBIENT | scene='' +2026-07-13 08:30:54,284 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,284 | INFO | Music 0.915 0.000 0.595 ✓ +2026-07-13 08:30:54,284 | INFO | Theremin 0.370 0.000 0.240 ✓ +2026-07-13 08:30:54,284 | INFO | Musical instrument 0.362 0.000 0.235 ✓ +2026-07-13 08:30:54,284 | INFO | Flute 0.148 0.000 0.096 ✗ +2026-07-13 08:30:54,284 | INFO | Wind instrument, woodwind instrument 0.058 0.000 0.038 ✗ +2026-07-13 08:30:54,284 | INFO | → WINNER: Music (combined=0.595) +2026-07-13 08:30:54,309 | INFO | +[1289.40s] AMBIENT | scene='' +2026-07-13 08:30:54,309 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,309 | INFO | Music 0.902 0.000 0.586 ✓ +2026-07-13 08:30:54,309 | INFO | Musical instrument 0.275 0.000 0.178 ✓ +2026-07-13 08:30:54,309 | INFO | Theremin 0.239 0.000 0.155 ✓ +2026-07-13 08:30:54,309 | INFO | Flute 0.103 0.000 0.067 ✗ +2026-07-13 08:30:54,309 | INFO | Plucked string instrument 0.052 0.000 0.034 ✗ +2026-07-13 08:30:54,309 | INFO | Wind instrument, woodwind instrument 0.043 0.000 0.028 ✗ +2026-07-13 08:30:54,317 | INFO | → WINNER: Music (combined=0.586) +2026-07-13 08:30:54,342 | INFO | +[1289.60s] AMBIENT | scene='' +2026-07-13 08:30:54,342 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,342 | INFO | Music 0.833 0.000 0.541 ✓ +2026-07-13 08:30:54,342 | INFO | Musical instrument 0.371 0.000 0.241 ✓ +2026-07-13 08:30:54,342 | INFO | Theremin 0.327 0.000 0.212 ✓ +2026-07-13 08:30:54,342 | INFO | Flute 0.210 0.000 0.136 ✓ +2026-07-13 08:30:54,342 | INFO | Wind instrument, woodwind instrument 0.164 0.000 0.106 ✗ +2026-07-13 08:30:54,342 | INFO | Guitar 0.071 0.000 0.046 ✗ +2026-07-13 08:30:54,342 | INFO | → WINNER: Music (combined=0.541) +2026-07-13 08:30:54,374 | INFO | +[1289.80s] AMBIENT | scene='' +2026-07-13 08:30:54,374 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,374 | INFO | Music 0.727 0.000 0.473 ✓ +2026-07-13 08:30:54,374 | INFO | Musical instrument 0.464 0.000 0.301 ✓ +2026-07-13 08:30:54,374 | INFO | Wind instrument, woodwind instrument 0.258 0.000 0.168 ✓ +2026-07-13 08:30:54,374 | INFO | Guitar 0.121 0.000 0.079 ✗ +2026-07-13 08:30:54,374 | INFO | Flute 0.115 0.000 0.075 ✗ +2026-07-13 08:30:54,374 | INFO | Plucked string instrument 0.104 0.000 0.068 ✗ +2026-07-13 08:30:54,374 | INFO | → WINNER: Music (combined=0.473) +2026-07-13 08:30:54,407 | INFO | +[1290.00s] AMBIENT | scene='' +2026-07-13 08:30:54,407 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,407 | INFO | Music 0.370 0.000 0.241 ✓ +2026-07-13 08:30:54,407 | INFO | Theremin 0.214 0.000 0.139 ✓ +2026-07-13 08:30:54,407 | INFO | Singing bowl 0.094 0.000 0.061 ✗ +2026-07-13 08:30:54,407 | INFO | Musical instrument 0.074 0.000 0.048 ✗ +2026-07-13 08:30:54,407 | INFO | Wind instrument, woodwind instrument 0.062 0.000 0.040 ✗ +2026-07-13 08:30:54,415 | INFO | → WINNER: Music (combined=0.241) +2026-07-13 08:30:54,441 | INFO | +[1290.20s] AMBIENT | scene='' +2026-07-13 08:30:54,441 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,441 | INFO | Music 0.461 0.000 0.300 ✓ +2026-07-13 08:30:54,441 | INFO | Theremin 0.287 0.000 0.187 ✓ +2026-07-13 08:30:54,441 | INFO | Wind instrument, woodwind instrument 0.204 0.000 0.133 ✓ +2026-07-13 08:30:54,441 | INFO | Musical instrument 0.167 0.000 0.108 ✗ +2026-07-13 08:30:54,441 | INFO | Flute 0.134 0.000 0.087 ✗ +2026-07-13 08:30:54,441 | INFO | Shofar 0.074 0.000 0.048 ✗ +2026-07-13 08:30:54,441 | INFO | → WINNER: Music (combined=0.300) +2026-07-13 08:30:54,489 | INFO | +[1290.40s] AMBIENT | scene='' +2026-07-13 08:30:54,489 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,489 | INFO | Music 0.539 0.000 0.351 ✓ +2026-07-13 08:30:54,489 | INFO | Theremin 0.392 0.000 0.255 ✓ +2026-07-13 08:30:54,489 | INFO | Wind instrument, woodwind instrument 0.245 0.000 0.159 ✓ +2026-07-13 08:30:54,489 | INFO | Musical instrument 0.171 0.000 0.111 ✗ +2026-07-13 08:30:54,489 | INFO | Shofar 0.136 0.000 0.088 ✗ +2026-07-13 08:30:54,489 | INFO | Flute 0.125 0.000 0.081 ✗ +2026-07-13 08:30:54,489 | INFO | → WINNER: Music (combined=0.351) +2026-07-13 08:30:54,546 | INFO | +[1290.60s] AMBIENT | scene='' +2026-07-13 08:30:54,549 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,549 | INFO | Music 0.677 0.000 0.440 ✓ +2026-07-13 08:30:54,549 | INFO | Wind instrument, woodwind instrument 0.417 0.000 0.271 ✓ +2026-07-13 08:30:54,549 | INFO | Flute 0.377 0.000 0.245 ✓ +2026-07-13 08:30:54,550 | INFO | Musical instrument 0.280 0.000 0.182 ✓ +2026-07-13 08:30:54,550 | INFO | Brass instrument 0.095 0.000 0.062 ✗ +2026-07-13 08:30:54,550 | INFO | Shofar 0.089 0.000 0.058 ✗ +2026-07-13 08:30:54,550 | INFO | → WINNER: Music (combined=0.440) +2026-07-13 08:30:54,596 | INFO | +[1290.80s] AMBIENT | scene='' +2026-07-13 08:30:54,596 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,604 | INFO | Wind instrument, woodwind instrument 0.569 0.000 0.370 ✓ +2026-07-13 08:30:54,605 | INFO | Music 0.390 0.000 0.253 ✓ +2026-07-13 08:30:54,605 | INFO | Flute 0.300 0.000 0.195 ✓ +2026-07-13 08:30:54,605 | INFO | Shofar 0.295 0.000 0.192 ✓ +2026-07-13 08:30:54,605 | INFO | Musical instrument 0.189 0.000 0.123 ✓ +2026-07-13 08:30:54,605 | INFO | Brass instrument 0.062 0.000 0.041 ✗ +2026-07-13 08:30:54,605 | INFO | → WINNER: Wind instrument, woodwind instrument (combined=0.370) +2026-07-13 08:30:54,651 | INFO | +[1291.00s] AMBIENT | scene='' +2026-07-13 08:30:54,651 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,652 | INFO | Music 0.488 0.000 0.317 ✓ +2026-07-13 08:30:54,652 | INFO | Wind instrument, woodwind instrument 0.369 0.000 0.240 ✓ +2026-07-13 08:30:54,653 | INFO | Flute 0.243 0.000 0.158 ✓ +2026-07-13 08:30:54,653 | INFO | Musical instrument 0.188 0.000 0.122 ✓ +2026-07-13 08:30:54,653 | INFO | Shofar 0.176 0.000 0.115 ✗ +2026-07-13 08:30:54,653 | INFO | Brass instrument 0.060 0.000 0.039 ✗ +2026-07-13 08:30:54,654 | INFO | → WINNER: Music (combined=0.317) +2026-07-13 08:30:54,678 | INFO | +[1291.20s] AMBIENT | scene='' +2026-07-13 08:30:54,678 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,678 | INFO | Music 0.446 0.000 0.290 ✓ +2026-07-13 08:30:54,678 | INFO | Wind instrument, woodwind instrument 0.315 0.000 0.205 ✓ +2026-07-13 08:30:54,678 | INFO | Shofar 0.210 0.000 0.137 ✓ +2026-07-13 08:30:54,678 | INFO | Musical instrument 0.165 0.000 0.107 ✗ +2026-07-13 08:30:54,678 | INFO | Theremin 0.111 0.000 0.072 ✗ +2026-07-13 08:30:54,678 | INFO | → WINNER: Music (combined=0.290) +2026-07-13 08:30:54,710 | INFO | +[1291.40s] AMBIENT | scene='' +2026-07-13 08:30:54,710 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,710 | INFO | Music 0.471 0.000 0.306 ✓ +2026-07-13 08:30:54,710 | INFO | Wind instrument, woodwind instrument 0.210 0.000 0.136 ✓ +2026-07-13 08:30:54,710 | INFO | Musical instrument 0.182 0.000 0.118 ✗ +2026-07-13 08:30:54,710 | INFO | Shofar 0.144 0.000 0.094 ✗ +2026-07-13 08:30:54,710 | INFO | Theremin 0.079 0.000 0.051 ✗ +2026-07-13 08:30:54,710 | INFO | → WINNER: Music (combined=0.306) +2026-07-13 08:30:54,736 | INFO | +[1291.60s] AMBIENT | scene='' +2026-07-13 08:30:54,736 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,736 | INFO | Music 0.650 0.000 0.422 ✓ +2026-07-13 08:30:54,736 | INFO | Theremin 0.377 0.000 0.245 ✓ +2026-07-13 08:30:54,736 | INFO | Musical instrument 0.184 0.000 0.120 ✗ +2026-07-13 08:30:54,736 | INFO | Wind instrument, woodwind instrument 0.158 0.000 0.103 ✗ +2026-07-13 08:30:54,736 | INFO | Flute 0.107 0.000 0.070 ✗ +2026-07-13 08:30:54,743 | INFO | Shofar 0.059 0.000 0.038 ✗ +2026-07-13 08:30:54,743 | INFO | → WINNER: Music (combined=0.422) +2026-07-13 08:30:54,769 | INFO | +[1291.80s] AMBIENT | scene='' +2026-07-13 08:30:54,769 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,769 | INFO | Music 0.717 0.000 0.466 ✓ +2026-07-13 08:30:54,769 | INFO | Theremin 0.232 0.000 0.151 ✓ +2026-07-13 08:30:54,769 | INFO | Musical instrument 0.089 0.000 0.058 ✗ +2026-07-13 08:30:54,769 | INFO | Whale vocalization 0.085 0.000 0.055 ✗ +2026-07-13 08:30:54,769 | INFO | → WINNER: Music (combined=0.466) +2026-07-13 08:30:54,797 | INFO | +[1292.00s] AMBIENT | scene='' +2026-07-13 08:30:54,797 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,797 | INFO | Music 0.572 0.000 0.371 ✓ +2026-07-13 08:30:54,797 | INFO | Theremin 0.088 0.000 0.057 ✗ +2026-07-13 08:30:54,797 | INFO | Whale vocalization 0.076 0.000 0.050 ✗ +2026-07-13 08:30:54,797 | INFO | → WINNER: Music (combined=0.371) +2026-07-13 08:30:54,826 | INFO | +[1292.20s] AMBIENT | scene='' +2026-07-13 08:30:54,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,826 | INFO | Music 0.472 0.000 0.307 ✓ +2026-07-13 08:30:54,826 | INFO | Musical instrument 0.065 0.000 0.042 ✗ +2026-07-13 08:30:54,826 | INFO | → WINNER: Music (combined=0.307) +2026-07-13 08:30:54,851 | INFO | +[1292.40s] AMBIENT | scene='' +2026-07-13 08:30:54,851 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,851 | INFO | Music 0.692 0.000 0.450 ✓ +2026-07-13 08:30:54,851 | INFO | Flute 0.464 0.000 0.302 ✓ +2026-07-13 08:30:54,851 | INFO | Wind instrument, woodwind instrument 0.309 0.000 0.201 ✓ +2026-07-13 08:30:54,851 | INFO | Musical instrument 0.190 0.000 0.124 ✓ +2026-07-13 08:30:54,851 | INFO | Shofar 0.061 0.000 0.040 ✗ +2026-07-13 08:30:54,851 | INFO | → WINNER: Music (combined=0.450) +2026-07-13 08:30:54,875 | INFO | +[1292.60s] AMBIENT | scene='' +2026-07-13 08:30:54,882 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,883 | INFO | Music 0.579 0.000 0.376 ✓ +2026-07-13 08:30:54,883 | INFO | Flute 0.121 0.000 0.079 ✗ +2026-07-13 08:30:54,883 | INFO | Musical instrument 0.103 0.000 0.067 ✗ +2026-07-13 08:30:54,883 | INFO | Wind instrument, woodwind instrument 0.086 0.000 0.056 ✗ +2026-07-13 08:30:54,883 | INFO | → WINNER: Music (combined=0.376) +2026-07-13 08:30:54,906 | INFO | +[1292.80s] AMBIENT | scene='' +2026-07-13 08:30:54,906 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,906 | INFO | Music 0.751 0.000 0.488 ✓ +2026-07-13 08:30:54,906 | INFO | Musical instrument 0.227 0.000 0.147 ✓ +2026-07-13 08:30:54,906 | INFO | Flute 0.198 0.000 0.129 ✓ +2026-07-13 08:30:54,906 | INFO | Wind instrument, woodwind instrument 0.071 0.000 0.046 ✗ +2026-07-13 08:30:54,906 | INFO | → WINNER: Music (combined=0.488) +2026-07-13 08:30:54,939 | INFO | +[1300.60s] AMBIENT | scene='' +2026-07-13 08:30:54,939 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,939 | INFO | Music 0.270 0.000 0.175 ✓ +2026-07-13 08:30:54,939 | INFO | Singing 0.090 0.000 0.059 ✗ +2026-07-13 08:30:54,939 | INFO | → WINNER: Music (combined=0.175) +2026-07-13 08:30:54,965 | INFO | +[1300.80s] AMBIENT | scene='' +2026-07-13 08:30:54,965 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,965 | INFO | Music 0.133 0.000 0.087 ✗ +2026-07-13 08:30:54,965 | INFO | Animal 0.114 0.000 0.074 ✗ +2026-07-13 08:30:54,965 | INFO | Inside, small room 0.057 0.000 0.037 ✗ +2026-07-13 08:30:54,965 | INFO | → no winner +2026-07-13 08:30:54,997 | INFO | +[1301.00s] AMBIENT | scene='' +2026-07-13 08:30:54,997 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:54,997 | INFO | Music 0.757 0.000 0.492 ✓ +2026-07-13 08:30:54,997 | INFO | Flute 0.574 0.000 0.373 ✓ +2026-07-13 08:30:54,997 | INFO | Wind instrument, woodwind instrument 0.363 0.000 0.236 ✓ +2026-07-13 08:30:54,997 | INFO | Musical instrument 0.284 0.000 0.185 ✓ +2026-07-13 08:30:54,997 | INFO | → WINNER: Music (combined=0.492) +2026-07-13 08:30:55,022 | INFO | +[1301.20s] AMBIENT | scene='' +2026-07-13 08:30:55,022 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,022 | INFO | Music 0.792 0.000 0.515 ✓ +2026-07-13 08:30:55,022 | INFO | Flute 0.497 0.000 0.323 ✓ +2026-07-13 08:30:55,022 | INFO | Wind instrument, woodwind instrument 0.255 0.000 0.166 ✓ +2026-07-13 08:30:55,022 | INFO | Musical instrument 0.172 0.000 0.112 ✗ +2026-07-13 08:30:55,022 | INFO | Traditional music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:55,022 | INFO | → WINNER: Music (combined=0.515) +2026-07-13 08:30:55,055 | INFO | +[1301.40s] AMBIENT | scene='' +2026-07-13 08:30:55,055 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,055 | INFO | Music 0.750 0.000 0.487 ✓ +2026-07-13 08:30:55,055 | INFO | Flute 0.604 0.000 0.393 ✓ +2026-07-13 08:30:55,055 | INFO | Wind instrument, woodwind instrument 0.326 0.000 0.212 ✓ +2026-07-13 08:30:55,055 | INFO | Musical instrument 0.223 0.000 0.145 ✓ +2026-07-13 08:30:55,058 | INFO | Traditional music 0.078 0.000 0.051 ✗ +2026-07-13 08:30:55,058 | INFO | → WINNER: Music (combined=0.487) +2026-07-13 08:30:55,083 | INFO | +[1301.60s] AMBIENT | scene='' +2026-07-13 08:30:55,083 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,083 | INFO | Music 0.586 0.000 0.381 ✓ +2026-07-13 08:30:55,083 | INFO | Flute 0.252 0.000 0.164 ✓ +2026-07-13 08:30:55,083 | INFO | Wind instrument, woodwind instrument 0.145 0.000 0.095 ✗ +2026-07-13 08:30:55,083 | INFO | Musical instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:30:55,083 | INFO | → WINNER: Music (combined=0.381) +2026-07-13 08:30:55,104 | INFO | +[1301.80s] AMBIENT | scene='' +2026-07-13 08:30:55,112 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,112 | INFO | Animal 0.273 0.000 0.177 ✓ +2026-07-13 08:30:55,112 | INFO | Music 0.223 0.000 0.145 ✓ +2026-07-13 08:30:55,112 | INFO | Dog 0.106 0.000 0.069 ✗ +2026-07-13 08:30:55,112 | INFO | Domestic animals, pets 0.100 0.000 0.065 ✗ +2026-07-13 08:30:55,112 | INFO | → WINNER: Animal (combined=0.177) +2026-07-13 08:30:55,137 | INFO | +[1302.00s] AMBIENT | scene='' +2026-07-13 08:30:55,137 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,141 | INFO | Music 0.281 0.000 0.183 ✓ +2026-07-13 08:30:55,141 | INFO | Animal 0.115 0.000 0.075 ✗ +2026-07-13 08:30:55,141 | INFO | → WINNER: Music (combined=0.183) +2026-07-13 08:30:55,168 | INFO | +[1302.20s] AMBIENT | scene='' +2026-07-13 08:30:55,168 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,169 | INFO | Music 0.902 0.000 0.586 ✓ +2026-07-13 08:30:55,169 | INFO | Theremin 0.291 0.000 0.189 ✓ +2026-07-13 08:30:55,169 | INFO | Humming 0.127 0.000 0.083 ✗ +2026-07-13 08:30:55,169 | INFO | Musical instrument 0.055 0.000 0.036 ✗ +2026-07-13 08:30:55,169 | INFO | → WINNER: Music (combined=0.586) +2026-07-13 08:30:55,195 | INFO | +[1302.40s] AMBIENT | scene='' +2026-07-13 08:30:55,197 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,197 | INFO | Music 0.890 0.000 0.578 ✓ +2026-07-13 08:30:55,197 | INFO | Theremin 0.239 0.000 0.155 ✓ +2026-07-13 08:30:55,197 | INFO | Humming 0.059 0.000 0.038 ✗ +2026-07-13 08:30:55,197 | INFO | → WINNER: Music (combined=0.578) +2026-07-13 08:30:55,224 | INFO | +[1305.00s] AMBIENT | scene='' +2026-07-13 08:30:55,224 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,224 | INFO | Sine wave 0.179 0.000 0.116 ✗ +2026-07-13 08:30:55,224 | INFO | Music 0.069 0.000 0.045 ✗ +2026-07-13 08:30:55,224 | INFO | Chirp tone 0.060 0.000 0.039 ✗ +2026-07-13 08:30:55,224 | INFO | → no winner +2026-07-13 08:30:55,252 | INFO | +[1305.20s] AMBIENT | scene='' +2026-07-13 08:30:55,252 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,253 | INFO | Singing bowl 0.239 0.000 0.155 ✓ +2026-07-13 08:30:55,253 | INFO | Music 0.167 0.000 0.109 ✗ +2026-07-13 08:30:55,253 | INFO | Chirp tone 0.121 0.000 0.079 ✗ +2026-07-13 08:30:55,253 | INFO | Sine wave 0.121 0.000 0.078 ✗ +2026-07-13 08:30:55,253 | INFO | Wind instrument, woodwind instrument 0.041 0.000 0.026 ✗ +2026-07-13 08:30:55,253 | INFO | → WINNER: Singing bowl (combined=0.155) +2026-07-13 08:30:55,276 | INFO | +[1305.40s] AMBIENT | scene='' +2026-07-13 08:30:55,276 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,276 | INFO | Music 0.432 0.000 0.281 ✓ +2026-07-13 08:30:55,276 | INFO | Singing bowl 0.372 0.000 0.242 ✓ +2026-07-13 08:30:55,276 | INFO | Chirp tone 0.118 0.000 0.076 ✗ +2026-07-13 08:30:55,276 | INFO | Sine wave 0.093 0.000 0.061 ✗ +2026-07-13 08:30:55,276 | INFO | Theremin 0.070 0.000 0.045 ✗ +2026-07-13 08:30:55,276 | INFO | → WINNER: Music (combined=0.281) +2026-07-13 08:30:55,301 | INFO | +[1305.60s] AMBIENT | scene='' +2026-07-13 08:30:55,301 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,301 | INFO | Music 0.630 0.000 0.409 ✓ +2026-07-13 08:30:55,301 | INFO | Theremin 0.253 0.000 0.164 ✓ +2026-07-13 08:30:55,301 | INFO | Singing bowl 0.219 0.000 0.142 ✓ +2026-07-13 08:30:55,301 | INFO | Musical instrument 0.063 0.000 0.041 ✗ +2026-07-13 08:30:55,301 | INFO | Chirp tone 0.061 0.000 0.040 ✗ +2026-07-13 08:30:55,301 | INFO | Whale vocalization 0.057 0.000 0.037 ✗ +2026-07-13 08:30:55,309 | INFO | → WINNER: Music (combined=0.409) +2026-07-13 08:30:55,335 | INFO | +[1305.80s] AMBIENT | scene='' +2026-07-13 08:30:55,335 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,335 | INFO | Music 0.768 0.000 0.499 ✓ +2026-07-13 08:30:55,335 | INFO | Theremin 0.405 0.000 0.263 ✓ +2026-07-13 08:30:55,335 | INFO | Singing bowl 0.176 0.000 0.114 ✗ +2026-07-13 08:30:55,335 | INFO | Musical instrument 0.094 0.000 0.061 ✗ +2026-07-13 08:30:55,335 | INFO | Ambient music 0.091 0.000 0.059 ✗ +2026-07-13 08:30:55,335 | INFO | New-age music 0.077 0.000 0.050 ✗ +2026-07-13 08:30:55,335 | INFO | → WINNER: Music (combined=0.499) +2026-07-13 08:30:55,359 | INFO | +[1306.00s] AMBIENT | scene='' +2026-07-13 08:30:55,359 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,359 | INFO | Music 0.505 0.000 0.329 ✓ +2026-07-13 08:30:55,359 | INFO | Theremin 0.436 0.000 0.284 ✓ +2026-07-13 08:30:55,359 | INFO | Humming 0.065 0.000 0.042 ✗ +2026-07-13 08:30:55,359 | INFO | Musical instrument 0.062 0.000 0.040 ✗ +2026-07-13 08:30:55,359 | INFO | → WINNER: Music (combined=0.329) +2026-07-13 08:30:55,384 | INFO | +[1306.20s] AMBIENT | scene='' +2026-07-13 08:30:55,384 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,392 | INFO | Theremin 0.284 0.000 0.184 ✓ +2026-07-13 08:30:55,393 | INFO | Music 0.267 0.000 0.174 ✓ +2026-07-13 08:30:55,393 | INFO | Whale vocalization 0.242 0.000 0.157 ✓ +2026-07-13 08:30:55,393 | INFO | Humming 0.056 0.000 0.036 ✗ +2026-07-13 08:30:55,393 | INFO | → WINNER: Theremin (combined=0.184) +2026-07-13 08:30:55,418 | INFO | +[1306.40s] AMBIENT | scene='' +2026-07-13 08:30:55,418 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,418 | INFO | Howl 0.370 0.000 0.241 ✓ +2026-07-13 08:30:55,418 | INFO | Animal 0.225 0.000 0.146 ✓ +2026-07-13 08:30:55,418 | INFO | Music 0.202 0.000 0.131 ✓ +2026-07-13 08:30:55,418 | INFO | Canidae, dogs, wolves 0.169 0.000 0.110 ✗ +2026-07-13 08:30:55,418 | INFO | Dog 0.117 0.000 0.076 ✗ +2026-07-13 08:30:55,418 | INFO | Theremin 0.109 0.000 0.071 ✗ +2026-07-13 08:30:55,418 | INFO | → WINNER: Howl (combined=0.241) +2026-07-13 08:30:55,446 | INFO | +[1306.60s] AMBIENT | scene='' +2026-07-13 08:30:55,450 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,450 | INFO | Howl 0.369 0.000 0.240 ✓ +2026-07-13 08:30:55,450 | INFO | Music 0.226 0.000 0.147 ✓ +2026-07-13 08:30:55,450 | INFO | Animal 0.144 0.000 0.094 ✗ +2026-07-13 08:30:55,450 | INFO | Canidae, dogs, wolves 0.121 0.000 0.079 ✗ +2026-07-13 08:30:55,450 | INFO | Theremin 0.099 0.000 0.064 ✗ +2026-07-13 08:30:55,450 | INFO | Siren 0.087 0.000 0.056 ✗ +2026-07-13 08:30:55,450 | INFO | → WINNER: Howl (combined=0.240) +2026-07-13 08:30:55,478 | INFO | +[1306.80s] AMBIENT | scene='' +2026-07-13 08:30:55,478 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,478 | INFO | Music 0.796 0.000 0.517 ✓ +2026-07-13 08:30:55,478 | INFO | Theremin 0.439 0.000 0.285 ✓ +2026-07-13 08:30:55,478 | INFO | Musical instrument 0.106 0.000 0.069 ✗ +2026-07-13 08:30:55,478 | INFO | → WINNER: Music (combined=0.517) +2026-07-13 08:30:55,498 | INFO | +[1307.00s] AMBIENT | scene='' +2026-07-13 08:30:55,498 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,507 | INFO | Music 0.870 0.000 0.565 ✓ +2026-07-13 08:30:55,507 | INFO | Theremin 0.861 0.000 0.559 ✓ +2026-07-13 08:30:55,507 | INFO | Musical instrument 0.120 0.000 0.078 ✗ +2026-07-13 08:30:55,507 | INFO | → WINNER: Music (combined=0.565) +2026-07-13 08:30:55,531 | INFO | +[1307.20s] AMBIENT | scene='' +2026-07-13 08:30:55,531 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,531 | INFO | Theremin 0.899 0.000 0.585 ✓ +2026-07-13 08:30:55,531 | INFO | Music 0.868 0.000 0.565 ✓ +2026-07-13 08:30:55,531 | INFO | Musical instrument 0.208 0.000 0.135 ✓ +2026-07-13 08:30:55,531 | INFO | → WINNER: Theremin (combined=0.585) +2026-07-13 08:30:55,557 | INFO | +[1307.40s] AMBIENT | scene='' +2026-07-13 08:30:55,557 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,557 | INFO | Theremin 0.933 0.000 0.606 ✓ +2026-07-13 08:30:55,557 | INFO | Music 0.912 0.000 0.593 ✓ +2026-07-13 08:30:55,557 | INFO | Musical instrument 0.240 0.000 0.156 ✓ +2026-07-13 08:30:55,557 | INFO | Inside, small room 0.099 0.000 0.064 ✗ +2026-07-13 08:30:55,557 | INFO | → WINNER: Theremin (combined=0.606) +2026-07-13 08:30:55,588 | INFO | +[1307.60s] AMBIENT | scene='' +2026-07-13 08:30:55,588 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,588 | INFO | Music 0.891 0.000 0.579 ✓ +2026-07-13 08:30:55,588 | INFO | Theremin 0.819 0.000 0.532 ✓ +2026-07-13 08:30:55,588 | INFO | Musical instrument 0.117 0.000 0.076 ✗ +2026-07-13 08:30:55,588 | INFO | Inside, small room 0.082 0.000 0.053 ✗ +2026-07-13 08:30:55,588 | INFO | → WINNER: Music (combined=0.579) +2026-07-13 08:30:55,613 | INFO | +[1307.80s] AMBIENT | scene='' +2026-07-13 08:30:55,613 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,613 | INFO | Music 0.625 0.000 0.406 ✓ +2026-07-13 08:30:55,613 | INFO | Theremin 0.295 0.000 0.192 ✓ +2026-07-13 08:30:55,613 | INFO | Flute 0.106 0.000 0.069 ✗ +2026-07-13 08:30:55,613 | INFO | Musical instrument 0.087 0.000 0.057 ✗ +2026-07-13 08:30:55,613 | INFO | Wind instrument, woodwind instrument 0.038 0.000 0.025 ✗ +2026-07-13 08:30:55,613 | INFO | → WINNER: Music (combined=0.406) +2026-07-13 08:30:55,645 | INFO | +[1308.00s] AMBIENT | scene='' +2026-07-13 08:30:55,645 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,645 | INFO | Music 0.747 0.000 0.485 ✓ +2026-07-13 08:30:55,645 | INFO | Theremin 0.164 0.000 0.106 ✗ +2026-07-13 08:30:55,645 | INFO | → WINNER: Music (combined=0.485) +2026-07-13 08:30:55,670 | INFO | +[1308.20s] AMBIENT | scene='' +2026-07-13 08:30:55,670 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,670 | INFO | Music 0.201 0.000 0.130 ✓ +2026-07-13 08:30:55,670 | INFO | Singing 0.096 0.000 0.062 ✗ +2026-07-13 08:30:55,670 | INFO | → WINNER: Music (combined=0.130) +2026-07-13 08:30:55,694 | INFO | +[1308.40s] AMBIENT | scene='' +2026-07-13 08:30:55,694 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,694 | INFO | Music 0.572 0.000 0.372 ✓ +2026-07-13 08:30:55,694 | INFO | Mantra 0.090 0.000 0.059 ✗ +2026-07-13 08:30:55,694 | INFO | Humming 0.083 0.000 0.054 ✗ +2026-07-13 08:30:55,694 | INFO | Singing 0.079 0.000 0.052 ✗ +2026-07-13 08:30:55,702 | INFO | → WINNER: Music (combined=0.372) +2026-07-13 08:30:55,727 | INFO | +[1308.60s] AMBIENT | scene='' +2026-07-13 08:30:55,727 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,727 | INFO | Animal 0.606 0.000 0.394 ✓ +2026-07-13 08:30:55,727 | INFO | Dog 0.533 0.000 0.346 ✓ +2026-07-13 08:30:55,727 | INFO | Domestic animals, pets 0.484 0.000 0.315 ✓ +2026-07-13 08:30:55,727 | INFO | Music 0.318 0.000 0.207 ✓ +2026-07-13 08:30:55,727 | INFO | Bow-wow 0.265 0.000 0.172 ✓ +2026-07-13 08:30:55,727 | INFO | Yip 0.201 0.000 0.131 ✓ +2026-07-13 08:30:55,727 | INFO | → WINNER: Animal (combined=0.394) +2026-07-13 08:30:55,751 | INFO | +[1308.80s] AMBIENT | scene='' +2026-07-13 08:30:55,751 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,751 | INFO | Music 0.526 0.000 0.342 ✓ +2026-07-13 08:30:55,751 | INFO | Dog 0.182 0.000 0.118 ✗ +2026-07-13 08:30:55,751 | INFO | Animal 0.159 0.000 0.103 ✗ +2026-07-13 08:30:55,751 | INFO | Domestic animals, pets 0.145 0.000 0.094 ✗ +2026-07-13 08:30:55,751 | INFO | Bow-wow 0.131 0.000 0.085 ✗ +2026-07-13 08:30:55,757 | INFO | Bark 0.068 0.000 0.044 ✗ +2026-07-13 08:30:55,757 | INFO | → WINNER: Music (combined=0.342) +2026-07-13 08:30:55,780 | INFO | +[1309.00s] AMBIENT | scene='' +2026-07-13 08:30:55,784 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,784 | INFO | Music 0.564 0.000 0.367 ✓ +2026-07-13 08:30:55,785 | INFO | → WINNER: Music (combined=0.367) +2026-07-13 08:30:55,808 | INFO | +[1309.20s] AMBIENT | scene='' +2026-07-13 08:30:55,808 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,808 | INFO | Music 0.257 0.000 0.167 ✓ +2026-07-13 08:30:55,808 | INFO | Animal 0.239 0.000 0.155 ✓ +2026-07-13 08:30:55,808 | INFO | Dog 0.226 0.000 0.147 ✓ +2026-07-13 08:30:55,808 | INFO | Domestic animals, pets 0.214 0.000 0.139 ✓ +2026-07-13 08:30:55,808 | INFO | Bow-wow 0.141 0.000 0.091 ✗ +2026-07-13 08:30:55,808 | INFO | Hum 0.081 0.000 0.052 ✗ +2026-07-13 08:30:55,808 | INFO | → WINNER: Music (combined=0.167) +2026-07-13 08:30:55,833 | INFO | +[1309.40s] AMBIENT | scene='' +2026-07-13 08:30:55,833 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,833 | INFO | Animal 0.319 0.000 0.208 ✓ +2026-07-13 08:30:55,833 | INFO | Domestic animals, pets 0.174 0.000 0.113 ✗ +2026-07-13 08:30:55,833 | INFO | Music 0.163 0.000 0.106 ✗ +2026-07-13 08:30:55,833 | INFO | → WINNER: Animal (combined=0.208) +2026-07-13 08:30:55,867 | INFO | +[1309.60s] AMBIENT | scene='' +2026-07-13 08:30:55,867 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,867 | INFO | Music 0.210 0.000 0.137 ✓ +2026-07-13 08:30:55,867 | INFO | Whale vocalization 0.136 0.000 0.088 ✗ +2026-07-13 08:30:55,867 | INFO | Animal 0.130 0.000 0.084 ✗ +2026-07-13 08:30:55,867 | INFO | Theremin 0.054 0.000 0.035 ✗ +2026-07-13 08:30:55,867 | INFO | Hum 0.052 0.000 0.034 ✗ +2026-07-13 08:30:55,867 | INFO | → WINNER: Music (combined=0.137) +2026-07-13 08:30:55,894 | INFO | +[1312.00s] AMBIENT | scene='' +2026-07-13 08:30:55,894 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,894 | INFO | Music 0.255 0.000 0.166 ✓ +2026-07-13 08:30:55,894 | INFO | → WINNER: Music (combined=0.166) +2026-07-13 08:30:55,914 | INFO | +[1312.20s] AMBIENT | scene='' +2026-07-13 08:30:55,914 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,914 | INFO | Music 0.364 0.000 0.237 ✓ +2026-07-13 08:30:55,922 | INFO | Theremin 0.134 0.000 0.087 ✗ +2026-07-13 08:30:55,923 | INFO | Humming 0.086 0.000 0.056 ✗ +2026-07-13 08:30:55,923 | INFO | Inside, small room 0.066 0.000 0.043 ✗ +2026-07-13 08:30:55,923 | INFO | → WINNER: Music (combined=0.237) +2026-07-13 08:30:55,947 | INFO | +[1312.40s] AMBIENT | scene='' +2026-07-13 08:30:55,947 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,947 | INFO | Music 0.300 0.000 0.195 ✓ +2026-07-13 08:30:55,947 | INFO | Theremin 0.083 0.000 0.054 ✗ +2026-07-13 08:30:55,947 | INFO | Humming 0.066 0.000 0.043 ✗ +2026-07-13 08:30:55,947 | INFO | → WINNER: Music (combined=0.195) +2026-07-13 08:30:55,972 | INFO | +[1312.60s] AMBIENT | scene='' +2026-07-13 08:30:55,972 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:55,972 | INFO | Music 0.228 0.000 0.148 ✓ +2026-07-13 08:30:55,972 | INFO | Whale vocalization 0.102 0.000 0.067 ✗ +2026-07-13 08:30:55,972 | INFO | Theremin 0.101 0.000 0.066 ✗ +2026-07-13 08:30:55,972 | INFO | Humming 0.089 0.000 0.058 ✗ +2026-07-13 08:30:55,972 | INFO | → WINNER: Music (combined=0.148) +2026-07-13 08:30:56,005 | INFO | +[1312.80s] AMBIENT | scene='' +2026-07-13 08:30:56,005 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,005 | INFO | Theremin 0.406 0.000 0.264 ✓ +2026-07-13 08:30:56,005 | INFO | Music 0.310 0.000 0.201 ✓ +2026-07-13 08:30:56,005 | INFO | Whale vocalization 0.235 0.000 0.153 ✓ +2026-07-13 08:30:56,005 | INFO | Animal 0.090 0.000 0.059 ✗ +2026-07-13 08:30:56,005 | INFO | Musical instrument 0.057 0.000 0.037 ✗ +2026-07-13 08:30:56,005 | INFO | → WINNER: Theremin (combined=0.264) +2026-07-13 08:30:56,030 | INFO | +[1313.00s] AMBIENT | scene='' +2026-07-13 08:30:56,030 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,030 | INFO | Music 0.261 0.000 0.170 ✓ +2026-07-13 08:30:56,030 | INFO | Singing bowl 0.105 0.000 0.068 ✗ +2026-07-13 08:30:56,030 | INFO | Whale vocalization 0.101 0.000 0.066 ✗ +2026-07-13 08:30:56,030 | INFO | Theremin 0.057 0.000 0.037 ✗ +2026-07-13 08:30:56,030 | INFO | Musical instrument 0.055 0.000 0.036 ✗ +2026-07-13 08:30:56,030 | INFO | → WINNER: Music (combined=0.170) +2026-07-13 08:30:56,060 | INFO | +[1313.20s] AMBIENT | scene='' +2026-07-13 08:30:56,061 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,061 | INFO | Music 0.268 0.000 0.174 ✓ +2026-07-13 08:30:56,062 | INFO | Animal 0.174 0.000 0.113 ✗ +2026-07-13 08:30:56,062 | INFO | Whale vocalization 0.171 0.000 0.111 ✗ +2026-07-13 08:30:56,062 | INFO | Theremin 0.160 0.000 0.104 ✗ +2026-07-13 08:30:56,062 | INFO | → WINNER: Music (combined=0.174) +2026-07-13 08:30:56,088 | INFO | +[1313.40s] AMBIENT | scene='' +2026-07-13 08:30:56,088 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,088 | INFO | Cat 0.516 0.000 0.335 ✓ +2026-07-13 08:30:56,088 | INFO | Animal 0.504 0.000 0.328 ✓ +2026-07-13 08:30:56,088 | INFO | Domestic animals, pets 0.458 0.000 0.297 ✓ +2026-07-13 08:30:56,088 | INFO | Meow 0.303 0.000 0.197 ✓ +2026-07-13 08:30:56,088 | INFO | Music 0.214 0.000 0.140 ✓ +2026-07-13 08:30:56,088 | INFO | → WINNER: Cat (combined=0.335) +2026-07-13 08:30:56,111 | INFO | +[1313.60s] AMBIENT | scene='' +2026-07-13 08:30:56,111 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,111 | INFO | Music 0.495 0.000 0.322 ✓ +2026-07-13 08:30:56,111 | INFO | Theremin 0.279 0.000 0.181 ✓ +2026-07-13 08:30:56,111 | INFO | Animal 0.161 0.000 0.104 ✗ +2026-07-13 08:30:56,111 | INFO | Humming 0.069 0.000 0.045 ✗ +2026-07-13 08:30:56,111 | INFO | Whale vocalization 0.067 0.000 0.044 ✗ +2026-07-13 08:30:56,119 | INFO | → WINNER: Music (combined=0.322) +2026-07-13 08:30:56,144 | INFO | +[1313.80s] AMBIENT | scene='' +2026-07-13 08:30:56,144 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,144 | INFO | Music 0.552 0.000 0.359 ✓ +2026-07-13 08:30:56,144 | INFO | Theremin 0.062 0.000 0.040 ✗ +2026-07-13 08:30:56,144 | INFO | → WINNER: Music (combined=0.359) +2026-07-13 08:30:56,172 | INFO | +[1314.00s] AMBIENT | scene='' +2026-07-13 08:30:56,173 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,173 | INFO | Theremin 0.653 0.000 0.425 ✓ +2026-07-13 08:30:56,173 | INFO | Music 0.631 0.000 0.410 ✓ +2026-07-13 08:30:56,174 | INFO | Musical instrument 0.058 0.000 0.038 ✗ +2026-07-13 08:30:56,174 | INFO | → WINNER: Theremin (combined=0.425) +2026-07-13 08:30:56,193 | INFO | +[1314.20s] AMBIENT | scene='' +2026-07-13 08:30:56,201 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,201 | INFO | Music 0.627 0.000 0.408 ✓ +2026-07-13 08:30:56,202 | INFO | Theremin 0.377 0.000 0.245 ✓ +2026-07-13 08:30:56,202 | INFO | → WINNER: Music (combined=0.408) +2026-07-13 08:30:56,226 | INFO | +[1314.40s] AMBIENT | scene='' +2026-07-13 08:30:56,226 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,226 | INFO | Theremin 0.490 0.000 0.319 ✓ +2026-07-13 08:30:56,226 | INFO | Music 0.264 0.000 0.171 ✓ +2026-07-13 08:30:56,226 | INFO | Humming 0.144 0.000 0.094 ✗ +2026-07-13 08:30:56,226 | INFO | Whale vocalization 0.114 0.000 0.074 ✗ +2026-07-13 08:30:56,226 | INFO | → WINNER: Theremin (combined=0.319) +2026-07-13 08:30:56,250 | INFO | +[1314.60s] AMBIENT | scene='' +2026-07-13 08:30:56,250 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,250 | INFO | Animal 0.279 0.000 0.181 ✓ +2026-07-13 08:30:56,250 | INFO | Music 0.104 0.000 0.068 ✗ +2026-07-13 08:30:56,257 | INFO | Humming 0.053 0.000 0.035 ✗ +2026-07-13 08:30:56,257 | INFO | → WINNER: Animal (combined=0.181) +2026-07-13 08:30:56,282 | INFO | +[1314.80s] AMBIENT | scene='' +2026-07-13 08:30:56,282 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,282 | INFO | Music 0.367 0.000 0.239 ✓ +2026-07-13 08:30:56,282 | INFO | Humming 0.138 0.000 0.089 ✗ +2026-07-13 08:30:56,282 | INFO | Theremin 0.103 0.000 0.067 ✗ +2026-07-13 08:30:56,282 | INFO | Whale vocalization 0.061 0.000 0.040 ✗ +2026-07-13 08:30:56,282 | INFO | → WINNER: Music (combined=0.239) +2026-07-13 08:30:56,308 | INFO | +[1315.00s] AMBIENT | scene='' +2026-07-13 08:30:56,308 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,308 | INFO | Music 0.675 0.000 0.439 ✓ +2026-07-13 08:30:56,308 | INFO | Theremin 0.140 0.000 0.091 ✗ +2026-07-13 08:30:56,308 | INFO | Humming 0.081 0.000 0.053 ✗ +2026-07-13 08:30:56,308 | INFO | → WINNER: Music (combined=0.439) +2026-07-13 08:30:56,340 | INFO | +[1315.20s] AMBIENT | scene='' +2026-07-13 08:30:56,340 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,340 | INFO | Music 0.828 0.000 0.538 ✓ +2026-07-13 08:30:56,340 | INFO | Theremin 0.253 0.000 0.165 ✓ +2026-07-13 08:30:56,340 | INFO | Singing 0.086 0.000 0.056 ✗ +2026-07-13 08:30:56,340 | INFO | Humming 0.072 0.000 0.047 ✗ +2026-07-13 08:30:56,340 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:56,364 | INFO | +[1315.40s] AMBIENT | scene='' +2026-07-13 08:30:56,364 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,364 | INFO | Music 0.486 0.000 0.316 ✓ +2026-07-13 08:30:56,364 | INFO | Singing 0.090 0.000 0.058 ✗ +2026-07-13 08:30:56,364 | INFO | Theremin 0.059 0.000 0.039 ✗ +2026-07-13 08:30:56,364 | INFO | Humming 0.059 0.000 0.038 ✗ +2026-07-13 08:30:56,364 | INFO | → WINNER: Music (combined=0.316) +2026-07-13 08:30:56,388 | INFO | +[1315.60s] AMBIENT | scene='' +2026-07-13 08:30:56,388 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,388 | INFO | Animal 0.340 0.000 0.221 ✓ +2026-07-13 08:30:56,396 | INFO | Music 0.286 0.000 0.186 ✓ +2026-07-13 08:30:56,396 | INFO | Domestic animals, pets 0.187 0.000 0.122 ✓ +2026-07-13 08:30:56,397 | INFO | Dog 0.184 0.000 0.119 ✗ +2026-07-13 08:30:56,397 | INFO | Canidae, dogs, wolves 0.112 0.000 0.072 ✗ +2026-07-13 08:30:56,397 | INFO | Inside, small room 0.052 0.000 0.034 ✗ +2026-07-13 08:30:56,397 | INFO | → WINNER: Animal (combined=0.221) +2026-07-13 08:30:56,420 | INFO | +[1315.80s] AMBIENT | scene='' +2026-07-13 08:30:56,420 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,420 | INFO | Howl 0.458 0.000 0.298 ✓ +2026-07-13 08:30:56,420 | INFO | Animal 0.295 0.000 0.192 ✓ +2026-07-13 08:30:56,420 | INFO | Canidae, dogs, wolves 0.216 0.000 0.140 ✓ +2026-07-13 08:30:56,420 | INFO | Dog 0.190 0.000 0.124 ✓ +2026-07-13 08:30:56,420 | INFO | Domestic animals, pets 0.171 0.000 0.111 ✗ +2026-07-13 08:30:56,420 | INFO | Music 0.153 0.000 0.100 ✗ +2026-07-13 08:30:56,420 | INFO | → WINNER: Howl (combined=0.298) +2026-07-13 08:30:56,452 | INFO | +[1316.00s] AMBIENT | scene='' +2026-07-13 08:30:56,452 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,453 | INFO | Music 0.254 0.000 0.165 ✓ +2026-07-13 08:30:56,453 | INFO | Canidae, dogs, wolves 0.112 0.000 0.073 ✗ +2026-07-13 08:30:56,453 | INFO | Animal 0.110 0.000 0.071 ✗ +2026-07-13 08:30:56,453 | INFO | Singing bowl 0.105 0.000 0.068 ✗ +2026-07-13 08:30:56,453 | INFO | Theremin 0.078 0.000 0.051 ✗ +2026-07-13 08:30:56,453 | INFO | → WINNER: Music (combined=0.165) +2026-07-13 08:30:56,479 | INFO | +[1316.20s] AMBIENT | scene='' +2026-07-13 08:30:56,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,479 | INFO | Howl 0.566 0.000 0.368 ✓ +2026-07-13 08:30:56,479 | INFO | Canidae, dogs, wolves 0.300 0.000 0.195 ✓ +2026-07-13 08:30:56,479 | INFO | Animal 0.261 0.000 0.169 ✓ +2026-07-13 08:30:56,479 | INFO | Music 0.183 0.000 0.119 ✗ +2026-07-13 08:30:56,479 | INFO | Dog 0.171 0.000 0.111 ✗ +2026-07-13 08:30:56,479 | INFO | Singing bowl 0.154 0.000 0.100 ✗ +2026-07-13 08:30:56,479 | INFO | → WINNER: Howl (combined=0.368) +2026-07-13 08:30:56,509 | INFO | +[1316.40s] AMBIENT | scene='' +2026-07-13 08:30:56,509 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,509 | INFO | Civil defense siren 0.151 0.000 0.098 ✗ +2026-07-13 08:30:56,509 | INFO | Music 0.146 0.000 0.095 ✗ +2026-07-13 08:30:56,509 | INFO | Singing bowl 0.129 0.000 0.084 ✗ +2026-07-13 08:30:56,509 | INFO | Siren 0.109 0.000 0.071 ✗ +2026-07-13 08:30:56,509 | INFO | Canidae, dogs, wolves 0.100 0.000 0.065 ✗ +2026-07-13 08:30:56,511 | INFO | → no winner +2026-07-13 08:30:56,536 | INFO | +[1316.60s] AMBIENT | scene='' +2026-07-13 08:30:56,536 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,536 | INFO | Singing bowl 0.600 0.000 0.390 ✓ +2026-07-13 08:30:56,536 | INFO | Music 0.255 0.000 0.166 ✓ +2026-07-13 08:30:56,536 | INFO | Chirp tone 0.128 0.000 0.083 ✗ +2026-07-13 08:30:56,536 | INFO | Sine wave 0.083 0.000 0.054 ✗ +2026-07-13 08:30:56,536 | INFO | → WINNER: Singing bowl (combined=0.390) +2026-07-13 08:30:56,563 | INFO | +[1316.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,563 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,563 | INFO | Singing bowl 0.730 0.000 0.475 ✓ +2026-07-13 08:30:56,563 | INFO | Chirp tone 0.107 0.395 0.208 ✓ +2026-07-13 08:30:56,563 | INFO | Music 0.269 0.000 0.175 ✓ +2026-07-13 08:30:56,563 | INFO | → WINNER: Singing bowl (combined=0.475) +2026-07-13 08:30:56,585 | INFO | +[1317.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,593 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,594 | INFO | Singing bowl 0.525 0.000 0.342 ✓ +2026-07-13 08:30:56,594 | INFO | Music 0.399 0.000 0.259 ✓ +2026-07-13 08:30:56,594 | INFO | Musical instrument 0.060 0.000 0.039 ✗ +2026-07-13 08:30:56,594 | INFO | → WINNER: Singing bowl (combined=0.342) +2026-07-13 08:30:56,618 | INFO | +[1317.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,618 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,618 | INFO | Singing bowl 0.383 0.000 0.249 ✓ +2026-07-13 08:30:56,618 | INFO | Music 0.227 0.000 0.147 ✓ +2026-07-13 08:30:56,618 | INFO | → WINNER: Singing bowl (combined=0.249) +2026-07-13 08:30:56,642 | INFO | +[1317.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,650 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,650 | INFO | Music 0.388 0.000 0.252 ✓ +2026-07-13 08:30:56,650 | INFO | Singing bowl 0.148 0.000 0.097 ✗ +2026-07-13 08:30:56,650 | INFO | Musical instrument 0.070 0.000 0.046 ✗ +2026-07-13 08:30:56,650 | INFO | Inside, small room 0.054 0.000 0.035 ✗ +2026-07-13 08:30:56,650 | INFO | → WINNER: Music (combined=0.252) +2026-07-13 08:30:56,674 | INFO | +[1317.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,674 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,674 | INFO | Music 0.329 0.000 0.214 ✓ +2026-07-13 08:30:56,674 | INFO | Tick-tock 0.056 0.000 0.036 ✗ +2026-07-13 08:30:56,674 | INFO | → WINNER: Music (combined=0.214) +2026-07-13 08:30:56,704 | INFO | +[1317.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,705 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,705 | INFO | Music 0.187 0.000 0.121 ✓ +2026-07-13 08:30:56,705 | INFO | → WINNER: Music (combined=0.121) +2026-07-13 08:30:56,732 | INFO | +[1318.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,732 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,732 | INFO | Music 0.226 0.000 0.147 ✓ +2026-07-13 08:30:56,732 | INFO | Vehicle 0.058 0.000 0.038 ✗ +2026-07-13 08:30:56,732 | INFO | → WINNER: Music (combined=0.147) +2026-07-13 08:30:56,757 | INFO | +[1318.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,757 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,757 | INFO | Clip-clop 0.177 0.000 0.115 ✗ +2026-07-13 08:30:56,757 | INFO | Animal 0.171 0.000 0.111 ✗ +2026-07-13 08:30:56,757 | INFO | Horse 0.170 0.000 0.110 ✗ +2026-07-13 08:30:56,757 | INFO | Music 0.100 0.000 0.065 ✗ +2026-07-13 08:30:56,757 | INFO | Vehicle 0.073 0.000 0.047 ✗ +2026-07-13 08:30:56,757 | INFO | Run 0.049 0.000 0.032 ✗ +2026-07-13 08:30:56,757 | INFO | → no winner +2026-07-13 08:30:56,788 | INFO | +[1318.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,788 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,788 | INFO | Animal 0.571 0.000 0.371 ✓ +2026-07-13 08:30:56,788 | INFO | Dog 0.406 0.000 0.264 ✓ +2026-07-13 08:30:56,788 | INFO | Domestic animals, pets 0.331 0.000 0.215 ✓ +2026-07-13 08:30:56,788 | INFO | Bow-wow 0.190 0.000 0.124 ✓ +2026-07-13 08:30:56,788 | INFO | Canidae, dogs, wolves 0.096 0.000 0.062 ✗ +2026-07-13 08:30:56,788 | INFO | Bark 0.089 0.000 0.058 ✗ +2026-07-13 08:30:56,788 | INFO | → WINNER: Animal (combined=0.371) +2026-07-13 08:30:56,816 | INFO | +[1318.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,816 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,816 | INFO | Animal 0.746 0.000 0.485 ✓ +2026-07-13 08:30:56,816 | INFO | Dog 0.511 0.000 0.332 ✓ +2026-07-13 08:30:56,816 | INFO | Domestic animals, pets 0.409 0.000 0.266 ✓ +2026-07-13 08:30:56,816 | INFO | Bow-wow 0.209 0.000 0.136 ✓ +2026-07-13 08:30:56,816 | INFO | Whimper (dog) 0.117 0.000 0.076 ✗ +2026-07-13 08:30:56,816 | INFO | Canidae, dogs, wolves 0.114 0.000 0.074 ✗ +2026-07-13 08:30:56,816 | INFO | → WINNER: Animal (combined=0.485) +2026-07-13 08:30:56,845 | INFO | +[1318.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,845 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,845 | INFO | Animal 0.682 0.000 0.443 ✓ +2026-07-13 08:30:56,845 | INFO | Dog 0.645 0.000 0.419 ✓ +2026-07-13 08:30:56,845 | INFO | Domestic animals, pets 0.540 0.000 0.351 ✓ +2026-07-13 08:30:56,845 | INFO | Bow-wow 0.508 0.000 0.330 ✓ +2026-07-13 08:30:56,845 | INFO | Bark 0.265 0.000 0.172 ✓ +2026-07-13 08:30:56,845 | INFO | Whimper (dog) 0.182 0.000 0.119 ✗ +2026-07-13 08:30:56,845 | INFO | → WINNER: Animal (combined=0.443) +2026-07-13 08:30:56,872 | INFO | +[1319.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,872 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,872 | INFO | Bow-wow 0.565 0.000 0.367 ✓ +2026-07-13 08:30:56,872 | INFO | Dog 0.565 0.000 0.367 ✓ +2026-07-13 08:30:56,872 | INFO | Animal 0.494 0.000 0.321 ✓ +2026-07-13 08:30:56,872 | INFO | Domestic animals, pets 0.426 0.000 0.277 ✓ +2026-07-13 08:30:56,872 | INFO | Bark 0.244 0.000 0.159 ✓ +2026-07-13 08:30:56,872 | INFO | Yip 0.173 0.000 0.113 ✗ +2026-07-13 08:30:56,872 | INFO | → WINNER: Bow-wow (combined=0.367) +2026-07-13 08:30:56,902 | INFO | +[1319.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,902 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,902 | INFO | Dog 0.511 0.000 0.332 ✓ +2026-07-13 08:30:56,902 | INFO | Animal 0.477 0.000 0.310 ✓ +2026-07-13 08:30:56,902 | INFO | Bow-wow 0.459 0.000 0.298 ✓ +2026-07-13 08:30:56,902 | INFO | Domestic animals, pets 0.408 0.000 0.265 ✓ +2026-07-13 08:30:56,902 | INFO | Bark 0.249 0.000 0.162 ✓ +2026-07-13 08:30:56,902 | INFO | Yip 0.131 0.000 0.085 ✗ +2026-07-13 08:30:56,902 | INFO | → WINNER: Dog (combined=0.332) +2026-07-13 08:30:56,927 | INFO | +[1319.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,927 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,927 | INFO | Animal 0.446 0.000 0.290 ✓ +2026-07-13 08:30:56,927 | INFO | Dog 0.446 0.000 0.290 ✓ +2026-07-13 08:30:56,927 | INFO | Bow-wow 0.404 0.000 0.263 ✓ +2026-07-13 08:30:56,927 | INFO | Domestic animals, pets 0.373 0.000 0.243 ✓ +2026-07-13 08:30:56,933 | INFO | Bark 0.162 0.000 0.105 ✗ +2026-07-13 08:30:56,933 | INFO | Yip 0.125 0.000 0.082 ✗ +2026-07-13 08:30:56,933 | INFO | → WINNER: Animal (combined=0.290) +2026-07-13 08:30:56,959 | INFO | +[1319.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,959 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,959 | INFO | Animal 0.290 0.000 0.188 ✓ +2026-07-13 08:30:56,959 | INFO | Bow-wow 0.212 0.000 0.138 ✓ +2026-07-13 08:30:56,959 | INFO | Dog 0.167 0.000 0.109 ✗ +2026-07-13 08:30:56,959 | INFO | Domestic animals, pets 0.144 0.000 0.093 ✗ +2026-07-13 08:30:56,959 | INFO | Chop 0.072 0.000 0.047 ✗ +2026-07-13 08:30:56,959 | INFO | Yip 0.071 0.000 0.046 ✗ +2026-07-13 08:30:56,959 | INFO | → WINNER: Animal (combined=0.188) +2026-07-13 08:30:56,987 | INFO | +[1319.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:56,987 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:56,987 | INFO | Animal 0.423 0.000 0.275 ✓ +2026-07-13 08:30:56,989 | INFO | Dog 0.248 0.000 0.161 ✓ +2026-07-13 08:30:56,989 | INFO | Bow-wow 0.204 0.000 0.133 ✓ +2026-07-13 08:30:56,989 | INFO | Domestic animals, pets 0.196 0.000 0.127 ✓ +2026-07-13 08:30:56,989 | INFO | Music 0.080 0.000 0.052 ✗ +2026-07-13 08:30:56,989 | INFO | Yip 0.073 0.000 0.047 ✗ +2026-07-13 08:30:56,989 | INFO | → WINNER: Animal (combined=0.275) +2026-07-13 08:30:57,016 | INFO | +[1320.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,017 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,017 | INFO | Animal 0.334 0.000 0.217 ✓ +2026-07-13 08:30:57,017 | INFO | Dog 0.118 0.000 0.077 ✗ +2026-07-13 08:30:57,017 | INFO | Bow-wow 0.109 0.000 0.071 ✗ +2026-07-13 08:30:57,017 | INFO | Domestic animals, pets 0.092 0.000 0.060 ✗ +2026-07-13 08:30:57,017 | INFO | Fireworks 0.066 0.000 0.043 ✗ +2026-07-13 08:30:57,017 | INFO | Chop 0.053 0.000 0.035 ✗ +2026-07-13 08:30:57,017 | INFO | → WINNER: Animal (combined=0.217) +2026-07-13 08:30:57,040 | INFO | +[1320.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,040 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,040 | INFO | Animal 0.425 0.000 0.277 ✓ +2026-07-13 08:30:57,040 | INFO | Domestic animals, pets 0.097 0.000 0.063 ✗ +2026-07-13 08:30:57,040 | INFO | Bird 0.043 0.000 0.028 ✗ +2026-07-13 08:30:57,040 | INFO | → WINNER: Animal (combined=0.277) +2026-07-13 08:30:57,066 | INFO | +[1320.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,066 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,066 | INFO | Animal 0.467 0.000 0.303 ✓ +2026-07-13 08:30:57,066 | INFO | Domestic animals, pets 0.250 0.000 0.162 ✓ +2026-07-13 08:30:57,066 | INFO | Dog 0.225 0.000 0.146 ✓ +2026-07-13 08:30:57,066 | INFO | Bow-wow 0.073 0.000 0.047 ✗ +2026-07-13 08:30:57,074 | INFO | Bird 0.048 0.000 0.031 ✗ +2026-07-13 08:30:57,074 | INFO | → WINNER: Animal (combined=0.303) +2026-07-13 08:30:57,098 | INFO | +[1320.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,098 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,098 | INFO | Animal 0.462 0.000 0.300 ✓ +2026-07-13 08:30:57,098 | INFO | Wild animals 0.120 0.000 0.078 ✗ +2026-07-13 08:30:57,098 | INFO | Bird 0.038 0.000 0.025 ✗ +2026-07-13 08:30:57,098 | INFO | → WINNER: Animal (combined=0.300) +2026-07-13 08:30:57,126 | INFO | +[1320.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,126 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,126 | INFO | Animal 0.492 0.000 0.320 ✓ +2026-07-13 08:30:57,126 | INFO | Wild animals 0.098 0.000 0.064 ✗ +2026-07-13 08:30:57,126 | INFO | Dog 0.092 0.000 0.060 ✗ +2026-07-13 08:30:57,131 | INFO | Bow-wow 0.062 0.000 0.040 ✗ +2026-07-13 08:30:57,131 | INFO | → WINNER: Animal (combined=0.320) +2026-07-13 08:30:57,156 | INFO | +[1321.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,167 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,167 | INFO | Animal 0.547 0.000 0.355 ✓ +2026-07-13 08:30:57,167 | INFO | Wild animals 0.105 0.000 0.069 ✗ +2026-07-13 08:30:57,167 | INFO | → WINNER: Animal (combined=0.355) +2026-07-13 08:30:57,197 | INFO | +[1321.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,197 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,197 | INFO | Animal 0.531 0.000 0.345 ✓ +2026-07-13 08:30:57,197 | INFO | Dog 0.236 0.000 0.154 ✓ +2026-07-13 08:30:57,197 | INFO | Domestic animals, pets 0.222 0.000 0.144 ✓ +2026-07-13 08:30:57,197 | INFO | Bow-wow 0.124 0.000 0.081 ✗ +2026-07-13 08:30:57,197 | INFO | Wild animals 0.105 0.000 0.068 ✗ +2026-07-13 08:30:57,197 | INFO | Yip 0.054 0.000 0.035 ✗ +2026-07-13 08:30:57,197 | INFO | → WINNER: Animal (combined=0.345) +2026-07-13 08:30:57,225 | INFO | +[1321.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,225 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,225 | INFO | Animal 0.640 0.000 0.416 ✓ +2026-07-13 08:30:57,225 | INFO | Dog 0.452 0.000 0.294 ✓ +2026-07-13 08:30:57,225 | INFO | Domestic animals, pets 0.437 0.000 0.284 ✓ +2026-07-13 08:30:57,225 | INFO | Bow-wow 0.195 0.000 0.127 ✓ +2026-07-13 08:30:57,225 | INFO | Canidae, dogs, wolves 0.148 0.000 0.096 ✗ +2026-07-13 08:30:57,225 | INFO | Whimper (dog) 0.121 0.000 0.078 ✗ +2026-07-13 08:30:57,225 | INFO | → WINNER: Animal (combined=0.416) +2026-07-13 08:30:57,254 | INFO | +[1321.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,254 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,254 | INFO | Animal 0.752 0.000 0.489 ✓ +2026-07-13 08:30:57,254 | INFO | Dog 0.556 0.000 0.361 ✓ +2026-07-13 08:30:57,254 | INFO | Domestic animals, pets 0.496 0.000 0.322 ✓ +2026-07-13 08:30:57,254 | INFO | Bow-wow 0.262 0.000 0.171 ✓ +2026-07-13 08:30:57,254 | INFO | Canidae, dogs, wolves 0.154 0.000 0.100 ✗ +2026-07-13 08:30:57,254 | INFO | Bark 0.154 0.000 0.100 ✗ +2026-07-13 08:30:57,254 | INFO | → WINNER: Animal (combined=0.489) +2026-07-13 08:30:57,279 | INFO | +[1321.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,279 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,279 | INFO | Animal 0.624 0.000 0.406 ✓ +2026-07-13 08:30:57,279 | INFO | Dog 0.588 0.000 0.382 ✓ +2026-07-13 08:30:57,279 | INFO | Domestic animals, pets 0.507 0.000 0.330 ✓ +2026-07-13 08:30:57,279 | INFO | Bow-wow 0.373 0.000 0.242 ✓ +2026-07-13 08:30:57,279 | INFO | Bark 0.345 0.000 0.224 ✓ +2026-07-13 08:30:57,279 | INFO | Canidae, dogs, wolves 0.126 0.000 0.082 ✗ +2026-07-13 08:30:57,279 | INFO | → WINNER: Animal (combined=0.406) +2026-07-13 08:30:57,302 | INFO | +[1322.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,311 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,311 | INFO | Dog 0.601 0.000 0.391 ✓ +2026-07-13 08:30:57,311 | INFO | Animal 0.572 0.000 0.372 ✓ +2026-07-13 08:30:57,311 | INFO | Domestic animals, pets 0.505 0.000 0.328 ✓ +2026-07-13 08:30:57,311 | INFO | Bow-wow 0.371 0.000 0.241 ✓ +2026-07-13 08:30:57,311 | INFO | Bark 0.357 0.000 0.232 ✓ +2026-07-13 08:30:57,311 | INFO | Canidae, dogs, wolves 0.104 0.000 0.068 ✗ +2026-07-13 08:30:57,311 | INFO | → WINNER: Dog (combined=0.391) +2026-07-13 08:30:57,336 | INFO | +[1322.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,336 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,336 | INFO | Dog 0.551 0.000 0.358 ✓ +2026-07-13 08:30:57,336 | INFO | Animal 0.520 0.000 0.338 ✓ +2026-07-13 08:30:57,336 | INFO | Domestic animals, pets 0.473 0.000 0.308 ✓ +2026-07-13 08:30:57,336 | INFO | Bow-wow 0.379 0.000 0.246 ✓ +2026-07-13 08:30:57,336 | INFO | Bark 0.299 0.000 0.194 ✓ +2026-07-13 08:30:57,336 | INFO | Yip 0.112 0.000 0.073 ✗ +2026-07-13 08:30:57,336 | INFO | → WINNER: Dog (combined=0.358) +2026-07-13 08:30:57,362 | INFO | +[1322.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,368 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,368 | INFO | Dog 0.691 0.000 0.449 ✓ +2026-07-13 08:30:57,368 | INFO | Animal 0.671 0.000 0.436 ✓ +2026-07-13 08:30:57,368 | INFO | Domestic animals, pets 0.618 0.000 0.402 ✓ +2026-07-13 08:30:57,368 | INFO | Bow-wow 0.511 0.000 0.332 ✓ +2026-07-13 08:30:57,368 | INFO | Bark 0.435 0.000 0.283 ✓ +2026-07-13 08:30:57,368 | INFO | Whimper (dog) 0.180 0.000 0.117 ✗ +2026-07-13 08:30:57,368 | INFO | → WINNER: Dog (combined=0.449) +2026-07-13 08:30:57,393 | INFO | +[1322.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,393 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,393 | INFO | Animal 0.587 0.000 0.381 ✓ +2026-07-13 08:30:57,393 | INFO | Dog 0.548 0.000 0.356 ✓ +2026-07-13 08:30:57,393 | INFO | Domestic animals, pets 0.484 0.000 0.315 ✓ +2026-07-13 08:30:57,393 | INFO | Bow-wow 0.438 0.000 0.285 ✓ +2026-07-13 08:30:57,393 | INFO | Bark 0.270 0.000 0.175 ✓ +2026-07-13 08:30:57,393 | INFO | Whimper (dog) 0.130 0.000 0.084 ✗ +2026-07-13 08:30:57,393 | INFO | → WINNER: Animal (combined=0.381) +2026-07-13 08:30:57,424 | INFO | +[1322.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,424 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,425 | INFO | Animal 0.636 0.000 0.413 ✓ +2026-07-13 08:30:57,425 | INFO | Dog 0.614 0.000 0.399 ✓ +2026-07-13 08:30:57,426 | INFO | Domestic animals, pets 0.509 0.000 0.331 ✓ +2026-07-13 08:30:57,426 | INFO | Bow-wow 0.445 0.000 0.289 ✓ +2026-07-13 08:30:57,426 | INFO | Bark 0.322 0.000 0.209 ✓ +2026-07-13 08:30:57,426 | INFO | Yip 0.125 0.000 0.082 ✗ +2026-07-13 08:30:57,426 | INFO | → WINNER: Animal (combined=0.413) +2026-07-13 08:30:57,450 | INFO | +[1323.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,450 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,450 | INFO | Dog 0.610 0.000 0.396 ✓ +2026-07-13 08:30:57,450 | INFO | Animal 0.572 0.000 0.372 ✓ +2026-07-13 08:30:57,450 | INFO | Domestic animals, pets 0.531 0.000 0.345 ✓ +2026-07-13 08:30:57,450 | INFO | Bow-wow 0.363 0.000 0.236 ✓ +2026-07-13 08:30:57,450 | INFO | Bark 0.342 0.000 0.222 ✓ +2026-07-13 08:30:57,450 | INFO | Yip 0.104 0.000 0.067 ✗ +2026-07-13 08:30:57,458 | INFO | → WINNER: Dog (combined=0.396) +2026-07-13 08:30:57,483 | INFO | +[1323.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,483 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,483 | INFO | Animal 0.510 0.000 0.331 ✓ +2026-07-13 08:30:57,483 | INFO | Dog 0.491 0.000 0.319 ✓ +2026-07-13 08:30:57,483 | INFO | Domestic animals, pets 0.438 0.000 0.284 ✓ +2026-07-13 08:30:57,483 | INFO | Bow-wow 0.299 0.000 0.194 ✓ +2026-07-13 08:30:57,483 | INFO | Bark 0.198 0.000 0.129 ✓ +2026-07-13 08:30:57,483 | INFO | Whimper (dog) 0.097 0.000 0.063 ✗ +2026-07-13 08:30:57,483 | INFO | → WINNER: Animal (combined=0.331) +2026-07-13 08:30:57,508 | INFO | +[1323.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,508 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,513 | INFO | Animal 0.747 0.000 0.485 ✓ +2026-07-13 08:30:57,513 | INFO | Dog 0.743 0.000 0.483 ✓ +2026-07-13 08:30:57,513 | INFO | Domestic animals, pets 0.661 0.000 0.430 ✓ +2026-07-13 08:30:57,513 | INFO | Bark 0.408 0.000 0.265 ✓ +2026-07-13 08:30:57,513 | INFO | Bow-wow 0.392 0.000 0.255 ✓ +2026-07-13 08:30:57,513 | INFO | Canidae, dogs, wolves 0.165 0.000 0.107 ✗ +2026-07-13 08:30:57,513 | INFO | → WINNER: Animal (combined=0.485) +2026-07-13 08:30:57,540 | INFO | +[1323.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,540 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,540 | INFO | Animal 0.630 0.000 0.410 ✓ +2026-07-13 08:30:57,540 | INFO | Dog 0.611 0.000 0.397 ✓ +2026-07-13 08:30:57,540 | INFO | Domestic animals, pets 0.537 0.000 0.349 ✓ +2026-07-13 08:30:57,540 | INFO | Bow-wow 0.444 0.000 0.288 ✓ +2026-07-13 08:30:57,540 | INFO | Bark 0.331 0.000 0.215 ✓ +2026-07-13 08:30:57,540 | INFO | Whimper (dog) 0.138 0.000 0.090 ✗ +2026-07-13 08:30:57,540 | INFO | → WINNER: Animal (combined=0.410) +2026-07-13 08:30:57,564 | INFO | +[1323.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,564 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,573 | INFO | Animal 0.665 0.000 0.432 ✓ +2026-07-13 08:30:57,573 | INFO | Dog 0.610 0.000 0.397 ✓ +2026-07-13 08:30:57,573 | INFO | Domestic animals, pets 0.545 0.000 0.354 ✓ +2026-07-13 08:30:57,573 | INFO | Bow-wow 0.385 0.000 0.250 ✓ +2026-07-13 08:30:57,573 | INFO | Bark 0.275 0.000 0.178 ✓ +2026-07-13 08:30:57,573 | INFO | Whimper (dog) 0.147 0.000 0.096 ✗ +2026-07-13 08:30:57,573 | INFO | → WINNER: Animal (combined=0.432) +2026-07-13 08:30:57,598 | INFO | +[1324.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,598 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,598 | INFO | Dog 0.801 0.000 0.520 ✓ +2026-07-13 08:30:57,598 | INFO | Animal 0.790 0.000 0.514 ✓ +2026-07-13 08:30:57,598 | INFO | Domestic animals, pets 0.696 0.000 0.453 ✓ +2026-07-13 08:30:57,598 | INFO | Bow-wow 0.639 0.000 0.416 ✓ +2026-07-13 08:30:57,598 | INFO | Bark 0.526 0.000 0.342 ✓ +2026-07-13 08:30:57,598 | INFO | Whimper (dog) 0.170 0.000 0.111 ✗ +2026-07-13 08:30:57,598 | INFO | → WINNER: Dog (combined=0.520) +2026-07-13 08:30:57,621 | INFO | +[1324.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,621 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,630 | INFO | Dog 0.703 0.000 0.457 ✓ +2026-07-13 08:30:57,630 | INFO | Animal 0.681 0.000 0.443 ✓ +2026-07-13 08:30:57,630 | INFO | Domestic animals, pets 0.619 0.000 0.402 ✓ +2026-07-13 08:30:57,630 | INFO | Bow-wow 0.540 0.000 0.351 ✓ +2026-07-13 08:30:57,630 | INFO | Bark 0.458 0.000 0.298 ✓ +2026-07-13 08:30:57,630 | INFO | Yip 0.163 0.000 0.106 ✗ +2026-07-13 08:30:57,630 | INFO | → WINNER: Dog (combined=0.457) +2026-07-13 08:30:57,658 | INFO | +[1324.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,658 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,658 | INFO | Animal 0.636 0.000 0.413 ✓ +2026-07-13 08:30:57,658 | INFO | Dog 0.555 0.000 0.361 ✓ +2026-07-13 08:30:57,658 | INFO | Domestic animals, pets 0.499 0.000 0.324 ✓ +2026-07-13 08:30:57,658 | INFO | Bow-wow 0.379 0.000 0.246 ✓ +2026-07-13 08:30:57,658 | INFO | Bark 0.274 0.000 0.178 ✓ +2026-07-13 08:30:57,658 | INFO | Whimper (dog) 0.108 0.000 0.070 ✗ +2026-07-13 08:30:57,658 | INFO | → WINNER: Animal (combined=0.413) +2026-07-13 08:30:57,688 | INFO | +[1324.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,688 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,688 | INFO | Animal 0.625 0.000 0.406 ✓ +2026-07-13 08:30:57,688 | INFO | Dog 0.408 0.000 0.266 ✓ +2026-07-13 08:30:57,688 | INFO | Domestic animals, pets 0.396 0.000 0.258 ✓ +2026-07-13 08:30:57,688 | INFO | Bow-wow 0.295 0.000 0.192 ✓ +2026-07-13 08:30:57,688 | INFO | Bird 0.183 0.000 0.119 ✗ +2026-07-13 08:30:57,688 | INFO | Bark 0.105 0.000 0.069 ✗ +2026-07-13 08:30:57,688 | INFO | → WINNER: Animal (combined=0.406) +2026-07-13 08:30:57,712 | INFO | +[1324.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,712 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,712 | INFO | Animal 0.550 0.000 0.358 ✓ +2026-07-13 08:30:57,712 | INFO | Dog 0.308 0.000 0.200 ✓ +2026-07-13 08:30:57,712 | INFO | Domestic animals, pets 0.268 0.000 0.174 ✓ +2026-07-13 08:30:57,712 | INFO | Bow-wow 0.218 0.000 0.142 ✓ +2026-07-13 08:30:57,712 | INFO | Bark 0.089 0.000 0.058 ✗ +2026-07-13 08:30:57,712 | INFO | Yip 0.071 0.000 0.046 ✗ +2026-07-13 08:30:57,712 | INFO | → WINNER: Animal (combined=0.358) +2026-07-13 08:30:57,745 | INFO | +[1325.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,745 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,745 | INFO | Animal 0.691 0.000 0.449 ✓ +2026-07-13 08:30:57,745 | INFO | Dog 0.604 0.000 0.393 ✓ +2026-07-13 08:30:57,745 | INFO | Domestic animals, pets 0.521 0.000 0.339 ✓ +2026-07-13 08:30:57,745 | INFO | Bow-wow 0.363 0.000 0.236 ✓ +2026-07-13 08:30:57,745 | INFO | Bark 0.196 0.000 0.127 ✓ +2026-07-13 08:30:57,745 | INFO | Canidae, dogs, wolves 0.155 0.000 0.101 ✗ +2026-07-13 08:30:57,745 | INFO | → WINNER: Animal (combined=0.449) +2026-07-13 08:30:57,769 | INFO | +[1325.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,769 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,769 | INFO | Animal 0.644 0.000 0.419 ✓ +2026-07-13 08:30:57,769 | INFO | Dog 0.625 0.000 0.406 ✓ +2026-07-13 08:30:57,769 | INFO | Domestic animals, pets 0.520 0.000 0.338 ✓ +2026-07-13 08:30:57,769 | INFO | Bow-wow 0.423 0.000 0.275 ✓ +2026-07-13 08:30:57,769 | INFO | Bark 0.357 0.000 0.232 ✓ +2026-07-13 08:30:57,769 | INFO | Yip 0.118 0.000 0.077 ✗ +2026-07-13 08:30:57,777 | INFO | → WINNER: Animal (combined=0.419) +2026-07-13 08:30:57,802 | INFO | +[1325.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,802 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,802 | INFO | Dog 0.691 0.000 0.449 ✓ +2026-07-13 08:30:57,802 | INFO | Animal 0.665 0.000 0.432 ✓ +2026-07-13 08:30:57,802 | INFO | Domestic animals, pets 0.580 0.000 0.377 ✓ +2026-07-13 08:30:57,802 | INFO | Bow-wow 0.463 0.000 0.301 ✓ +2026-07-13 08:30:57,802 | INFO | Bark 0.350 0.000 0.228 ✓ +2026-07-13 08:30:57,802 | INFO | Canidae, dogs, wolves 0.140 0.000 0.091 ✗ +2026-07-13 08:30:57,802 | INFO | → WINNER: Dog (combined=0.449) +2026-07-13 08:30:57,826 | INFO | +[1325.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,826 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,826 | INFO | Dog 0.551 0.000 0.358 ✓ +2026-07-13 08:30:57,826 | INFO | Animal 0.505 0.000 0.328 ✓ +2026-07-13 08:30:57,826 | INFO | Domestic animals, pets 0.442 0.000 0.287 ✓ +2026-07-13 08:30:57,826 | INFO | Bow-wow 0.424 0.000 0.276 ✓ +2026-07-13 08:30:57,826 | INFO | Bark 0.299 0.000 0.194 ✓ +2026-07-13 08:30:57,826 | INFO | Yip 0.119 0.000 0.077 ✗ +2026-07-13 08:30:57,826 | INFO | → WINNER: Dog (combined=0.358) +2026-07-13 08:30:57,859 | INFO | +[1325.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,859 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,859 | INFO | Animal 0.290 0.000 0.189 ✓ +2026-07-13 08:30:57,859 | INFO | Domestic animals, pets 0.134 0.000 0.087 ✗ +2026-07-13 08:30:57,859 | INFO | Dog 0.132 0.000 0.086 ✗ +2026-07-13 08:30:57,859 | INFO | Inside, small room 0.083 0.000 0.054 ✗ +2026-07-13 08:30:57,859 | INFO | → WINNER: Animal (combined=0.189) +2026-07-13 08:30:57,884 | INFO | +[1326.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,884 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,884 | INFO | Roar 0.112 0.385 0.208 ✓ +2026-07-13 08:30:57,884 | INFO | Whale vocalization 0.114 0.351 0.197 ✓ +2026-07-13 08:30:57,884 | INFO | Animal 0.204 0.000 0.133 ✓ +2026-07-13 08:30:57,884 | INFO | → WINNER: Roar (combined=0.208) +2026-07-13 08:30:57,908 | INFO | +[1326.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,908 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,908 | INFO | Roar 0.338 0.385 0.354 ✓ +2026-07-13 08:30:57,916 | INFO | Animal 0.542 0.000 0.352 ✓ +2026-07-13 08:30:57,916 | INFO | Wild animals 0.375 0.000 0.243 ✓ +2026-07-13 08:30:57,917 | INFO | Roaring cats (lions, tigers) 0.346 0.000 0.225 ✓ +2026-07-13 08:30:57,917 | INFO | Cattle, bovinae 0.038 0.000 0.025 ✗ +2026-07-13 08:30:57,917 | INFO | → WINNER: Roar (combined=0.354) +2026-07-13 08:30:57,940 | INFO | +[1326.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,940 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,940 | INFO | Roar 0.164 0.385 0.241 ✓ +2026-07-13 08:30:57,940 | INFO | Animal 0.303 0.000 0.197 ✓ +2026-07-13 08:30:57,940 | INFO | Cattle, bovinae 0.284 0.000 0.185 ✓ +2026-07-13 08:30:57,940 | INFO | Livestock, farm animals, working animals 0.271 0.000 0.176 ✓ +2026-07-13 08:30:57,940 | INFO | Moo 0.226 0.000 0.147 ✓ +2026-07-13 08:30:57,940 | INFO | Roaring cats (lions, tigers) 0.213 0.000 0.138 ✓ +2026-07-13 08:30:57,940 | INFO | → WINNER: Roar (combined=0.241) +2026-07-13 08:30:57,970 | INFO | +[1326.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,973 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,973 | INFO | Moo 0.634 0.000 0.412 ✓ +2026-07-13 08:30:57,974 | INFO | Cattle, bovinae 0.583 0.000 0.379 ✓ +2026-07-13 08:30:57,974 | INFO | Livestock, farm animals, working animals 0.575 0.000 0.373 ✓ +2026-07-13 08:30:57,974 | INFO | → WINNER: Moo (combined=0.412) +2026-07-13 08:30:57,998 | INFO | +[1326.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:57,998 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:57,998 | INFO | Moo 0.766 0.000 0.498 ✓ +2026-07-13 08:30:57,998 | INFO | Livestock, farm animals, working animals 0.751 0.000 0.488 ✓ +2026-07-13 08:30:57,998 | INFO | Cattle, bovinae 0.716 0.000 0.465 ✓ +2026-07-13 08:30:57,998 | INFO | → WINNER: Moo (combined=0.498) +2026-07-13 08:30:58,022 | INFO | +[1327.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,022 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,022 | INFO | Livestock, farm animals, working animals 0.687 0.000 0.447 ✓ +2026-07-13 08:30:58,022 | INFO | Moo 0.657 0.000 0.427 ✓ +2026-07-13 08:30:58,022 | INFO | Cattle, bovinae 0.620 0.000 0.403 ✓ +2026-07-13 08:30:58,022 | INFO | Civil defense siren 0.083 0.000 0.054 ✗ +2026-07-13 08:30:58,022 | INFO | Siren 0.071 0.000 0.046 ✗ +2026-07-13 08:30:58,022 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.447) +2026-07-13 08:30:58,055 | INFO | +[1327.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,055 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,055 | INFO | Livestock, farm animals, working animals 0.765 0.000 0.497 ✓ +2026-07-13 08:30:58,055 | INFO | Moo 0.742 0.000 0.482 ✓ +2026-07-13 08:30:58,055 | INFO | Cattle, bovinae 0.700 0.000 0.455 ✓ +2026-07-13 08:30:58,055 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.497) +2026-07-13 08:30:58,079 | INFO | +[1327.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,079 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,079 | INFO | Livestock, farm animals, working animals 0.902 0.000 0.586 ✓ +2026-07-13 08:30:58,079 | INFO | Moo 0.899 0.000 0.585 ✓ +2026-07-13 08:30:58,079 | INFO | Cattle, bovinae 0.883 0.000 0.574 ✓ +2026-07-13 08:30:58,079 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.586) +2026-07-13 08:30:58,106 | INFO | +[1327.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,112 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,112 | INFO | Moo 0.896 0.000 0.582 ✓ +2026-07-13 08:30:58,112 | INFO | Livestock, farm animals, working animals 0.893 0.000 0.581 ✓ +2026-07-13 08:30:58,112 | INFO | Cattle, bovinae 0.892 0.000 0.580 ✓ +2026-07-13 08:30:58,112 | INFO | → WINNER: Moo (combined=0.582) +2026-07-13 08:30:58,137 | INFO | +[1327.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,137 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,137 | INFO | Cattle, bovinae 0.907 0.000 0.589 ✓ +2026-07-13 08:30:58,137 | INFO | Moo 0.899 0.000 0.585 ✓ +2026-07-13 08:30:58,137 | INFO | Livestock, farm animals, working animals 0.851 0.000 0.553 ✓ +2026-07-13 08:30:58,137 | INFO | → WINNER: Cattle, bovinae (combined=0.589) +2026-07-13 08:30:58,166 | INFO | +[1328.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,166 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,166 | INFO | Cattle, bovinae 0.835 0.000 0.542 ✓ +2026-07-13 08:30:58,169 | INFO | Moo 0.779 0.000 0.506 ✓ +2026-07-13 08:30:58,169 | INFO | Livestock, farm animals, working animals 0.774 0.000 0.503 ✓ +2026-07-13 08:30:58,169 | INFO | Cowbell 0.265 0.000 0.172 ✓ +2026-07-13 08:30:58,169 | INFO | → WINNER: Cattle, bovinae (combined=0.542) +2026-07-13 08:30:58,194 | INFO | +[1328.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,194 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,196 | INFO | Water 0.040 0.000 0.026 ✗ +2026-07-13 08:30:58,196 | INFO | → no winner +2026-07-13 08:30:58,226 | INFO | +[1328.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,226 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,226 | INFO | Dishes, pots, and pans 0.199 0.000 0.129 ✓ +2026-07-13 08:30:58,226 | INFO | Inside, small room 0.125 0.000 0.081 ✗ +2026-07-13 08:30:58,226 | INFO | Cutlery, silverware 0.093 0.000 0.060 ✗ +2026-07-13 08:30:58,226 | INFO | → WINNER: Dishes, pots, and pans (combined=0.129) +2026-07-13 08:30:58,263 | INFO | +[1328.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,263 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,263 | INFO | Dishes, pots, and pans 0.337 0.000 0.219 ✓ +2026-07-13 08:30:58,263 | INFO | Cutlery, silverware 0.246 0.000 0.160 ✓ +2026-07-13 08:30:58,263 | INFO | Chink, clink 0.191 0.000 0.124 ✓ +2026-07-13 08:30:58,263 | INFO | Glass 0.085 0.000 0.055 ✗ +2026-07-13 08:30:58,263 | INFO | Inside, small room 0.071 0.000 0.046 ✗ +2026-07-13 08:30:58,263 | INFO | → WINNER: Dishes, pots, and pans (combined=0.219) +2026-07-13 08:30:58,292 | INFO | +[1328.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,292 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,292 | INFO | Chink, clink 0.268 0.000 0.174 ✓ +2026-07-13 08:30:58,292 | INFO | Inside, small room 0.071 0.000 0.046 ✗ +2026-07-13 08:30:58,292 | INFO | Glass 0.053 0.000 0.034 ✗ +2026-07-13 08:30:58,292 | INFO | → WINNER: Chink, clink (combined=0.174) +2026-07-13 08:30:58,316 | INFO | +[1329.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,316 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,316 | INFO | Inside, small room 0.062 0.000 0.040 ✗ +2026-07-13 08:30:58,316 | INFO | → no winner +2026-07-13 08:30:58,348 | INFO | +[1329.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,348 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,348 | INFO | Inside, small room 0.086 0.000 0.056 ✗ +2026-07-13 08:30:58,348 | INFO | → no winner +2026-07-13 08:30:58,373 | INFO | +[1329.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,373 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,373 | INFO | Animal 0.123 0.000 0.080 ✗ +2026-07-13 08:30:58,373 | INFO | Inside, small room 0.064 0.000 0.042 ✗ +2026-07-13 08:30:58,373 | INFO | → no winner +2026-07-13 08:30:58,398 | INFO | +[1329.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,398 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,398 | INFO | Chop 0.103 0.000 0.067 ✗ +2026-07-13 08:30:58,398 | INFO | Arrow 0.073 0.000 0.048 ✗ +2026-07-13 08:30:58,398 | INFO | → no winner +2026-07-13 08:30:58,431 | INFO | +[1329.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,433 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,433 | INFO | Music 0.110 0.000 0.072 ✗ +2026-07-13 08:30:58,433 | INFO | → no winner +2026-07-13 08:30:58,461 | INFO | +[1330.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,461 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,461 | INFO | Inside, small room 0.057 0.000 0.037 ✗ +2026-07-13 08:30:58,461 | INFO | → no winner +2026-07-13 08:30:58,488 | INFO | +[1330.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,489 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,489 | INFO | Inside, small room 0.086 0.000 0.056 ✗ +2026-07-13 08:30:58,489 | INFO | → no winner +2026-07-13 08:30:58,512 | INFO | +[1330.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,512 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,512 | INFO | Animal 0.163 0.000 0.106 ✗ +2026-07-13 08:30:58,512 | INFO | Domestic animals, pets 0.116 0.000 0.075 ✗ +2026-07-13 08:30:58,512 | INFO | Inside, small room 0.080 0.000 0.052 ✗ +2026-07-13 08:30:58,512 | INFO | → no winner +2026-07-13 08:30:58,544 | INFO | +[1330.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,544 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,544 | INFO | Animal 0.184 0.000 0.119 ✗ +2026-07-13 08:30:58,544 | INFO | Inside, small room 0.147 0.000 0.096 ✗ +2026-07-13 08:30:58,546 | INFO | Domestic animals, pets 0.126 0.000 0.082 ✗ +2026-07-13 08:30:58,546 | INFO | → no winner +2026-07-13 08:30:58,570 | INFO | +[1330.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,570 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,570 | INFO | Inside, small room 0.110 0.000 0.071 ✗ +2026-07-13 08:30:58,570 | INFO | → no winner +2026-07-13 08:30:58,593 | INFO | +[1331.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,601 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,602 | INFO | Water 0.097 0.000 0.063 ✗ +2026-07-13 08:30:58,602 | INFO | Pump (liquid) 0.054 0.000 0.035 ✗ +2026-07-13 08:30:58,602 | INFO | → no winner +2026-07-13 08:30:58,627 | INFO | +[1331.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,627 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,627 | INFO | Water 0.102 0.000 0.066 ✗ +2026-07-13 08:30:58,627 | INFO | → no winner +2026-07-13 08:30:58,650 | INFO | +[1331.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,650 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,659 | INFO | Ratchet, pawl 0.081 0.000 0.053 ✗ +2026-07-13 08:30:58,659 | INFO | Mechanisms 0.079 0.000 0.051 ✗ +2026-07-13 08:30:58,659 | INFO | Gears 0.063 0.000 0.041 ✗ +2026-07-13 08:30:58,659 | INFO | Water 0.045 0.000 0.029 ✗ +2026-07-13 08:30:58,659 | INFO | → no winner +2026-07-13 08:30:58,683 | INFO | +[1331.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,683 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,683 | INFO | Insect 0.165 0.000 0.107 ✗ +2026-07-13 08:30:58,683 | INFO | Patter 0.153 0.000 0.099 ✗ +2026-07-13 08:30:58,683 | INFO | Cricket 0.141 0.000 0.092 ✗ +2026-07-13 08:30:58,683 | INFO | Rodents, rats, mice 0.067 0.000 0.044 ✗ +2026-07-13 08:30:58,683 | INFO | → no winner +2026-07-13 08:30:58,713 | INFO | +[1331.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,713 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,713 | INFO | Patter 0.324 0.000 0.211 ✓ +2026-07-13 08:30:58,713 | INFO | Rodents, rats, mice 0.133 0.000 0.086 ✗ +2026-07-13 08:30:58,715 | INFO | Mouse 0.069 0.000 0.044 ✗ +2026-07-13 08:30:58,716 | INFO | Bird 0.036 0.000 0.023 ✗ +2026-07-13 08:30:58,716 | INFO | → WINNER: Patter (combined=0.211) +2026-07-13 08:30:58,740 | INFO | +[1332.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,740 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,740 | INFO | Patter 0.513 0.000 0.334 ✓ +2026-07-13 08:30:58,740 | INFO | Rodents, rats, mice 0.236 0.000 0.154 ✓ +2026-07-13 08:30:58,740 | INFO | Mouse 0.134 0.000 0.087 ✗ +2026-07-13 08:30:58,740 | INFO | Tick 0.064 0.000 0.042 ✗ +2026-07-13 08:30:58,740 | INFO | Tick-tock 0.053 0.000 0.035 ✗ +2026-07-13 08:30:58,740 | INFO | → WINNER: Patter (combined=0.334) +2026-07-13 08:30:58,767 | INFO | +[1332.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,767 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,773 | INFO | Patter 0.270 0.000 0.176 ✓ +2026-07-13 08:30:58,773 | INFO | Rodents, rats, mice 0.148 0.000 0.096 ✗ +2026-07-13 08:30:58,773 | INFO | Animal 0.096 0.000 0.062 ✗ +2026-07-13 08:30:58,773 | INFO | Boiling 0.072 0.000 0.047 ✗ +2026-07-13 08:30:58,773 | INFO | Mouse 0.071 0.000 0.046 ✗ +2026-07-13 08:30:58,773 | INFO | → WINNER: Patter (combined=0.176) +2026-07-13 08:30:58,799 | INFO | +[1332.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,799 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,799 | INFO | Squish 0.062 0.000 0.041 ✗ +2026-07-13 08:30:58,799 | INFO | Boiling 0.056 0.000 0.037 ✗ +2026-07-13 08:30:58,799 | INFO | → no winner +2026-07-13 08:30:58,829 | INFO | +[1332.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-07-13 08:30:58,830 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,830 | INFO | Patter 0.134 0.000 0.087 ✗ +2026-07-13 08:30:58,831 | INFO | Inside, small room 0.057 0.000 0.037 ✗ +2026-07-13 08:30:58,831 | INFO | → no winner +2026-07-13 08:30:58,860 | INFO | +[1344.60s] AMBIENT | scene='' +2026-07-13 08:30:58,860 | INFO | → no winner +2026-07-13 08:30:58,889 | INFO | +[1344.80s] AMBIENT | scene='' +2026-07-13 08:30:58,889 | INFO | → no winner +2026-07-13 08:30:58,914 | INFO | +[1345.00s] AMBIENT | scene='' +2026-07-13 08:30:58,914 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,914 | INFO | Bird 0.073 0.000 0.047 ✗ +2026-07-13 08:30:58,914 | INFO | Bird vocalization, bird call, bird song 0.032 0.000 0.021 ✗ +2026-07-13 08:30:58,914 | INFO | → no winner +2026-07-13 08:30:58,939 | INFO | +[1345.20s] AMBIENT | scene='' +2026-07-13 08:30:58,939 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,939 | INFO | Bird 0.208 0.000 0.135 ✓ +2026-07-13 08:30:58,939 | INFO | Pigeon, dove 0.121 0.000 0.079 ✗ +2026-07-13 08:30:58,939 | INFO | Bird vocalization, bird call, bird song 0.070 0.000 0.045 ✗ +2026-07-13 08:30:58,946 | INFO | Coo 0.068 0.000 0.044 ✗ +2026-07-13 08:30:58,946 | INFO | → WINNER: Bird (combined=0.135) +2026-07-13 08:30:58,972 | INFO | +[1345.40s] AMBIENT | scene='' +2026-07-13 08:30:58,972 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:58,972 | INFO | Vehicle 0.076 0.000 0.049 ✗ +2026-07-13 08:30:58,972 | INFO | Bird 0.056 0.000 0.036 ✗ +2026-07-13 08:30:58,972 | INFO | → no winner +2026-07-13 08:30:58,999 | INFO | +[1345.60s] AMBIENT | scene='' +2026-07-13 08:30:59,001 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,001 | INFO | Whistling 0.160 0.000 0.104 ✗ +2026-07-13 08:30:59,001 | INFO | Animal 0.094 0.000 0.061 ✗ +2026-07-13 08:30:59,001 | INFO | Whistle 0.068 0.000 0.044 ✗ +2026-07-13 08:30:59,001 | INFO | Bird 0.038 0.000 0.024 ✗ +2026-07-13 08:30:59,001 | INFO | → no winner +2026-07-13 08:30:59,028 | INFO | +[1345.80s] AMBIENT | scene='' +2026-07-13 08:30:59,028 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,028 | INFO | Whistle 0.265 0.000 0.172 ✓ +2026-07-13 08:30:59,030 | INFO | Whistling 0.247 0.000 0.161 ✓ +2026-07-13 08:30:59,030 | INFO | Bird 0.035 0.000 0.023 ✗ +2026-07-13 08:30:59,030 | INFO | → WINNER: Whistle (combined=0.172) +2026-07-13 08:30:59,053 | INFO | +[1346.00s] AMBIENT | scene='' +2026-07-13 08:30:59,053 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,053 | INFO | Whistling 0.341 0.000 0.222 ✓ +2026-07-13 08:30:59,053 | INFO | Whistle 0.238 0.000 0.154 ✓ +2026-07-13 08:30:59,053 | INFO | Animal 0.144 0.000 0.094 ✗ +2026-07-13 08:30:59,053 | INFO | Horse 0.054 0.000 0.035 ✗ +2026-07-13 08:30:59,053 | INFO | → WINNER: Whistling (combined=0.222) +2026-07-13 08:30:59,078 | INFO | +[1346.20s] AMBIENT | scene='' +2026-07-13 08:30:59,078 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,086 | INFO | Whistling 0.348 0.000 0.226 ✓ +2026-07-13 08:30:59,086 | INFO | Whistle 0.226 0.000 0.147 ✓ +2026-07-13 08:30:59,086 | INFO | Animal 0.091 0.000 0.059 ✗ +2026-07-13 08:30:59,086 | INFO | → WINNER: Whistling (combined=0.226) +2026-07-13 08:30:59,110 | INFO | +[1346.40s] AMBIENT | scene='' +2026-07-13 08:30:59,110 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,110 | INFO | Whistle 0.169 0.000 0.110 ✗ +2026-07-13 08:30:59,110 | INFO | Whistling 0.113 0.000 0.074 ✗ +2026-07-13 08:30:59,110 | INFO | Music 0.065 0.000 0.042 ✗ +2026-07-13 08:30:59,110 | INFO | → no winner +2026-07-13 08:30:59,136 | INFO | +[1346.60s] AMBIENT | scene='' +2026-07-13 08:30:59,142 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,142 | INFO | Whistle 0.103 0.000 0.067 ✗ +2026-07-13 08:30:59,142 | INFO | → no winner +2026-07-13 08:30:59,168 | INFO | +[1346.80s] AMBIENT | scene='' +2026-07-13 08:30:59,169 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,169 | INFO | Theremin 0.171 0.000 0.111 ✗ +2026-07-13 08:30:59,169 | INFO | Music 0.096 0.000 0.062 ✗ +2026-07-13 08:30:59,169 | INFO | Whistle 0.074 0.000 0.049 ✗ +2026-07-13 08:30:59,169 | INFO | → no winner +2026-07-13 08:30:59,193 | INFO | +[1347.00s] AMBIENT | scene='' +2026-07-13 08:30:59,193 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,193 | INFO | Car alarm 0.080 0.000 0.052 ✗ +2026-07-13 08:30:59,193 | INFO | Theremin 0.065 0.000 0.042 ✗ +2026-07-13 08:30:59,193 | INFO | → no winner +2026-07-13 08:30:59,225 | INFO | +[1347.20s] AMBIENT | scene='' +2026-07-13 08:30:59,225 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,225 | INFO | Rodents, rats, mice 0.079 0.000 0.051 ✗ +2026-07-13 08:30:59,225 | INFO | → no winner +2026-07-13 08:30:59,250 | INFO | +[1347.40s] AMBIENT | scene='' +2026-07-13 08:30:59,252 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,252 | INFO | Rodents, rats, mice 0.393 0.000 0.256 ✓ +2026-07-13 08:30:59,252 | INFO | Patter 0.141 0.000 0.092 ✗ +2026-07-13 08:30:59,252 | INFO | Animal 0.106 0.000 0.069 ✗ +2026-07-13 08:30:59,252 | INFO | Bird 0.050 0.000 0.033 ✗ +2026-07-13 08:30:59,252 | INFO | → WINNER: Rodents, rats, mice (combined=0.256) +2026-07-13 08:30:59,275 | INFO | +[1347.60s] AMBIENT | scene='' +2026-07-13 08:30:59,281 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,281 | INFO | Rodents, rats, mice 0.816 0.000 0.530 ✓ +2026-07-13 08:30:59,282 | INFO | Patter 0.643 0.000 0.418 ✓ +2026-07-13 08:30:59,282 | INFO | Mouse 0.062 0.000 0.040 ✗ +2026-07-13 08:30:59,283 | INFO | Bird 0.045 0.000 0.030 ✗ +2026-07-13 08:30:59,283 | INFO | → WINNER: Rodents, rats, mice (combined=0.530) +2026-07-13 08:30:59,307 | INFO | +[1347.80s] AMBIENT | scene='' +2026-07-13 08:30:59,307 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,307 | INFO | Rodents, rats, mice 0.398 0.000 0.259 ✓ +2026-07-13 08:30:59,307 | INFO | Patter 0.320 0.000 0.208 ✓ +2026-07-13 08:30:59,307 | INFO | Mouse 0.196 0.000 0.127 ✓ +2026-07-13 08:30:59,307 | INFO | Animal 0.136 0.000 0.088 ✗ +2026-07-13 08:30:59,307 | INFO | Bird 0.072 0.000 0.047 ✗ +2026-07-13 08:30:59,307 | INFO | → WINNER: Rodents, rats, mice (combined=0.259) +2026-07-13 08:30:59,334 | INFO | +[1348.00s] AMBIENT | scene='' +2026-07-13 08:30:59,334 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,334 | INFO | Patter 0.109 0.000 0.071 ✗ +2026-07-13 08:30:59,334 | INFO | Music 0.064 0.000 0.042 ✗ +2026-07-13 08:30:59,334 | INFO | → no winner +2026-07-13 08:30:59,364 | INFO | +[1348.20s] AMBIENT | scene='' +2026-07-13 08:30:59,364 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,364 | INFO | Music 0.112 0.000 0.073 ✗ +2026-07-13 08:30:59,364 | INFO | Rain 0.060 0.000 0.039 ✗ +2026-07-13 08:30:59,364 | INFO | Rain on surface 0.048 0.000 0.031 ✗ +2026-07-13 08:30:59,364 | INFO | Fire 0.047 0.000 0.031 ✗ +2026-07-13 08:30:59,364 | INFO | → no winner +2026-07-13 08:30:59,389 | INFO | +[1348.40s] AMBIENT | scene='' +2026-07-13 08:30:59,389 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,389 | INFO | Music 0.120 0.000 0.078 ✗ +2026-07-13 08:30:59,389 | INFO | Animal 0.119 0.000 0.077 ✗ +2026-07-13 08:30:59,389 | INFO | Whale vocalization 0.077 0.000 0.050 ✗ +2026-07-13 08:30:59,389 | INFO | Roar 0.054 0.000 0.035 ✗ +2026-07-13 08:30:59,389 | INFO | → no winner +2026-07-13 08:30:59,414 | INFO | +[1348.60s] AMBIENT | scene='' +2026-07-13 08:30:59,414 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,414 | INFO | Roar 0.279 0.000 0.181 ✓ +2026-07-13 08:30:59,414 | INFO | Animal 0.271 0.000 0.176 ✓ +2026-07-13 08:30:59,414 | INFO | Wild animals 0.206 0.000 0.134 ✓ +2026-07-13 08:30:59,414 | INFO | Roaring cats (lions, tigers) 0.206 0.000 0.134 ✓ +2026-07-13 08:30:59,414 | INFO | Whale vocalization 0.161 0.000 0.105 ✗ +2026-07-13 08:30:59,422 | INFO | Music 0.090 0.000 0.059 ✗ +2026-07-13 08:30:59,422 | INFO | → WINNER: Roar (combined=0.181) +2026-07-13 08:30:59,447 | INFO | +[1351.00s] AMBIENT | scene='' +2026-07-13 08:30:59,447 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,447 | INFO | Frog 0.203 0.000 0.132 ✓ +2026-07-13 08:30:59,447 | INFO | Animal 0.178 0.000 0.116 ✗ +2026-07-13 08:30:59,447 | INFO | Bird 0.115 0.000 0.075 ✗ +2026-07-13 08:30:59,447 | INFO | Bird vocalization, bird call, bird song 0.049 0.000 0.032 ✗ +2026-07-13 08:30:59,447 | INFO | → WINNER: Frog (combined=0.132) +2026-07-13 08:30:59,479 | INFO | +[1351.20s] AMBIENT | scene='' +2026-07-13 08:30:59,479 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,479 | INFO | Frog 0.560 0.000 0.364 ✓ +2026-07-13 08:30:59,479 | INFO | Animal 0.158 0.000 0.103 ✗ +2026-07-13 08:30:59,479 | INFO | Croak 0.069 0.000 0.045 ✗ +2026-07-13 08:30:59,479 | INFO | → WINNER: Frog (combined=0.364) +2026-07-13 08:30:59,504 | INFO | +[1351.40s] AMBIENT | scene='' +2026-07-13 08:30:59,504 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,504 | INFO | Frog 0.653 0.000 0.424 ✓ +2026-07-13 08:30:59,504 | INFO | Croak 0.123 0.000 0.080 ✗ +2026-07-13 08:30:59,504 | INFO | Animal 0.092 0.000 0.060 ✗ +2026-07-13 08:30:59,504 | INFO | → WINNER: Frog (combined=0.424) +2026-07-13 08:30:59,536 | INFO | +[1351.60s] AMBIENT | scene='' +2026-07-13 08:30:59,536 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,536 | INFO | Frog 0.274 0.000 0.178 ✓ +2026-07-13 08:30:59,536 | INFO | Animal 0.092 0.000 0.060 ✗ +2026-07-13 08:30:59,536 | INFO | → WINNER: Frog (combined=0.178) +2026-07-13 08:30:59,563 | INFO | +[1351.80s] AMBIENT | scene='' +2026-07-13 08:30:59,563 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,563 | INFO | Animal 0.098 0.000 0.064 ✗ +2026-07-13 08:30:59,563 | INFO | Frog 0.073 0.000 0.047 ✗ +2026-07-13 08:30:59,563 | INFO | Mouse 0.063 0.000 0.041 ✗ +2026-07-13 08:30:59,563 | INFO | → no winner +2026-07-13 08:30:59,593 | INFO | +[1352.00s] AMBIENT | scene='' +2026-07-13 08:30:59,593 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,593 | INFO | Sonar 0.245 0.000 0.159 ✓ +2026-07-13 08:30:59,593 | INFO | Music 0.074 0.000 0.048 ✗ +2026-07-13 08:30:59,593 | INFO | → WINNER: Sonar (combined=0.159) +2026-07-13 08:30:59,618 | INFO | +[1352.20s] AMBIENT | scene='' +2026-07-13 08:30:59,618 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,618 | INFO | Sonar 0.054 0.000 0.035 ✗ +2026-07-13 08:30:59,618 | INFO | → no winner +2026-07-13 08:30:59,650 | INFO | +[1352.40s] AMBIENT | scene='' +2026-07-13 08:30:59,650 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,650 | INFO | Music 0.108 0.000 0.070 ✗ +2026-07-13 08:30:59,652 | INFO | Vehicle 0.054 0.000 0.035 ✗ +2026-07-13 08:30:59,652 | INFO | → no winner +2026-07-13 08:30:59,675 | INFO | +[1352.60s] AMBIENT | scene='' +2026-07-13 08:30:59,675 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,675 | INFO | Music 0.433 0.000 0.281 ✓ +2026-07-13 08:30:59,675 | INFO | Musical instrument 0.194 0.000 0.126 ✓ +2026-07-13 08:30:59,675 | INFO | Keyboard (musical) 0.086 0.000 0.056 ✗ +2026-07-13 08:30:59,675 | INFO | Synthesizer 0.080 0.000 0.052 ✗ +2026-07-13 08:30:59,675 | INFO | Piano 0.067 0.000 0.044 ✗ +2026-07-13 08:30:59,675 | INFO | → WINNER: Music (combined=0.281) +2026-07-13 08:30:59,707 | INFO | +[1352.80s] AMBIENT | scene='' +2026-07-13 08:30:59,707 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,707 | INFO | Music 0.454 0.000 0.295 ✓ +2026-07-13 08:30:59,707 | INFO | Musical instrument 0.147 0.000 0.096 ✗ +2026-07-13 08:30:59,707 | INFO | Keyboard (musical) 0.061 0.000 0.039 ✗ +2026-07-13 08:30:59,707 | INFO | → WINNER: Music (combined=0.295) +2026-07-13 08:30:59,733 | INFO | +[1353.00s] AMBIENT | scene='' +2026-07-13 08:30:59,733 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,739 | INFO | Music 0.758 0.000 0.493 ✓ +2026-07-13 08:30:59,739 | INFO | Musical instrument 0.208 0.000 0.135 ✓ +2026-07-13 08:30:59,739 | INFO | Sitar 0.145 0.000 0.094 ✗ +2026-07-13 08:30:59,739 | INFO | Plucked string instrument 0.076 0.000 0.049 ✗ +2026-07-13 08:30:59,739 | INFO | → WINNER: Music (combined=0.493) +2026-07-13 08:30:59,764 | INFO | +[1353.20s] AMBIENT | scene='' +2026-07-13 08:30:59,768 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,768 | INFO | Music 0.827 0.000 0.538 ✓ +2026-07-13 08:30:59,768 | INFO | Musical instrument 0.504 0.000 0.328 ✓ +2026-07-13 08:30:59,768 | INFO | Plucked string instrument 0.271 0.000 0.176 ✓ +2026-07-13 08:30:59,768 | INFO | Sitar 0.248 0.000 0.161 ✓ +2026-07-13 08:30:59,768 | INFO | Guitar 0.151 0.000 0.098 ✗ +2026-07-13 08:30:59,768 | INFO | Keyboard (musical) 0.106 0.000 0.069 ✗ +2026-07-13 08:30:59,768 | INFO | → WINNER: Music (combined=0.538) +2026-07-13 08:30:59,797 | INFO | +[1353.40s] AMBIENT | scene='' +2026-07-13 08:30:59,797 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,797 | INFO | Music 0.843 0.000 0.548 ✓ +2026-07-13 08:30:59,797 | INFO | Sitar 0.804 0.000 0.523 ✓ +2026-07-13 08:30:59,797 | INFO | Musical instrument 0.551 0.000 0.358 ✓ +2026-07-13 08:30:59,797 | INFO | Plucked string instrument 0.434 0.000 0.282 ✓ +2026-07-13 08:30:59,797 | INFO | Carnatic music 0.223 0.000 0.145 ✓ +2026-07-13 08:30:59,797 | INFO | Classical music 0.206 0.000 0.134 ✓ +2026-07-13 08:30:59,797 | INFO | → WINNER: Music (combined=0.548) +2026-07-13 08:30:59,828 | INFO | +[1353.60s] AMBIENT | scene='' +2026-07-13 08:30:59,828 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,828 | INFO | Music 0.864 0.000 0.562 ✓ +2026-07-13 08:30:59,828 | INFO | Sitar 0.807 0.000 0.525 ✓ +2026-07-13 08:30:59,830 | INFO | Musical instrument 0.509 0.000 0.331 ✓ +2026-07-13 08:30:59,830 | INFO | Plucked string instrument 0.412 0.000 0.268 ✓ +2026-07-13 08:30:59,830 | INFO | Carnatic music 0.190 0.000 0.123 ✓ +2026-07-13 08:30:59,830 | INFO | Bowed string instrument 0.166 0.000 0.108 ✗ +2026-07-13 08:30:59,830 | INFO | → WINNER: Music (combined=0.562) +2026-07-13 08:30:59,854 | INFO | +[1353.80s] AMBIENT | scene='' +2026-07-13 08:30:59,854 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,854 | INFO | Music 0.861 0.000 0.560 ✓ +2026-07-13 08:30:59,854 | INFO | Sitar 0.837 0.000 0.544 ✓ +2026-07-13 08:30:59,854 | INFO | Musical instrument 0.491 0.000 0.319 ✓ +2026-07-13 08:30:59,854 | INFO | Plucked string instrument 0.411 0.000 0.267 ✓ +2026-07-13 08:30:59,854 | INFO | Carnatic music 0.158 0.000 0.103 ✗ +2026-07-13 08:30:59,854 | INFO | Bowed string instrument 0.156 0.000 0.101 ✗ +2026-07-13 08:30:59,854 | INFO | → WINNER: Music (combined=0.560) +2026-07-13 08:30:59,879 | INFO | +[1354.00s] AMBIENT | scene='' +2026-07-13 08:30:59,879 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,879 | INFO | Music 0.863 0.000 0.561 ✓ +2026-07-13 08:30:59,887 | INFO | Sitar 0.730 0.000 0.474 ✓ +2026-07-13 08:30:59,887 | INFO | Musical instrument 0.543 0.000 0.353 ✓ +2026-07-13 08:30:59,888 | INFO | Plucked string instrument 0.441 0.000 0.286 ✓ +2026-07-13 08:30:59,888 | INFO | Bowed string instrument 0.149 0.000 0.097 ✗ +2026-07-13 08:30:59,888 | INFO | Carnatic music 0.143 0.000 0.093 ✗ +2026-07-13 08:30:59,888 | INFO | → WINNER: Music (combined=0.561) +2026-07-13 08:30:59,913 | INFO | +[1354.20s] AMBIENT | scene='' +2026-07-13 08:30:59,913 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,913 | INFO | Music 0.364 0.000 0.236 ✓ +2026-07-13 08:30:59,913 | INFO | Wind instrument, woodwind instrument 0.297 0.000 0.193 ✓ +2026-07-13 08:30:59,913 | INFO | Shofar 0.251 0.000 0.163 ✓ +2026-07-13 08:30:59,913 | INFO | Musical instrument 0.123 0.000 0.080 ✗ +2026-07-13 08:30:59,913 | INFO | Brass instrument 0.060 0.000 0.039 ✗ +2026-07-13 08:30:59,913 | INFO | Sitar 0.037 0.000 0.024 ✗ +2026-07-13 08:30:59,913 | INFO | → WINNER: Music (combined=0.236) +2026-07-13 08:30:59,944 | INFO | +[1354.40s] AMBIENT | scene='' +2026-07-13 08:30:59,944 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,944 | INFO | Music 0.636 0.000 0.413 ✓ +2026-07-13 08:30:59,944 | INFO | Musical instrument 0.240 0.000 0.156 ✓ +2026-07-13 08:30:59,944 | INFO | Wind instrument, woodwind instrument 0.121 0.000 0.079 ✗ +2026-07-13 08:30:59,946 | INFO | Plucked string instrument 0.106 0.000 0.069 ✗ +2026-07-13 08:30:59,946 | INFO | Sitar 0.090 0.000 0.059 ✗ +2026-07-13 08:30:59,946 | INFO | Shofar 0.069 0.000 0.045 ✗ +2026-07-13 08:30:59,946 | INFO | → WINNER: Music (combined=0.413) +2026-07-13 08:30:59,969 | INFO | +[1354.60s] AMBIENT | scene='' +2026-07-13 08:30:59,969 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:30:59,969 | INFO | Music 0.841 0.000 0.547 ✓ +2026-07-13 08:30:59,969 | INFO | Sitar 0.619 0.000 0.403 ✓ +2026-07-13 08:30:59,969 | INFO | Musical instrument 0.527 0.000 0.343 ✓ +2026-07-13 08:30:59,969 | INFO | Plucked string instrument 0.430 0.000 0.279 ✓ +2026-07-13 08:30:59,969 | INFO | Carnatic music 0.113 0.000 0.073 ✗ +2026-07-13 08:30:59,969 | INFO | Guitar 0.099 0.000 0.065 ✗ +2026-07-13 08:30:59,969 | INFO | → WINNER: Music (combined=0.547) +2026-07-13 08:31:00,002 | INFO | +[1354.80s] AMBIENT | scene='' +2026-07-13 08:31:00,002 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,002 | INFO | Sitar 0.868 0.000 0.564 ✓ +2026-07-13 08:31:00,002 | INFO | Music 0.848 0.000 0.551 ✓ +2026-07-13 08:31:00,002 | INFO | Musical instrument 0.460 0.000 0.299 ✓ +2026-07-13 08:31:00,002 | INFO | Plucked string instrument 0.372 0.000 0.242 ✓ +2026-07-13 08:31:00,004 | INFO | Carnatic music 0.231 0.000 0.150 ✓ +2026-07-13 08:31:00,004 | INFO | Classical music 0.142 0.000 0.092 ✗ +2026-07-13 08:31:00,004 | INFO | → WINNER: Sitar (combined=0.564) +2026-07-13 08:31:00,030 | INFO | +[1355.00s] AMBIENT | scene='' +2026-07-13 08:31:00,030 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,030 | INFO | Sitar 0.864 0.000 0.562 ✓ +2026-07-13 08:31:00,030 | INFO | Music 0.850 0.000 0.553 ✓ +2026-07-13 08:31:00,030 | INFO | Musical instrument 0.424 0.000 0.276 ✓ +2026-07-13 08:31:00,030 | INFO | Plucked string instrument 0.338 0.000 0.220 ✓ +2026-07-13 08:31:00,030 | INFO | Carnatic music 0.186 0.000 0.121 ✓ +2026-07-13 08:31:00,030 | INFO | Bowed string instrument 0.141 0.000 0.092 ✗ +2026-07-13 08:31:00,033 | INFO | → WINNER: Sitar (combined=0.562) +2026-07-13 08:31:00,057 | INFO | +[1355.20s] AMBIENT | scene='' +2026-07-13 08:31:00,057 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,057 | INFO | Sitar 0.844 0.000 0.549 ✓ +2026-07-13 08:31:00,057 | INFO | Music 0.841 0.000 0.547 ✓ +2026-07-13 08:31:00,057 | INFO | Musical instrument 0.408 0.000 0.266 ✓ +2026-07-13 08:31:00,057 | INFO | Plucked string instrument 0.317 0.000 0.206 ✓ +2026-07-13 08:31:00,057 | INFO | Carnatic music 0.194 0.000 0.126 ✓ +2026-07-13 08:31:00,062 | INFO | Bowed string instrument 0.130 0.000 0.085 ✗ +2026-07-13 08:31:00,062 | INFO | → WINNER: Sitar (combined=0.549) +2026-07-13 08:31:00,082 | INFO | +[1355.40s] AMBIENT | scene='' +2026-07-13 08:31:00,082 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,082 | INFO | Music 0.839 0.000 0.546 ✓ +2026-07-13 08:31:00,082 | INFO | Sitar 0.809 0.000 0.526 ✓ +2026-07-13 08:31:00,082 | INFO | Musical instrument 0.483 0.000 0.314 ✓ +2026-07-13 08:31:00,090 | INFO | Plucked string instrument 0.402 0.000 0.261 ✓ +2026-07-13 08:31:00,090 | INFO | Carnatic music 0.210 0.000 0.136 ✓ +2026-07-13 08:31:00,090 | INFO | Classical music 0.141 0.000 0.092 ✗ +2026-07-13 08:31:00,090 | INFO | → WINNER: Music (combined=0.546) +2026-07-13 08:31:00,115 | INFO | +[1355.60s] AMBIENT | scene='' +2026-07-13 08:31:00,117 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,117 | INFO | Music 0.837 0.000 0.544 ✓ +2026-07-13 08:31:00,117 | INFO | Sitar 0.641 0.000 0.416 ✓ +2026-07-13 08:31:00,117 | INFO | Musical instrument 0.569 0.000 0.370 ✓ +2026-07-13 08:31:00,117 | INFO | Plucked string instrument 0.470 0.000 0.306 ✓ +2026-07-13 08:31:00,117 | INFO | Guitar 0.185 0.000 0.120 ✓ +2026-07-13 08:31:00,117 | INFO | Carnatic music 0.153 0.000 0.099 ✗ +2026-07-13 08:31:00,117 | INFO | → WINNER: Music (combined=0.544) +2026-07-13 08:31:00,141 | INFO | +[1355.80s] AMBIENT | scene='' +2026-07-13 08:31:00,141 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,141 | INFO | Sitar 0.856 0.000 0.556 ✓ +2026-07-13 08:31:00,148 | INFO | Music 0.854 0.000 0.555 ✓ +2026-07-13 08:31:00,148 | INFO | Musical instrument 0.481 0.000 0.313 ✓ +2026-07-13 08:31:00,148 | INFO | Plucked string instrument 0.416 0.000 0.270 ✓ +2026-07-13 08:31:00,148 | INFO | Carnatic music 0.196 0.000 0.128 ✓ +2026-07-13 08:31:00,148 | INFO | Bowed string instrument 0.155 0.000 0.101 ✗ +2026-07-13 08:31:00,148 | INFO | → WINNER: Sitar (combined=0.556) +2026-07-13 08:31:00,173 | INFO | +[1356.00s] AMBIENT | scene='' +2026-07-13 08:31:00,173 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,173 | INFO | Sitar 0.867 0.000 0.564 ✓ +2026-07-13 08:31:00,173 | INFO | Music 0.853 0.000 0.554 ✓ +2026-07-13 08:31:00,173 | INFO | Musical instrument 0.468 0.000 0.304 ✓ +2026-07-13 08:31:00,173 | INFO | Plucked string instrument 0.400 0.000 0.260 ✓ +2026-07-13 08:31:00,173 | INFO | Carnatic music 0.192 0.000 0.124 ✓ +2026-07-13 08:31:00,173 | INFO | Bowed string instrument 0.167 0.000 0.108 ✗ +2026-07-13 08:31:00,173 | INFO | → WINNER: Sitar (combined=0.564) +2026-07-13 08:31:00,196 | INFO | +[1356.20s] AMBIENT | scene='' +2026-07-13 08:31:00,196 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,205 | INFO | Music 0.834 0.000 0.542 ✓ +2026-07-13 08:31:00,205 | INFO | Sitar 0.762 0.000 0.495 ✓ +2026-07-13 08:31:00,205 | INFO | Musical instrument 0.518 0.000 0.337 ✓ +2026-07-13 08:31:00,205 | INFO | Plucked string instrument 0.433 0.000 0.282 ✓ +2026-07-13 08:31:00,205 | INFO | Carnatic music 0.237 0.000 0.154 ✓ +2026-07-13 08:31:00,205 | INFO | Classical music 0.128 0.000 0.083 ✗ +2026-07-13 08:31:00,205 | INFO | → WINNER: Music (combined=0.542) +2026-07-13 08:31:00,230 | INFO | +[1356.40s] AMBIENT | scene='' +2026-07-13 08:31:00,230 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,230 | INFO | Music 0.864 0.000 0.561 ✓ +2026-07-13 08:31:00,230 | INFO | Sitar 0.731 0.000 0.475 ✓ +2026-07-13 08:31:00,230 | INFO | Musical instrument 0.631 0.000 0.410 ✓ +2026-07-13 08:31:00,230 | INFO | Plucked string instrument 0.512 0.000 0.333 ✓ +2026-07-13 08:31:00,230 | INFO | Carnatic music 0.221 0.000 0.144 ✓ +2026-07-13 08:31:00,230 | INFO | Classical music 0.157 0.000 0.102 ✗ +2026-07-13 08:31:00,230 | INFO | → WINNER: Music (combined=0.561) +2026-07-13 08:31:00,262 | INFO | +[1356.60s] AMBIENT | scene='' +2026-07-13 08:31:00,262 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,262 | INFO | Music 0.859 0.000 0.558 ✓ +2026-07-13 08:31:00,262 | INFO | Musical instrument 0.643 0.000 0.418 ✓ +2026-07-13 08:31:00,263 | INFO | Plucked string instrument 0.507 0.000 0.330 ✓ +2026-07-13 08:31:00,263 | INFO | Sitar 0.437 0.000 0.284 ✓ +2026-07-13 08:31:00,263 | INFO | Guitar 0.234 0.000 0.152 ✓ +2026-07-13 08:31:00,263 | INFO | Carnatic music 0.120 0.000 0.078 ✗ +2026-07-13 08:31:00,263 | INFO | → WINNER: Music (combined=0.558) +2026-07-13 08:31:00,288 | INFO | +[1356.80s] AMBIENT | scene='' +2026-07-13 08:31:00,288 | INFO | LABEL RAW PAL CMB PASS +2026-07-13 08:31:00,288 | INFO | Music 0.861 0.000 0.559 ✓ +2026-07-13 08:31:00,288 | INFO | Musical instrument 0.681 0.000 0.443 ✓ +2026-07-13 08:31:00,288 | INFO | Plucked string instrument 0.565 0.000 0.367 ✓ +2026-07-13 08:31:00,288 | INFO | Guitar 0.389 0.000 0.253 ✓ +2026-07-13 08:31:00,288 | INFO | Sitar 0.335 0.000 0.218 ✓ +2026-07-13 08:31:00,288 | INFO | Electric guitar 0.095 0.000 0.061 ✗ +2026-07-13 08:31:00,288 | INFO | → WINNER: Music (combined=0.559) +2026-07-13 08:31:00,295 | INFO | +Detection done: 2600 windows, 2313 accepted +2026-07-13 08:31:00,295 | INFO | Raw events: 2600, accepted: 2313 +2026-07-13 08:31:00,303 | INFO | After dedup: 355 +2026-07-13 08:31:00,590 | INFO | Burst grouping: 339 events → 90 bursts +2026-07-13 08:31:00,590 | INFO | +FINAL CAPTION SYNTHESIS: +2026-07-13 08:31:00,590 | INFO | ================================================================= +2026-07-13 08:31:00,600 | INFO | [0.0→2.0s] families=['environmental noise', 'bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,600 | INFO | [2.6→6.4s] families=['bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,600 | INFO | [35.0→40.0s] families=['bird', 'environmental noise'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,600 | INFO | [41.0→44.8s] families=['bird', 'animal', 'environmental noise'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,600 | INFO | [45.2→47.2s] families=['environmental noise', 'insect'] + final='[कीड़ों की आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:00,600 | INFO | [49.8→51.6s] families=['environmental noise'] + final='[पत्तों की सरसराहट सुनाई दे रही है]' +2026-07-13 08:31:00,606 | INFO | [52.0→56.2s] families=['rodents, rats, mice', 'environmental noise', 'turkey'] + final='[हवा से पेड़ों की टहनियाँ हिल रही हैं]' +2026-07-13 08:31:00,606 | INFO | [77.0→84.0s] families=['bird', 'animal', 'environmental noise'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,606 | INFO | [94.8→98.2s] families=['crow', 'animal', 'bird'] + final='[कौआ काँव-काँव कर रहा है और पक्षियों की चहचहाहट है]' +2026-07-13 08:31:00,606 | INFO | [99.0→102.4s] families=['animal', 'bird', 'mechanisms'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,606 | INFO | [198.4→211.0s] families=['music', 'tabla', 'sitar'] + final='[तबला और सितार के साथ संगीत बज रहा है]' +2026-07-13 08:31:00,606 | INFO | [211.4→215.0s] families=['music', 'tabla', 'sitar'] + final='[तबला और सितार के साथ संगीत बज रहा है]' +2026-07-13 08:31:00,606 | INFO | [223.4→225.8s] families=['tabla', 'sitar'] + final='[तबला और सितार के साथ संगीत बज रहा है]' +2026-07-13 08:31:00,606 | INFO | [226.2→228.0s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:00,614 | INFO | [229.0→237.2s] families=['music', 'tabla', 'sitar'] + final='[तबला और सितार के साथ संगीत बज रहा है]' +2026-07-13 08:31:00,614 | INFO | [237.6→246.8s] families=['music', 'tabla', 'sitar'] + final='[तबला और सितार के साथ संगीत बज रहा है]' +2026-07-13 08:31:00,614 | INFO | [250.0→252.4s] families=['animal', 'bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,614 | INFO | [252.8→255.2s] families=['animal'] + final='[पेड़-पौधों के बीच हल्की आवाज़ है]' +2026-07-13 08:31:00,614 | INFO | [256.8→263.2s] families=['crow', 'animal', 'bird'] + final='[कौआ काँव-काँव कर रहा है और पक्षियों की चहचहाहट है]' +2026-07-13 08:31:00,614 | INFO | [264.4→266.2s] families=['bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:00,614 | INFO | [266.8→273.0s] families=['animal', 'bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,550 | INFO | [274.4→278.0s] families=['laugh_soft', 'animal', 'bird'] + final='[हल्की हँसी सुनाई दे रही है]' +2026-07-13 08:31:04,550 | INFO | [287.2→289.2s] families=['animal', 'owl'] + final='[उल्लू की आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,550 | INFO | [293.2→295.0s] families=['animal'] + final='[पेड़-पौधों के बीच हल्की आवाज़ है]' +2026-07-13 08:31:04,558 | INFO | [355.2→359.0s] families=['howl', 'animal'] + final='[बाहर से हल्की प्राकृतिक आवाज़ आ रही है]' +2026-07-13 08:31:04,559 | INFO | [380.0→381.8s] families=['insect'] + final='[कीड़ों की आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,559 | INFO | [386.2→388.4s] families=['wind', 'music', 'insect'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [391.6→395.6s] families=['music', 'sitar', 'bird'] + final='[संगीत के साथ सितार बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [399.6→401.6s] families=['music', 'sitar'] + final='[संगीत के साथ सितार बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [402.0→408.0s] families=['music', 'sitar', 'tabla'] + final='[सितार और तबला के साथ संगीत बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [593.4→596.8s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [597.2→599.0s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [599.6→601.8s] families=['music', 'sitar'] + final='[संगीत के साथ सितार बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [603.6→607.4s] families=['music', 'sitar', 'tabla'] + final='[सितार और तबला के साथ संगीत बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [608.0→611.6s] families=['music', 'sitar', 'tabla'] + final='[सितार और तबला के साथ संगीत बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [616.4→626.0s] families=['music', 'sitar', 'animal'] + final='[संगीत के साथ सितार बज रहा है]' +2026-07-13 08:31:04,559 | INFO | [627.4→629.2s] families=['bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,559 | INFO | [651.4→653.2s] families=['animal'] + final='[बाहर से हल्की प्राकृतिक आवाज़ आ रही है]' +2026-07-13 08:31:04,566 | INFO | [656.0→657.8s] families=['animal'] + final='[पेड़-पौधों के बीच हल्की आवाज़ है]' +2026-07-13 08:31:04,567 | INFO | [660.8→662.6s] families=['animal'] + final='[प्रकृति की धीमी आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,569 | INFO | [664.0→673.2s] families=['animal', 'bird', 'squawk'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,569 | INFO | [691.0→693.4s] families=['bird', 'environmental noise'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,569 | INFO | [755.4→770.6s] families=['music', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,569 | INFO | [771.0→776.4s] families=['music', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,569 | INFO | [793.6→796.2s] families=['music', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,573 | INFO | [797.0→812.8s] families=['music', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,574 | INFO | [813.4→817.0s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,575 | INFO | [818.8→822.2s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,577 | INFO | [823.8→829.8s] families=['music', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,577 | INFO | [831.0→834.6s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,577 | INFO | [835.0→836.8s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,577 | INFO | [841.8→843.8s] families=['bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,577 | INFO | [872.6→876.4s] families=['insect', 'cricket', 'bird'] + final='[पक्षियों की चहचहाहट और झींगुरों की आवाज़ है]' +2026-07-13 08:31:04,577 | INFO | [876.8→886.2s] families=['music', 'animal', 'bird'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,583 | INFO | [886.6→888.4s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [889.2→895.2s] families=['music', 'mantra', 'tabla'] + final='[मंत्रोच्चारण के साथ तबला बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [896.8→903.8s] families=['music', 'mantra', 'sitar'] + final='[मंत्रोच्चारण के साथ सितार बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [904.4→909.4s] families=['music', 'mantra', 'chant'] + final='[मंत्रों का उच्चारण सुनाई दे रहा है]' +2026-07-13 08:31:04,585 | INFO | [910.8→914.6s] families=['music', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [917.0→922.2s] families=['music', 'chant'] + final='[मंत्रों का उच्चारण सुनाई दे रहा है]' +2026-07-13 08:31:04,585 | INFO | [923.6→929.0s] families=['music', 'gargling', 'tabla'] + final='[संगीत के साथ तबला बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [930.0→931.8s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [932.4→934.8s] families=['music', 'chant'] + final='[मंत्रों का उच्चारण सुनाई दे रहा है]' +2026-07-13 08:31:04,585 | INFO | [936.8→946.8s] families=['music', 'chant', 'sitar'] + final='[मंत्रोच्चारण के साथ सितार बज रहा है]' +2026-07-13 08:31:04,585 | INFO | [948.8→952.6s] families=['music', 'chant'] + final='[मंत्रों का उच्चारण सुनाई दे रहा है]' +2026-07-13 08:31:04,591 | INFO | [953.0→956.8s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,591 | INFO | [958.8→966.4s] families=['music', 'mantra', 'sitar'] + final='[मंत्रोच्चारण के साथ सितार बज रहा है]' +2026-07-13 08:31:04,591 | INFO | [970.0→976.6s] families=['bird', 'animal', 'insect'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1059.8→1061.6s] families=['animal'] + final='[सूखी पत्तियों के चरमराने की आवाज़ है]' +2026-07-13 08:31:04,591 | INFO | [1062.0→1065.8s] families=['squish', 'animal', 'patter'] + final='[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1068.4→1071.8s] families=['hoot', 'animal'] + final='[उल्लू की आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1073.2→1076.4s] families=['animal', 'moo', 'clip-clop'] + final='[गाय की मूँ मूँ सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1078.6→1083.6s] families=['moo', 'animal', 'whale vocalization'] + final='[गाय की मूँ मूँ सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1091.8→1093.6s] families=['animal'] + final='[सूखी पत्तियों के चरमराने की आवाज़ है]' +2026-07-13 08:31:04,591 | INFO | [1095.2→1097.0s] families=['animal'] + final='[घास में हल्की सी आवाज़ है]' +2026-07-13 08:31:04,591 | INFO | [1102.0→1105.8s] families=['animal', 'rodents, rats, mice', 'patter'] + final='[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1108.8→1110.6s] families=['animal'] + final='[हवा से पेड़ों की टहनियाँ हिल रही हैं]' +2026-07-13 08:31:04,591 | INFO | [1116.2→1118.0s] families=['bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1118.8→1121.0s] families=['animal', 'water'] + final='[घास में हल्की सी आवाज़ है]' +2026-07-13 08:31:04,591 | INFO | [1146.0→1147.8s] families=['bird'] + final='[पक्षियों की चहचहाहट सुनाई दे रही है]' +2026-07-13 08:31:04,591 | INFO | [1278.4→1281.8s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,597 | INFO | [1283.2→1294.6s] families=['music', 'wind'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,597 | INFO | [1301.4→1304.0s] families=['music'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,599 | INFO | [1306.4→1310.4s] families=['theremin', 'animal', 'howl'] + final='[पेड़-पौधों के बीच हल्की आवाज़ है]' +2026-07-13 08:31:04,599 | INFO | [1313.4→1321.0s] families=['music', 'animal', 'theremin'] + final='[संगीत बज रहा है]' +2026-07-13 08:31:04,599 | INFO | [1321.6→1330.4s] families=['animal', 'moo', 'roar'] + final='[गाय की मूँ मूँ सुनाई दे रही है]' +2026-07-13 08:31:04,599 | INFO | [1332.0→1333.8s] families=['patter'] + final='[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है]' +2026-07-13 08:31:04,599 | INFO | [1346.2→1350.4s] families=['rodents, rats, mice', 'whistling', 'roar'] + final='[पास में कोई हल्की गतिविधि हो रही है]' +2026-07-13 08:31:04,599 | INFO | [1351.4→1353.2s] families=['animal'] + final='[बाहर से हल्की प्राकृतिक आवाज़ आ रही है]' +2026-07-13 08:31:04,599 | INFO | [1353.6→1358.2s] families=['sitar', 'music'] + final='[संगीत के साथ सितार बज रहा है]' +2026-07-13 08:31:04,599 | INFO | ================================================================= +2026-07-13 08:31:04,599 | INFO | Timeline: 90 caption segments +2026-07-13 08:31:13,638 | INFO | SRT: results_v14\Bharat_Ek_Khoj_Ep_016_full\captions.srt +2026-07-13 08:31:13,642 | INFO | Generating video with 90 caption segments... +2026-07-13 08:36:52,554 | INFO | Video saved: results_v14\Bharat_Ek_Khoj_Ep_016_full\final_output.mp4 +2026-07-13 08:36:52,670 | INFO | +Done. 90 segments → results_v14\Bharat_Ek_Khoj_Ep_016_full diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png new file mode 100644 index 0000000..4298cd2 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.8s.png new file mode 100644 index 0000000..0ff8034 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png new file mode 100644 index 0000000..a147834 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1068.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1068.4s.png new file mode 100644 index 0000000..8fdb7e4 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1068.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1073.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1073.2s.png new file mode 100644 index 0000000..d5a26c2 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1073.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1078.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1078.6s.png new file mode 100644 index 0000000..e34dad9 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1078.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png new file mode 100644 index 0000000..12717f8 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.2s.png new file mode 100644 index 0000000..6a678c2 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1102.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1102.0s.png new file mode 100644 index 0000000..6c05718 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1102.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png new file mode 100644 index 0000000..9f1f7b4 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1116.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1116.2s.png new file mode 100644 index 0000000..576dd11 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1116.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1118.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1118.8s.png new file mode 100644 index 0000000..d44f91d Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1118.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1146.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1146.0s.png new file mode 100644 index 0000000..6311e53 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1146.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1278.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1278.4s.png new file mode 100644 index 0000000..1a372e6 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1278.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1283.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1283.2s.png new file mode 100644 index 0000000..3d77167 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1283.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.4s.png new file mode 100644 index 0000000..4ecb354 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1306.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1306.4s.png new file mode 100644 index 0000000..5c57589 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1306.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1313.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1313.4s.png new file mode 100644 index 0000000..d12c9ef Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1313.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png new file mode 100644 index 0000000..368b06d Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1332.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1332.0s.png new file mode 100644 index 0000000..0525b13 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1332.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1346.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1346.2s.png new file mode 100644 index 0000000..25bc33b Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1346.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1351.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1351.4s.png new file mode 100644 index 0000000..ea4b8d6 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1351.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1353.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1353.6s.png new file mode 100644 index 0000000..de9bdf2 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1353.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.4s.png new file mode 100644 index 0000000..fd725ef Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png new file mode 100644 index 0000000..a6b07e0 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_211.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_211.4s.png new file mode 100644 index 0000000..ed4a8e2 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_211.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_223.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_223.4s.png new file mode 100644 index 0000000..48fba74 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_223.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png new file mode 100644 index 0000000..e8d2dd6 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.0s.png new file mode 100644 index 0000000..1d2430d Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.6s.png new file mode 100644 index 0000000..6f3d333 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_250.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_250.0s.png new file mode 100644 index 0000000..ec8c841 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_250.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png new file mode 100644 index 0000000..a8a41dc Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_256.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_256.8s.png new file mode 100644 index 0000000..db3992a Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_256.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_264.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_264.4s.png new file mode 100644 index 0000000..223d3c0 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_264.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_266.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_266.8s.png new file mode 100644 index 0000000..774ef9e Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_266.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_274.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_274.4s.png new file mode 100644 index 0000000..b8a5432 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_274.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png new file mode 100644 index 0000000..7437c3f Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png new file mode 100644 index 0000000..5ca25fd Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_35.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_35.0s.png new file mode 100644 index 0000000..2b310b9 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_35.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_355.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_355.2s.png new file mode 100644 index 0000000..b489f2d Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_355.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_380.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_380.0s.png new file mode 100644 index 0000000..bf4eee0 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_380.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_386.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_386.2s.png new file mode 100644 index 0000000..2494e4c Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_386.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.6s.png new file mode 100644 index 0000000..9e5576a Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.6s.png new file mode 100644 index 0000000..0bc7321 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_402.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_402.0s.png new file mode 100644 index 0000000..ed0116e Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_402.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.0s.png new file mode 100644 index 0000000..f8f4e16 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png new file mode 100644 index 0000000..40dc010 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_49.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_49.8s.png new file mode 100644 index 0000000..44d2ab3 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_49.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_52.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_52.0s.png new file mode 100644 index 0000000..3d5178e Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_52.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_593.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_593.4s.png new file mode 100644 index 0000000..67d8a36 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_593.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png new file mode 100644 index 0000000..53e4409 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_599.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_599.6s.png new file mode 100644 index 0000000..22ec47d Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_599.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_603.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_603.6s.png new file mode 100644 index 0000000..90503db Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_603.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.0s.png new file mode 100644 index 0000000..726d342 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_616.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_616.4s.png new file mode 100644 index 0000000..1d632a5 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_616.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.4s.png new file mode 100644 index 0000000..df3b424 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_651.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_651.4s.png new file mode 100644 index 0000000..e28c1d4 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_651.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png new file mode 100644 index 0000000..2517f02 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png new file mode 100644 index 0000000..f8c53aa Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.0s.png new file mode 100644 index 0000000..f63c4b1 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png new file mode 100644 index 0000000..a9ce344 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png new file mode 100644 index 0000000..8506982 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_77.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_77.0s.png new file mode 100644 index 0000000..8b66ea0 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_77.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png new file mode 100644 index 0000000..3898c55 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_793.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_793.6s.png new file mode 100644 index 0000000..fb6ac89 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_793.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_797.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_797.0s.png new file mode 100644 index 0000000..1c06c9f Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_797.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png new file mode 100644 index 0000000..52d8435 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_818.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_818.8s.png new file mode 100644 index 0000000..fc26d3c Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_818.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png new file mode 100644 index 0000000..a3bcf77 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png new file mode 100644 index 0000000..93a61b3 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png new file mode 100644 index 0000000..ff8e1c4 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_841.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_841.8s.png new file mode 100644 index 0000000..77f476d Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_841.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.6s.png new file mode 100644 index 0000000..8c9bc65 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png new file mode 100644 index 0000000..d65d83c Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png new file mode 100644 index 0000000..7c36822 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_889.2s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_889.2s.png new file mode 100644 index 0000000..479ffdb Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_889.2s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png new file mode 100644 index 0000000..c37f04e Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png new file mode 100644 index 0000000..a593972 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png new file mode 100644 index 0000000..982db60 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_917.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_917.0s.png new file mode 100644 index 0000000..be7c959 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_917.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png new file mode 100644 index 0000000..96903fe Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png new file mode 100644 index 0000000..7c51d4f Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_932.4s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_932.4s.png new file mode 100644 index 0000000..a10fcbf Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_932.4s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png new file mode 100644 index 0000000..1402ec4 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_94.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_94.8s.png new file mode 100644 index 0000000..6af3c0e Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_94.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png new file mode 100644 index 0000000..b969086 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png new file mode 100644 index 0000000..f00f9ea Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_958.8s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_958.8s.png new file mode 100644 index 0000000..02732e9 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_958.8s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_970.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_970.0s.png new file mode 100644 index 0000000..a8f2d42 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_970.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_99.0s.png b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_99.0s.png new file mode 100644 index 0000000..ba88761 Binary files /dev/null and b/results_v14/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_99.0s.png differ diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/captions.srt b/results_v14/Bharat_Ek_Khoj_Ep_016_full/captions.srt new file mode 100644 index 0000000..b7b4b89 --- /dev/null +++ b/results_v14/Bharat_Ek_Khoj_Ep_016_full/captions.srt @@ -0,0 +1,360 @@ +1 +00:00:00,000 --> 00:00:02,000 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +2 +00:00:02,600 --> 00:00:06,400 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +3 +00:00:35,000 --> 00:00:40,000 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +4 +00:00:41,000 --> 00:00:44,799 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +5 +00:00:45,200 --> 00:00:47,200 +[कीड़ों की आवाज़ सुनाई दे रही है] + +6 +00:00:49,799 --> 00:00:51,600 +[पत्तों की सरसराहट सुनाई दे रही है] + +7 +00:00:52,000 --> 00:00:56,200 +[हवा से पेड़ों की टहनियाँ हिल रही हैं] + +8 +00:01:17,000 --> 00:01:24,000 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +9 +00:01:34,799 --> 00:01:38,200 +[कौआ काँव-काँव कर रहा है और पक्षियों की चहचहाहट है] + +10 +00:01:39,000 --> 00:01:42,400 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +11 +00:03:18,400 --> 00:03:31,000 +[तबला और सितार के साथ संगीत बज रहा है] + +12 +00:03:31,400 --> 00:03:35,000 +[तबला और सितार के साथ संगीत बज रहा है] + +13 +00:03:43,400 --> 00:03:45,800 +[तबला और सितार के साथ संगीत बज रहा है] + +14 +00:03:46,199 --> 00:03:48,000 +[संगीत बज रहा है] + +15 +00:03:49,000 --> 00:03:57,199 +[तबला और सितार के साथ संगीत बज रहा है] + +16 +00:03:57,599 --> 00:04:06,800 +[तबला और सितार के साथ संगीत बज रहा है] + +17 +00:04:10,000 --> 00:04:12,400 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +18 +00:04:12,800 --> 00:04:15,199 +[पेड़-पौधों के बीच हल्की आवाज़ है] + +19 +00:04:16,800 --> 00:04:23,199 +[कौआ काँव-काँव कर रहा है और पक्षियों की चहचहाहट है] + +20 +00:04:24,399 --> 00:04:26,199 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +21 +00:04:26,800 --> 00:04:33,000 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +22 +00:04:34,399 --> 00:04:38,000 +[हल्की हँसी सुनाई दे रही है] + +23 +00:04:47,199 --> 00:04:49,199 +[उल्लू की आवाज़ सुनाई दे रही है] + +24 +00:04:53,199 --> 00:04:55,000 +[पेड़-पौधों के बीच हल्की आवाज़ है] + +25 +00:05:55,199 --> 00:05:59,000 +[बाहर से हल्की प्राकृतिक आवाज़ आ रही है] + +26 +00:06:20,000 --> 00:06:21,800 +[कीड़ों की आवाज़ सुनाई दे रही है] + +27 +00:06:26,199 --> 00:06:28,399 +[संगीत बज रहा है] + +28 +00:06:31,600 --> 00:06:35,600 +[संगीत के साथ सितार बज रहा है] + +29 +00:06:39,600 --> 00:06:41,600 +[संगीत के साथ सितार बज रहा है] + +30 +00:06:42,000 --> 00:06:48,000 +[सितार और तबला के साथ संगीत बज रहा है] + +31 +00:09:53,399 --> 00:09:56,799 +[संगीत बज रहा है] + +32 +00:09:57,200 --> 00:09:59,000 +[संगीत बज रहा है] + +33 +00:09:59,600 --> 00:10:01,799 +[संगीत के साथ सितार बज रहा है] + +34 +00:10:03,600 --> 00:10:07,399 +[सितार और तबला के साथ संगीत बज रहा है] + +35 +00:10:08,000 --> 00:10:11,600 +[सितार और तबला के साथ संगीत बज रहा है] + +36 +00:10:16,399 --> 00:10:26,000 +[संगीत के साथ सितार बज रहा है] + +37 +00:10:27,399 --> 00:10:29,200 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +38 +00:10:51,399 --> 00:10:53,200 +[बाहर से हल्की प्राकृतिक आवाज़ आ रही है] + +39 +00:10:56,000 --> 00:10:57,799 +[पेड़-पौधों के बीच हल्की आवाज़ है] + +40 +00:11:00,799 --> 00:11:02,600 +[प्रकृति की धीमी आवाज़ सुनाई दे रही है] + +41 +00:11:04,000 --> 00:11:13,200 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +42 +00:11:31,000 --> 00:11:33,399 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +43 +00:12:35,399 --> 00:12:50,600 +[संगीत के साथ तबला बज रहा है] + +44 +00:12:51,000 --> 00:12:56,399 +[संगीत के साथ तबला बज रहा है] + +45 +00:13:13,600 --> 00:13:16,200 +[संगीत के साथ तबला बज रहा है] + +46 +00:13:17,000 --> 00:13:32,799 +[संगीत के साथ तबला बज रहा है] + +47 +00:13:33,399 --> 00:13:37,000 +[संगीत बज रहा है] + +48 +00:13:38,799 --> 00:13:42,200 +[संगीत बज रहा है] + +49 +00:13:43,799 --> 00:13:49,799 +[संगीत के साथ तबला बज रहा है] + +50 +00:13:51,000 --> 00:13:54,600 +[संगीत बज रहा है] + +51 +00:13:55,000 --> 00:13:56,799 +[संगीत बज रहा है] + +52 +00:14:01,799 --> 00:14:03,799 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +53 +00:14:32,600 --> 00:14:36,399 +[पक्षियों की चहचहाहट और झींगुरों की आवाज़ है] + +54 +00:14:36,799 --> 00:14:46,200 +[संगीत बज रहा है] + +55 +00:14:46,600 --> 00:14:48,399 +[संगीत बज रहा है] + +56 +00:14:49,200 --> 00:14:55,200 +[मंत्रोच्चारण के साथ तबला बज रहा है] + +57 +00:14:56,799 --> 00:15:03,799 +[मंत्रोच्चारण के साथ सितार बज रहा है] + +58 +00:15:04,399 --> 00:15:09,399 +[मंत्रों का उच्चारण सुनाई दे रहा है] + +59 +00:15:10,799 --> 00:15:14,600 +[संगीत के साथ तबला बज रहा है] + +60 +00:15:17,000 --> 00:15:22,200 +[मंत्रों का उच्चारण सुनाई दे रहा है] + +61 +00:15:23,600 --> 00:15:29,000 +[संगीत के साथ तबला बज रहा है] + +62 +00:15:30,000 --> 00:15:31,799 +[संगीत बज रहा है] + +63 +00:15:32,399 --> 00:15:34,799 +[मंत्रों का उच्चारण सुनाई दे रहा है] + +64 +00:15:36,799 --> 00:15:46,799 +[मंत्रोच्चारण के साथ सितार बज रहा है] + +65 +00:15:48,799 --> 00:15:52,600 +[मंत्रों का उच्चारण सुनाई दे रहा है] + +66 +00:15:53,000 --> 00:15:56,799 +[संगीत बज रहा है] + +67 +00:15:58,799 --> 00:16:06,399 +[मंत्रोच्चारण के साथ सितार बज रहा है] + +68 +00:16:10,000 --> 00:16:16,600 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +69 +00:17:39,799 --> 00:17:41,599 +[सूखी पत्तियों के चरमराने की आवाज़ है] + +70 +00:17:42,000 --> 00:17:45,799 +[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है] + +71 +00:17:48,400 --> 00:17:51,799 +[उल्लू की आवाज़ सुनाई दे रही है] + +72 +00:17:53,200 --> 00:17:56,400 +[गाय की मूँ मूँ सुनाई दे रही है] + +73 +00:17:58,599 --> 00:18:03,599 +[गाय की मूँ मूँ सुनाई दे रही है] + +74 +00:18:11,799 --> 00:18:13,599 +[सूखी पत्तियों के चरमराने की आवाज़ है] + +75 +00:18:15,200 --> 00:18:17,000 +[घास में हल्की सी आवाज़ है] + +76 +00:18:22,000 --> 00:18:25,799 +[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है] + +77 +00:18:28,799 --> 00:18:30,599 +[हवा से पेड़ों की टहनियाँ हिल रही हैं] + +78 +00:18:36,200 --> 00:18:38,000 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +79 +00:18:38,799 --> 00:18:41,000 +[घास में हल्की सी आवाज़ है] + +80 +00:19:06,000 --> 00:19:07,799 +[पक्षियों की चहचहाहट सुनाई दे रही है] + +81 +00:21:18,400 --> 00:21:21,799 +[संगीत बज रहा है] + +82 +00:21:23,200 --> 00:21:34,599 +[संगीत बज रहा है] + +83 +00:21:41,400 --> 00:21:44,000 +[संगीत बज रहा है] + +84 +00:21:46,400 --> 00:21:50,400 +[पेड़-पौधों के बीच हल्की आवाज़ है] + +85 +00:21:53,400 --> 00:22:01,000 +[संगीत बज रहा है] + +86 +00:22:01,599 --> 00:22:10,400 +[गाय की मूँ मूँ सुनाई दे रही है] + +87 +00:22:12,000 --> 00:22:13,799 +[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है] + +88 +00:22:26,200 --> 00:22:30,400 +[पास में कोई हल्की गतिविधि हो रही है] + +89 +00:22:31,400 --> 00:22:33,200 +[बाहर से हल्की प्राकृतिक आवाज़ आ रही है] + +90 +00:22:33,599 --> 00:22:38,200 +[संगीत के साथ सितार बज रहा है] + diff --git a/results_v14/Bharat_Ek_Khoj_Ep_016_full/results.json b/results_v14/Bharat_Ek_Khoj_Ep_016_full/results.json new file mode 100644 index 0000000..b0e1bc9 --- /dev/null +++ b/results_v14/Bharat_Ek_Khoj_Ep_016_full/results.json @@ -0,0 +1,912 @@ +{ + "caption_segments": 90, + "timeline": [ + { + "start_sec": 0.0, + "end_sec": 2.0, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "environmental noise", + "bird" + ], + "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Per" + }, + { + "start_sec": 2.6, + "end_sec": 6.4, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird" + ], + "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Per" + }, + { + "start_sec": 35.0, + "end_sec": 40.0, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "" + }, + { + "start_sec": 41.0, + "end_sec": 44.8, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird", + "animal", + "environmental noise" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 45.2, + "end_sec": 47.2, + "caption": "[कीड़ों की आवाज़ सुनाई दे रही है]", + "families": [ + "environmental noise", + "insect" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 49.8, + "end_sec": 51.6, + "caption": "[पत्तों की सरसराहट सुनाई दे रही है]", + "families": [ + "environmental noise" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 52.0, + "end_sec": 56.2, + "caption": "[हवा से पेड़ों की टहनियाँ हिल रही हैं]", + "families": [ + "rodents, rats, mice", + "environmental noise", + "turkey" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 77.0, + "end_sec": 84.0, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird", + "animal", + "environmental noise" + ], + "scene_text": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. They ar" + }, + { + "start_sec": 94.8, + "end_sec": 98.2, + "caption": "[कौआ काँव-काँव कर रहा है और पक्षियों की चहचहाहट है]", + "families": [ + "crow", + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 99.0, + "end_sec": 102.4, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "animal", + "bird", + "mechanisms" + ], + "scene_text": "" + }, + { + "start_sec": 198.4, + "end_sec": 211.0, + "caption": "[तबला और सितार के साथ संगीत बज रहा है]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 211.4, + "end_sec": 215.0, + "caption": "[तबला और सितार के साथ संगीत बज रहा है]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 223.4, + "end_sec": 225.8, + "caption": "[तबला और सितार के साथ संगीत बज रहा है]", + "families": [ + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 226.2, + "end_sec": 228.0, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 229.0, + "end_sec": 237.2, + "caption": "[तबला और सितार के साथ संगीत बज रहा है]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 237.6, + "end_sec": 246.8, + "caption": "[तबला और सितार के साथ संगीत बज रहा है]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 250.0, + "end_sec": 252.4, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 252.8, + "end_sec": 255.2, + "caption": "[पेड़-पौधों के बीच हल्की आवाज़ है]", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 256.8, + "end_sec": 263.2, + "caption": "[कौआ काँव-काँव कर रहा है और पक्षियों की चहचहाहट है]", + "families": [ + "crow", + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 264.4, + "end_sec": 266.2, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 266.8, + "end_sec": 273.0, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 274.4, + "end_sec": 278.0, + "caption": "[हल्की हँसी सुनाई दे रही है]", + "families": [ + "laugh_soft", + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 287.2, + "end_sec": 289.2, + "caption": "[उल्लू की आवाज़ सुनाई दे रही है]", + "families": [ + "animal", + "owl" + ], + "scene_text": "" + }, + { + "start_sec": 293.2, + "end_sec": 295.0, + "caption": "[पेड़-पौधों के बीच हल्की आवाज़ है]", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 355.2, + "end_sec": 359.0, + "caption": "[बाहर से हल्की प्राकृतिक आवाज़ आ रही है]", + "families": [ + "howl", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 380.0, + "end_sec": 381.8, + "caption": "[कीड़ों की आवाज़ सुनाई दे रही है]", + "families": [ + "insect" + ], + "scene_text": "The image shows three people sitting on a woven mat under a tree. The man in the middle is sitting o" + }, + { + "start_sec": 386.2, + "end_sec": 388.4, + "caption": "[संगीत बज रहा है]", + "families": [ + "wind", + "music", + "insect" + ], + "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with hi" + }, + { + "start_sec": 391.6, + "end_sec": 395.6, + "caption": "[संगीत के साथ सितार बज रहा है]", + "families": [ + "music", + "sitar", + "bird" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 399.6, + "end_sec": 401.6, + "caption": "[संगीत के साथ सितार बज रहा है]", + "families": [ + "music", + "sitar" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 402.0, + "end_sec": 408.0, + "caption": "[सितार और तबला के साथ संगीत बज रहा है]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 593.4, + "end_sec": 596.8, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 597.2, + "end_sec": 599.0, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 599.6, + "end_sec": 601.8, + "caption": "[संगीत के साथ सितार बज रहा है]", + "families": [ + "music", + "sitar" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 603.6, + "end_sec": 607.4, + "caption": "[सितार और तबला के साथ संगीत बज रहा है]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 608.0, + "end_sec": 611.6, + "caption": "[सितार और तबला के साथ संगीत बज रहा है]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows a group of three people standing in a field of tall grass. They appear to be engaged" + }, + { + "start_sec": 616.4, + "end_sec": 626.0, + "caption": "[संगीत के साथ सितार बज रहा है]", + "families": [ + "music", + "sitar", + "animal" + ], + "scene_text": "The image shows three women standing in a field of tall grass. They appear to be in a peaceful and s" + }, + { + "start_sec": 627.4, + "end_sec": 629.2, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird" + ], + "scene_text": "The image shows two men standing on a rocky shore near a body of water. The man in the saree is hold" + }, + { + "start_sec": 651.4, + "end_sec": 653.2, + "caption": "[बाहर से हल्की प्राकृतिक आवाज़ आ रही है]", + "families": [ + "animal" + ], + "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the " + }, + { + "start_sec": 656.0, + "end_sec": 657.8, + "caption": "[पेड़-पौधों के बीच हल्की आवाज़ है]", + "families": [ + "animal" + ], + "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the " + }, + { + "start_sec": 660.8, + "end_sec": 662.6, + "caption": "[प्रकृति की धीमी आवाज़ सुनाई दे रही है]", + "families": [ + "animal" + ], + "scene_text": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress," + }, + { + "start_sec": 664.0, + "end_sec": 673.2, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "animal", + "bird", + "squawk" + ], + "scene_text": "" + }, + { + "start_sec": 691.0, + "end_sec": 693.4, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs cro" + }, + { + "start_sec": 755.4, + "end_sec": 770.6, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 771.0, + "end_sec": 776.4, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of four people sitting on the ground in a forested area. The man on the left" + }, + { + "start_sec": 793.6, + "end_sec": 796.2, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 797.0, + "end_sec": 812.8, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 813.4, + "end_sec": 817.0, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 818.8, + "end_sec": 822.2, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 823.8, + "end_sec": 829.8, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the c" + }, + { + "start_sec": 831.0, + "end_sec": 834.6, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 835.0, + "end_sec": 836.8, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is" + }, + { + "start_sec": 841.8, + "end_sec": 843.8, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is" + }, + { + "start_sec": 872.6, + "end_sec": 876.4, + "caption": "[पक्षियों की चहचहाहट और झींगुरों की आवाज़ है]", + "families": [ + "insect", + "cricket", + "bird" + ], + "scene_text": "The image shows a man and a woman in a romantic embrace. He is smiling and appears to be in a good m" + }, + { + "start_sec": 876.8, + "end_sec": 886.2, + "caption": "[संगीत बज रहा है]", + "families": [ + "music", + "animal", + "bird" + ], + "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right cor" + }, + { + "start_sec": 886.6, + "end_sec": 888.4, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right cor" + }, + { + "start_sec": 889.2, + "end_sec": 895.2, + "caption": "[मंत्रोच्चारण के साथ तबला बज रहा है]", + "families": [ + "music", + "mantra", + "tabla" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is o" + }, + { + "start_sec": 896.8, + "end_sec": 903.8, + "caption": "[मंत्रोच्चारण के साथ सितार बज रहा है]", + "families": [ + "music", + "mantra", + "sitar" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and the" + }, + { + "start_sec": 904.4, + "end_sec": 909.4, + "caption": "[मंत्रों का उच्चारण सुनाई दे रहा है]", + "families": [ + "music", + "mantra", + "chant" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and the" + }, + { + "start_sec": 910.8, + "end_sec": 914.6, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 917.0, + "end_sec": 922.2, + "caption": "[मंत्रों का उच्चारण सुनाई दे रहा है]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 923.6, + "end_sec": 929.0, + "caption": "[संगीत के साथ तबला बज रहा है]", + "families": [ + "music", + "gargling", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 930.0, + "end_sec": 931.8, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 932.4, + "end_sec": 934.8, + "caption": "[मंत्रों का उच्चारण सुनाई दे रहा है]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 936.8, + "end_sec": 946.8, + "caption": "[मंत्रोच्चारण के साथ सितार बज रहा है]", + "families": [ + "music", + "chant", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 948.8, + "end_sec": 952.6, + "caption": "[मंत्रों का उच्चारण सुनाई दे रहा है]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 953.0, + "end_sec": 956.8, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 958.8, + "end_sec": 966.4, + "caption": "[मंत्रोच्चारण के साथ सितार बज रहा है]", + "families": [ + "music", + "mantra", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 970.0, + "end_sec": 976.6, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird", + "animal", + "insect" + ], + "scene_text": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman" + }, + { + "start_sec": 1059.8, + "end_sec": 1061.6, + "caption": "[सूखी पत्तियों के चरमराने की आवाज़ है]", + "families": [ + "animal" + ], + "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on" + }, + { + "start_sec": 1062.0, + "end_sec": 1065.8, + "caption": "[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है]", + "families": [ + "squish", + "animal", + "patter" + ], + "scene_text": "" + }, + { + "start_sec": 1068.4, + "end_sec": 1071.8, + "caption": "[उल्लू की आवाज़ सुनाई दे रही है]", + "families": [ + "hoot", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1073.2, + "end_sec": 1076.4, + "caption": "[गाय की मूँ मूँ सुनाई दे रही है]", + "families": [ + "animal", + "moo", + "clip-clop" + ], + "scene_text": "" + }, + { + "start_sec": 1078.6, + "end_sec": 1083.6, + "caption": "[गाय की मूँ मूँ सुनाई दे रही है]", + "families": [ + "moo", + "animal", + "whale vocalization" + ], + "scene_text": "" + }, + { + "start_sec": 1091.8, + "end_sec": 1093.6, + "caption": "[सूखी पत्तियों के चरमराने की आवाज़ है]", + "families": [ + "animal" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the gro" + }, + { + "start_sec": 1095.2, + "end_sec": 1097.0, + "caption": "[घास में हल्की सी आवाज़ है]", + "families": [ + "animal" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the gro" + }, + { + "start_sec": 1102.0, + "end_sec": 1105.8, + "caption": "[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है]", + "families": [ + "animal", + "rodents, rats, mice", + "patter" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. They are sitting in a ci" + }, + { + "start_sec": 1108.8, + "end_sec": 1110.6, + "caption": "[हवा से पेड़ों की टहनियाँ हिल रही हैं]", + "families": [ + "animal" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. There are nine people in" + }, + { + "start_sec": 1116.2, + "end_sec": 1118.0, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock " + }, + { + "start_sec": 1118.8, + "end_sec": 1121.0, + "caption": "[घास में हल्की सी आवाज़ है]", + "families": [ + "animal", + "water" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock " + }, + { + "start_sec": 1146.0, + "end_sec": 1147.8, + "caption": "[पक्षियों की चहचहाहट सुनाई दे रही है]", + "families": [ + "bird" + ], + "scene_text": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing" + }, + { + "start_sec": 1278.4, + "end_sec": 1281.8, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of four women sitting on the ground in a rural area. The cow in the backgrou" + }, + { + "start_sec": 1283.2, + "end_sec": 1294.6, + "caption": "[संगीत बज रहा है]", + "families": [ + "music", + "wind" + ], + "scene_text": "" + }, + { + "start_sec": 1301.4, + "end_sec": 1304.0, + "caption": "[संगीत बज रहा है]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 1306.4, + "end_sec": 1310.4, + "caption": "[पेड़-पौधों के बीच हल्की आवाज़ है]", + "families": [ + "theremin", + "animal", + "howl" + ], + "scene_text": "" + }, + { + "start_sec": 1313.4, + "end_sec": 1321.0, + "caption": "[संगीत बज रहा है]", + "families": [ + "music", + "animal", + "theremin" + ], + "scene_text": "" + }, + { + "start_sec": 1321.6, + "end_sec": 1330.4, + "caption": "[गाय की मूँ मूँ सुनाई दे रही है]", + "families": [ + "animal", + "moo", + "roar" + ], + "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatche" + }, + { + "start_sec": 1332.0, + "end_sec": 1333.8, + "caption": "[हल्की थपथपाहट जैसी आवाज़ सुनाई दे रही है]", + "families": [ + "patter" + ], + "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatche" + }, + { + "start_sec": 1346.2, + "end_sec": 1350.4, + "caption": "[पास में कोई हल्की गतिविधि हो रही है]", + "families": [ + "rodents, rats, mice", + "whistling", + "roar" + ], + "scene_text": "" + }, + { + "start_sec": 1351.4, + "end_sec": 1353.2, + "caption": "[बाहर से हल्की प्राकृतिक आवाज़ आ रही है]", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1353.6, + "end_sec": 1358.2, + "caption": "[संगीत के साथ सितार बज रहा है]", + "families": [ + "sitar", + "music" + ], + "scene_text": "" + } + ], + "raw_events": 2600, + "deduped_events": 355, + "speech_segments": 156 +} \ No newline at end of file diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_100.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_100.4s.png new file mode 100755 index 0000000..3289a42 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_100.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_104.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_104.2s.png new file mode 100755 index 0000000..92fdc1f Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_104.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_107.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_107.0s.png new file mode 100755 index 0000000..9a596e3 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_107.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_109.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_109.4s.png new file mode 100755 index 0000000..6d53fb1 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_109.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_113.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_113.2s.png new file mode 100755 index 0000000..9d62249 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_113.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_1166.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_1166.0s.png new file mode 100755 index 0000000..aa0dabc Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_1166.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_119.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_119.6s.png new file mode 100644 index 0000000..c703568 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_119.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_125.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_125.2s.png new file mode 100755 index 0000000..81a2f18 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_125.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_127.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_127.4s.png new file mode 100755 index 0000000..31c4a1b Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_127.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_222.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_222.2s.png new file mode 100755 index 0000000..56dbe7b Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_222.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_229.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_229.0s.png new file mode 100755 index 0000000..bb644ba Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_229.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_231.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_231.2s.png new file mode 100755 index 0000000..b5a7405 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_231.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_405.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_405.2s.png new file mode 100755 index 0000000..e8ace25 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_405.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_410.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_410.0s.png new file mode 100755 index 0000000..48c66a2 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_410.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_460.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_460.2s.png new file mode 100755 index 0000000..82f7e08 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_460.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_470.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_470.0s.png new file mode 100755 index 0000000..5d78b9b Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_470.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_472.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_472.4s.png new file mode 100755 index 0000000..418f0de Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_472.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_475.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_475.2s.png new file mode 100644 index 0000000..922d5b6 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_475.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_475.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_475.4s.png new file mode 100755 index 0000000..29bc583 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_475.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_49.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_49.8s.png new file mode 100755 index 0000000..c221e31 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_49.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_52.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_52.0s.png new file mode 100755 index 0000000..b6bf14a Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_52.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_54.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_54.6s.png new file mode 100755 index 0000000..68fcebd Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_54.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_560.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_560.6s.png new file mode 100755 index 0000000..a795778 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_560.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_562.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_562.0s.png new file mode 100755 index 0000000..b2ae710 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_562.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_566.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_566.0s.png new file mode 100755 index 0000000..8794776 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_566.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_568.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_568.8s.png new file mode 100755 index 0000000..d7f3707 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_568.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_57.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_57.4s.png new file mode 100755 index 0000000..c0f73eb Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_57.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_571.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_571.4s.png new file mode 100644 index 0000000..50b91c2 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_571.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_571.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_571.8s.png new file mode 100755 index 0000000..288ae1d Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_571.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_574.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_574.6s.png new file mode 100755 index 0000000..ec4daca Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_574.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_576.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_576.8s.png new file mode 100755 index 0000000..bd3b858 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_576.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_58.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_58.6s.png new file mode 100755 index 0000000..016117c Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_58.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_60.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_60.6s.png new file mode 100755 index 0000000..f4f0a87 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_60.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_617.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_617.4s.png new file mode 100755 index 0000000..6216b82 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_617.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_621.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_621.8s.png new file mode 100755 index 0000000..567c044 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_621.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_66.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_66.8s.png new file mode 100755 index 0000000..1371ee5 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_66.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_679.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_679.0s.png new file mode 100755 index 0000000..b54daba Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_679.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_681.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_681.2s.png new file mode 100755 index 0000000..8946ef5 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_681.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_685.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_685.8s.png new file mode 100755 index 0000000..b9bc922 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_685.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_691.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_691.2s.png new file mode 100755 index 0000000..0098261 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_691.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_698.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_698.2s.png new file mode 100755 index 0000000..21cfd06 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_698.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_702.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_702.2s.png new file mode 100755 index 0000000..f4c9136 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_702.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_711.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_711.0s.png new file mode 100755 index 0000000..d41f189 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_711.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_713.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_713.8s.png new file mode 100755 index 0000000..8c1dd33 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_713.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_716.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_716.2s.png new file mode 100755 index 0000000..3d9f127 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_716.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_718.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_718.4s.png new file mode 100755 index 0000000..ab814ba Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_718.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_721.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_721.6s.png new file mode 100755 index 0000000..d6408a5 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_721.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_724.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_724.0s.png new file mode 100755 index 0000000..b952780 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_724.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_75.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_75.8s.png new file mode 100755 index 0000000..7765145 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_75.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_78.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_78.2s.png new file mode 100755 index 0000000..949e05d Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_78.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_80.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_80.4s.png new file mode 100755 index 0000000..1750908 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_80.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_84.6s.png b/results_v16/BEK_EP_020/annotated_frames/frame_84.6s.png new file mode 100755 index 0000000..fb81e7a Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_84.6s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_87.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_87.2s.png new file mode 100755 index 0000000..5294ee1 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_87.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_908.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_908.8s.png new file mode 100755 index 0000000..e0c5036 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_908.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_926.4s.png b/results_v16/BEK_EP_020/annotated_frames/frame_926.4s.png new file mode 100755 index 0000000..f23c657 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_926.4s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_928.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_928.8s.png new file mode 100755 index 0000000..80798b2 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_928.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_935.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_935.0s.png new file mode 100755 index 0000000..d7abfc0 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_935.0s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_937.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_937.2s.png new file mode 100755 index 0000000..74eb20a Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_937.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_941.8s.png b/results_v16/BEK_EP_020/annotated_frames/frame_941.8s.png new file mode 100755 index 0000000..1405017 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_941.8s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_98.2s.png b/results_v16/BEK_EP_020/annotated_frames/frame_98.2s.png new file mode 100755 index 0000000..ae8d296 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_98.2s.png differ diff --git a/results_v16/BEK_EP_020/annotated_frames/frame_991.0s.png b/results_v16/BEK_EP_020/annotated_frames/frame_991.0s.png new file mode 100755 index 0000000..d9be7d7 Binary files /dev/null and b/results_v16/BEK_EP_020/annotated_frames/frame_991.0s.png differ diff --git a/results_v16/BEK_EP_020/captions.srt b/results_v16/BEK_EP_020/captions.srt new file mode 100755 index 0000000..591ebc6 --- /dev/null +++ b/results_v16/BEK_EP_020/captions.srt @@ -0,0 +1,204 @@ +1 +00:00:49,799 --> 00:00:51,600 +[संगीत] + +2 +00:00:52,000 --> 00:00:53,799 +[संगीत] + +3 +00:00:54,600 --> 00:00:58,000 +[संगीत] + +4 +00:00:58,600 --> 00:01:04,200 +[हारमोनियम-पियानो के साथ संगीत] + +5 +00:01:06,799 --> 00:01:20,000 +[हारमोनियम-पियानो के साथ संगीत] + +6 +00:01:20,400 --> 00:01:22,200 +[संगीत] + +7 +00:01:24,599 --> 00:01:26,400 +[संगीत] + +8 +00:01:27,200 --> 00:01:36,799 +[मंत्रों का उच्चारण] + +9 +00:01:38,200 --> 00:01:40,000 +[संगीत] + +10 +00:01:40,400 --> 00:01:43,799 +[संगीत] + +11 +00:01:44,200 --> 00:01:46,000 +[संगीत] + +12 +00:01:47,000 --> 00:01:48,799 +[संगीत] + +13 +00:01:49,400 --> 00:01:51,200 +[संगीत] + +14 +00:01:53,200 --> 00:01:59,000 +[संगीत] + +15 +00:01:59,599 --> 00:02:02,400 +[संगीत के साथ हारमोनियम] + +16 +00:02:05,200 --> 00:02:09,199 +[संगीत के साथ हारमोनियम] + +17 +00:03:42,199 --> 00:03:45,599 +[पक्षियों की चहचहाहट] + +18 +00:03:49,000 --> 00:03:50,800 +[पत्तों की सरसराहट] + +19 +00:03:51,199 --> 00:03:53,020 +[पक्षियों की चहचहाहट] + +20 +00:06:45,199 --> 00:06:49,600 +[बांसुरी-गिटार के साथ संगीत] + +21 +00:06:50,000 --> 00:06:51,029 +[संगीत] + +22 +00:07:40,199 --> 00:07:49,000 +[संगीत के साथ गिटार] + +23 +00:07:50,000 --> 00:07:51,800 +[संगीत के साथ गिटार] + +24 +00:07:52,399 --> 00:07:54,199 +[संगीत] + +25 +00:07:55,199 --> 00:07:57,199 +[संगीत के साथ गिटार] + +26 +00:09:20,600 --> 00:09:23,799 +[संगीत के साथ हारमोनियम] + +27 +00:09:26,000 --> 00:09:27,799 +[संगीत के साथ वायलिन] + +28 +00:09:28,799 --> 00:09:31,000 +[संगीत के साथ वायलिन] + +29 +00:09:31,399 --> 00:09:33,600 +[संगीत के साथ वायलिन] + +30 +00:09:34,600 --> 00:09:38,600 +[संगीत के साथ वायलिन] + +31 +00:10:17,399 --> 00:10:20,799 +[संगीत] + +32 +00:10:21,799 --> 00:10:22,840 +[संगीत] + +33 +00:11:19,000 --> 00:11:20,799 +[संगीत] + +34 +00:11:21,200 --> 00:11:25,000 +[संगीत] + +35 +00:11:25,799 --> 00:11:27,600 +[संगीत] + +36 +00:11:31,200 --> 00:11:36,799 +[संगीत] + +37 +00:11:38,200 --> 00:11:41,799 +[संगीत] + +38 +00:11:42,200 --> 00:11:49,799 +[संगीत] + +39 +00:11:51,000 --> 00:11:52,799 +[संगीत] + +40 +00:11:53,799 --> 00:11:55,600 +[संगीत] + +41 +00:11:56,200 --> 00:12:00,200 +[संगीत के साथ गिटार] + +42 +00:12:01,600 --> 00:12:03,399 +[संगीत] + +43 +00:12:04,000 --> 00:12:04,990 +[संगीत] + +44 +00:15:08,799 --> 00:15:11,480 +[संगीत] + +45 +00:15:26,399 --> 00:15:28,200 +[संगीत] + +46 +00:15:28,799 --> 00:15:30,600 +[संगीत] + +47 +00:15:35,000 --> 00:15:36,799 +[संगीत] + +48 +00:15:37,200 --> 00:15:38,330 +[संगीत के साथ बांसुरी] + +49 +00:15:41,799 --> 00:15:43,509 +[संगीत] + +50 +00:16:31,000 --> 00:16:32,570 +[थप की आवाज] + +51 +00:19:26,000 --> 00:19:27,799 +[वाहन की आवाज़] + diff --git a/results_v16/BEK_EP_020/florence_log.jsonl b/results_v16/BEK_EP_020/florence_log.jsonl new file mode 100755 index 0000000..d4a7332 --- /dev/null +++ b/results_v16/BEK_EP_020/florence_log.jsonl @@ -0,0 +1,178 @@ +{"timestamp_sec": 0.0, "raw_caption": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_text": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_hints": ["owl hooting", "crickets chirping", "wind", "night insects", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 6.0, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Doorarshan\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Doorarshan\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 12.04, "raw_caption": "The image shows a red rose with water droplets on it against a black background, with a watermark in the middle. The rose is vibrant and stands out against the dark background, making it the focal point of the image.", "scene_text": "The image shows a red rose with water droplets on it against a black background, with a watermark in the middle. The rose is vibrant and stands out against the dark background, making it the focal point of the image.", "scene_hints": ["owl hooting", "crickets chirping", "wind", "frogs croaking", "wind over water", "rain falling", "night insects", "crackling fire", "water flowing", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 18.08, "raw_caption": "The image shows a single red rose with water droplets on it, its stem and leaves standing out against a dark background. The rose is vibrant and full of life, its petals a deep, rich red. The watermark on the image adds a subtle touch of elegance to the overall composition.", "scene_text": "The image shows a single red rose with water droplets on it, its stem and leaves standing out against a dark background", "scene_hints": ["crow cawing", "insects buzzing", "night insects", "distant music", "wind", "frogs croaking", "rain falling", "crickets", "branch creak", "birds chirping", "owl hooting", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "crickets chirping", "rustling grass", "crackling fire", "water flowing"], "expressions": []} +{"timestamp_sec": 24.12, "raw_caption": "The image shows a red rose with its stem and leaves against a dark background, with the words \"bharat ek khoj by shyam benegal\" written on it.", "scene_text": "The image shows a red rose with its stem and leaves against a dark background, with the words \"bharat ek khoj by shyam benegal\" written on it.", "scene_hints": ["birds chirping", "owl hooting", "crow cawing", "crickets chirping", "insects buzzing", "rustling grass", "wind", "wind rustling leaves", "footsteps on dirt", "night insects", "crickets", "branch creak", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 30.16, "raw_caption": "The image shows a single red rose with water droplets on it, its stem and leaves standing out against the dark background. There is also a watermark on the image.", "scene_text": "The image shows a single red rose with water droplets on it, its stem and leaves standing out against the dark background", "scene_hints": ["crow cawing", "insects buzzing", "night insects", "distant music", "wind", "frogs croaking", "rain falling", "crickets", "branch creak", "birds chirping", "owl hooting", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "crickets chirping", "rustling grass", "crackling fire", "water flowing"], "expressions": []} +{"timestamp_sec": 36.16, "raw_caption": "The image shows a red rose with its stem and leaves, accompanied by a Hindi shayari on life. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text on the image is written in a beautiful font, adding to the overall aesthetic", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["birds chirping", "owl hooting", "crow cawing", "crickets chirping", "insects buzzing", "rustling grass", "wind", "wind rustling leaves", "footsteps on dirt", "night insects", "crickets", "branch creak", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 42.2, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth as Jawaharlal Nehru\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth as Jawaharlal Nehru\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 48.24, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Narnation by Om Puri\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Narnation by Om Puri\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 54.28, "raw_caption": "The image shows a red rose with the words \"Chief Assistant Director Mandeep Kakkar\" written in Hindi. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background.", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["birds chirping", "owl hooting", "crow cawing", "crickets chirping", "insects buzzing", "rustling grass", "wind", "wind rustling leaves", "footsteps on dirt", "night insects", "crickets", "branch creak", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 60.32, "raw_caption": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_hints": ["owl hooting", "crickets chirping", "wind", "night insects", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 66.32, "raw_caption": "The image shows a red rose with the words \"Shama Zaidi Sunil Shanbag Sandeep Pendse\" written in Hindi. The rose is surrounded by lush green leaves, creating a peaceful and serene atmosphere.", "scene_text": "The image shows a red rose with the words \"Shama Zaidi Sunil Shanbag Sandeep Pendse\" written in Hindi. The rose is surrounded by lush green leaves, creating a peaceful and serene atmosphere.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 72.36, "raw_caption": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mishra\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mishra\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 78.4, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with a quote written in Marathi on it.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with a quote written in Marathi on it.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 84.44, "raw_caption": "The image shows a red rose with its stem and leaves, edited with the words \"Sutanu Gupta Deepak Segal\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves, edited with the words \"Sutanu Gupta Deepak Segal\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 90.48, "raw_caption": "The image shows a red rose with its stem and leaves against a dark background, with the words \"vanraj bhatia\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a dark background, with the words \"vanraj bhatia\" written in Hindi.", "scene_hints": ["birds chirping", "owl hooting", "crow cawing", "crickets chirping", "insects buzzing", "rustling grass", "wind", "wind rustling leaves", "footsteps on dirt", "night insects", "crickets", "branch creak", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 96.52, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Ashwyn Balsaver\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Ashwyn Balsaver\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 102.52, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"salim arif\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"salim arif\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 108.56, "raw_caption": "The image shows a red rose with water droplets on it against a black background, with the words \"V K Murthy\" written in Hindi. The rose is vibrant and stands out against the dark background, making it the focal point of the image.", "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"V K Murthy\" written in Hindi. The rose is vibrant and stands out against the dark background, making it the focal point of the image.", "scene_hints": ["owl hooting", "crickets chirping", "wind", "frogs croaking", "wind over water", "rain falling", "night insects", "crackling fire", "water flowing", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 114.6, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shyam Benegal\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shyam Benegal\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 120.64, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Waves Ott for SLC\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Waves Ott for SLC\" written in Hindi.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 126.68, "raw_caption": "The image shows a black background with the text \"Harshavardhana SLC Episode 20\" written in white font. The text is centered in the middle of the image and is surrounded by a white border. The font size is large and bold, making it stand out against the dark background.", "scene_text": "The image shows a black background with the text \"Harshavardhana SLC Episode 20\" written in white font. The text is centered in the middle of the image and is surrounded by a white border. The font size is large and bold, making it stand out against the dark background.", "scene_hints": ["owl hooting", "crickets chirping", "wind", "night insects", "crackling fire", "distant music"], "expressions": []} +{"timestamp_sec": 138.72, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and a clear blue sky in the background.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and a clear blue sky in the background", "scene_hints": ["rooster crowing", "wind", "cattle lowing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 144.76, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and a clear blue sky in the background.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and a clear blue sky in the background", "scene_hints": ["rooster crowing", "wind", "cattle lowing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 150.8, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut with a wooden pole and a watermark in the background, surrounded by plants and a clear blue sky.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut with a wooden pole and a watermark in the background, surrounded by plants and a clear blue sky", "scene_hints": ["rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "water splashing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 156.84, "raw_caption": "The image shows a man wearing a white cap standing in front of a thatched hut, with a wooden object to his right and a clear blue sky in the background.", "scene_text": "The image shows a man wearing a white cap standing in front of a thatched hut, with a wooden object to his right and a clear blue sky in the background", "scene_hints": ["rooster crowing", "wind", "cattle lowing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 162.88, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut with a wooden pole and a wheel in the foreground. In the background, there are plants and a clear blue sky.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut with a wooden pole and a wheel in the foreground", "scene_hints": ["rooster crowing", "wind", "cattle lowing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 168.88, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and a sky in the background. There is also a watermark on the image.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and a sky in the background", "scene_hints": ["rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "water splashing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 174.92, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and plants in the background. The sky is visible at the top of the image.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut, with a wooden object to his right and plants in the background", "scene_hints": ["rooster crowing", "wind", "cattle lowing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 180.96, "raw_caption": "The image shows a man wearing a cap standing in front of a thatched hut with a wooden object in his hand. The sky is visible in the background and there are watermarks on the image.", "scene_text": "The image shows a man wearing a cap standing in front of a thatched hut with a wooden object in his hand", "scene_hints": ["rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "water splashing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 193.04, "raw_caption": "The image shows a man in a white hat and vest standing in front of a pile of hay, holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a man in a white hat and vest standing in front of a pile of hay, holding an object in his hand", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 199.04, "raw_caption": "The image shows a man in a white hat and vest standing next to another man, both of them looking at each other. The man in the white hat is holding an object in his hand, and in the background there is dry grass and a clear blue sky. There is also a watermark on the image", "scene_text": "The image shows a man in a white hat and vest standing next to another man, both of them looking at each other", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "water splashing"], "expressions": []} +{"timestamp_sec": 205.08, "raw_caption": "The image shows a man in a white hat and vest standing next to a wooden pole, with a watermark in the background and a clear blue sky above.", "scene_text": "The image shows a man in a white hat and vest standing next to a wooden pole, with a watermark in the background and a clear blue sky above", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 211.12, "raw_caption": "The image shows a man in a white hat and vest standing in front of a pile of hay, holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a man in a white hat and vest standing in front of a pile of hay, holding an object in his hand", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 217.16, "raw_caption": "The image shows a man wearing a white cap standing in front of a pile of hay, with a wooden stick to his right and a clear blue sky in the background.", "scene_text": "The image shows a man wearing a white cap standing in front of a pile of hay, with a wooden stick to his right and a clear blue sky in the background", "scene_hints": [], "expressions": []} +{"timestamp_sec": 229.2, "raw_caption": "The image shows a man in an orange sari standing in front of a hut, with a tree trunk to his left and a few plants in the background. There is also a watermark on the image.", "scene_text": "The image shows a man in an orange sari standing in front of a hut, with a tree trunk to his left and a few plants in the background", "scene_hints": ["rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "water splashing", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 241.28, "raw_caption": "The image shows a man and woman standing in front of a hut, embracing each other in a loving embrace. The hut is surrounded by trees and the sky is visible in the background. There is a watermark on the image, suggesting that it is from a Malayalam movie.", "scene_text": "The image shows a man and woman standing in front of a hut, embracing each other in a loving embrace", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 277.48, "raw_caption": "The image shows a man and woman sitting on a bench in front of a hut, surrounded by a wooden fence, plants, flowers, and trees. On the table between them are various objects, and there is a watermark on the image.", "scene_text": "The image shows a man and woman sitting on a bench in front of a hut, surrounded by a wooden fence, plants, flowers, and trees", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 283.52, "raw_caption": "The image shows two men sitting on a bench in front of a hut, with a table between them. On the table there are various objects, and in the background there are huts, trees, and flowers. There is also a watermark on the image.", "scene_text": "The image shows two men sitting on a bench in front of a hut, with a table between them", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 289.56, "raw_caption": "The image shows a man sitting on the ground talking to a woman in front of a hut, surrounded by a wooden fence, plants, flowers, and trees. On the table between them are various objects, and there is a watermark on the image.", "scene_text": "The image shows a man sitting on the ground talking to a woman in front of a hut, surrounded by a wooden fence, plants, flowers, and trees", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 295.56, "raw_caption": "The image shows a man sitting on a bench next to a woman in front of a hut, surrounded by a wooden fence, plants, and trees. On the table between them are various objects, and there is a watermark on the image.", "scene_text": "The image shows a man sitting on a bench next to a woman in front of a hut, surrounded by a wooden fence, plants, and trees", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 301.6, "raw_caption": "The image shows a group of three men sitting around a table in front of a hut, surrounded by a wooden fence, plants, and trees. On the table there are various objects, and in the center of the image there is some text.", "scene_text": "The image shows a group of three men sitting around a table in front of a hut, surrounded by a wooden fence, plants, and trees", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "cattle lowing", "crickets", "branch creak", "distant voices", "clock ticking", "birds chirping", "fan humming", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "bells", "rustling grass", "door creak", "birds"], "expressions": []} +{"timestamp_sec": 307.64, "raw_caption": "The image shows a group of four people sitting around a table in a hut, with a watermark in the middle. The people appear to be engaged in conversation, with one of them holding an object in their hands. The hut is made of bamboo sticks, giving it a rustic and natural feel.", "scene_text": "The image shows a group of four people sitting around a table in a hut, with a watermark in the middle", "scene_hints": ["fan humming", "rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "footsteps on floor", "water splashing", "door creak", "bells", "birds", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 313.68, "raw_caption": "The image shows a group of four people sitting around a table in a hut, with a watermark in the background. The people appear to be engaged in conversation, with one of them holding a book in their hands. The hut is surrounded by trees, giving the image a peaceful atmosphere.", "scene_text": "The image shows a group of four people sitting around a table in a hut, with a watermark in the background", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 319.72, "raw_caption": "The image shows a group of people sitting around a table in a hut, with a watermark in the middle. The people appear to be engaged in conversation, and the hut is surrounded by lush greenery.", "scene_text": "The image shows a group of people sitting around a table in a hut, with a watermark in the middle", "scene_hints": ["fan humming", "rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "footsteps on floor", "water splashing", "door creak", "bells", "birds", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 325.76, "raw_caption": "The image shows a group of people sitting around a table in a hut, with a watermark in the center. The people appear to be engaged in conversation, with some of them looking intently at each other. The hut is made of wood and has a thatched roof, and the walls are painted a", "scene_text": "The image shows a group of people sitting around a table in a hut, with a watermark in the center. The people appear to be engaged in conversation, with some of them looking intently at each other", "scene_hints": ["fan humming", "rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "footsteps on floor", "water splashing", "door creak", "bells", "birds", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 331.76, "raw_caption": "The image shows a group of people sitting around each other in a hut, with a man in the center wearing an orange dress. In the background, there is a railing and a few trees, and in the middle of the image there is some text.", "scene_text": "The image shows a group of people sitting around each other in a hut, with a man in the center wearing an orange dress", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rooster crowing", "rustling grass", "wind", "wind rustling leaves", "footsteps on dirt", "cattle lowing", "crickets", "branch creak", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 337.8, "raw_caption": "The image shows a group of people sitting around a table in front of a hut, with a watermark in the center. The people appear to be engaged in conversation, with some of them looking intently at each other. The hut is made of wood and has a thatched roof, and the watermark", "scene_text": "The image shows a group of people sitting around a table in front of a hut, with a watermark in the center. The people appear to be engaged in conversation, with some of them looking intently at each other", "scene_hints": ["fan humming", "rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "footsteps on floor", "water splashing", "door creak", "bells", "birds", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 343.84, "raw_caption": "The image shows a group of people sitting around a table in a hut, with a man in the center wearing an orange dress. In the background, there is a wooden fence and a purple cloth draped over it.", "scene_text": "The image shows a group of people sitting around a table in a hut, with a man in the center wearing an orange dress", "scene_hints": ["fan humming", "rooster crowing", "wind", "cattle lowing", "footsteps on floor", "birds", "door creak", "bells", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 349.88, "raw_caption": "The image shows a group of people sitting around a table in a hut, with a man in the center holding a book. On the table there are various objects, and in the background there are trees and a watermark.", "scene_text": "The image shows a group of people sitting around a table in a hut, with a man in the center holding a book", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 355.92, "raw_caption": "The image shows a group of people sitting around a table in front of a hut, with a wooden fence in the background and a few trees visible. There is also a watermark on the image.", "scene_text": "The image shows a group of people sitting around a table in front of a hut, with a wooden fence in the background and a few trees visible", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 361.92, "raw_caption": "The image shows a man sitting at a table in front of a group of people, with a wooden fence in the background and clothes hanging from it. There is also a watermark on the image.", "scene_text": "The image shows a man sitting at a table in front of a group of people, with a wooden fence in the background and clothes hanging from it", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 367.96, "raw_caption": "The image shows a man and woman sitting at a table in front of a hut, with a wooden fence in the background and clothes hanging from it. There is also a watermark on the image.", "scene_text": "The image shows a man and woman sitting at a table in front of a hut, with a wooden fence in the background and clothes hanging from it", "scene_hints": ["fan humming", "rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "footsteps on floor", "water splashing", "door creak", "bells", "birds", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 374.0, "raw_caption": "The image shows a man and a woman sitting at a table in front of a hut, with a few objects on the table and a watermark in the background. The man appears to be a guru, as he is wearing a traditional Indian outfit and has a peaceful expression on his face. The woman is looking", "scene_text": "The image shows a man and a woman sitting at a table in front of a hut, with a few objects on the table and a watermark in the background. The woman is looking", "scene_hints": ["fan humming", "rooster crowing", "wind", "frogs croaking", "wind over water", "rain falling", "water flowing", "cattle lowing", "footsteps on floor", "water splashing", "door creak", "bells", "birds", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 380.04, "raw_caption": "The image shows a man and a woman sitting at a table in front of a hut, surrounded by trees in the background. On the table there are various objects, and there is a watermark on the image.", "scene_text": "The image shows a man and a woman sitting at a table in front of a hut, surrounded by trees in the background", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "clock ticking", "birds chirping", "fan humming", "wind over water", "wind rustling leaves", "footsteps on dirt", "footsteps on floor", "water splashing", "birds", "bells", "rustling grass", "water flowing", "door creak", "distant voices"], "expressions": []} +{"timestamp_sec": 386.08, "raw_caption": "The image shows a man and a woman sitting next to each other in front of a hut, with a few trees in the background and a watermark on the image.", "scene_text": "The image shows a man and a woman sitting next to each other in front of a hut, with a few trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 392.08, "raw_caption": "The image shows a man and a woman sitting in front of a hut, with a watermark in the middle and trees in the background.", "scene_text": "The image shows a man and a woman sitting in front of a hut, with a watermark in the middle and trees in the background", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 398.12, "raw_caption": "The image shows a man and a woman sitting at a table in front of a window, with a few utensils scattered around them. In the background, there are a few trees visible, and there is a watermark on the image.", "scene_text": "The image shows a man and a woman sitting at a table in front of a window, with a few utensils scattered around them", "scene_hints": ["birds chirping", "fan humming", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 404.16, "raw_caption": "The image shows a person holding a metal object, which appears to be a yerba mate, in their hand. There is a watermark on the image, suggesting that it has been edited.", "scene_text": "The image shows a person holding a metal object, which appears to be a yerba mate, in their hand. There is a watermark on the image, suggesting that it has been edited.", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 410.2, "raw_caption": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 416.24, "raw_caption": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 422.28, "raw_caption": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 428.28, "raw_caption": "The image shows a man in an orange robe sitting in front of a wooden fence with a watermark in the middle and a wall in the background.", "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence with a watermark in the middle and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 434.32, "raw_caption": "The image shows a man in an orange robe sitting in front of a wooden fence, with a watermark in the middle of the image and a wall in the background.", "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence, with a watermark in the middle of the image and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 446.4, "raw_caption": "The image shows a man in a white hat and a woman in a green dress adorned with pearls. The man is holding an object in his hand and there is a watermark on the image.", "scene_text": "The image shows a man in a white hat and a woman in a green dress adorned with pearls. The man is holding an object in his hand and there is a watermark on the image.", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 452.44, "raw_caption": "The image shows a woman in a green and pink sari sitting on a bed, holding a book in her hands. She is adorned with ornaments and there is a watermark in the center of the image.", "scene_text": "The image shows a woman in a green and pink sari sitting on a bed, holding a book in her hands", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 458.44, "raw_caption": "The image shows a woman in a red sari with a crown on her head, adorned with ornaments, standing in front of a blurred background with a watermark.", "scene_text": "The image shows a woman in a red sari with a crown on her head, adorned with ornaments, standing in front of a blurred background with a watermark", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 464.48, "raw_caption": "The image shows a man and woman standing in a room with a table in front of them. On the table there are papers and other objects, and in the background there is a wall with a window and curtains. The image is slightly blurred, giving it a dream-like quality.", "scene_text": "The image shows a man and woman standing in a room with a table in front of them", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 470.52, "raw_caption": "The image shows a man in a sari walking down a stage with a sword in his hand, flanked by two other men. In the background, there is a statue of a person, a flower vase, and a wall. The image is slightly blurred, giving it a dream-like quality.", "scene_text": "The image shows a man in a sari walking down a stage with a sword in his hand, flanked by two other men", "scene_hints": ["fan humming", "crowd shouting", "wind", "running", "drums", "horses", "footsteps on floor", "door creak", "metal clashing", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 482.6, "raw_caption": "The image shows a man and woman sitting on top of a couch next to each other, with the man lying on the sofa and the woman standing beside him. In the background there is a wall with a painting on it, and to the right side of the image there is an object on the table.", "scene_text": "The image shows a man and woman sitting on top of a couch next to each other, with the man lying on the sofa and the woman standing beside him", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 488.64, "raw_caption": "The image shows a group of people sitting on top of a couch next to each other, with one person holding a musical instrument. In the background there is a wall with a painting, and on the left side of the image there is an object. The image is slightly blurred, giving it a dreamy,", "scene_text": "The image shows a group of people sitting on top of a couch next to each other, with one person holding a musical instrument", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 494.64, "raw_caption": "The image shows a man in a white sari with a mustache and a beard, adorned with ornaments, standing in front of a blurred background with a watermark in the middle.", "scene_text": "The image shows a man in a white sari with a mustache and a beard, adorned with ornaments, standing in front of a blurred background with a watermark in the middle", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 500.68, "raw_caption": "The image shows a man in a sari with a mustache and moustache, standing in front of a wall with a watermark in the middle. He is wearing a traditional Indian outfit, with intricate embroidery and a bright yellow sari draped over his shoulders. His hair is long and dark,", "scene_text": "The image shows a man in a sari with a mustache and moustache, standing in front of a wall with a watermark in the middle", "scene_hints": ["fan humming", "owl hooting", "crickets chirping", "wind", "frogs croaking", "wind over water", "rain falling", "night insects", "crackling fire", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 506.72, "raw_caption": "The image shows a man laying on top of a bed next to a woman in a pink dress, surrounded by pillows. In the background, there is a painting on the wall and a lamp on the left side.", "scene_text": "The image shows a man laying on top of a bed next to a woman in a pink dress, surrounded by pillows. In the background, there is a painting on the wall and a lamp on the left side.", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 512.76, "raw_caption": "The image shows a man laying on top of a bed next to a woman in a pink dress, surrounded by pillows and other objects. In the background, there is a wall with a painting and a lamp on the left side.", "scene_text": "The image shows a man laying on top of a bed next to a woman in a pink dress, surrounded by pillows and other objects. In the background, there is a wall with a painting and a lamp on the left side.", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 518.8, "raw_caption": "The image shows a man laying on top of a bed next to a woman, both of them wearing ornaments. In the background, there is a painting on the wall and a lamp on the left side.", "scene_text": "The image shows a man laying on top of a bed next to a woman, both of them wearing ornaments. In the background, there is a painting on the wall and a lamp on the left side.", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 524.8, "raw_caption": "The image shows a man in a white sari with a mustache and a beard, adorned with ornaments, standing in front of a blurred background with a watermark in the middle.", "scene_text": "The image shows a man in a white sari with a mustache and a beard, adorned with ornaments, standing in front of a blurred background with a watermark in the middle", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 530.84, "raw_caption": "The image shows a man laying on top of a bed next to a woman in a pink dress, surrounded by pillows. In the background, there is a painting on the wall and a lamp on the left side. The man is wearing a cap and the woman is holding something in her hand. There", "scene_text": "The image shows a man laying on top of a bed next to a woman in a pink dress, surrounded by pillows. In the background, there is a painting on the wall and a lamp on the left side. The man is wearing a cap and the woman is holding something in her hand. There", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 536.88, "raw_caption": "The image shows a man laying on top of a bed next to a woman in a pink sari, surrounded by pillows and other objects. In the background, there is a painting on the wall and a watermark in the center of the image.", "scene_text": "The image shows a man laying on top of a bed next to a woman in a pink sari, surrounded by pillows and other objects. In the background, there is a painting on the wall and a watermark in the center of the image.", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 542.92, "raw_caption": "The image shows a group of people sitting around a man laying on top of a bed, surrounded by pillows. In the background, there is a wall with a photo frame and a lamp on the left side. There is also a watermark on the image.", "scene_text": "The image shows a group of people sitting around a man laying on top of a bed, surrounded by pillows", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 548.96, "raw_caption": "The image shows a man laying on top of a bed next to a woman, surrounded by pillows. In the background, there is a wall with a photo frame and other objects. There is also a watermark on the image.", "scene_text": "The image shows a man laying on top of a bed next to a woman, surrounded by pillows. In the background, there is a wall with a photo frame and other objects. There is also a watermark on the image.", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 554.96, "raw_caption": "The image shows a man in a sari with a mustache and moustache, standing in front of a wall with a watermark in the middle. He is wearing a traditional Indian outfit, with a bright yellow sari draped over his shoulders and a matching dhoti. His hair is long and dark,", "scene_text": "The image shows a man in a sari with a mustache and moustache, standing in front of a wall with a watermark in the middle", "scene_hints": ["fan humming", "owl hooting", "crickets chirping", "wind", "frogs croaking", "wind over water", "rain falling", "night insects", "crackling fire", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant music", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 561.0, "raw_caption": "The image shows a man in a white sari with a mustache and a moustache, adorned with ornaments, standing in front of a blurred background with a watermark in the middle.", "scene_text": "The image shows a man in a white sari with a mustache and a moustache, adorned with ornaments, standing in front of a blurred background with a watermark in the middle", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 567.04, "raw_caption": "The image shows a man in a white robe standing in front of a window with the words \"Waves Ott for SLC\" written on it. He is wearing a white dress and has a determined expression on his face, as if he is ready to take on any challenge.", "scene_text": "The image shows a man in a white robe standing in front of a window with the words \"Waves Ott for SLC\" written on it", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 573.08, "raw_caption": "The image shows a woman in a pink sari adorned with ornaments, standing in front of a blurred background with a watermark in the middle.", "scene_text": "The image shows a woman in a pink sari adorned with ornaments, standing in front of a blurred background with a watermark in the middle", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 579.12, "raw_caption": "The image shows a man and a woman standing in front of a door, with the man holding a stick. On the right side of the image there is a pillar, and in the background there is an object and a wall. There is also a watermark on the image.", "scene_text": "The image shows a man and a woman standing in front of a door, with the man holding a stick", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 585.16, "raw_caption": "The image shows a man and woman standing in front of a door, with a pillar on the right side and a wall in the background. The man is holding a stick and there is a watermark on the image.", "scene_text": "The image shows a man and woman standing in front of a door, with a pillar on the right side and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 591.16, "raw_caption": "The image shows a man in a sari standing next to a woman in a yellow sari, both of them adorned with ornaments. The man is holding a cloth in his hand, and in the background there is a wall with a watermark on it.", "scene_text": "The image shows a man in a sari standing next to a woman in a yellow sari, both of them adorned with ornaments", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 597.2, "raw_caption": "The image shows a man and woman standing next to each other in front of a door, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man and woman standing next to each other in front of a door, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 603.24, "raw_caption": "The image shows a man in a white shirt and black pants standing in front of a wall with a watermark in the middle. He appears to be in a state of distress, with his head bowed and his hands clasped together.", "scene_text": "The image shows a man in a white shirt and black pants standing in front of a wall with a watermark in the middle", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 615.32, "raw_caption": "The image shows a woman in an orange sari standing next to a group of people, wearing a garland around her neck. In the background, there are trees and a clear blue sky.", "scene_text": "The image shows a woman in an orange sari standing next to a group of people, wearing a garland around her neck", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 633.4, "raw_caption": "The image shows a man kneeling down next to a woman in an orange sari, surrounded by a few people standing in the background. On the left side of the image there are wooden logs, and in the middle of the picture there is some edited text. The background is filled with trees and hills.", "scene_text": "The image shows a man kneeling down next to a woman in an orange sari, surrounded by a few people standing in the background", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 639.44, "raw_caption": "The image shows a woman in an orange sari kneeling down next to a man in a white shirt, surrounded by a group of people standing on the ground. On the left side of the image there are some wooden logs, and in the background there are trees, plants, hills and a clear blue sky.", "scene_text": "The image shows a woman in an orange sari kneeling down next to a man in a white shirt, surrounded by a group of people standing on the ground", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 645.48, "raw_caption": "The image shows a woman in an orange sari kneeling down next to a man in a white shirt, with two other people standing in the background. The man is holding a stick in his hand, and there are wooden logs on the left side of the image. In the background, there are trees and a", "scene_text": "The image shows a woman in an orange sari kneeling down next to a man in a white shirt, with two other people standing in the background", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 651.52, "raw_caption": "The image shows a woman in an orange sari kneeling down next to a man in a squat position on the ground. In the background, there are a few people standing, one of them holding a stick, and wooden logs on the left side. There are also a few plants and trees visible in the background", "scene_text": "The image shows a woman in an orange sari kneeling down next to a man in a squat position on the ground. In the background, there are a few people standing, one of them holding a stick, and wooden logs on the left side. There are also a few plants and trees visible in the background", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 657.52, "raw_caption": "The image shows a man kneeling down next to a woman in an orange sari, surrounded by three other people. In the background, there are wooden logs, plants, trees, and mountains, and there is a watermark on the image.", "scene_text": "The image shows a man kneeling down next to a woman in an orange sari, surrounded by three other people. In the background, there are wooden logs, plants, trees, and mountains, and there is a watermark on the image.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "water splashing"], "expressions": []} +{"timestamp_sec": 663.56, "raw_caption": "The image shows a woman in an orange sari kneeling down next to a man in a white shirt, surrounded by a group of people standing on the ground. On the left side of the image there are some wooden logs, and in the background there are trees, plants, hills and a clear blue sky.", "scene_text": "The image shows a woman in an orange sari kneeling down next to a man in a white shirt, surrounded by a group of people standing on the ground", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 669.6, "raw_caption": "The image shows a man in an orange sari kneeling down next to a woman in a white dress, both of them standing on the ground. In the background, there are a few people standing, one of them holding a stick, and a few wooden logs on the left side. There are also a few", "scene_text": "The image shows a man in an orange sari kneeling down next to a woman in a white dress, both of them standing on the ground", "scene_hints": [], "expressions": []} +{"timestamp_sec": 675.64, "raw_caption": "The image shows a woman in an orange sari kneeling down next to a man in a squat position on the ground. In the background, there are a few people standing, one of them holding a stick, and wooden logs on the left side. There are also a few plants and trees visible in the background", "scene_text": "The image shows a woman in an orange sari kneeling down next to a man in a squat position on the ground. In the background, there are a few people standing, one of them holding a stick, and wooden logs on the left side. There are also a few plants and trees visible in the background", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 681.68, "raw_caption": "The image shows a woman in an orange sari walking down a dirt road, with two people standing to her right and trees in the background. The sky is visible at the top of the image, and there is a watermark in the middle.", "scene_text": "The image shows a woman in an orange sari walking down a dirt road, with two people standing to her right and trees in the background", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "water splashing"], "expressions": []} +{"timestamp_sec": 699.76, "raw_caption": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by trees and a clear blue sky. On the left side of the image, there is a watermark. The bonfire is burning brightly, illuminating the man and the surrounding area.", "scene_text": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "water splashing"], "expressions": []} +{"timestamp_sec": 705.8, "raw_caption": "The image shows a man standing in front of a bonfire in the middle of a field, surrounded by trees and a clear blue sky. The bonfire is burning brightly, illuminating the man and the surrounding area.", "scene_text": "The image shows a man standing in front of a bonfire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 711.84, "raw_caption": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by trees and a clear blue sky. The bonfire is burning brightly, illuminating the faces of the people and the surrounding area.", "scene_text": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 717.84, "raw_caption": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by trees and a clear blue sky. The bonfire is burning brightly, illuminating the man and the surrounding area.", "scene_text": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 723.88, "raw_caption": "The image shows a man sitting in front of a bonfire in the middle of a field, surrounded by trees and a clear blue sky. The bonfire is burning brightly, illuminating the man and the surrounding area.", "scene_text": "The image shows a man sitting in front of a bonfire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 729.92, "raw_caption": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by trees and a clear blue sky. The bonfire is burning brightly, illuminating the faces of the people and the surrounding area.", "scene_text": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 735.96, "raw_caption": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by trees and a clear sky. The fire is burning brightly, illuminating the faces of the people and the surrounding area.", "scene_text": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by trees and a clear sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 742.0, "raw_caption": "The image shows a group of three people standing around a fire in the middle of a field, surrounded by trees and a clear blue sky. The fire is burning brightly, illuminating the faces of the people and the surrounding area.", "scene_text": "The image shows a group of three people standing around a fire in the middle of a field, surrounded by trees and a clear blue sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 748.04, "raw_caption": "The image shows a group of people standing around a bonfire in the middle of a field, with trees in the background and a clear sky above. The bonfire is burning brightly, illuminating the people and the surrounding area.", "scene_text": "The image shows a group of people standing around a bonfire in the middle of a field, with trees in the background and a clear sky above", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 766.12, "raw_caption": "The image shows a man sitting in front of a fire in the middle of a field, surrounded by trees and a clear sky. The fire is burning brightly, illuminating the man and the surrounding area.", "scene_text": "The image shows a man sitting in front of a fire in the middle of a field, surrounded by trees and a clear sky", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "wind rustling leaves", "footsteps on dirt", "crickets", "branch creak"], "expressions": []} +{"timestamp_sec": 784.2, "raw_caption": "The image shows a man wearing a white dress and a white cap standing in front of a body of water, with a watermark in the background.", "scene_text": "The image shows a man wearing a white dress and a white cap standing in front of a body of water, with a watermark in the background", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 790.24, "raw_caption": "The image shows a man wearing a white dress and a white cap standing in front of a body of water, with a watermark in the background.", "scene_text": "The image shows a man wearing a white dress and a white cap standing in front of a body of water, with a watermark in the background", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 802.32, "raw_caption": "The image shows a man in an orange shirt looking at the camera with a watermark in the middle of the image and a blurred background.", "scene_text": "The image shows a man in an orange shirt looking at the camera with a watermark in the middle of the image and a blurred background", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 808.36, "raw_caption": "The image shows a man in an orange shirt looking at the camera with a blurred background and a watermark in the middle.", "scene_text": "The image shows a man in an orange shirt looking at the camera with a blurred background and a watermark in the middle", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 814.4, "raw_caption": "The image shows a man in an orange robe sitting in front of a hut, surrounded by trees and a watermark in the background.", "scene_text": "The image shows a man in an orange robe sitting in front of a hut, surrounded by trees and a watermark in the background", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 820.4, "raw_caption": "The image shows a man in an orange sari sitting in front of a hut, surrounded by trees and a clear blue sky. He is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man in an orange sari sitting in front of a hut, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 826.44, "raw_caption": "The image shows a man in an orange robe sitting next to a young boy in front of a hut, with two other people in the background, trees, and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting next to a young boy in front of a hut, with two other people in the background, trees, and a watermark on the image", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 832.48, "raw_caption": "The image shows a man and a woman sitting on the ground in front of a hut, surrounded by trees and a clear blue sky. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows a man and a woman sitting on the ground in front of a hut, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "insects buzzing", "distant music", "rooster crowing", "wind", "frogs croaking", "rain falling", "cattle lowing", "crickets", "branch creak", "birds chirping", "wind over water", "wind rustling leaves", "footsteps on dirt", "water splashing", "bells", "rustling grass", "water flowing", "birds"], "expressions": []} +{"timestamp_sec": 844.56, "raw_caption": "The image shows a man in an orange robe pointing at something with a watermark in the middle of the image, surrounded by rocks and trees in the background.", "scene_text": "The image shows a man in an orange robe pointing at something with a watermark in the middle of the image, surrounded by rocks and trees in the background.", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "water splashing"], "expressions": []} +{"timestamp_sec": 850.56, "raw_caption": "The image shows a man in an orange sari sitting on the ground in front of a tree, with a watermark in the middle of the image and a blurred background.", "scene_text": "The image shows a man in an orange sari sitting on the ground in front of a tree, with a watermark in the middle of the image and a blurred background", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 856.6, "raw_caption": "The image shows a woman sitting on top of a bed in a room with a wall adorned with a photo frame and a door in the background. There is also a watermark on the image.", "scene_text": "The image shows a woman sitting on top of a bed in a room with a wall adorned with a photo frame and a door in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 862.64, "raw_caption": "The image shows a man sitting on top of a bed in a room, surrounded by a wall adorned with photo frames and other objects. There is a watermark on the image, suggesting it is a photo of a heroine.", "scene_text": "The image shows a man sitting on top of a bed in a room, surrounded by a wall adorned with photo frames and other objects", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 868.68, "raw_caption": "The image shows a man and woman sitting on top of a bed in a room, surrounded by a wall adorned with photo frames and other objects. There is a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man and woman sitting on top of a bed in a room, surrounded by a wall adorned with photo frames and other objects", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 874.72, "raw_caption": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, a flower vase, a frame on the wall, and various other objects. In the center of the image, there is a watermark.", "scene_text": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, a flower vase, a frame on the wall, and various other objects", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 880.72, "raw_caption": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, a flower vase, and other objects. In the background, there is a frame attached to the wall and a watermark on the image.", "scene_text": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, a flower vase, and other objects", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 886.76, "raw_caption": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, flower vases, and other objects on the floor. In the background, there is a wall with a photo frame and a mirror, and in the middle of the image there is some text. The man", "scene_text": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, flower vases, and other objects on the floor", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 892.8, "raw_caption": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, flower vases, and other objects on the floor. In the background, there is a wall with a photo frame and a door, and in the middle of the image there is some text. The man", "scene_text": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, flower vases, and other objects on the floor", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 898.84, "raw_caption": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, flower vases, and other objects on the floor. In the background, there is a wall with a photo frame and a door, and in the middle of the image there is some text which reads \"", "scene_text": "The image shows a man and woman sitting on top of a bed in a room, surrounded by lamps, flower vases, and other objects on the floor", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 904.88, "raw_caption": "The image shows a man sitting on top of a bed next to a woman, surrounded by lamps, flower vases, and other objects on the floor. In the background, there is a wall with a photo frame and a mirror, and in the middle of the image there is some text.", "scene_text": "The image shows a man sitting on top of a bed next to a woman, surrounded by lamps, flower vases, and other objects on the floor", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 910.92, "raw_caption": "The image shows a man in a red sari standing in front of a wall with the words \"Waves Out for SLC\" written on it. He is wearing a traditional Indian outfit and has a determined expression on his face, as if he is ready to take on any challenge.", "scene_text": "The image shows a man in a red sari standing in front of a wall with the words \"Waves Out for SLC\" written on it", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 916.92, "raw_caption": "The image shows a man in a sari standing in front of a wall with the words \"Waves Ott for SLC\" written on it. He is wearing a traditional sari with intricate designs and patterns, and his hands are clasped in his lap. His expression is one of contemplation, as if", "scene_text": "The image shows a man in a sari standing in front of a wall with the words \"Waves Ott for SLC\" written on it", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 922.96, "raw_caption": "The image shows a man in a sari standing in front of a wall with the words \"Waves Ott for SLC\" written on it. He is wearing a traditional sari and has a peaceful expression on his face. The wall behind him is plain and white, and the text is written in a", "scene_text": "The image shows a man in a sari standing in front of a wall with the words \"Waves Ott for SLC\" written on it", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 929.0, "raw_caption": "The image shows a man in a sari standing next to a woman in a red sari, both of them looking at each other with a watermark in the middle of the image and a wall in the background.", "scene_text": "The image shows a man in a sari standing next to a woman in a red sari, both of them looking at each other with a watermark in the middle of the image and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 935.04, "raw_caption": "The image shows a man in a sari standing next to another man on a stage, both of them looking at each other. The man on the left is wearing ornaments and the background is dark. There is a watermark in the middle of the image, suggesting that it is a photo of a", "scene_text": "The image shows a man in a sari standing next to another man on a stage, both of them looking at each other", "scene_hints": ["owl hooting", "crickets chirping", "wind", "frogs croaking", "wind over water", "rain falling", "night insects", "crackling fire", "water flowing", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 941.08, "raw_caption": "The image shows a man in a sari and a woman in a red sari standing side by side. The man is holding an object in his hand and the woman is wearing ornaments. There is a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man in a sari and a woman in a red sari standing side by side", "scene_hints": ["frogs croaking", "wind over water", "rain falling", "water flowing", "water splashing"], "expressions": []} +{"timestamp_sec": 947.08, "raw_caption": "The image shows a group of three men standing next to each other on a stage, with one of them holding a musical instrument. In the center of the image there is some text, and in the background there is a wall.", "scene_text": "The image shows a group of three men standing next to each other on a stage, with one of them holding a musical instrument", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 953.12, "raw_caption": "The image shows a man in a sari standing next to two other men, one of whom is holding a sword in his hand. In the background there is a wall with a painting on it, and in the middle of the image there is some edited text. The man in the sari appears to be", "scene_text": "The image shows a man in a sari standing next to two other men, one of whom is holding a sword in his hand", "scene_hints": ["fan humming", "crowd shouting", "wind", "running", "drums", "horses", "footsteps on floor", "door creak", "metal clashing", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 959.16, "raw_caption": "The image shows a scene from the movie Ramayana, with three people standing in the foreground and a wall in the background. The person in the middle is holding a musical instrument, and there is a watermark on the image.", "scene_text": "The image shows a scene from the movie Ramayana, with three people standing in the foreground and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 965.2, "raw_caption": "The image shows a man in a sari holding a sword in front of a group of people, with a wall in the background and a watermark on the image. The man is identified as Ramayana, and the scene is from the movie Ramayanas.", "scene_text": "The image shows a man in a sari holding a sword in front of a group of people, with a wall in the background and a watermark on the image. The man is identified as Ramayana, and the scene is from the movie Ramayanas.", "scene_hints": ["fan humming", "crowd shouting", "wind", "frogs croaking", "wind over water", "drums", "rain falling", "horses", "running", "water flowing", "footsteps on floor", "water splashing", "door creak", "metal clashing", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 971.24, "raw_caption": "The image shows a man in a sari holding a sword next to another man, with a wall in the background and a watermark on the image. The man in the sari appears to be Ramayana, as indicated by the watermark.", "scene_text": "The image shows a man in a sari holding a sword next to another man, with a wall in the background and a watermark on the image. The man in the sari appears to be Ramayana, as indicated by the watermark.", "scene_hints": ["fan humming", "crowd shouting", "wind", "frogs croaking", "wind over water", "drums", "rain falling", "horses", "running", "water flowing", "footsteps on floor", "water splashing", "door creak", "metal clashing", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 977.28, "raw_caption": "The image shows a man in a sari holding a sword next to another man, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man in a sari holding a sword next to another man, with a wall in the background and a watermark on the image.", "scene_hints": ["fan humming", "crowd shouting", "wind", "frogs croaking", "wind over water", "drums", "rain falling", "horses", "running", "water flowing", "footsteps on floor", "water splashing", "door creak", "metal clashing", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 983.28, "raw_caption": "The image shows a man in a sari holding a sword next to a woman in a red sari, both of them standing in front of a wall with a watermark in the middle. The man is holding a weapon in his hand, suggesting they are in the midst of a battle.", "scene_text": "The image shows a man in a sari holding a sword next to a woman in a red sari, both of them standing in front of a wall with a watermark in the middle", "scene_hints": ["fan humming", "crowd shouting", "wind", "frogs croaking", "wind over water", "drums", "rain falling", "horses", "running", "water flowing", "footsteps on floor", "water splashing", "door creak", "metal clashing", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 989.32, "raw_caption": "The image shows a man in a sari talking to another man, with a wall in the background and a watermark on the image. The man in the sari appears to be Ramayana, as indicated by the watermark.", "scene_text": "The image shows a man in a sari talking to another man, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 995.36, "raw_caption": "The image shows a woman in a pink sari standing in front of a wall with the words \"Waves Ott for SLC\" written on it. She appears to be looking off into the distance, with a determined expression on her face.", "scene_text": "The image shows a woman in a pink sari standing in front of a wall with the words \"Waves Ott for SLC\" written on it. She appears to be looking off into the distance, with a determined expression on her face", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1001.4, "raw_caption": "The image shows a man in an orange sari and pearls standing in front of a brick wall, with a watermark in the middle of the picture. He appears to be a guru, with his hands clasped in prayer and a peaceful expression on his face.", "scene_text": "The image shows a man in an orange sari and pearls standing in front of a brick wall, with a watermark in the middle of the picture", "scene_hints": ["fan humming", "music", "crowd murmur", "wind", "frogs croaking", "bells ringing", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "birds", "chanting", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1007.44, "raw_caption": "The image shows a man in an orange robe leaning against a tree, adorned with ornaments. In the background, there is a plant, a fence, and a wall, and in the middle of the image there is some text.", "scene_text": "The image shows a man in an orange robe leaning against a tree, adorned with ornaments. In the background, there is a plant, a fence, and a wall, and in the middle of the image there is some text.", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1013.44, "raw_caption": "The image shows a man in an orange sari standing next to a tree, with a wall and a plant in the background. He is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man in an orange sari standing next to a tree, with a wall and a plant in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1019.48, "raw_caption": "The image shows a man in an orange robe leaning against a tree, adorned with ornaments. In the background, there is a plant, a fence, and a wall, and in the middle of the image there is some text.", "scene_text": "The image shows a man in an orange robe leaning against a tree, adorned with ornaments. In the background, there is a plant, a fence, and a wall, and in the middle of the image there is some text.", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1025.52, "raw_caption": "The image shows a man in an orange sari sitting next to a tree, adorned with ornaments. In the background, there is a plant, a fence, and a wall, and in the middle of the image there is some text.", "scene_text": "The image shows a man in an orange sari sitting next to a tree, adorned with ornaments", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1031.56, "raw_caption": "The image shows a young boy in a pink shirt standing next to a tree, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a young boy in a pink shirt standing next to a tree, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1037.6, "raw_caption": "The image shows a man in a yellow sari standing next to a woman in a purple sari, both of them looking at each other. In the background there is a wall and a curtain, and in the middle of the image there is some edited text which reads \"Bhoothnath Returns -", "scene_text": "The image shows a man in a yellow sari standing next to a woman in a purple sari, both of them looking at each other", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1043.6, "raw_caption": "The image shows a group of three people standing next to each other in a room, with a pillar and curtains in the background. In the center of the image there is a watermark, and the people in the image appear to be a man and a woman.", "scene_text": "The image shows a group of three people standing next to each other in a room, with a pillar and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1049.64, "raw_caption": "The image shows a group of three people standing next to each other in a room, with a pillar, curtains, and a wall in the background. In the center of the image, there is a watermark that reads \"Rajinikanth in Ramayana\".", "scene_text": "The image shows a group of three people standing next to each other in a room, with a pillar, curtains, and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1055.68, "raw_caption": "The image shows a group of three men standing next to each other in a room, with a pillar in the background and curtains framing the scene. The text in the middle of the image reads \"Bhagavad Gita\".", "scene_text": "The image shows a group of three men standing next to each other in a room, with a pillar in the background and curtains framing the scene", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1061.72, "raw_caption": "The image shows a group of three men standing next to each other in front of a building, with a wall in the background and a watermark on the image. The men appear to be Ramayana, as indicated by the title of the movie, \"Ramayana\".", "scene_text": "The image shows a group of three men standing next to each other in front of a building, with a wall in the background and a watermark on the image", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1067.76, "raw_caption": "The image shows three men standing in front of a wall with a pillar and curtains in the background. The man in the middle is wearing a yellow sari and the two men on either side of him are wearing ornaments. There is a watermark on the image, suggesting that it is a still from", "scene_text": "The image shows three men standing in front of a wall with a pillar and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1073.8, "raw_caption": "The image shows Rajinikanth in a still from the movie Ramayana, wearing ornaments and standing in front of a wall with a pillar and curtains in the background. There is also a watermark on the image.", "scene_text": "The image shows Rajinikanth in a still from the movie Ramayana, wearing ornaments and standing in front of a wall with a pillar and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1079.8, "raw_caption": "The image shows three men standing in front of a wall with a pillar and curtains in the background. The man in the middle is wearing a yellow sari and is identified as Rajinikanth, while the other two men are wearing traditional Indian clothing. There is a watermark on the image, suggesting that", "scene_text": "The image shows three men standing in front of a wall with a pillar and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1085.84, "raw_caption": "The image shows three men standing in front of a wall with a pillar and curtains in the background. The man in the middle is wearing a yellow sari and the two men on either side of him are wearing ornaments. There is a watermark on the image, suggesting that it is a still from", "scene_text": "The image shows three men standing in front of a wall with a pillar and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1091.88, "raw_caption": "The image shows a man in a yellow sari standing in front of a group of men, with a wall and curtains in the background. The man in the center of the image is wearing ornaments, and there is a watermark on the image.", "scene_text": "The image shows a man in a yellow sari standing in front of a group of men, with a wall and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1097.92, "raw_caption": "The image shows three men standing on the floor, two of them wearing ornaments and one wearing a sari. In the background, there are pillars, curtains, and a wall, and in the middle of the image there is a watermark. The men appear to be in a scene from the", "scene_text": "The image shows three men standing on the floor, two of them wearing ornaments and one wearing a sari", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1103.96, "raw_caption": "The image shows a group of three women in saris standing next to each other in a room with pillars, curtains, and a wall in the background. There is also a watermark on the image, suggesting that it is a photo of a woman in a sari.", "scene_text": "The image shows a group of three women in saris standing next to each other in a room with pillars, curtains, and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1109.96, "raw_caption": "The image shows three people standing on the floor, with a chair, pillars, curtains, and a wall in the background. In the center of the image is a watermark that reads \"Krishna and Radha in a scene from the movie Krishna and Krishna\".", "scene_text": "The image shows three people standing on the floor, with a chair, pillars, curtains, and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1116.0, "raw_caption": "The image shows three men standing on the floor, with one of them wearing a sari. In the background, there are chairs, pillars, curtains, and a wall, and in the middle of the image there is a watermark that reads \"Rajinikanth in a scene from the Tamil movie", "scene_text": "The image shows three men standing on the floor, with one of them wearing a sari", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1122.04, "raw_caption": "The image shows three men standing on the floor, two of them wearing ornaments, with a wall and curtains in the background. In the middle of the image there is a watermark, and the scene appears to be from the Tamil movie Ramayana.", "scene_text": "The image shows three men standing on the floor, two of them wearing ornaments, with a wall and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1128.08, "raw_caption": "The image shows a scene from the Tamil movie Ramayana, with three people standing on the floor in the foreground and pillars, curtains, and a wall in the background. In the center of the image, there is a watermark.", "scene_text": "The image shows a scene from the Tamil movie Ramayana, with three people standing on the floor in the foreground and pillars, curtains, and a wall in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1134.12, "raw_caption": "The image shows three men standing next to each other in a room with a wall in the background, curtains, and other objects. The man in the middle is wearing a sari and the two men on either side of him are wearing ornaments. There is a watermark on the image, suggesting", "scene_text": "The image shows three men standing next to each other in a room with a wall in the background, curtains, and other objects", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1140.16, "raw_caption": "The image shows three men standing on the floor, two of them wearing ornaments and one wearing a sari. In the background, there are curtains and a wall, and in the middle of the image there is some edited text which reads \"Rajinikanth in Ramayana\".", "scene_text": "The image shows three men standing on the floor, two of them wearing ornaments and one wearing a sari", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1146.16, "raw_caption": "The image shows a group of three men standing next to each other in a room, with a watermark in the middle and pillars and curtains in the background. It appears to be a scene from the movie Ramayana.", "scene_text": "The image shows a group of three men standing next to each other in a room, with a watermark in the middle and pillars and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1152.2, "raw_caption": "The image shows three people standing on the floor, two of them holding objects in their hands. In the background, there are chairs, pillars, curtains, and a wall, and in the middle of the image there is a watermark that reads \"Krishna and his consorts in a scene from the", "scene_text": "The image shows three people standing on the floor, two of them holding objects in their hands", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1158.24, "raw_caption": "The image shows three men standing on the floor in front of a wall with pillars and curtains in the background. In the middle of the image there is a watermark that reads \"Rajinikanth in a scene from the movie Ramayana\". The men are wearing traditional Indian clothing and appear to be", "scene_text": "The image shows three men standing on the floor in front of a wall with pillars and curtains in the background", "scene_hints": ["fan humming", "frogs croaking", "wind over water", "rain falling", "water flowing", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1164.28, "raw_caption": "The image shows a man in a yellow sari standing in front of a crowd, wearing ornaments and surrounded by people. In the background, there are curtains and a watermark on the image.", "scene_text": "The image shows a man in a yellow sari standing in front of a crowd, wearing ornaments and surrounded by people", "scene_hints": ["children playing", "frogs croaking", "bells ringing", "wind over water", "crowd chatter", "rain falling", "water flowing", "water splashing", "music playing"], "expressions": []} +{"timestamp_sec": 1176.32, "raw_caption": "The image shows a man and a woman sitting on a bench in front of a hut, with the man wearing an orange dress and the woman wearing a pink dress. In the background, there are a few trees in green and the sky is a mix of white and blue.", "scene_text": "The image shows a man and a woman sitting on a bench in front of a hut, with the man wearing an orange dress and the woman wearing a pink dress", "scene_hints": ["birds chirping", "crow cawing", "insects buzzing", "rooster crowing", "rustling grass", "wind", "wind rustling leaves", "footsteps on dirt", "cattle lowing", "crickets", "branch creak", "distant music", "bells", "birds"], "expressions": []} +{"timestamp_sec": 1182.36, "raw_caption": "The image shows a man and a woman sitting next to each other in front of a window, with the man wearing a garland around his neck. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a man and a woman sitting next to each other in front of a window, with the man wearing a garland around his neck", "scene_hints": ["birds chirping", "fan humming", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1188.4, "raw_caption": "The image shows a man in an orange robe sitting next to a woman in front of a window, with trees in the background and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting next to a woman in front of a window, with trees in the background and a watermark on the image", "scene_hints": ["birds chirping", "fan humming", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1194.44, "raw_caption": "The image shows a man in an orange robe sitting in front of a window, wearing a chain around his neck. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting in front of a window, wearing a chain around his neck", "scene_hints": ["birds chirping", "fan humming", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1200.48, "raw_caption": "The image shows a man in an orange robe sitting in front of a window, wearing a chain around his neck. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a man in an orange robe sitting in front of a window, wearing a chain around his neck", "scene_hints": ["birds chirping", "fan humming", "crow cawing", "insects buzzing", "rustling grass", "frogs croaking", "wind over water", "rain falling", "wind rustling leaves", "footsteps on dirt", "water flowing", "crickets", "branch creak", "footsteps on floor", "water splashing", "door creak", "distant voices", "clock ticking"], "expressions": []} +{"timestamp_sec": 1206.52, "raw_caption": "The image shows a man in an orange sari sitting in front of a window with the words \"Waves Ott for SLC\" written on it. He is wearing a chain around his neck and the background is slightly blurred, giving the image a dreamy feel.", "scene_text": "The image shows a man in an orange sari sitting in front of a window with the words \"Waves Ott for SLC\" written on it", "scene_hints": ["fan humming", "footsteps on floor", "door creak", "distant voices", "clock ticking"], "expressions": []} diff --git a/results_v16/BEK_EP_020/results.json b/results_v16/BEK_EP_020/results.json new file mode 100755 index 0000000..8e3d4b9 --- /dev/null +++ b/results_v16/BEK_EP_020/results.json @@ -0,0 +1,491 @@ +{ + "caption_segments": 51, + "timeline": [ + { + "start_sec": 49.8, + "end_sec": 51.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Narn" + }, + { + "start_sec": 52.0, + "end_sec": 53.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 54.6, + "end_sec": 58.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 58.6, + "end_sec": 64.2, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a" + }, + { + "start_sec": 66.8, + "end_sec": 80.0, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with a quote written" + }, + { + "start_sec": 80.4, + "end_sec": 82.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with a quote written" + }, + { + "start_sec": 84.6, + "end_sec": 86.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves, edited with the words \"Sutanu Gupta Deepak Sega" + }, + { + "start_sec": 87.2, + "end_sec": 96.8, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra", + "harmonium" + ], + "scene_text": "The image shows a red rose with its stem and leaves, edited with the words \"Sutanu Gupta Deepak Sega" + }, + { + "start_sec": 98.2, + "end_sec": 100.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Ashw" + }, + { + "start_sec": 100.4, + "end_sec": 103.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"sali" + }, + { + "start_sec": 104.2, + "end_sec": 106.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"sali" + }, + { + "start_sec": 107.0, + "end_sec": 108.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"V K" + }, + { + "start_sec": 109.4, + "end_sec": 111.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"V K" + }, + { + "start_sec": 113.2, + "end_sec": 119.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shya" + }, + { + "start_sec": 119.6, + "end_sec": 122.4, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Wave" + }, + { + "start_sec": 125.2, + "end_sec": 129.2, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a black background with the text \"Harshavardhana SLC Episode 20\" written in white fo" + }, + { + "start_sec": 222.2, + "end_sec": 225.6, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "tick-tock" + ], + "scene_text": "The image shows a man in an orange sari standing in front of a hut, with a tree trunk to his left an" + }, + { + "start_sec": 229.0, + "end_sec": 230.8, + "caption": "[पत्तों की सरसराहट]", + "families": [ + "environmental noise" + ], + "scene_text": "The image shows a man in an orange sari standing in front of a hut, with a tree trunk to his left an" + }, + { + "start_sec": 231.2, + "end_sec": 233.02, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "The image shows a man in an orange sari standing in front of a hut, with a tree trunk to his left an" + }, + { + "start_sec": 405.2, + "end_sec": 409.6, + "caption": "[बांसुरी-गिटार के साथ संगीत]", + "families": [ + "music", + "flute", + "guitar" + ], + "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the backg" + }, + { + "start_sec": 410.0, + "end_sec": 411.03, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in an orange robe sitting in front of a wooden fence, with a wall in the backg" + }, + { + "start_sec": 460.2, + "end_sec": 469.0, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "zither", + "guitar" + ], + "scene_text": "The image shows a man and woman standing in a room with a table in front of them" + }, + { + "start_sec": 470.0, + "end_sec": 471.8, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a man in a sari walking down a stage with a sword in his hand, flanked by two other " + }, + { + "start_sec": 472.4, + "end_sec": 474.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a sari walking down a stage with a sword in his hand, flanked by two other " + }, + { + "start_sec": 475.2, + "end_sec": 477.2, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a man in a sari walking down a stage with a sword in his hand, flanked by two other " + }, + { + "start_sec": 560.6, + "end_sec": 563.8, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a man in a white sari with a mustache and a moustache, adorned with ornaments, stand" + }, + { + "start_sec": 566.0, + "end_sec": 567.8, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The image shows a man in a white robe standing in front of a window with the words \"Waves Ott for SL" + }, + { + "start_sec": 568.8, + "end_sec": 571.0, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The image shows a man in a white robe standing in front of a window with the words \"Waves Ott for SL" + }, + { + "start_sec": 571.4, + "end_sec": 573.6, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The image shows a woman in a pink sari adorned with ornaments, standing in front of a blurred backgr" + }, + { + "start_sec": 574.6, + "end_sec": 578.6, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The image shows a man and a woman standing in front of a door, with the man holding a stick" + }, + { + "start_sec": 617.4, + "end_sec": 620.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a woman in an orange sari standing next to a group of people, wearing a garland arou" + }, + { + "start_sec": 621.8, + "end_sec": 622.84, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a woman in an orange sari standing next to a group of people, wearing a garland arou" + }, + { + "start_sec": 679.0, + "end_sec": 680.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a woman in an orange sari walking down a dirt road, with two people standing to her " + }, + { + "start_sec": 681.2, + "end_sec": 685.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a woman in an orange sari walking down a dirt road, with two people standing to her " + }, + { + "start_sec": 685.8, + "end_sec": 687.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a woman in an orange sari walking down a dirt road, with two people standing to her " + }, + { + "start_sec": 691.2, + "end_sec": 696.8, + "caption": "[संगीत]", + "families": [ + "music", + "vehicle" + ], + "scene_text": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by t" + }, + { + "start_sec": 698.2, + "end_sec": 701.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by t" + }, + { + "start_sec": 702.2, + "end_sec": 709.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man standing in front of a bonfire in the middle of a field, surrounded by trees a" + }, + { + "start_sec": 711.0, + "end_sec": 712.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by " + }, + { + "start_sec": 713.8, + "end_sec": 715.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people standing around a bonfire in the middle of a field, surrounded by " + }, + { + "start_sec": 716.2, + "end_sec": 720.2, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a man standing in front of a large bonfire in the middle of a field, surrounded by t" + }, + { + "start_sec": 721.6, + "end_sec": 723.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man sitting in front of a bonfire in the middle of a field, surrounded by trees an" + }, + { + "start_sec": 724.0, + "end_sec": 724.99, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man sitting in front of a bonfire in the middle of a field, surrounded by trees an" + }, + { + "start_sec": 908.8, + "end_sec": 911.48, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a red sari standing in front of a wall with the words \"Waves Out for SLC\" w" + }, + { + "start_sec": 926.4, + "end_sec": 928.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a sari standing next to a woman in a red sari, both of them looking at each" + }, + { + "start_sec": 928.8, + "end_sec": 930.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a sari standing next to a woman in a red sari, both of them looking at each" + }, + { + "start_sec": 935.0, + "end_sec": 936.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a sari standing next to another man on a stage, both of them looking at eac" + }, + { + "start_sec": 937.2, + "end_sec": 938.33, + "caption": "[संगीत के साथ बांसुरी]", + "families": [ + "music", + "flute" + ], + "scene_text": "The image shows a man in a sari standing next to another man on a stage, both of them looking at eac" + }, + { + "start_sec": 941.8, + "end_sec": 943.51, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a sari and a woman in a red sari standing side by side" + }, + { + "start_sec": 991.0, + "end_sec": 992.57, + "caption": "[थप की आवाज]", + "families": [ + "thunk" + ], + "scene_text": "The image shows a man in a sari talking to another man, with a wall in the background and a watermar" + }, + { + "start_sec": 1166.0, + "end_sec": 1167.8, + "caption": "[वाहन की आवाज़]", + "families": [ + "vehicle" + ], + "scene_text": "The image shows a man in a yellow sari standing in front of a crowd, wearing ornaments and surrounde" + } + ], + "raw_events": 1296, + "deduped_events": 134, + "speech_segments": 175 +} \ No newline at end of file diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_100.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_100.4s.png new file mode 100755 index 0000000..b533214 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_100.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_1032.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_1032.8s.png new file mode 100755 index 0000000..f816ba4 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_1032.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_1159.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_1159.8s.png new file mode 100644 index 0000000..50f1dfc Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_1159.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_121.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_121.2s.png new file mode 100755 index 0000000..7c84e56 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_121.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_126.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_126.6s.png new file mode 100755 index 0000000..8192757 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_126.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_129.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_129.6s.png new file mode 100755 index 0000000..aa21579 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_129.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_132.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_132.6s.png new file mode 100755 index 0000000..7a89999 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_132.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_141.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_141.0s.png new file mode 100755 index 0000000..426c27c Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_141.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_148.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_148.2s.png new file mode 100755 index 0000000..6db1920 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_148.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_161.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_161.4s.png new file mode 100755 index 0000000..7f729d0 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_161.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_165.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_165.2s.png new file mode 100755 index 0000000..39889dd Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_165.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_173.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_173.2s.png new file mode 100755 index 0000000..f34690a Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_173.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_174.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_174.0s.png new file mode 100755 index 0000000..d82d644 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_174.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_182.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_182.0s.png new file mode 100755 index 0000000..2a341c8 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_182.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_189.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_189.0s.png new file mode 100755 index 0000000..8e27b1d Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_189.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_192.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_192.8s.png new file mode 100755 index 0000000..03088a2 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_192.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_197.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_197.6s.png new file mode 100755 index 0000000..bad4839 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_197.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_296.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_296.0s.png new file mode 100755 index 0000000..d0da646 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_296.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_304.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_304.2s.png new file mode 100755 index 0000000..d23c902 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_304.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_306.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_306.6s.png new file mode 100755 index 0000000..7f5ba27 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_306.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_308.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_308.8s.png new file mode 100755 index 0000000..a7008d3 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_308.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_318.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_318.4s.png new file mode 100755 index 0000000..0bb790a Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_318.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_325.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_325.4s.png new file mode 100755 index 0000000..e4e8e75 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_325.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_330.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_330.2s.png new file mode 100755 index 0000000..7db876d Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_330.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_332.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_332.6s.png new file mode 100755 index 0000000..687f875 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_332.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_335.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_335.6s.png new file mode 100755 index 0000000..cb7678e Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_335.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_340.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_340.0s.png new file mode 100755 index 0000000..c6fa288 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_340.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_347.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_347.6s.png new file mode 100755 index 0000000..df84535 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_347.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_352.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_352.4s.png new file mode 100755 index 0000000..3419a35 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_352.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_360.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_360.8s.png new file mode 100755 index 0000000..ae3b07f Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_360.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_367.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_367.8s.png new file mode 100755 index 0000000..b75a277 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_367.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_419.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_419.8s.png new file mode 100755 index 0000000..ae0fc90 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_419.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_422.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_422.0s.png new file mode 100755 index 0000000..f870c12 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_422.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_457.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_457.2s.png new file mode 100755 index 0000000..339d2e5 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_457.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_502.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_502.0s.png new file mode 100755 index 0000000..9708b69 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_502.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_504.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_504.6s.png new file mode 100755 index 0000000..2b4d083 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_504.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_513.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_513.4s.png new file mode 100755 index 0000000..4fc12da Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_513.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_516.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_516.2s.png new file mode 100755 index 0000000..b2cbf50 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_516.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_523.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_523.6s.png new file mode 100755 index 0000000..a99cc6e Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_523.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_531.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_531.6s.png new file mode 100755 index 0000000..c402365 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_531.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_54.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_54.2s.png new file mode 100755 index 0000000..fa9fedd Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_54.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_556.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_556.8s.png new file mode 100755 index 0000000..a2a0081 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_556.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_559.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_559.6s.png new file mode 100755 index 0000000..2017ad7 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_559.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_566.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_566.6s.png new file mode 100755 index 0000000..01f370f Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_566.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_574.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_574.0s.png new file mode 100755 index 0000000..bbe5f6a Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_574.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_58.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_58.8s.png new file mode 100755 index 0000000..bdc7f0d Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_58.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_580.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_580.2s.png new file mode 100755 index 0000000..e888c94 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_580.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_597.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_597.2s.png new file mode 100755 index 0000000..de5b4ca Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_597.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_601.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_601.6s.png new file mode 100755 index 0000000..18fdd16 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_601.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_609.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_609.4s.png new file mode 100755 index 0000000..ad41457 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_609.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_617.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_617.8s.png new file mode 100755 index 0000000..14e8dca Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_617.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_62.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_62.6s.png new file mode 100755 index 0000000..1deeef8 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_62.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_629.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_629.6s.png new file mode 100755 index 0000000..ff11df9 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_629.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_632.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_632.2s.png new file mode 100755 index 0000000..eee3c0f Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_632.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_672.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_672.0s.png new file mode 100755 index 0000000..c7b58d3 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_672.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_68.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_68.4s.png new file mode 100644 index 0000000..b01de0f Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_68.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_69.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_69.0s.png new file mode 100755 index 0000000..7fee263 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_69.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_74.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_74.0s.png new file mode 100644 index 0000000..baee9ca Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_74.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_75.8s.png b/results_v16/BEK_EP_021/annotated_frames/frame_75.8s.png new file mode 100755 index 0000000..1734975 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_75.8s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_760.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_760.6s.png new file mode 100755 index 0000000..a5e9c82 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_760.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_765.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_765.2s.png new file mode 100755 index 0000000..9f33132 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_765.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_772.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_772.0s.png new file mode 100755 index 0000000..1e130c4 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_772.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_80.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_80.2s.png new file mode 100755 index 0000000..6ca9b0a Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_80.2s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_83.0s.png b/results_v16/BEK_EP_021/annotated_frames/frame_83.0s.png new file mode 100755 index 0000000..2bcbbb9 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_83.0s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_86.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_86.6s.png new file mode 100755 index 0000000..e5cf0ae Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_86.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_89.4s.png b/results_v16/BEK_EP_021/annotated_frames/frame_89.4s.png new file mode 100755 index 0000000..aa4d0ce Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_89.4s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_903.6s.png b/results_v16/BEK_EP_021/annotated_frames/frame_903.6s.png new file mode 100755 index 0000000..4e18015 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_903.6s.png differ diff --git a/results_v16/BEK_EP_021/annotated_frames/frame_96.2s.png b/results_v16/BEK_EP_021/annotated_frames/frame_96.2s.png new file mode 100755 index 0000000..acf4c51 Binary files /dev/null and b/results_v16/BEK_EP_021/annotated_frames/frame_96.2s.png differ diff --git a/results_v16/BEK_EP_021/captions.srt b/results_v16/BEK_EP_021/captions.srt new file mode 100755 index 0000000..ed31d14 --- /dev/null +++ b/results_v16/BEK_EP_021/captions.srt @@ -0,0 +1,240 @@ +1 +00:00:54,200 --> 00:00:57,020 +[हारमोनियम-पियानो के साथ संगीत] + +2 +00:00:58,799 --> 00:01:06,400 +[हारमोनियम-पियानो के साथ संगीत] + +3 +00:01:08,400 --> 00:01:12,799 +[हारमोनियम-पियानो के साथ संगीत] + +4 +00:01:14,000 --> 00:01:28,400 +[हारमोनियम-पियानो के साथ संगीत] + +5 +00:01:29,400 --> 00:01:33,200 +[संगीत] + +6 +00:01:36,200 --> 00:01:39,799 +[संगीत के साथ हारमोनियम] + +7 +00:01:40,400 --> 00:01:42,200 +[संगीत] + +8 +00:02:01,200 --> 00:02:04,599 +[संगीत के साथ हारमोनियम] + +9 +00:02:06,599 --> 00:02:11,400 +[संगीत के साथ हारमोनियम] + +10 +00:02:12,599 --> 00:02:18,069 +[मंत्रों का उच्चारण] + +11 +00:02:21,000 --> 00:02:23,900 +[संगीत] + +12 +00:02:28,199 --> 00:02:29,719 +[फ़ोन बजने की आवाज़] + +13 +00:02:41,400 --> 00:02:42,460 +[डिंग की आवाज] + +14 +00:02:45,199 --> 00:02:47,199 +[संगीत] + +15 +00:02:53,199 --> 00:02:55,449 +[मंत्रों का उच्चारण] + +16 +00:03:02,000 --> 00:03:08,000 +[मंत्रों का उच्चारण] + +17 +00:03:09,000 --> 00:03:10,800 +[संगीत] + +18 +00:03:12,800 --> 00:03:17,000 +[मंत्रों का उच्चारण] + +19 +00:03:17,599 --> 00:03:24,400 +[मंत्रों का उच्चारण] + +20 +00:04:56,000 --> 00:05:03,800 +[तबला-सितार के साथ संगीत] + +21 +00:05:04,199 --> 00:05:06,000 +[संगीत] + +22 +00:05:06,600 --> 00:05:08,399 +[संगीत] + +23 +00:05:08,800 --> 00:05:16,399 +[संगीत] + +24 +00:05:18,399 --> 00:05:23,600 +[संगीत] + +25 +00:05:25,399 --> 00:05:29,399 +[संगीत के साथ तबला] + +26 +00:05:30,199 --> 00:05:32,000 +[संगीत] + +27 +00:05:32,600 --> 00:05:34,399 +[संगीत] + +28 +00:05:35,600 --> 00:05:37,399 +[संगीत] + +29 +00:05:40,000 --> 00:05:46,800 +[संगीत] + +30 +00:05:47,600 --> 00:05:50,199 +[संगीत के साथ तबला] + +31 +00:05:52,399 --> 00:05:59,800 +[संगीत के साथ तबला] + +32 +00:06:00,800 --> 00:06:07,399 +[संगीत के साथ तबला] + +33 +00:06:07,800 --> 00:06:08,860 +[संगीत] + +34 +00:06:59,800 --> 00:07:01,600 +[संगीत] + +35 +00:07:02,000 --> 00:07:05,500 +[मंत्रों का उच्चारण] + +36 +00:07:37,199 --> 00:07:39,600 +[संगीत] + +37 +00:08:22,000 --> 00:08:23,800 +[संगीत] + +38 +00:08:24,600 --> 00:08:25,819 +[संगीत] + +39 +00:08:33,399 --> 00:08:35,200 +[संगीत] + +40 +00:08:36,200 --> 00:08:42,399 +[संगीत के साथ तबला] + +41 +00:08:43,600 --> 00:08:51,200 +[संगीत] + +42 +00:08:51,600 --> 00:08:56,759 +[मंत्रों का उच्चारण] + +43 +00:09:16,799 --> 00:09:18,600 +[संगीत] + +44 +00:09:19,600 --> 00:09:25,600 +[संगीत के साथ सितार] + +45 +00:09:26,600 --> 00:09:28,669 +[संगीत के साथ तबला] + +46 +00:09:34,000 --> 00:09:39,600 +[संगीत] + +47 +00:09:40,200 --> 00:09:54,600 +[संगीत के साथ तबला] + +48 +00:09:57,200 --> 00:10:01,200 +[सितार-तबला के साथ संगीत] + +49 +00:10:01,600 --> 00:10:02,809 +[संगीत] + +50 +00:10:09,399 --> 00:10:17,399 +[संगीत के साथ तबला] + +51 +00:10:17,799 --> 00:10:28,600 +[संगीत के साथ सितार] + +52 +00:10:29,600 --> 00:10:31,399 +[संगीत] + +53 +00:10:32,200 --> 00:10:36,399 +[सितार-तबला के साथ संगीत] + +54 +00:11:12,000 --> 00:11:25,789 +[सितार-तबला के साथ संगीत] + +55 +00:12:40,600 --> 00:12:44,200 +[संगीत के साथ तबला] + +56 +00:12:45,200 --> 00:12:49,399 +[हल्की थपथपाहट जैसी आवाज़ है] + +57 +00:12:52,000 --> 00:12:53,799 +[लकड़ी की आवाज़] + +58 +00:15:03,600 --> 00:15:06,009 +[हवा चलने की आवाज़] + +59 +00:17:12,799 --> 00:17:15,579 +[संगीत] + +60 +00:19:19,799 --> 00:19:21,269 +[संगीत के साथ वायलिन] + diff --git a/results_v16/BEK_EP_021/florence_log.jsonl b/results_v16/BEK_EP_021/florence_log.jsonl new file mode 100755 index 0000000..587d75c --- /dev/null +++ b/results_v16/BEK_EP_021/florence_log.jsonl @@ -0,0 +1,111 @@ +{"timestamp_sec": 0.0, "raw_caption": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_text": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 6.0, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Doorarshan\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Doorarshan\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 12.04, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Doorarshan\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Doorarshan\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 18.08, "raw_caption": "The image shows a red rose with water droplets on it against a black background, with the words \"Happy Valentine's Day\" written in Hindi.", "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"Happy Valentine's Day\" written in Hindi.", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 24.12, "raw_caption": "The image shows a red rose with green leaves and water droplets on it, set against a black background. The rose is adorned with Arabic text, likely wishing someone a happy Eid Mubarak.", "scene_text": "The image shows a red rose with green leaves and water droplets on it, set against a black background. The rose is adorned with Arabic text, likely wishing someone a happy Eid Mubarak.", "scene_hints": ["footsteps on dirt", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "water flowing"], "expressions": []} +{"timestamp_sec": 30.16, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"bharat ek khoj by shyam benegal\" written on it.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"bharat ek khoj by shyam benegal\" written on it.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 36.16, "raw_caption": "The image shows a red rose with its stem and leaves, set against a dark background, with the words \"Jawaharlal Nehru's Discovery of India\" written across it.", "scene_text": "The image shows a red rose with its stem and leaves, set against a dark background, with the words \"Jawaharlal Nehru's Discovery of India\" written across it.", "scene_hints": ["footsteps on dirt", "distant music", "birds chirping", "wind", "crickets chirping", "insects buzzing", "night insects", "rustling grass", "crackling fire", "branch creak", "crow cawing", "owl hooting", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 42.2, "raw_caption": "The image shows a red rose with its stem and leaves, accompanied by a Hindi shayari on life. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text is written in a beautiful font, adding to the overall aesthetic of the image.", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["footsteps on dirt", "distant music", "birds chirping", "wind", "crickets chirping", "insects buzzing", "night insects", "rustling grass", "crackling fire", "branch creak", "crow cawing", "owl hooting", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 48.24, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth as Jawaharlal Nehru\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth as Jawaharlal Nehru\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 54.28, "raw_caption": "The image shows a single red rose with its stem and leaves, set against a black background. The rose is vibrant and full of life, its petals a deep, rich red. The stem is long and slender, and the leaves are a deep green. The contrast between the dark background and the bright red", "scene_text": "The image shows a single red rose with its stem and leaves, set against a black background. The rose is vibrant and full of life, its petals a deep, rich red. The stem is long and slender, and the leaves are a deep green. The contrast between the dark background and the bright red", "scene_hints": ["footsteps on dirt", "distant music", "birds chirping", "wind", "crickets chirping", "insects buzzing", "night insects", "rustling grass", "crackling fire", "branch creak", "crow cawing", "owl hooting", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 60.32, "raw_caption": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 66.32, "raw_caption": "The image shows a red rose with the words \"Shama Zaidi Sunil Shanbag Sandeep Pendse\" written in Hindi. The rose is surrounded by lush green leaves, creating a peaceful and serene atmosphere.", "scene_text": "The image shows a red rose with the words \"Shama Zaidi Sunil Shanbag Sandeep Pendse\" written in Hindi. The rose is surrounded by lush green leaves, creating a peaceful and serene atmosphere.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 72.36, "raw_caption": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mishra\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mishra\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 78.4, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasant Dev\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasant Dev\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 84.44, "raw_caption": "The image shows a red rose with its stem and leaves against a dark background, with the words \"Salim Arif Farida Siddiqi Bhavna Mukativala\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a dark background, with the words \"Salim Arif Farida Siddiqi Bhavna Mukativala\" written in Hindi.", "scene_hints": ["footsteps on dirt", "distant music", "birds chirping", "wind", "crickets chirping", "insects buzzing", "night insects", "rustling grass", "crackling fire", "branch creak", "crow cawing", "owl hooting", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 90.48, "raw_caption": "The image shows a red rose with its stem and leaves, with the words \"Mixing Hitendra Ghosh Rajkamal Kalamandir\" written in Hindi. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text is written in", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["footsteps on dirt", "distant music", "birds chirping", "wind", "crickets chirping", "insects buzzing", "night insects", "rustling grass", "crackling fire", "branch creak", "crow cawing", "owl hooting", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 96.52, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Ashwyn Balsaver\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Ashwyn Balsaver\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 102.52, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"art direction nitish roy\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"art direction nitish roy\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 108.56, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Piyush Shah\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Piyush Shah\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 114.6, "raw_caption": "The image shows a red rose with water droplets on it against a black background, with the words \"V K Murthy\" written in Hindi.", "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"V K Murthy\" written in Hindi.", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 120.64, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shyam Benegal\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shyam Benegal\" written in Hindi.", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 126.68, "raw_caption": "The image shows a black background with the words \"Episode 21 Bhakti\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The words are centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_text": "The image shows a black background with the words \"Episode 21 Bhakti\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The words are centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 132.68, "raw_caption": "The image shows a black background with the words \"Episode 21 Bhakti\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The words are centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_text": "The image shows a black background with the words \"Episode 21 Bhakti\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The words are centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 150.8, "raw_caption": "The image shows a bronze statue of a woman with a sword in her hand, set against a dark background with a watermark in the middle.", "scene_text": "The image shows a bronze statue of a woman with a sword in her hand, set against a dark background with a watermark in the middle.", "scene_hints": ["frogs croaking", "distant music", "drums", "wind", "crickets chirping", "rain falling", "wind over water", "crowd shouting", "night insects", "metal clashing", "water splashing", "crackling fire", "horses", "owl hooting", "water flowing", "running"], "expressions": []} +{"timestamp_sec": 156.84, "raw_caption": "The image shows a close up of a statue of a Buddha in a dark room, with a watermark in the middle of the image. The statue appears to be in a state of distress, with its eyes closed and its hands clasped together in a meditative pose. Its face is serene", "scene_text": "The image shows a close up of a statue of a Buddha in a dark room, with a watermark in the middle of the image. The statue appears to be in a state of distress, with its eyes closed and its hands clasped together in a meditative pose. Its face is serene", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "distant voices", "crackling fire", "owl hooting", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 162.88, "raw_caption": "The image shows a bronze statue of a woman holding a baby in her arms, with the words \"Waves Ott for SLC\" written in the middle. The background is dark, giving the statue a mysterious and captivating look.", "scene_text": "The image shows a bronze statue of a woman holding a baby in her arms, with the words \"Waves Ott for SLC\" written in the middle. The background is dark, giving the statue a mysterious and captivating look.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 168.88, "raw_caption": "The image shows a statue of a Hindu deity with the words \"waves ott for\" inscribed on it, set against a dark background.", "scene_text": "The image shows a statue of a Hindu deity with the words \"waves ott for\" inscribed on it, set against a dark background.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 187.0, "raw_caption": "The image shows a bronze statue of a woman with a snake in her hand, set against a dark background with a watermark in the middle.", "scene_text": "The image shows a bronze statue of a woman with a snake in her hand, set against a dark background with a watermark in the middle.", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 193.04, "raw_caption": "The image shows a bronze statue of a woman with a crown on her head, set against a dark background with a watermark.", "scene_text": "The image shows a bronze statue of a woman with a crown on her head, set against a dark background with a watermark.", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 205.08, "raw_caption": "The image shows a statue of the Hindu deity Shiva in the center of a dark background with the words \"Waves Ott for Slg\" written in the middle.", "scene_text": "The image shows a statue of the Hindu deity Shiva in the center of a dark background with the words \"Waves Ott for Slg\" written in the middle.", "scene_hints": ["distant music", "wind", "crickets chirping", "night insects", "crackling fire", "owl hooting"], "expressions": []} +{"timestamp_sec": 217.16, "raw_caption": "The image shows a man standing in front of a stone sculpture of an elephant, surrounded by intricate carvings on the walls of a temple. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a man standing in front of a stone sculpture of an elephant, surrounded by intricate carvings on the walls of a temple", "scene_hints": ["footsteps on floor", "bells ringing", "crowd murmur", "clock ticking", "music", "fan humming", "frogs croaking", "birds", "wind", "rain falling", "wind over water", "water splashing", "distant voices", "chanting", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 253.36, "raw_caption": "The image shows a man in a white shirt and blue pants standing next to a stone wall with intricate carvings, surrounded by trees and a clear blue sky.", "scene_text": "The image shows a man in a white shirt and blue pants standing next to a stone wall with intricate carvings, surrounded by trees and a clear blue sky", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "birds chirping", "insects buzzing", "rustling grass", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak"], "expressions": []} +{"timestamp_sec": 259.4, "raw_caption": "The image shows a man in a white shirt and blue pants standing next to a stone wall with intricate carvings, surrounded by trees and a clear blue sky.", "scene_text": "The image shows a man in a white shirt and blue pants standing next to a stone wall with intricate carvings, surrounded by trees and a clear blue sky", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "birds chirping", "insects buzzing", "rustling grass", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak"], "expressions": []} +{"timestamp_sec": 271.44, "raw_caption": "The image shows an aerial view of a Hindu temple in the middle of a city, surrounded by buildings, trees, and grass. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows an aerial view of a Hindu temple in the middle of a city, surrounded by buildings, trees, and grass. The sky is visible in the background, and there is a watermark on the image.", "scene_hints": ["footsteps on dirt", "wind", "wind over water", "water splashing", "water flowing", "music", "rustling grass", "crow cawing", "rain falling", "branch creak", "chanting", "insects buzzing", "bells ringing", "crowd murmur", "frogs croaking", "birds", "birds chirping", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 325.76, "raw_caption": "The image shows a group of men sitting on the ground in front of a tree, surrounded by various objects. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men sitting on the ground in front of a tree, surrounded by various objects", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 343.84, "raw_caption": "The image shows a group of people sitting around a table in front of a tree, with a watermark in the middle and leaves scattered around them. In the background, there are trees, creating a peaceful atmosphere.", "scene_text": "The image shows a group of people sitting around a table in front of a tree, with a watermark in the middle and leaves scattered around them", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 392.08, "raw_caption": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 398.12, "raw_caption": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 404.16, "raw_caption": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 410.2, "raw_caption": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of people standing next to each other in front of a tree, with some of them holding objects in their hands", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 591.16, "raw_caption": "The image shows a man in a white robe standing in a field, holding a microphone in his hand. He is surrounded by trees in the background.", "scene_text": "The image shows a man in a white robe standing in a field, holding a microphone in his hand", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 597.2, "raw_caption": "The image shows a man in a white robe standing in a field with his arms outstretched, holding something in his hand. In the background, there are trees and plants, and at the bottom of the image there is text.", "scene_text": "The image shows a man in a white robe standing in a field with his arms outstretched, holding something in his hand", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 603.24, "raw_caption": "The image shows a man in a white robe standing in the center, holding a black object in his hand, surrounded by trees in the background.", "scene_text": "The image shows a man in a white robe standing in the center, holding a black object in his hand, surrounded by trees in the background", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 609.28, "raw_caption": "The image shows a man in a white sari standing in a field, holding something in his hand. In the background, there are trees and plants, and at the bottom of the image there is text.", "scene_text": "The image shows a man in a white sari standing in a field, holding something in his hand", "scene_hints": ["footsteps on dirt", "birds chirping", "insects buzzing", "rustling grass", "branch creak", "crow cawing", "crickets", "wind rustling leaves"], "expressions": []} +{"timestamp_sec": 645.48, "raw_caption": "The image shows a man sitting on top of a couch next to a woman in a white sari, surrounded by a group of people standing on the floor. On the right side of the image, there is a table with various objects placed on it, and in the background there are some objects and a wall", "scene_text": "The image shows a man sitting on top of a couch next to a woman in a white sari, surrounded by a group of people standing on the floor", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 651.52, "raw_caption": "The image shows a man sitting on top of a couch next to a woman in a white sari. He is wearing a white dress and is holding something in his hand. On the left side of the image, there is a person standing, and on the right side, there are three people standing. In", "scene_text": "The image shows a man sitting on top of a couch next to a woman in a white sari. On the left side of the image, there is a person standing, and on the right side, there are three people standing", "scene_hints": [], "expressions": []} +{"timestamp_sec": 663.56, "raw_caption": "The image shows a man sitting on top of a zebra print couch next to a woman. He is wearing a white dress and is surrounded by two other people standing on either side of him. In the background, there are pillars and a wall.", "scene_text": "The image shows a man sitting on top of a zebra print couch next to a woman. He is wearing a white dress and is surrounded by two other people standing on either side of him", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 669.6, "raw_caption": "The image shows a man sitting on top of a zebra print couch next to a woman. He is wearing a white dress and is surrounded by two other people standing on either side of him. In the background, there are pillars and a wall, and in the middle of the image there is a watermark", "scene_text": "The image shows a man sitting on top of a zebra print couch next to a woman. He is wearing a white dress and is surrounded by two other people standing on either side of him", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 681.68, "raw_caption": "The image shows a man in a red and blue sari standing next to a woman in a white dress, both of them holding a cloth in their hands. In the background, there are stairs, pillars, lights, and a wall, and in the middle of the image there is some text which reads \"", "scene_text": "The image shows a man in a red and blue sari standing next to a woman in a white dress, both of them holding a cloth in their hands", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 687.68, "raw_caption": "The image shows a man in a red turban standing next to a woman in a sari, both of them holding a cloth in their hands. In the background, there are stairs, pillars, lights, and a wall, and on the left side of the image there is a lamp. This image is", "scene_text": "The image shows a man in a red turban standing next to a woman in a sari, both of them holding a cloth in their hands", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 693.72, "raw_caption": "The image shows a man in a red robe standing on a stage with his arms outstretched, holding a sword in one hand and a cloth in the other. Behind him, two other men are standing, and in the background there are stairs, pillars, lights, and other objects. There is also a water", "scene_text": "The image shows a man in a red robe standing on a stage with his arms outstretched, holding a sword in one hand and a cloth in the other", "scene_hints": ["frogs croaking", "drums", "wind", "rain falling", "wind over water", "crowd shouting", "metal clashing", "horses", "water splashing", "water flowing", "running"], "expressions": []} +{"timestamp_sec": 699.76, "raw_caption": "The image shows a man in a red robe holding a flag in front of a group of people standing on the floor. He is holding a stick in his hand and there is a cloth draped over him. In the background, there are stairs, pillars, lights, and other objects, as well as a water", "scene_text": "The image shows a man in a red robe holding a flag in front of a group of people standing on the floor", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 705.8, "raw_caption": "The image shows a group of people standing on top of a stage, with a man and a woman in the center. The man is holding a cloth, and there are stairs, pillars, and lights in the background. There is also a watermark on the image, suggesting that it is a still from the", "scene_text": "The image shows a group of people standing on top of a stage, with a man and a woman in the center", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 711.84, "raw_caption": "The image shows a group of people standing on top of a stage, with a man and a woman in the center holding a cloth. On the left side of the stage, there are stairs leading up to a door, and in the background there are pillars and a wall. There is also a watermark on", "scene_text": "The image shows a group of people standing on top of a stage, with a man and a woman in the center holding a cloth", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 723.88, "raw_caption": "The image shows a man and a woman standing next to each other in front of a curtain. The man is holding a stick and the woman is wearing ornaments. There is a watermark on the image and the background is dark. It appears to be a scene from a movie, with the man and", "scene_text": "The image shows a man and a woman standing next to each other in front of a curtain", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 729.92, "raw_caption": "The image shows a man and a woman standing next to each other in front of a curtain. The man is holding a stick in his hand and the woman is wearing ornaments. There is a watermark on the image, suggesting that it is a still from the movie Ramayana.", "scene_text": "The image shows a man and a woman standing next to each other in front of a curtain", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 748.04, "raw_caption": "The image shows a man and a woman standing next to each other in front of a curtain. The man is holding a stick and the woman is wearing ornaments. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows a man and a woman standing next to each other in front of a curtain", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 772.16, "raw_caption": "The image shows a man and a little girl sitting on the ground in front of a basket, surrounded by various objects in the background. There is a watermark on the image, suggesting that it is a photo of a person.", "scene_text": "The image shows a man and a little girl sitting on the ground in front of a basket, surrounded by various objects in the background", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 778.2, "raw_caption": "The image shows a man and woman sitting on the ground in front of a basket, with a person standing to the right of them. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a man and woman sitting on the ground in front of a basket, with a person standing to the right of them", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 784.2, "raw_caption": "The image shows two women sitting on the ground in front of a basket, surrounded by various objects in the background. There is a watermark on the image, suggesting that it is a photo of a person.", "scene_text": "The image shows two women sitting on the ground in front of a basket, surrounded by various objects in the background", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 790.24, "raw_caption": "The image shows a man and a woman sitting on the ground in front of a basket, surrounded by various objects in the background. There is a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man and a woman sitting on the ground in front of a basket, surrounded by various objects in the background", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 796.28, "raw_caption": "The image shows a woman in a white dress sitting on the ground next to a man in a black robe, with a watermark in the middle of the picture. In the background, there are a few objects placed on a wooden object and a pole, creating a scene reminiscent of the classic Bollywood movie,", "scene_text": "The image shows a woman in a white dress sitting on the ground next to a man in a black robe, with a watermark in the middle of the picture", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 802.32, "raw_caption": "The image shows a woman in a white dress sitting on the ground next to a man in a black suit, with a few other people in the background and a watermark on the image.", "scene_text": "The image shows a woman in a white dress sitting on the ground next to a man in a black suit, with a few other people in the background and a watermark on the image", "scene_hints": ["frogs croaking", "rain falling", "wind over water", "water splashing", "water flowing"], "expressions": []} +{"timestamp_sec": 808.36, "raw_caption": "The image shows a woman in a white dress standing next to a man in a black suit, with a watermark in the middle of the picture and a dark background.", "scene_text": "The image shows a woman in a white dress standing next to a man in a black suit, with a watermark in the middle of the picture and a dark background", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 814.4, "raw_caption": "The image shows a woman in a white dress standing next to a man in a black suit, both of them illuminated by a few lights in a dark background. There is also a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a woman in a white dress standing next to a man in a black suit, both of them illuminated by a few lights in a dark background", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 820.4, "raw_caption": "The image shows a woman in a white dress standing next to a man in a black suit, both of them illuminated by a few lights in a dark background. There is also a watermark on the image, suggesting that it is a photo of a mistress.", "scene_text": "The image shows a woman in a white dress standing next to a man in a black suit, both of them illuminated by a few lights in a dark background", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 826.44, "raw_caption": "The image shows a woman in a white dress standing next to a man in a black suit, both of them holding a skull in their hands. The background is dark and there is a watermark on the image.", "scene_text": "The image shows a woman in a white dress standing next to a man in a black suit, both of them holding a skull in their hands", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 832.48, "raw_caption": "The image shows a woman in a white dress and a man in a black suit standing next to each other. The woman is holding a microphone and the man is wearing a mask. The background is dark and there is a watermark on the image.", "scene_text": "The image shows a woman in a white dress and a man in a black suit standing next to each other", "scene_hints": ["frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "crackling fire", "owl hooting", "water flowing"], "expressions": []} +{"timestamp_sec": 838.52, "raw_caption": "The image shows a man and woman standing next to each other in a dark room, illuminated by a few lights. The man is wearing a black and white dress, while the woman is wearing an unknown color. In the middle of the image, there is a watermark, suggesting that this is a photo of", "scene_text": "The image shows a man and woman standing next to each other in a dark room, illuminated by a few lights", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "distant voices", "crackling fire", "owl hooting", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 844.56, "raw_caption": "The image shows a man and a woman in white robes standing next to each other in a dark room, with a watermark in the middle of the picture and a few objects in the background.", "scene_text": "The image shows a man and a woman in white robes standing next to each other in a dark room, with a watermark in the middle of the picture and a few objects in the background", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "distant music", "wind", "crickets chirping", "rain falling", "wind over water", "night insects", "water splashing", "distant voices", "crackling fire", "owl hooting", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 862.64, "raw_caption": "The image shows a man and a woman standing next to each other in front of a tree, with a wall in the background and a watermark on the image. The man is wearing a white sari and the woman is wearing traditional Indian clothing.", "scene_text": "The image shows a man and a woman standing next to each other in front of a tree, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 868.68, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with a wall in the background and a watermark on the image. The man is wearing a white dress and the woman is wearing an unknown outfit.", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 874.72, "raw_caption": "The image shows a man and a woman standing next to each other in front of a building, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man and a woman standing next to each other in front of a building, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 880.72, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with a wall in the background and a watermark on the image. The man is wearing a white dress and the woman is wearing traditional Indian clothing.", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 886.76, "raw_caption": "The image shows a man and a woman standing next to each other in front of a building, with the man holding a skull in his hand. In the background there is a wall and at the top of the image there are leaves, and in the center there is some text which reads \"Krishna", "scene_text": "The image shows a man and a woman standing next to each other in front of a building, with the man holding a skull in his hand", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "birds chirping", "insects buzzing", "rustling grass", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak"], "expressions": []} +{"timestamp_sec": 904.88, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut. The man is holding a wooden pole with a skull on it, while the woman is wearing a white dress. In the background, there is a wall and a shed, and in the middle of the image there is some", "scene_text": "The image shows a man and woman standing next to each other in front of a hut", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "distant music", "birds", "wind", "rooster crowing", "distant voices", "bells", "door creak"], "expressions": []} +{"timestamp_sec": 910.92, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man and woman standing next to each other in front of a hut, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 922.96, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut. The man is wearing a blue dress and the woman is wearing white. There is a chair to the right of them and a few objects in the background. The image is slightly blurred and there is a watermark in the", "scene_text": "The image shows a man and woman standing next to each other in front of a hut", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 929.0, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut. The man is wearing a black dress and is holding something in his hand, while the woman is wearing an unknown outfit. In the background, there is a chair and a few other objects, and the image is slightly blurred", "scene_text": "The image shows a man and woman standing next to each other in front of a hut", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "distant music", "birds", "wind", "rooster crowing", "distant voices", "bells", "door creak"], "expressions": []} +{"timestamp_sec": 935.04, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut. The man is holding an object in his hand and the woman is wearing a white dress. In the background, there are a few people and a wall, and the image is slightly blurred. There is also a watermark", "scene_text": "The image shows a man and woman standing next to each other in front of a hut", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 941.08, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut. The man is wearing a blue dress and the woman is wearing white. In the background, there is a person sitting on a chair and a few other objects. The image is slightly blurred and there are watermarks on it", "scene_text": "The image shows a man and woman standing next to each other in front of a hut. In the background, there is a person sitting on a chair and a few other objects", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 947.08, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut. The man is wearing a white dress and the woman is wearing an unknown outfit. There is a chair to the right of them and a watermark in the center of the image.", "scene_text": "The image shows a man and woman standing next to each other in front of a hut", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 953.12, "raw_caption": "The image shows a man and woman standing next to each other in front of a hut, with a wall in the background and a watermark on the image. The man is holding something in his hand, and there are a few other items scattered around them.", "scene_text": "The image shows a man and woman standing next to each other in front of a hut, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "clock ticking", "cattle lowing", "fan humming", "frogs croaking", "distant music", "birds", "wind", "rain falling", "wind over water", "rooster crowing", "water splashing", "distant voices", "bells", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 995.36, "raw_caption": "The image shows a man and a woman embracing in front of a wall, with a watermark in the middle. The man is wearing a traditional Indian outfit, while the woman is wearing traditional Indian clothing. The wall behind them is decorated with intricate designs and symbols, and the watermark is a reminder of the", "scene_text": "The image shows a man and a woman embracing in front of a wall, with a watermark in the middle. The man is wearing a traditional Indian outfit, while the woman is wearing traditional Indian clothing. The wall behind them is decorated with intricate designs and symbols, and the watermark is a reminder of the", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1001.4, "raw_caption": "The image shows a man with long hair and a beard standing next to a woman in front of a wall, with a watermark in the middle. The man is wearing a traditional Indian outfit, and the woman is wearing traditional Indian clothing. The wall behind them is decorated with intricate designs and symbols, and", "scene_text": "The image shows a man with long hair and a beard standing next to a woman in front of a wall, with a watermark in the middle", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1007.44, "raw_caption": "The image shows a man and a woman standing next to each other in front of a wall, with a watermark in the middle. The man is wearing a traditional Indian outfit, while the woman is wearing an unknown outfit. The wall behind them is plain and unadorned, with no other objects in the", "scene_text": "The image shows a man and a woman standing next to each other in front of a wall, with a watermark in the middle", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1013.44, "raw_caption": "The image shows a man and a woman standing next to each other in front of a wall, with a watermark in the middle. The man is wearing a traditional Indian outfit, while the woman is wearing an unknown outfit. The wall behind them is plain and unadorned, and the watermark reads \"", "scene_text": "The image shows a man and a woman standing next to each other in front of a wall, with a watermark in the middle", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1043.6, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with the man wearing a black dress and the woman wearing a white dress. In the background, there are stairs, pillars, a wall, and a window, and in the middle of the image there is some edited text", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with the man wearing a black dress and the woman wearing a white dress", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 1049.64, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with the man holding an object in his hand. In the background, there are stairs, pillars, a wall, a window, and trees, and the ground is covered with soil and stones. There is also a water", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with the man holding an object in his hand", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1055.68, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with the man holding a flower in his hand. In the background, there are stairs, pillars, a window, and a wall, and on the left side of the image there are leaves. This image is from the", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with the man holding a flower in his hand", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "birds chirping", "insects buzzing", "rustling grass", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak"], "expressions": []} +{"timestamp_sec": 1061.72, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with the woman wearing a white dress and the man wearing a black dress. In the background, there are stairs, pillars, a wall, and a window, and in the middle of the image there is some edited text", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with the woman wearing a white dress and the man wearing a black dress", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 1067.76, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with the man wearing a black dress and the woman wearing a white dress. In the background, there are stairs, pillars, a window, and a wall, and in the middle of the image there is some edited text", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with the man wearing a black dress and the woman wearing a white dress", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 1073.8, "raw_caption": "The image shows a man and woman standing next to each other in front of a building, with the man wearing a black dress and the woman wearing a white dress. In the background, there are stairs, pillars, a wall, and a window, and the ground is covered with dry leaves and stones.", "scene_text": "The image shows a man and woman standing next to each other in front of a building, with the man wearing a black dress and the woman wearing a white dress", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "birds chirping", "insects buzzing", "rustling grass", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak"], "expressions": []} +{"timestamp_sec": 1079.8, "raw_caption": "The image shows a man and woman sitting on the ground in front of a building with pillars and a wall in the background. There is a watermark on the image.", "scene_text": "The image shows a man and woman sitting on the ground in front of a building with pillars and a wall in the background", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1091.88, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with a wall and a door in the background. The man is wearing a white dress and the woman is wearing an unknown outfit. There is a watermark in the middle of the image, suggesting that it is a still from the movie", "scene_text": "The image shows a man and woman sitting on the steps of a building, with a wall and a door in the background", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1097.92, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with the man wearing a black dress and the woman wearing a white dress. In the background, there is a wall and a door, and in the middle of the image there is some edited text.", "scene_text": "The image shows a man and woman sitting on the steps of a building, with the man wearing a black dress and the woman wearing a white dress", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 1103.96, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with the man wearing a black dress and the woman wearing a white dress. In the background, there is a door and a pillar, and in the middle of the image there is some edited text.", "scene_text": "The image shows a man and woman sitting on the steps of a building, with the man wearing a black dress and the woman wearing a white dress", "scene_hints": [], "expressions": []} +{"timestamp_sec": 1109.96, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with a wall and a door in the background. The man is wearing a white dress and the woman is wearing an unknown outfit. There is a watermark in the center of the image, suggesting that it is a still from the movie", "scene_text": "The image shows a man and woman sitting on the steps of a building, with a wall and a door in the background", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1116.0, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with the man holding an object in his hand. In the background, there is a door and a pillar, and in the middle of the image there is some edited text. The woman is wearing a white dress, and the man is", "scene_text": "The image shows a man and woman sitting on the steps of a building, with the man holding an object in his hand", "scene_hints": [], "expressions": []} +{"timestamp_sec": 1122.04, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with a watermark in the background. The woman is wearing a white dress and the man is wearing traditional Indian clothing. The building appears to be a temple, with intricate carvings on the walls and pillars.", "scene_text": "The image shows a man and woman sitting on the steps of a building, with a watermark in the background", "scene_hints": ["footsteps on floor", "bells ringing", "crowd murmur", "clock ticking", "music", "fan humming", "frogs croaking", "birds", "wind", "rain falling", "wind over water", "water splashing", "distant voices", "chanting", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1128.08, "raw_caption": "The image shows a man and woman sitting on the steps of a building, with the man wearing a black dress and the woman wearing a white dress. In the background, there is a door and a pillar, and in the middle of the image there is some edited text.", "scene_text": "The image shows a man and woman sitting on the steps of a building, with the man wearing a black dress and the woman wearing a white dress", "scene_hints": [], "expressions": []} +{"timestamp_sec": 1140.16, "raw_caption": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background. There is also a watermark on the image, suggesting that it is a still from a movie.", "scene_text": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1146.16, "raw_caption": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background. There is also a watermark on the image.", "scene_text": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1152.2, "raw_caption": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background. There is also a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1158.24, "raw_caption": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background. There is also a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1164.28, "raw_caption": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background. There is also a watermark on the image, suggesting that it is a still from a movie.", "scene_text": "The image shows a man and woman sitting next to each other in front of a window, with a frame attached to the wall on the left side and trees and sky in the background", "scene_hints": ["footsteps on dirt", "footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "birds chirping", "rain falling", "insects buzzing", "wind over water", "rustling grass", "water splashing", "distant voices", "branch creak", "crow cawing", "crickets", "wind rustling leaves", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1176.32, "raw_caption": "The image shows a man with long hair and a beard in a black shirt with his hands clasped together, standing in front of a wall with a watermark in the background.", "scene_text": "The image shows a man with long hair and a beard in a black shirt with his hands clasped together, standing in front of a wall with a watermark in the background", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1182.36, "raw_caption": "The image shows a man with long hair and a beard holding a knife in front of a window, with a watermark in the middle of the image and a wall in the background.", "scene_text": "The image shows a man with long hair and a beard holding a knife in front of a window, with a watermark in the middle of the image and a wall in the background.", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1188.4, "raw_caption": "The image shows a man with long hair and a beard wearing a black shirt, standing in front of a wall with a watermark in the middle.", "scene_text": "The image shows a man with long hair and a beard wearing a black shirt, standing in front of a wall with a watermark in the middle", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "frogs croaking", "rain falling", "wind over water", "water splashing", "distant voices", "door creak", "water flowing"], "expressions": []} +{"timestamp_sec": 1194.44, "raw_caption": "The image shows a man with long hair and a beard standing in front of a wall with the words \"Waves Ott for SLC\" written on it. He appears to be looking off into the distance, with a determined expression on his face.", "scene_text": "The image shows a man with long hair and a beard standing in front of a wall with the words \"Waves Ott for SLC\" written on it. He appears to be looking off into the distance, with a determined expression on his face", "scene_hints": ["footsteps on floor", "clock ticking", "fan humming", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 1200.48, "raw_caption": "The image shows a woman and a man holding hands in front of a TV screen with the words \"Waves Ott for SLC\" written on it. The woman is wearing a white dress and has her eyes closed, while the man has his hands clasped together in a prayer-like gesture.", "scene_text": "The image shows a woman and a man holding hands in front of a TV screen with the words \"Waves Ott for SLC\" written on it. The woman is wearing a white dress and has her eyes closed, while the man has his hands clasped together in a prayer-like gesture.", "scene_hints": ["bells ringing", "crowd murmur", "music", "birds", "wind", "chanting"], "expressions": []} diff --git a/results_v16/BEK_EP_021/results.json b/results_v16/BEK_EP_021/results.json new file mode 100755 index 0000000..a9222e0 --- /dev/null +++ b/results_v16/BEK_EP_021/results.json @@ -0,0 +1,591 @@ +{ + "caption_segments": 60, + "timeline": [ + { + "start_sec": 54.2, + "end_sec": 57.02, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a single red rose with its stem and leaves, set against a black background. The rose" + }, + { + "start_sec": 58.8, + "end_sec": 66.4, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with the words \"Shama Zaidi Sunil Shanbag Sandeep Pendse\" written in Hind" + }, + { + "start_sec": 68.4, + "end_sec": 72.8, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mish" + }, + { + "start_sec": 74.0, + "end_sec": 88.4, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasa" + }, + { + "start_sec": 89.4, + "end_sec": 93.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 96.2, + "end_sec": 99.8, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Ashw" + }, + { + "start_sec": 100.4, + "end_sec": 102.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"art " + }, + { + "start_sec": 121.2, + "end_sec": 124.6, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shya" + }, + { + "start_sec": 126.6, + "end_sec": 131.4, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a black background with the words \"Episode 21 Bhakti\" written in white font. The fon" + }, + { + "start_sec": 132.6, + "end_sec": 138.07, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "bell", + "mantra" + ], + "scene_text": "The image shows a black background with the words \"Episode 21 Bhakti\" written in white font. The fon" + }, + { + "start_sec": 141.0, + "end_sec": 143.9, + "caption": "[संगीत]", + "families": [ + "music", + "ringtone" + ], + "scene_text": "" + }, + { + "start_sec": 148.2, + "end_sec": 149.72, + "caption": "[फ़ोन बजने की आवाज़]", + "families": [ + "ringtone" + ], + "scene_text": "The image shows a bronze statue of a woman with a sword in her hand, set against a dark background w" + }, + { + "start_sec": 161.4, + "end_sec": 162.46, + "caption": "[डिंग की आवाज]", + "families": [ + "ding" + ], + "scene_text": "The image shows a bronze statue of a woman holding a baby in her arms, with the words \"Waves Ott for" + }, + { + "start_sec": 165.2, + "end_sec": 167.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a bronze statue of a woman holding a baby in her arms, with the words \"Waves Ott for" + }, + { + "start_sec": 173.2, + "end_sec": 175.45, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "bell", + "mantra" + ], + "scene_text": "The image shows a statue of a Hindu deity with the words \"waves ott for\" inscribed on it, set agains" + }, + { + "start_sec": 182.0, + "end_sec": 188.0, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra" + ], + "scene_text": "The image shows a bronze statue of a woman with a snake in her hand, set against a dark background w" + }, + { + "start_sec": 189.0, + "end_sec": 190.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a bronze statue of a woman with a snake in her hand, set against a dark background w" + }, + { + "start_sec": 192.8, + "end_sec": 197.0, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra" + ], + "scene_text": "The image shows a bronze statue of a woman with a crown on her head, set against a dark background w" + }, + { + "start_sec": 197.6, + "end_sec": 204.4, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra" + ], + "scene_text": "The image shows a statue of the Hindu deity Shiva in the center of a dark background with the words " + }, + { + "start_sec": 296.0, + "end_sec": 303.8, + "caption": "[तबला-सितार के साथ संगीत]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 304.2, + "end_sec": 306.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 306.6, + "end_sec": 308.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 308.8, + "end_sec": 316.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 318.4, + "end_sec": 323.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of men sitting on the ground in front of a tree, surrounded by various objec" + }, + { + "start_sec": 325.4, + "end_sec": 329.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of men sitting on the ground in front of a tree, surrounded by various objec" + }, + { + "start_sec": 330.2, + "end_sec": 332.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of men sitting on the ground in front of a tree, surrounded by various objec" + }, + { + "start_sec": 332.6, + "end_sec": 334.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of men sitting on the ground in front of a tree, surrounded by various objec" + }, + { + "start_sec": 335.6, + "end_sec": 337.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 340.0, + "end_sec": 346.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people sitting around a table in front of a tree, with a watermark in the" + }, + { + "start_sec": 347.6, + "end_sec": 350.2, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of people sitting around a table in front of a tree, with a watermark in the" + }, + { + "start_sec": 352.4, + "end_sec": 359.8, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 360.8, + "end_sec": 367.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 367.8, + "end_sec": 368.86, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 419.8, + "end_sec": 421.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 422.0, + "end_sec": 425.5, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra" + ], + "scene_text": "" + }, + { + "start_sec": 457.2, + "end_sec": 459.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 502.0, + "end_sec": 503.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 504.6, + "end_sec": 505.82, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 513.4, + "end_sec": 515.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 516.2, + "end_sec": 522.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 523.6, + "end_sec": 531.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 531.6, + "end_sec": 536.76, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 556.8, + "end_sec": 558.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 559.6, + "end_sec": 565.6, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 566.6, + "end_sec": 568.67, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 574.0, + "end_sec": 579.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 580.2, + "end_sec": 594.6, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a man in a white robe standing in a field, holding a microphone in his hand" + }, + { + "start_sec": 597.2, + "end_sec": 601.2, + "caption": "[सितार-तबला के साथ संगीत]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows a man in a white robe standing in a field with his arms outstretched, holding someth" + }, + { + "start_sec": 601.6, + "end_sec": 602.81, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a white robe standing in the center, holding a black object in his hand, su" + }, + { + "start_sec": 609.4, + "end_sec": 617.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a man in a white sari standing in a field, holding something in his hand" + }, + { + "start_sec": 617.8, + "end_sec": 628.6, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 629.6, + "end_sec": 631.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 632.2, + "end_sec": 636.4, + "caption": "[सितार-तबला के साथ संगीत]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 672.0, + "end_sec": 685.79, + "caption": "[सितार-तबला के साथ संगीत]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows a man sitting on top of a zebra print couch next to a woman. He is wearing a white d" + }, + { + "start_sec": 760.6, + "end_sec": 764.2, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 765.2, + "end_sec": 769.4, + "caption": "[हल्की थपथपाहट जैसी आवाज़ है]", + "families": [ + "bird", + "rodents, rats, mice", + "patter" + ], + "scene_text": "The image shows a man and a little girl sitting on the ground in front of a basket, surrounded by va" + }, + { + "start_sec": 772.0, + "end_sec": 773.8, + "caption": "[लकड़ी की आवाज़]", + "families": [ + "wood" + ], + "scene_text": "The image shows a man and a little girl sitting on the ground in front of a basket, surrounded by va" + }, + { + "start_sec": 903.6, + "end_sec": 906.01, + "caption": "[हवा चलने की आवाज़]", + "families": [ + "wind", + "tick-tock" + ], + "scene_text": "The image shows a man and woman standing next to each other in front of a hut" + }, + { + "start_sec": 1032.8, + "end_sec": 1035.58, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 1159.8, + "end_sec": 1161.27, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The image shows a man and woman sitting next to each other in front of a window, with a frame attach" + } + ], + "raw_events": 2042, + "deduped_events": 235, + "speech_segments": 106 +} \ No newline at end of file diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_1057.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_1057.4s.png new file mode 100755 index 0000000..1e59191 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_1057.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_120.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_120.2s.png new file mode 100755 index 0000000..8f7126c Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_120.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_1200.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_1200.6s.png new file mode 100755 index 0000000..3a3a1c3 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_1200.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_125.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_125.6s.png new file mode 100755 index 0000000..5cd2e43 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_125.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_128.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_128.4s.png new file mode 100755 index 0000000..9e07c72 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_128.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_135.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_135.8s.png new file mode 100755 index 0000000..d886c89 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_135.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_181.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_181.6s.png new file mode 100755 index 0000000..c3f144b Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_181.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_201.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_201.2s.png new file mode 100644 index 0000000..87f242f Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_201.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_49.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_49.0s.png new file mode 100644 index 0000000..07643f7 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_49.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_50.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_50.6s.png new file mode 100755 index 0000000..42482a8 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_50.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_53.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_53.2s.png new file mode 100755 index 0000000..4a658f2 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_53.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_531.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_531.6s.png new file mode 100755 index 0000000..ca7edc6 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_531.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_535.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_535.2s.png new file mode 100644 index 0000000..1e988b5 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_535.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_536.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_536.2s.png new file mode 100755 index 0000000..64a5073 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_536.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_539.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_539.8s.png new file mode 100755 index 0000000..c148780 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_539.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_543.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_543.0s.png new file mode 100755 index 0000000..3e9dbd4 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_543.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_548.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_548.8s.png new file mode 100755 index 0000000..d3d68f4 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_548.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_55.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_55.6s.png new file mode 100755 index 0000000..131eb78 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_55.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_552.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_552.8s.png new file mode 100644 index 0000000..06eddf3 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_552.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_553.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_553.4s.png new file mode 100755 index 0000000..a021398 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_553.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_561.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_561.2s.png new file mode 100755 index 0000000..2fb46a3 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_561.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_565.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_565.0s.png new file mode 100755 index 0000000..1274117 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_565.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_575.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_575.4s.png new file mode 100644 index 0000000..db5ef2d Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_575.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_575.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_575.8s.png new file mode 100755 index 0000000..35bc149 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_575.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_584.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_584.4s.png new file mode 100755 index 0000000..15d1ba4 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_584.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_59.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_59.6s.png new file mode 100755 index 0000000..f3416a6 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_59.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_591.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_591.6s.png new file mode 100755 index 0000000..2bbf3d7 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_591.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_595.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_595.8s.png new file mode 100644 index 0000000..ef8ee96 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_595.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_596.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_596.0s.png new file mode 100755 index 0000000..7384a0c Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_596.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_625.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_625.8s.png new file mode 100755 index 0000000..efd6006 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_625.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_629.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_629.6s.png new file mode 100644 index 0000000..0463ad2 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_629.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_63.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_63.8s.png new file mode 100755 index 0000000..e2feb4f Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_63.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_637.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_637.0s.png new file mode 100755 index 0000000..5ec9476 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_637.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_66.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_66.8s.png new file mode 100755 index 0000000..b7309d2 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_66.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_69.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_69.4s.png new file mode 100644 index 0000000..0279a28 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_69.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_72.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_72.6s.png new file mode 100644 index 0000000..17ca8eb Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_72.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_73.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_73.4s.png new file mode 100755 index 0000000..df88c3e Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_73.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_746.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_746.6s.png new file mode 100755 index 0000000..7678523 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_746.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_76.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_76.8s.png new file mode 100755 index 0000000..01d3e9b Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_76.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_778.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_778.4s.png new file mode 100755 index 0000000..3be8f61 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_778.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_79.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_79.4s.png new file mode 100755 index 0000000..c60ff01 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_79.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_81.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_81.6s.png new file mode 100755 index 0000000..9cf7a4e Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_81.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_814.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_814.0s.png new file mode 100755 index 0000000..8d007f5 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_814.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_859.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_859.2s.png new file mode 100644 index 0000000..fad7489 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_859.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_88.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_88.4s.png new file mode 100755 index 0000000..3bb35d8 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_88.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_892.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_892.0s.png new file mode 100644 index 0000000..03d1d5c Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_892.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_892.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_892.8s.png new file mode 100755 index 0000000..5870bb8 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_892.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_897.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_897.8s.png new file mode 100755 index 0000000..600597f Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_897.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_913.4s.png b/results_v16/BEK_EP_022/annotated_frames/frame_913.4s.png new file mode 100755 index 0000000..171136e Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_913.4s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_915.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_915.6s.png new file mode 100755 index 0000000..c956eeb Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_915.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_917.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_917.8s.png new file mode 100755 index 0000000..72e39b5 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_917.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_949.6s.png b/results_v16/BEK_EP_022/annotated_frames/frame_949.6s.png new file mode 100755 index 0000000..75f1e00 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_949.6s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_95.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_95.2s.png new file mode 100755 index 0000000..9757710 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_95.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_952.0s.png b/results_v16/BEK_EP_022/annotated_frames/frame_952.0s.png new file mode 100755 index 0000000..f3bfe77 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_952.0s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_970.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_970.2s.png new file mode 100644 index 0000000..c9d76d4 Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_970.2s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_971.8s.png b/results_v16/BEK_EP_022/annotated_frames/frame_971.8s.png new file mode 100755 index 0000000..282909a Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_971.8s.png differ diff --git a/results_v16/BEK_EP_022/annotated_frames/frame_99.2s.png b/results_v16/BEK_EP_022/annotated_frames/frame_99.2s.png new file mode 100755 index 0000000..19b342a Binary files /dev/null and b/results_v16/BEK_EP_022/annotated_frames/frame_99.2s.png differ diff --git a/results_v16/BEK_EP_022/captions.srt b/results_v16/BEK_EP_022/captions.srt new file mode 100755 index 0000000..7f1c0aa --- /dev/null +++ b/results_v16/BEK_EP_022/captions.srt @@ -0,0 +1,168 @@ +1 +00:00:49,000 --> 00:00:52,399 +[संगीत के साथ वायलिन] + +2 +00:00:53,200 --> 00:01:05,599 +[हारमोनियम-पियानो के साथ संगीत] + +3 +00:01:06,799 --> 00:01:08,599 +[संगीत] + +4 +00:01:09,400 --> 00:01:11,799 +[हारमोनियम-पियानो के साथ संगीत] + +5 +00:01:12,599 --> 00:01:15,200 +[संगीत के साथ हारमोनियम] + +6 +00:01:16,799 --> 00:01:18,599 +[संगीत] + +7 +00:01:19,400 --> 00:01:21,200 +[संगीत] + +8 +00:01:21,599 --> 00:01:23,400 +[संगीत] + +9 +00:01:28,400 --> 00:01:33,370 +[मंत्रों का उच्चारण] + +10 +00:01:35,200 --> 00:01:38,799 +[संगीत] + +11 +00:01:39,200 --> 00:01:41,000 +[संगीत] + +12 +00:02:00,200 --> 00:02:03,799 +[संगीत] + +13 +00:02:05,599 --> 00:02:07,400 +[संगीत] + +14 +00:02:08,400 --> 00:02:10,199 +[संगीत] + +15 +00:02:15,800 --> 00:02:22,000 +[पक्षियों की चहचहाहट] + +16 +00:03:01,599 --> 00:03:02,969 +[आपातकालीन वाहन की आवाज़] + +17 +00:03:21,199 --> 00:03:23,000 +[संगीत के साथ गिटार] + +18 +00:08:51,600 --> 00:08:53,429 +[संगीत] + +19 +00:08:55,200 --> 00:08:58,000 +[सितार-गिटार के साथ संगीत] + +20 +00:08:59,799 --> 00:09:01,799 +[संगीत के साथ सितार] + +21 +00:09:03,000 --> 00:09:07,000 +[सितार-गिटार के साथ संगीत] + +22 +00:09:08,799 --> 00:09:12,000 +[सितार-गिटार के साथ संगीत] + +23 +00:09:12,799 --> 00:09:20,000 +[सितार-गिटार के साथ संगीत] + +24 +00:09:21,200 --> 00:09:24,600 +[सितार-गिटार के साथ संगीत] + +25 +00:09:25,000 --> 00:09:34,600 +[सितार-गिटार के साथ संगीत] + +26 +00:09:35,399 --> 00:09:51,000 +[सितार-गिटार के साथ संगीत] + +27 +00:09:51,600 --> 00:09:55,000 +[गिटार-सितार के साथ संगीत] + +28 +00:09:55,799 --> 00:10:23,320 +[सितार-गिटार के साथ संगीत] + +29 +00:10:25,799 --> 00:10:27,389 +[सितार-गिटार के साथ संगीत] + +30 +00:10:29,600 --> 00:10:31,230 +[संगीत के साथ गिटार] + +31 +00:10:37,000 --> 00:10:38,799 +[कदमों की आवाज़] + +32 +00:12:26,600 --> 00:12:29,799 +[कदमों की आवाज़] + +33 +00:12:58,399 --> 00:13:02,200 +[संगीत के साथ बांसुरी] + +34 +00:13:34,000 --> 00:13:37,049 +[संगीत] + +35 +00:14:19,200 --> 00:14:21,590 +[संगीत के साथ वायलिन] + +36 +00:14:52,000 --> 00:15:03,200 +[हारमोनियम-पियानो के साथ संगीत] + +37 +00:15:13,399 --> 00:15:23,600 +[हारमोनियम-वायलिन के साथ संगीत] + +38 +00:15:49,600 --> 00:15:51,399 +[संगीत] + +39 +00:15:52,000 --> 00:15:55,190 +[संगीत] + +40 +00:16:10,200 --> 00:16:14,909 +[संगीत के साथ गिटार] + +41 +00:17:37,400 --> 00:17:44,400 +[संगीत] + +42 +00:20:00,599 --> 00:20:02,400 +[क्लिक की आवाज़] + diff --git a/results_v16/BEK_EP_022/florence_log.jsonl b/results_v16/BEK_EP_022/florence_log.jsonl new file mode 100755 index 0000000..6b3ce97 --- /dev/null +++ b/results_v16/BEK_EP_022/florence_log.jsonl @@ -0,0 +1,171 @@ +{"timestamp_sec": 0.0, "raw_caption": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_text": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_hints": ["wind", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 6.04, "raw_caption": "The image shows a red rose with water droplets on it against a black background, with the words \"Happy Valentine's Day\" written in Hindi.", "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"Happy Valentine's Day\" written in Hindi.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 12.08, "raw_caption": "The image shows a red rose with green leaves and water droplets on it, set against a black background. The rose is adorned with Arabic calligraphy, adding a touch of elegance to the image.", "scene_text": "The image shows a red rose with green leaves and water droplets on it, set against a black background. The rose is adorned with Arabic calligraphy, adding a touch of elegance to the image.", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 18.16, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"bharat ek khoj by shyam benegal\" written in the center.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"bharat ek khoj by shyam benegal\" written in the center.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 24.2, "raw_caption": "The image shows a single red rose with its stem and leaves, set against a dark background, with the words \"Jawaharlal Nehru's Discovery of India\" written across it.", "scene_text": "The image shows a single red rose with its stem and leaves, set against a dark background, with the words \"Jawaharlal Nehru's Discovery of India\" written across it.", "scene_hints": ["birds chirping", "wind", "branch creak", "crackling fire", "crickets", "night insects", "rustling grass", "wind rustling leaves", "crow cawing", "distant music", "owl hooting", "insects buzzing", "crickets chirping", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 30.28, "raw_caption": "The image shows a single red rose with its stem and leaves against a black background, with the words \"discovery of India\" written in Hindi.", "scene_text": "The image shows a single red rose with its stem and leaves against a black background, with the words \"discovery of India\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 36.32, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 42.4, "raw_caption": "The image shows a single red rose with its stem and leaves against a black background, with the words \"Roshan Seth\" written in Hindi.", "scene_text": "The image shows a single red rose with its stem and leaves against a black background, with the words \"Roshan Seth\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 48.44, "raw_caption": "The image shows a red rose with the words \"Chief Assistant Director Mandeep Kakkar\" written in Hindi. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background.", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["birds chirping", "wind", "branch creak", "crackling fire", "crickets", "night insects", "rustling grass", "wind rustling leaves", "crow cawing", "distant music", "owl hooting", "insects buzzing", "crickets chirping", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 54.48, "raw_caption": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_hints": ["wind", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 60.56, "raw_caption": "The image shows a red rose with the words \"Shama Zaidi\" written in Hindi, along with a watermark of a poem written in the same language. The rose is a deep red color, and the text is written in a bold font.", "scene_text": "The image shows a red rose with the words \"Shama Zaidi\" written in Hindi, along with a watermark of a poem written in the same language. The rose is a deep red color, and the text is written in a bold font.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 66.6, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasant Dev\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasant Dev\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 72.68, "raw_caption": "The image shows a red rose with the words \"Dr. R.S. Sharma\" written in Marathi, along with a watermark. The rose is surrounded by lush green leaves, creating a beautiful contrast against the dark background.", "scene_text": "The image shows a red rose with the words \"Dr. R.S. Sharma\" written in Marathi, along with a watermark. The rose is surrounded by lush green leaves, creating a beautiful contrast against the dark background.", "scene_hints": ["frogs croaking", "crackling fire", "night insects", "owl hooting", "water splashing", "water flowing", "crickets", "wind rustling leaves", "wind", "branch creak", "crow cawing", "insects buzzing", "crickets chirping", "rain falling", "birds chirping", "wind over water", "rustling grass", "distant music", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 78.72, "raw_caption": "The image shows a red rose with the words \"Dr. R.S. Sharma\" written in Marathi, along with a watermark. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text is written in a bold font, emphasizing the", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["frogs croaking", "crackling fire", "night insects", "owl hooting", "water splashing", "water flowing", "crickets", "wind rustling leaves", "wind", "branch creak", "crow cawing", "insects buzzing", "crickets chirping", "rain falling", "birds chirping", "wind over water", "rustling grass", "distant music", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 84.8, "raw_caption": "The image shows a red rose with the words \"Mixing Hitendra Ghosh\" written in Hindi, along with a watermark of Rajkamal Kalamandir.", "scene_text": "The image shows a red rose with the words \"Mixing Hitendra Ghosh\" written in Hindi, along with a watermark of Rajkamal Kalamandir.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 90.84, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"vanraj bhatia\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"vanraj bhatia\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 96.92, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"art direction nithish roy\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"art direction nithish roy\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 102.96, "raw_caption": "The image shows a red rose with the words \"Salim Arif\" written on it, set against a dark background. The rose has a stem and leaves, and the text is written in Hindi.", "scene_text": "The image shows a red rose with the words \"Salim Arif\" written on it, set against a dark background. The rose has a stem and leaves, and the text is written in Hindi.", "scene_hints": ["birds chirping", "wind", "branch creak", "crackling fire", "crickets", "night insects", "rustling grass", "wind rustling leaves", "crow cawing", "distant music", "owl hooting", "insects buzzing", "crickets chirping", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 109.0, "raw_caption": "The image shows a red rose with the words \"Piyush Shah\" written in Marathi, along with a watermark. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text is written in a bold font, emphasizing the importance of the", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["frogs croaking", "crackling fire", "night insects", "owl hooting", "water splashing", "water flowing", "crickets", "wind rustling leaves", "wind", "branch creak", "crow cawing", "insects buzzing", "crickets chirping", "rain falling", "birds chirping", "wind over water", "rustling grass", "distant music", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 115.08, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"V K Murthy\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"V K Murthy\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 121.12, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shyam Benegal\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shyam Benegal\" written in Hindi.", "scene_hints": ["birds chirping", "branch creak", "crickets", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 127.2, "raw_caption": "The image shows a black background with the text \"Episode 22: The Chola Empire Part-I\" written in white font. The text is centered in the middle of the image and is surrounded by a white border. The font size is large and bold, making it stand out against the dark background.", "scene_text": "The image shows a black background with the text \"Episode 22: The Chola Empire Part-I\" written in white font. The text is centered in the middle of the image and is surrounded by a white border. The font size is large and bold, making it stand out against the dark background.", "scene_hints": ["wind", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 151.4, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["music", "birds chirping", "wind", "birds", "branch creak", "crickets", "crowd murmur", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "bells ringing", "chanting", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 157.48, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["music", "birds chirping", "wind", "birds", "branch creak", "crickets", "crowd murmur", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "bells ringing", "chanting", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 163.52, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["music", "birds chirping", "wind", "birds", "branch creak", "crickets", "crowd murmur", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "bells ringing", "chanting", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 169.6, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["music", "birds chirping", "wind", "birds", "branch creak", "crickets", "crowd murmur", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "bells ringing", "chanting", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 175.64, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["music", "birds chirping", "wind", "birds", "branch creak", "crickets", "crowd murmur", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "bells ringing", "chanting", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 187.76, "raw_caption": "The image shows a beautiful sunset with the sun in the sky, surrounded by clouds. The sun is in the center of the image, with the text \"Waves Ott for SLC\" in the middle. The sky is a mix of vibrant oranges, pinks, and purples, and the clouds are", "scene_text": "The image shows a beautiful sunset with the sun in the sky, surrounded by clouds. The sun is in the center of the image, with the text \"Waves Ott for SLC\" in the middle. The sky is a mix of vibrant oranges, pinks, and purples, and the clouds are", "scene_hints": [], "expressions": []} +{"timestamp_sec": 193.84, "raw_caption": "The image shows a beautiful sunset with the sun setting in the sky, surrounded by clouds. The sun is a bright orange color, and there is a watermark on the image.", "scene_text": "The image shows a beautiful sunset with the sun setting in the sky, surrounded by clouds. The sun is a bright orange color, and there is a watermark on the image.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 205.92, "raw_caption": "The image shows a close up of a brick wall with the words \"Waves Ott for SLC\" inscribed on it. The wall is made of a light-colored stone, and the text is written in a bold, black font.", "scene_text": "The image shows a close up of a brick wall with the words \"Waves Ott for SLC\" inscribed on it. The wall is made of a light-colored stone, and the text is written in a bold, black font.", "scene_hints": ["footsteps on floor", "door creak", "clock ticking", "fan humming", "distant voices"], "expressions": []} +{"timestamp_sec": 212.0, "raw_caption": "The image shows a statue of a man standing in front of a stone wall, with a watermark in the background. The statue is believed to be of Lord Vishnu, the Hindu god of wisdom and success. He is wearing a traditional Indian outfit and has a serene expression on his face. His hands", "scene_text": "The image shows a statue of a man standing in front of a stone wall, with a watermark in the background", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 218.04, "raw_caption": "The image shows a close up of a stone pillar with intricate carvings on it, located in the Kailasa Temple in Hampi, Karnataka. The pillar is adorned with a watermark, giving it a unique and beautiful look.", "scene_text": "The image shows a close up of a stone pillar with intricate carvings on it, located in the Kailasa Temple in Hampi, Karnataka. The pillar is adorned with a watermark, giving it a unique and beautiful look.", "scene_hints": ["music", "rain falling", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "crowd murmur", "bells ringing", "chanting"], "expressions": []} +{"timestamp_sec": 296.8, "raw_caption": "The image shows a stone carving of a man and woman on a wall with the words \"Waves Ott for SLC\" inscribed on it. The carvings are detailed and intricate, depicting the two figures in a regal pose. The man is wearing a long robe and a crown, while the woman", "scene_text": "The image shows a stone carving of a man and woman on a wall with the words \"Waves Ott for SLC\" inscribed on it. The carvings are detailed and intricate, depicting the two figures in a regal pose. The man is wearing a long robe and a crown, while the woman", "scene_hints": ["footsteps on floor", "door creak", "clock ticking", "fan humming", "distant voices"], "expressions": []} +{"timestamp_sec": 321.04, "raw_caption": "The image shows a stone statue of a Buddha with a hat on his head, which is believed to be a representation of the Hindu god Shiva. The statue is adorned with a watermark, giving it a unique and ancient look.", "scene_text": "The image shows a stone statue of a Buddha with a hat on his head, which is believed to be a representation of the Hindu god Shiva. The statue is adorned with a watermark, giving it a unique and ancient look.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 333.16, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background. There is a watermark on the image.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["frogs croaking", "birds", "water splashing", "water flowing", "crickets", "wind rustling leaves", "music", "wind", "branch creak", "crowd murmur", "crow cawing", "insects buzzing", "chanting", "rain falling", "birds chirping", "wind over water", "rustling grass", "bells ringing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 339.2, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background. There is a watermark on the image.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["frogs croaking", "birds", "water splashing", "water flowing", "crickets", "wind rustling leaves", "music", "wind", "branch creak", "crowd murmur", "crow cawing", "insects buzzing", "chanting", "rain falling", "birds chirping", "wind over water", "rustling grass", "bells ringing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 345.24, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background, with a watermark on the image.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["frogs croaking", "birds", "water splashing", "water flowing", "crickets", "wind rustling leaves", "music", "wind", "branch creak", "crowd murmur", "crow cawing", "insects buzzing", "chanting", "rain falling", "birds chirping", "wind over water", "rustling grass", "bells ringing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 351.32, "raw_caption": "The image shows a man standing in front of a temple, wearing a white dress and a cap. The temple is surrounded by trees and the sky is visible in the background. There is a watermark on the image.", "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap", "scene_hints": ["frogs croaking", "birds", "water splashing", "water flowing", "crickets", "wind rustling leaves", "music", "wind", "branch creak", "crowd murmur", "crow cawing", "insects buzzing", "chanting", "rain falling", "birds chirping", "wind over water", "rustling grass", "bells ringing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 375.56, "raw_caption": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background.", "scene_text": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 381.6, "raw_caption": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background, with the sky above.", "scene_text": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background, with the sky above", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 387.68, "raw_caption": "The image shows a man standing in front of a building with pillars, surrounded by trees and a gate, with a watermark in the background and the sky above.", "scene_text": "The image shows a man standing in front of a building with pillars, surrounded by trees and a gate, with a watermark in the background and the sky above", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 393.72, "raw_caption": "The image shows a man wearing a cap standing in front of a building with pillars, surrounded by trees and a gate, with a watermark in the background and the sky above.", "scene_text": "The image shows a man wearing a cap standing in front of a building with pillars, surrounded by trees and a gate, with a watermark in the background and the sky above", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 399.76, "raw_caption": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background, with the sky above.", "scene_text": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background, with the sky above", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 405.84, "raw_caption": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background.", "scene_text": "The image shows a man wearing a cap standing in front of a building with pillars and a gate, surrounded by trees and a watermark in the background", "scene_hints": ["rain falling", "birds chirping", "water splashing", "wind over water", "branch creak", "water flowing", "crickets", "frogs croaking", "rustling grass", "wind rustling leaves", "crow cawing", "insects buzzing", "footsteps on dirt"], "expressions": []} +{"timestamp_sec": 417.96, "raw_caption": "The image shows a man in a yellow sari sitting on a throne in front of a statue, with a person standing behind him and a pillar to his right. There is a watermark on the image, suggesting that it is a photo of Ramayana.", "scene_text": "The image shows a man in a yellow sari sitting on a throne in front of a statue, with a person standing behind him and a pillar to his right", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 424.0, "raw_caption": "The image shows a man in a yellow sari sitting on a throne in front of a statue, with a person standing behind him and a pillar to his right. There is a watermark on the image, suggesting that it is a photo of Ramayana.", "scene_text": "The image shows a man in a yellow sari sitting on a throne in front of a statue, with a person standing behind him and a pillar to his right", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 430.08, "raw_caption": "The image shows a man in a blue sari standing next to another man in front of a mirror, with a wall in the background and a watermark on the image. The man in the sari appears to be a god, as indicated by the title of the image, \"Bhoothnath", "scene_text": "The image shows a man in a blue sari standing next to another man in front of a mirror, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 436.12, "raw_caption": "The image shows a man in a white turban and a woman in a blue dress standing in front of a crowd. The man is holding a musical instrument and the woman is clapping her hands. In the background, there are a few people sitting on chairs and a wall with a watermark on it.", "scene_text": "The image shows a man in a white turban and a woman in a blue dress standing in front of a crowd. In the background, there are a few people sitting on chairs and a wall with a watermark on it", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "crowd chatter", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "music playing", "children playing", "distant voices", "bells ringing"], "expressions": []} +{"timestamp_sec": 442.2, "raw_caption": "The image shows a man in a white turban standing next to a woman in a blue dress, both of them looking at each other. In the background there is a wall and a chair, and in the middle of the image there is some edited text which reads \"Krishna Janmashtami", "scene_text": "The image shows a man in a white turban standing next to a woman in a blue dress, both of them looking at each other", "scene_hints": ["footsteps on floor", "door creak", "clock ticking", "fan humming", "distant voices"], "expressions": []} +{"timestamp_sec": 448.24, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 454.28, "raw_caption": "The image shows a man in a white sari talking to another man in front of a crowd, with a watermark in the center of the image and various objects in the background.", "scene_text": "The image shows a man in a white sari talking to another man in front of a crowd, with a watermark in the center of the image and various objects in the background", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 460.36, "raw_caption": "The image shows a man in a white sari standing next to a woman in a yellow sari, both of them sitting on chairs. In the background, there are sculptures and other objects, and in the center of the image there is a watermark.", "scene_text": "The image shows a man in a white sari standing next to a woman in a yellow sari, both of them sitting on chairs", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 466.4, "raw_caption": "The image shows a man in a white sari standing next to a woman in a yellow sari, both of them looking at each other. In the background, there is a statue and a few other objects, and in the middle of the image there is some edited text. The man in the sari", "scene_text": "The image shows a man in a white sari standing next to a woman in a yellow sari, both of them looking at each other", "scene_hints": [], "expressions": []} +{"timestamp_sec": 472.48, "raw_caption": "The image shows a man in a white sari standing next to a woman in a yellow sari, with a few other people in the background. On the left side of the image there is an object, and in the middle of the picture there is a watermark. The background is dark, giving the", "scene_text": "The image shows a man in a white sari standing next to a woman in a yellow sari, with a few other people in the background", "scene_hints": ["rain falling", "wind", "water splashing", "wind over water", "frogs croaking", "water flowing", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 478.52, "raw_caption": "The image shows a man in a white sari standing next to a woman in a red sari, both of them looking at each other. In the background, there are statues and other objects, and in the middle of the image there is some edited text. The man in the sari appears to be", "scene_text": "The image shows a man in a white sari standing next to a woman in a red sari, both of them looking at each other", "scene_hints": [], "expressions": []} +{"timestamp_sec": 484.6, "raw_caption": "The image shows a man and woman standing next to each other in front of a temple, surrounded by idols, lights, and other objects. The background is dark and there is a watermark on the image, suggesting that it is a still from the Tamil movie Sivakarthikeyan.", "scene_text": "The image shows a man and woman standing next to each other in front of a temple, surrounded by idols, lights, and other objects", "scene_hints": ["music", "rain falling", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "crackling fire", "night insects", "crowd murmur", "bells ringing", "distant music", "owl hooting", "crickets chirping", "chanting"], "expressions": []} +{"timestamp_sec": 490.64, "raw_caption": "The image shows a man in a white sari standing next to a woman in a yellow sari, both of them holding objects in their hands. In the middle of the image there is a watermark, and in the background there are sculptures and other objects.", "scene_text": "The image shows a man in a white sari standing next to a woman in a yellow sari, both of them holding objects in their hands", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 496.68, "raw_caption": "The image shows a man in a yellow sari standing next to a woman in a red sari, surrounded by a few other people. In the background, there are sculptures and a watermark on the image.", "scene_text": "The image shows a man in a yellow sari standing next to a woman in a red sari, surrounded by a few other people", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 502.76, "raw_caption": "The image shows a man in a yellow sari sitting on a throne next to a woman in a red sari, surrounded by a few other people. In the background, there are sculptures and a watermark on the image.", "scene_text": "The image shows a man in a yellow sari sitting on a throne next to a woman in a red sari, surrounded by a few other people", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 508.8, "raw_caption": "The image shows a man with a mustache and moustache sitting on a throne, wearing a red dress and ornaments, with a watermark in the middle of the image and a blurred background.", "scene_text": "The image shows a man with a mustache and moustache sitting on a throne, wearing a red dress and ornaments, with a watermark in the middle of the image and a blurred background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 514.88, "raw_caption": "The image shows a man with a mustache and a red robe sitting on a throne, wearing ornaments and with a watermark in the middle of the image. He appears to be Ramayana, as indicated by the watermark.", "scene_text": "The image shows a man with a mustache and a red robe sitting on a throne, wearing ornaments and with a watermark in the middle of the image", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 520.92, "raw_caption": "The image shows a man with a mustache and moustache sitting on a throne, wearing a red dress and adorned with ornaments. In the background, there is a curtain and a watermark on the image.", "scene_text": "The image shows a man with a mustache and moustache sitting on a throne, wearing a red dress and adorned with ornaments", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 527.0, "raw_caption": "The image shows a man with a mustache and moustache sitting on a throne, wearing a red dress and adorned with ornaments. In the background, there is a cloth and a watermark on the image.", "scene_text": "The image shows a man with a mustache and moustache sitting on a throne, wearing a red dress and adorned with ornaments", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 533.04, "raw_caption": "The image shows a group of people standing around a bed in a room, with a person lying on the bed covered in a purple cloth. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a group of people standing around a bed in a room, with a person lying on the bed covered in a purple cloth", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 539.12, "raw_caption": "The image shows a group of people standing around a bed in a room, with a woman lying on the bed in the center. The background is dark and there is a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a group of people standing around a bed in a room, with a woman lying on the bed in the center", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "wind", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "crackling fire", "night insects", "distant music", "owl hooting", "distant voices", "crickets chirping"], "expressions": []} +{"timestamp_sec": 545.16, "raw_caption": "The image shows a group of people standing around a woman laying on top of a bed in a room, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a group of people standing around a woman laying on top of a bed in a room, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 551.2, "raw_caption": "The image shows a man and woman sitting on top of a bed next to each other, with a watermark in the middle of the picture and a dark background. The man is wearing a white dress, while the woman is wearing an unknown outfit.", "scene_text": "The image shows a man and woman sitting on top of a bed next to each other, with a watermark in the middle of the picture and a dark background", "scene_hints": ["rain falling", "wind", "water splashing", "wind over water", "frogs croaking", "water flowing", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 557.28, "raw_caption": "The image shows a man in a gold outfit standing next to another man in front of a red wall, with a watermark in the middle of the image. The man in the gold outfit appears to be an actor, as indicated by the watermark.", "scene_text": "The image shows a man in a gold outfit standing next to another man in front of a red wall, with a watermark in the middle of the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 563.32, "raw_caption": "The image shows a man in a yellow bikini standing next to a woman in a black dress, with a watermark in the middle of the image and a wall in the background. The man is wearing a chain around his neck and the woman is holding something in her hand.", "scene_text": "The image shows a man in a yellow bikini standing next to a woman in a black dress, with a watermark in the middle of the image and a wall in the background", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 569.4, "raw_caption": "The image shows a woman with long black hair standing in front of a group of people, with a watermark in the middle of the image. She appears to be a heroine, with her long hair cascading down her back and a determined expression on her face.", "scene_text": "The image shows a woman with long black hair standing in front of a group of people, with a watermark in the middle of the image", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 575.44, "raw_caption": "The image shows a man in a gold outfit standing next to a woman in front of a red wall, with a watermark in the center of the image. The man is wearing a chain around his neck, and the woman is standing to his right.", "scene_text": "The image shows a man in a gold outfit standing next to a woman in front of a red wall, with a watermark in the center of the image. The man is wearing a chain around his neck, and the woman is standing to his right", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 581.52, "raw_caption": "The image shows a group of people standing around each other in a room, with a woman in the center holding something in her hand. In the background, there is a wall with a photo frame and a curtain, and the image is slightly blurred with watermarks.", "scene_text": "The image shows a group of people standing around each other in a room, with a woman in the center holding something in her hand", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 587.56, "raw_caption": "The image shows a group of people standing around each other in a room, with a wall in the background and a watermark on the image. It appears to be a scene from a movie, with the people in the foreground and the wall behind them.", "scene_text": "The image shows a group of people standing around each other in a room, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 593.6, "raw_caption": "The image shows a group of three women standing next to each other in a room, with a wall in the background and a watermark on the image. The woman in the center appears to be a heroine, with her arms outstretched and a determined expression on her face.", "scene_text": "The image shows a group of three women standing next to each other in a room, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 599.68, "raw_caption": "The image shows a stage with a large umbrella on top of it, surrounded by decorative items and a wall in the background. There is also a watermark on the image.", "scene_text": "The image shows a stage with a large umbrella on top of it, surrounded by decorative items and a wall in the background. There is also a watermark on the image.", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 605.72, "raw_caption": "The image shows a woman standing in front of a throne in a room, surrounded by a group of people. The throne is adorned with various objects, and there is a watermark on the image.", "scene_text": "The image shows a woman standing in front of a throne in a room, surrounded by a group of people", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 611.8, "raw_caption": "The image shows a woman laying on the floor in front of a crowd of people, illuminated by a few lights on a stand. In the background, there are a few objects visible and a watermark on the image.", "scene_text": "The image shows a woman laying on the floor in front of a crowd of people, illuminated by a few lights on a stand. In the background, there are a few objects visible and a watermark on the image.", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "crowd chatter", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "music playing", "children playing", "distant voices", "bells ringing"], "expressions": []} +{"timestamp_sec": 617.84, "raw_caption": "The image shows a woman in a silver sari dancing in front of a crowd of people standing on the floor, illuminated by lamps on the stands. In the background, there is a wall with a window and some text.", "scene_text": "The image shows a woman in a silver sari dancing in front of a crowd of people standing on the floor, illuminated by lamps on the stands", "scene_hints": ["footsteps on floor", "door creak", "crowd chatter", "clock ticking", "fan humming", "music playing", "children playing", "distant voices", "bells ringing"], "expressions": []} +{"timestamp_sec": 623.92, "raw_caption": "The image shows a group of people standing in front of a crowd of people in a room, illuminated by a few lights on the left and right side of the image. In the middle of the picture, there is a watermark, and in the background, there are a few objects visible. The people", "scene_text": "The image shows a group of people standing in front of a crowd of people in a room, illuminated by a few lights on the left and right side of the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "crowd chatter", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "music playing", "children playing", "distant voices", "bells ringing"], "expressions": []} +{"timestamp_sec": 629.96, "raw_caption": "The image shows a woman in a red dress standing in front of a crowd of people, illuminated by a few lights on the left and right side of the image. In the middle of the picture, there is a watermark, and in the background, there are a few objects visible. The woman appears to", "scene_text": "The image shows a woman in a red dress standing in front of a crowd of people, illuminated by a few lights on the left and right side of the image", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 636.04, "raw_caption": "The image shows a man in a yellow sari standing in front of a pile of colorful plates, with a watermark in the middle of the picture and a wall in the background.", "scene_text": "The image shows a man in a yellow sari standing in front of a pile of colorful plates, with a watermark in the middle of the picture and a wall in the background", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 642.08, "raw_caption": "The image shows a group of people standing on the floor, with one person wearing a crown and holding an object in their hand. In the center of the image there is a watermark, and in the background there are some objects arranged in a rack. This image is from the 1971 movie Ramayana,", "scene_text": "The image shows a group of people standing on the floor, with one person wearing a crown and holding an object in their hand", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 648.12, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a crown. In the background, there are shelves filled with various objects, and a watermark on the image. The man in the center of the group appears to be Ramayana, as indicated by", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a crown", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 654.2, "raw_caption": "The image shows a scene from the Tamil movie Ramayana, with two men wearing ornaments standing in the foreground and a few other people in the background. There is a watermark on the image, giving it a unique look.", "scene_text": "The image shows a scene from the Tamil movie Ramayana, with two men wearing ornaments standing in the foreground and a few other people in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 660.24, "raw_caption": "The image shows a scene from the Tamil movie Ramayana, with two men wearing ornaments standing in the foreground and a few other people in the background. There is a watermark on the image, suggesting that it is a photo of the heroine of the movie.", "scene_text": "The image shows a scene from the Tamil movie Ramayana, with two men wearing ornaments standing in the foreground and a few other people in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 666.32, "raw_caption": "The image shows two men in traditional Indian clothing standing next to each other in front of a crowd. In the center of the image there is a watermark, and in the background there are various objects. The two men appear to be Ramayana, as indicated by the watermark.", "scene_text": "The image shows two men in traditional Indian clothing standing next to each other in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 672.36, "raw_caption": "The image shows a man wearing a crown and ornaments, with a blurred background and a watermark in the middle. He appears to be in a scene from the movie Ramayana, as indicated by the title of the movie.", "scene_text": "The image shows a man wearing a crown and ornaments, with a blurred background and a watermark in the middle. He appears to be in a scene from the movie Ramayana, as indicated by the title of the movie.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 678.44, "raw_caption": "The image shows a man wearing a crown and ornaments, with a blurred background and a watermark in the middle. He appears to be in a scene from the movie Ramayana, as indicated by the title of the movie.", "scene_text": "The image shows a man wearing a crown and ornaments, with a blurred background and a watermark in the middle. He appears to be in a scene from the movie Ramayana, as indicated by the title of the movie.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 684.48, "raw_caption": "The image shows a man in a gold outfit with a crown on his head, surrounded by a few people in the background. The background is slightly blurred, and there is a watermark on the image. The man appears to be Ramayana, as indicated by the title of the movie.", "scene_text": "The image shows a man in a gold outfit with a crown on his head, surrounded by a few people in the background. The background is slightly blurred, and there is a watermark on the image. The man appears to be Ramayana, as indicated by the title of the movie.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 690.52, "raw_caption": "The image shows a man in a gold outfit with a crown on his head, surrounded by a few other people in the background. The background is slightly blurred, and there is a watermark on the image.", "scene_text": "The image shows a man in a gold outfit with a crown on his head, surrounded by a few other people in the background. The background is slightly blurred, and there is a watermark on the image.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 696.6, "raw_caption": "The image shows a man in a gold dress with a crown on his head, surrounded by a few people in the background. The background is slightly blurred, and there is a watermark on the image.", "scene_text": "The image shows a man in a gold dress with a crown on his head, surrounded by a few people in the background. The background is slightly blurred, and there is a watermark on the image.", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 702.64, "raw_caption": "The image shows a woman in a gold dress with a red sari and a crown on her head, standing in the foreground with a few people in the background. The background is slightly blurred and there is a watermark on the image.", "scene_text": "The image shows a woman in a gold dress with a red sari and a crown on her head, standing in the foreground with a few people in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 708.72, "raw_caption": "The image shows a man in a gold outfit with a crown on his head, standing in the foreground with a few people in the background. The background is slightly blurred and there is a watermark on the image. The man is identified as Ramayana, and the image is a still from the movie.", "scene_text": "The image shows a man in a gold outfit with a crown on his head, standing in the foreground with a few people in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 714.76, "raw_caption": "The image shows a man with a long beard and a red robe standing in front of a wall, with a watermark in the middle of the picture. He appears to be in a state of distress, with his eyes wide open and his mouth slightly agape, as if he is in the midst of", "scene_text": "The image shows a man with a long beard and a red robe standing in front of a wall, with a watermark in the middle of the picture", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 720.84, "raw_caption": "The image shows a man with a long beard wearing a red robe, standing in front of a wall with a watermark in the middle.", "scene_text": "The image shows a man with a long beard wearing a red robe, standing in front of a wall with a watermark in the middle", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 726.88, "raw_caption": "The image shows a man with a long beard wearing a red robe, standing in front of a wall with a watermark in the middle.", "scene_text": "The image shows a man with a long beard wearing a red robe, standing in front of a wall with a watermark in the middle", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 732.96, "raw_caption": "The image shows a man with long hair and a beard wearing a red robe, standing in front of a wall with a watermark in the middle.", "scene_text": "The image shows a man with long hair and a beard wearing a red robe, standing in front of a wall with a watermark in the middle", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 739.0, "raw_caption": "The image shows a man in a red and gold outfit standing next to a woman in a yellow sari, both of them wearing ornaments. In the background, there are a few more people and some objects, and in the middle of the image there is some edited text. The man in the red", "scene_text": "The image shows a man in a red and gold outfit standing next to a woman in a yellow sari, both of them wearing ornaments", "scene_hints": [], "expressions": []} +{"timestamp_sec": 745.04, "raw_caption": "The image shows a group of men standing next to each other in a room, wearing ornaments and surrounded by a few other people. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, wearing ornaments and surrounded by a few other people", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 751.12, "raw_caption": "The image shows a man in a red outfit talking to another man in front of a crowd. The man in the red outfit is wearing ornaments and there is a watermark on the image. In the background, there are a few other people visible.", "scene_text": "The image shows a man in a red outfit talking to another man in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 757.16, "raw_caption": "The image shows a man in a red outfit standing next to another man in front of a crowd. The man in the red outfit is wearing ornaments and there is a watermark on the image. The background is dark and there are lights illuminating the scene.", "scene_text": "The image shows a man in a red outfit standing next to another man in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "crickets chirping", "wind", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "night insects", "crackling fire", "children playing", "distant music", "owl hooting", "bells ringing"], "expressions": []} +{"timestamp_sec": 763.24, "raw_caption": "The image shows a woman in a red dress standing in front of a bar, with two other people on either side of her. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a woman in a red dress standing in front of a bar, with two other people on either side of her", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 769.28, "raw_caption": "The image shows a man in a red sari standing next to a woman in a silver sari, with a bed in the background and various objects scattered around them. There is also a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man in a red sari standing next to a woman in a silver sari, with a bed in the background and various objects scattered around them", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 775.36, "raw_caption": "The image shows a man in a red sari standing next to a woman in a silver sari, with a bed in the background adorned with pillows and other objects, and a watermark on the image.", "scene_text": "The image shows a man in a red sari standing next to a woman in a silver sari, with a bed in the background adorned with pillows and other objects, and a watermark on the image", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 781.4, "raw_caption": "The image shows a man in a costume with a crown on his head, standing in front of a wall adorned with flowers and other objects. In the center of the image is a watermark that reads \"Krishna Janmashtami 1975\".", "scene_text": "The image shows a man in a costume with a crown on his head, standing in front of a wall adorned with flowers and other objects", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 787.44, "raw_caption": "The image shows a man in a red outfit standing next to another man wearing ornaments, with a watermark in the background and various objects scattered around them.", "scene_text": "The image shows a man in a red outfit standing next to another man wearing ornaments, with a watermark in the background and various objects scattered around them", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 793.52, "raw_caption": "The image shows two men standing next to each other in front of a temple, with one of them wearing ornaments. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows two men standing next to each other in front of a temple, with one of them wearing ornaments", "scene_hints": ["music", "rain falling", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "crowd murmur", "bells ringing", "chanting"], "expressions": []} +{"timestamp_sec": 799.56, "raw_caption": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking at each other. In the background there is a statue and some decorative items, and in the middle of the image there is some edited text which reads \"Krishna Janmasht", "scene_text": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking at each other", "scene_hints": [], "expressions": []} +{"timestamp_sec": 805.64, "raw_caption": "The image shows a man in a red sari standing next to a woman in a white dress. In the background, there are various objects and a watermark on the image. The man in the red dress appears to be Ramayana, as indicated by the watermark.", "scene_text": "The image shows a man in a red sari standing next to a woman in a white dress", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 811.68, "raw_caption": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking at each other. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking at each other", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 817.76, "raw_caption": "The image shows a man in a silver and red outfit standing next to a woman in a red dress, both of them holding objects in their hands. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a man in a silver and red outfit standing next to a woman in a red dress, both of them holding objects in their hands", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 823.8, "raw_caption": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking at each other. In the background there is a bed and a wall, and in the middle of the image there is some edited text which reads \"Krishna Janmashtami", "scene_text": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking at each other", "scene_hints": ["footsteps on floor", "door creak", "clock ticking", "fan humming", "distant voices"], "expressions": []} +{"timestamp_sec": 829.88, "raw_caption": "The image shows a man in a red sari standing next to a woman in a silver dress, both of them holding something in their hands. In the background there is an object and a wall, and in the center of the image there is a watermark.", "scene_text": "The image shows a man in a red sari standing next to a woman in a silver dress, both of them holding something in their hands", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 835.92, "raw_caption": "The image shows a man in a red sari standing next to a woman in a white dress, with a watermark in the middle of the image and a few objects in the background. The man is wearing a costume and the woman is wearing traditional Indian clothing.", "scene_text": "The image shows a man in a red sari standing next to a woman in a white dress, with a watermark in the middle of the image and a few objects in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 841.96, "raw_caption": "The image shows a man in a red outfit standing next to another man wearing ornaments, with a watermark in the background and various objects scattered around them.", "scene_text": "The image shows a man in a red outfit standing next to another man wearing ornaments, with a watermark in the background and various objects scattered around them", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 848.04, "raw_caption": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a temple. The man with the crown is wearing ornaments and there is a watermark in the middle of the image. The background is slightly blurred, giving the image a dreamy", "scene_text": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a temple", "scene_hints": ["music", "rain falling", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "crowd murmur", "bells ringing", "chanting"], "expressions": []} +{"timestamp_sec": 854.08, "raw_caption": "The image shows a man in a red outfit standing next to another man wearing ornaments, with a watermark in the background and various objects scattered around them.", "scene_text": "The image shows a man in a red outfit standing next to another man wearing ornaments, with a watermark in the background and various objects scattered around them", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 860.16, "raw_caption": "The image shows two men, one with a long beard and the other with a beard, standing next to each other in front of a temple. The temple is decorated with various objects and there is a watermark on the image.", "scene_text": "The image shows two men, one with a long beard and the other with a beard, standing next to each other in front of a temple", "scene_hints": ["music", "rain falling", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "crowd murmur", "bells ringing", "chanting"], "expressions": []} +{"timestamp_sec": 866.2, "raw_caption": "The image shows two men standing next to each other in front of a crowd, with a watermark in the middle of the image. The men appear to be in a scene from a movie, with one of them wearing a traditional Indian outfit and the other wearing a colorful sari. The background is slightly blurred", "scene_text": "The image shows two men standing next to each other in front of a crowd, with a watermark in the middle of the image", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 872.28, "raw_caption": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a wall with a cloth draped over it. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a wall with a cloth draped over it", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 878.32, "raw_caption": "The image shows two men, one with a beard and the other with a crown on his head, both wearing ornaments and standing in front of a blurred background with a watermark.", "scene_text": "The image shows two men, one with a beard and the other with a crown on his head, both wearing ornaments and standing in front of a blurred background with a watermark", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 884.4, "raw_caption": "The image shows two men, one with long hair and a beard and the other with a beard, standing next to each other in front of a crowd. The man with the beard is wearing ornaments and there is a watermark on the image. In the background, there are a few objects visible.", "scene_text": "The image shows two men, one with long hair and a beard and the other with a beard, standing next to each other in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 890.44, "raw_caption": "The image shows two men standing next to each other in front of a crowd. The man on the left is wearing a red dress and is identified as Ramayana, the legendary Indian spiritual leader. The background is slightly blurred, and there is a watermark in the middle of the image.", "scene_text": "The image shows two men standing next to each other in front of a crowd", "scene_hints": ["music", "rain falling", "crowd chatter", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "crowd murmur", "children playing", "bells ringing", "chanting"], "expressions": []} +{"timestamp_sec": 896.48, "raw_caption": "The image shows a man with a beard and a woman in a red dress standing next to each other. The man is wearing ornaments and there is a watermark on the image. In the background, there is an object that is not clearly visible.", "scene_text": "The image shows a man with a beard and a woman in a red dress standing next to each other", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 902.56, "raw_caption": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a crowd. The man with the beard is wearing ornaments and there is a watermark on the image. In the background, there are various objects, giving the impression of a", "scene_text": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 908.6, "raw_caption": "The image shows two men standing next to each other in front of a crowd, with a watermark in the middle of the image and a few objects in the background. The two men appear to be in a scene from the movie Ramayana, with one of them wearing a red cloth draped over his", "scene_text": "The image shows two men standing next to each other in front of a crowd, with a watermark in the middle of the image and a few objects in the background", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 914.68, "raw_caption": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a crowd. The man with the beard is wearing ornaments and there is a watermark on the image. In the background, there are a few objects visible.", "scene_text": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 920.72, "raw_caption": "The image shows a man with long hair and a beard standing next to a woman in a red dress, both of them adorned with ornaments. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a man with long hair and a beard standing next to a woman in a red dress, both of them adorned with ornaments", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 926.8, "raw_caption": "The image shows two men standing next to each other in front of a crowd. The man on the left is wearing a red cloth and is identified as Ramayana, the legendary Indian actor, with a watermark in the middle of the image. The background is slightly blurred, giving the image a dreamy", "scene_text": "The image shows two men standing next to each other in front of a crowd", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 932.84, "raw_caption": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a crowd of people. The man with the beard is wearing ornaments and there is a watermark in the middle of the image. The background is slightly blurred, giving the image a", "scene_text": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a crowd of people", "scene_hints": ["rain falling", "crowd chatter", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "children playing", "bells ringing"], "expressions": []} +{"timestamp_sec": 938.88, "raw_caption": "The image shows two men standing next to each other in front of a crowd. The man on the left is wearing a red dress and is identified as Ramayana, the legendary Indian spiritual leader, with a watermark in the middle of the image. The background is slightly blurred, giving the image a dream", "scene_text": "The image shows two men standing next to each other in front of a crowd", "scene_hints": ["music", "rain falling", "crowd chatter", "wind", "birds", "water splashing", "wind over water", "frogs croaking", "water flowing", "music playing", "crowd murmur", "children playing", "bells ringing", "chanting"], "expressions": []} +{"timestamp_sec": 944.96, "raw_caption": "The image shows a man with a long beard and a crown on his head standing next to another man, both of whom are wearing ornaments. In the background, there are a few more people and a watermark on the image.", "scene_text": "The image shows a man with a long beard and a crown on his head standing next to another man, both of whom are wearing ornaments", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 969.2, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 975.24, "raw_caption": "The image shows a group of men standing on top of a boat, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing on top of a boat, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 981.32, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 987.36, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 993.4, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 999.48, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1005.52, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1011.6, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1017.64, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1023.72, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1029.76, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a watermark in the middle and a clear blue sky in the background.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a watermark in the middle and a clear blue sky in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1035.8, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1041.88, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a light illuminating them and a watermark in the background. The sky is visible above them, creating a beautiful backdrop for the scene.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a light illuminating them and a watermark in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1047.92, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. The sky is visible in the background, and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1054.0, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a pole in the foreground and a sky in the background. There is also a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a pole in the foreground and a sky in the background", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1066.12, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a white cloth draped over his shoulders. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1072.16, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a white cloth draped over his shoulders. In the background, there are various objects and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1078.24, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a watermark in the middle of the picture and a dark background. The men appear to be in a scene from a movie, with one of them wearing a sari.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a watermark in the middle of the picture and a dark background", "scene_hints": ["rain falling", "wind", "water splashing", "wind over water", "frogs croaking", "water flowing", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 1084.28, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a white and blue dress. In the background, there are a few other people and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a white and blue dress", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1090.32, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a white and blue dress. The background is dark and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a white and blue dress", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "wind", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "crackling fire", "night insects", "distant music", "owl hooting", "distant voices", "crickets chirping"], "expressions": []} +{"timestamp_sec": 1096.4, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white cloth draped over his shoulders. In the center of the image, there is a watermark with the words \"Bhoothnath Returns\" written on it.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1102.44, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand. In the center of the image there is a watermark, and in the background there are some objects.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding an object in his hand", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1108.52, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white cloth draped over his shoulders. In the center of the image, there is a watermark with the words \"Bhoothnath Returns\" written on it.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1114.56, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white and blue dress. The background is dark and there is a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white and blue dress", "scene_hints": ["rain falling", "wind", "water splashing", "wind over water", "frogs croaking", "water flowing", "crackling fire", "night insects", "distant music", "owl hooting", "crickets chirping"], "expressions": []} +{"timestamp_sec": 1120.64, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a white cloth draped over his shoulders. In the center of the image, there is a watermark with the words \"Bhoothnath Returns\" written on it.", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1126.68, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a watermark in the middle of the picture. The men appear to be in a state of distress, with some of them looking scared and others looking concerned. The building in the background is tall and imposing, with", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a watermark in the middle of the picture. The men appear to be in a state of distress, with some of them looking scared and others looking concerned", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": ["scared", "concerned"]} +{"timestamp_sec": 1132.72, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white cloth draped over his shoulders. In the center of the image, there is a watermark with the words \"Bhoothnath Returns\" written on it.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1138.8, "raw_caption": "The image shows a group of men standing next to each other in a dark room, with one of them wearing a white cloth draped over his shoulders. In the middle of the image, there is a watermark, and in the background, there are various objects.", "scene_text": "The image shows a group of men standing next to each other in a dark room, with one of them wearing a white cloth draped over his shoulders", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "wind", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "crackling fire", "night insects", "distant music", "owl hooting", "distant voices", "crickets chirping"], "expressions": []} +{"timestamp_sec": 1144.84, "raw_caption": "The image shows a group of three men standing next to each other in a dark room, with a watermark in the middle of the picture. The men appear to be in a state of distress, with one of them wearing a sari and the other two wearing traditional Indian clothing. The watermark reads \"", "scene_text": "The image shows a group of three men standing next to each other in a dark room, with a watermark in the middle of the picture", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "wind", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "crackling fire", "night insects", "distant music", "owl hooting", "distant voices", "crickets chirping"], "expressions": []} +{"timestamp_sec": 1150.92, "raw_caption": "The image shows a group of men standing next to each other in a room, with one of them wearing a garland. In the center of the image there is some text, and in the background there are various objects.", "scene_text": "The image shows a group of men standing next to each other in a room, with one of them wearing a garland", "scene_hints": ["footsteps on floor", "door creak", "clock ticking", "fan humming", "distant voices"], "expressions": []} +{"timestamp_sec": 1156.96, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a watermark in the background. The men appear to be in a state of distress, with some of them looking up in fear and others looking down in confusion. The building behind them is tall and imposing, with", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a watermark in the background. The men appear to be in a state of distress, with some of them looking up in fear and others looking down in confusion", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1163.04, "raw_caption": "The image shows a group of men standing next to each other in a room, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1169.08, "raw_caption": "The image shows a group of men standing next to each other in a room, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in a room, with a wall in the background and a watermark on the image", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1175.16, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a wall in the background and text on the image. The men appear to be in a state of distress, with one of them wearing a sari and the other wearing a traditional Indian outfit. The text reads \"", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a wall in the background and text on the image", "scene_hints": ["footsteps on floor", "door creak", "clock ticking", "fan humming", "distant voices"], "expressions": []} +{"timestamp_sec": 1181.2, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a watermark in the background. The men appear to be in a state of distress, with some of them looking up at the sky and others looking down at the ground. The building behind them is tall and imposing", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a watermark in the background. The men appear to be in a state of distress, with some of them looking up at the sky and others looking down at the ground", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1187.24, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with a watermark in the background. The men appear to be in a state of distress, with some of them looking up in fear and others looking down in confusion. The building behind them is tall and imposing, with", "scene_text": "The image shows a group of men standing next to each other in front of a building, with a watermark in the background. The men appear to be in a state of distress, with some of them looking up in fear and others looking down in confusion", "scene_hints": ["rain falling", "water splashing", "wind over water", "frogs croaking", "water flowing"], "expressions": []} +{"timestamp_sec": 1217.56, "raw_caption": "The image shows a woman in a white sari standing in front of a group of people, with a few people sitting on the floor in the foreground and a few standing in the background. There are also pots and other objects scattered around the scene, and a watermark in the center of the image.", "scene_text": "The image shows a woman in a white sari standing in front of a group of people, with a few people sitting on the floor in the foreground and a few standing in the background", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} +{"timestamp_sec": 1223.6, "raw_caption": "The image shows a woman in a white sari standing in front of a group of people, some of whom are sitting and some are standing. There are also pots and other objects in the background, as well as photo frames on the wall.", "scene_text": "The image shows a woman in a white sari standing in front of a group of people, some of whom are sitting and some are standing", "scene_hints": ["footsteps on floor", "door creak", "cattle lowing", "clock ticking", "wind", "birds", "fan humming", "rooster crowing", "bells", "distant music", "distant voices"], "expressions": []} +{"timestamp_sec": 1229.68, "raw_caption": "The image shows a woman in a white sari standing in front of a group of people, with a watermark in the middle of the picture. On the right side of the image, there are various objects, and in the background there is a wall. The woman appears to be a heroine, with her", "scene_text": "The image shows a woman in a white sari standing in front of a group of people, with a watermark in the middle of the picture", "scene_hints": ["footsteps on floor", "door creak", "rain falling", "clock ticking", "water splashing", "wind over water", "fan humming", "water flowing", "frogs croaking", "distant voices"], "expressions": []} diff --git a/results_v16/BEK_EP_022/results.json b/results_v16/BEK_EP_022/results.json new file mode 100755 index 0000000..249f566 --- /dev/null +++ b/results_v16/BEK_EP_022/results.json @@ -0,0 +1,428 @@ +{ + "caption_segments": 42, + "timeline": [ + { + "start_sec": 49.0, + "end_sec": 52.4, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 53.2, + "end_sec": 65.6, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a" + }, + { + "start_sec": 66.8, + "end_sec": 68.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasa" + }, + { + "start_sec": 69.4, + "end_sec": 71.8, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows a red rose with the words \"Dr. R.S. Sharma\" written in Marathi, along with a waterma" + }, + { + "start_sec": 72.6, + "end_sec": 75.2, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "vehicle", + "harmonium" + ], + "scene_text": "The image shows a red rose with the words \"Dr. R.S. Sharma\" written in Marathi, along with a waterma" + }, + { + "start_sec": 76.8, + "end_sec": 78.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 79.4, + "end_sec": 81.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 81.6, + "end_sec": 83.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 88.4, + "end_sec": 93.37, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra", + "chant" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"vanr" + }, + { + "start_sec": 95.2, + "end_sec": 98.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"art " + }, + { + "start_sec": 99.2, + "end_sec": 101.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"art " + }, + { + "start_sec": 120.2, + "end_sec": 123.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Shya" + }, + { + "start_sec": 125.6, + "end_sec": 127.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a black background with the text \"Episode 22: The Chola Empire Part-I\" written in wh" + }, + { + "start_sec": 128.4, + "end_sec": 130.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a black background with the text \"Episode 22: The Chola Empire Part-I\" written in wh" + }, + { + "start_sec": 135.8, + "end_sec": 142.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "environmental noise", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 181.6, + "end_sec": 182.97, + "caption": "[आपातकालीन वाहन की आवाज़]", + "families": [ + "emergency vehicle" + ], + "scene_text": "The image shows a man standing in front of a temple, wearing a white dress and a cap" + }, + { + "start_sec": 201.2, + "end_sec": 203.0, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a close up of a brick wall with the words \"Waves Ott for SLC\" inscribed on it. The w" + }, + { + "start_sec": 531.6, + "end_sec": 533.43, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people standing around a bed in a room, with a person lying on the bed co" + }, + { + "start_sec": 535.2, + "end_sec": 538.0, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a group of people standing around a bed in a room, with a woman lying on the bed in " + }, + { + "start_sec": 539.8, + "end_sec": 541.8, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar" + ], + "scene_text": "The image shows a group of people standing around a bed in a room, with a woman lying on the bed in " + }, + { + "start_sec": 543.0, + "end_sec": 547.0, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a group of people standing around a woman laying on top of a bed in a room, with a w" + }, + { + "start_sec": 548.8, + "end_sec": 552.0, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a man and woman sitting on top of a bed next to each other, with a watermark in the " + }, + { + "start_sec": 552.8, + "end_sec": 560.0, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a man and woman sitting on top of a bed next to each other, with a watermark in the " + }, + { + "start_sec": 561.2, + "end_sec": 564.6, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a man in a yellow bikini standing next to a woman in a black dress, with a watermark" + }, + { + "start_sec": 565.0, + "end_sec": 574.6, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a man in a yellow bikini standing next to a woman in a black dress, with a watermark" + }, + { + "start_sec": 575.4, + "end_sec": 591.0, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a group of people standing around each other in a room, with a wall in the backgroun" + }, + { + "start_sec": 591.6, + "end_sec": 595.0, + "caption": "[गिटार-सितार के साथ संगीत]", + "families": [ + "music", + "guitar", + "sitar" + ], + "scene_text": "The image shows a group of three women standing next to each other in a room, with a wall in the bac" + }, + { + "start_sec": 595.8, + "end_sec": 623.32, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a group of three women standing next to each other in a room, with a wall in the bac" + }, + { + "start_sec": 625.8, + "end_sec": 627.39, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "The image shows a group of people standing in front of a crowd of people in a room, illuminated by a" + }, + { + "start_sec": 629.6, + "end_sec": 631.23, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a woman in a red dress standing in front of a crowd of people, illuminated by a few " + }, + { + "start_sec": 637.0, + "end_sec": 638.8, + "caption": "[कदमों की आवाज़]", + "families": [ + "footstep" + ], + "scene_text": "The image shows a man in a yellow sari standing in front of a pile of colorful plates, with a waterm" + }, + { + "start_sec": 746.6, + "end_sec": 749.8, + "caption": "[कदमों की आवाज़]", + "families": [ + "inside, small room", + "footstep" + ], + "scene_text": "The image shows a group of men standing next to each other in a room, wearing ornaments and surround" + }, + { + "start_sec": 778.4, + "end_sec": 782.2, + "caption": "[संगीत के साथ बांसुरी]", + "families": [ + "music", + "flute" + ], + "scene_text": "The image shows a man in a costume with a crown on his head, standing in front of a wall adorned wit" + }, + { + "start_sec": 814.0, + "end_sec": 817.05, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man in a red sari standing next to a woman in a white dress, both of them looking " + }, + { + "start_sec": 859.2, + "end_sec": 861.59, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "The image shows two men, one with a long beard and the other with a beard, standing next to each oth" + }, + { + "start_sec": 892.0, + "end_sec": 903.2, + "caption": "[हारमोनियम-पियानो के साथ संगीत]", + "families": [ + "music", + "harmonium", + "piano" + ], + "scene_text": "The image shows two men standing next to each other in front of a crowd" + }, + { + "start_sec": 913.4, + "end_sec": 923.6, + "caption": "[हारमोनियम-वायलिन के साथ संगीत]", + "families": [ + "music", + "harmonium", + "violin" + ], + "scene_text": "The image shows two men, one with a beard and the other with a mustache, standing next to each other" + }, + { + "start_sec": 949.6, + "end_sec": 951.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man with a long beard and a crown on his head standing next to another man, both o" + }, + { + "start_sec": 952.0, + "end_sec": 955.19, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man with a long beard and a crown on his head standing next to another man, both o" + }, + { + "start_sec": 970.2, + "end_sec": 974.91, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them " + }, + { + "start_sec": 1057.4, + "end_sec": 1064.4, + "caption": "[संगीत]", + "families": [ + "music", + "animal", + "environmental noise" + ], + "scene_text": "The image shows a group of men standing next to each other in front of a building, with a pole in th" + }, + { + "start_sec": 1200.6, + "end_sec": 1202.4, + "caption": "[क्लिक की आवाज़]", + "families": [ + "clicking" + ], + "scene_text": "" + } + ], + "raw_events": 1995, + "deduped_events": 196, + "speech_segments": 115 +} \ No newline at end of file diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1002.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1002.0s.png new file mode 100755 index 0000000..1666478 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1002.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1008.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1008.4s.png new file mode 100755 index 0000000..e32b782 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1008.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1013.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1013.6s.png new file mode 100755 index 0000000..df41fd3 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1013.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1020.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1020.0s.png new file mode 100755 index 0000000..1ef4b66 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1020.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1023.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1023.0s.png new file mode 100755 index 0000000..7fa8691 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1023.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1025.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1025.2s.png new file mode 100755 index 0000000..b86348b Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1025.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1029.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1029.4s.png new file mode 100755 index 0000000..c07cbbc Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1029.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_104.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_104.6s.png new file mode 100755 index 0000000..c376c98 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_104.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1042.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1042.0s.png new file mode 100755 index 0000000..bac616d Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1042.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1046.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1046.2s.png new file mode 100755 index 0000000..476c322 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1046.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1048.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1048.4s.png new file mode 100755 index 0000000..e9c35ee Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1048.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1052.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1052.0s.png new file mode 100755 index 0000000..b7ca51c Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1052.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1054.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1054.8s.png new file mode 100755 index 0000000..6c150f7 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1054.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1058.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1058.0s.png new file mode 100755 index 0000000..21dca64 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1058.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1069.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1069.4s.png new file mode 100755 index 0000000..5f432b0 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1069.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_107.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_107.4s.png new file mode 100755 index 0000000..737bd05 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_107.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_109.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_109.8s.png new file mode 100755 index 0000000..9655c6d Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_109.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1091.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1091.8s.png new file mode 100755 index 0000000..2e78256 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1091.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_112.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_112.4s.png new file mode 100755 index 0000000..701ebb8 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_112.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1165.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1165.2s.png new file mode 100755 index 0000000..f50de04 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1165.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1166.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1166.0s.png new file mode 100755 index 0000000..51a9324 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1166.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1172.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1172.6s.png new file mode 100755 index 0000000..6a300e1 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1172.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1179.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1179.8s.png new file mode 100755 index 0000000..84cd417 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1179.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_1182.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_1182.4s.png new file mode 100755 index 0000000..4088bbd Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_1182.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_119.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_119.4s.png new file mode 100755 index 0000000..cdeacc1 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_119.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_125.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_125.0s.png new file mode 100755 index 0000000..fd90108 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_125.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_127.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_127.8s.png new file mode 100755 index 0000000..ba2bd42 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_127.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_130.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_130.6s.png new file mode 100755 index 0000000..1b31297 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_130.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_305.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_305.4s.png new file mode 100755 index 0000000..b3aef41 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_305.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_336.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_336.0s.png new file mode 100755 index 0000000..7a1b027 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_336.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_353.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_353.4s.png new file mode 100644 index 0000000..20bc826 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_353.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_367.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_367.8s.png new file mode 100644 index 0000000..ed298be Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_367.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_50.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_50.2s.png new file mode 100755 index 0000000..e23ce18 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_50.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_52.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_52.4s.png new file mode 100755 index 0000000..fd4a6b9 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_52.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_54.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_54.6s.png new file mode 100755 index 0000000..3adb461 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_54.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_560.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_560.6s.png new file mode 100755 index 0000000..943a846 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_560.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_59.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_59.8s.png new file mode 100755 index 0000000..87c9daa Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_59.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_605.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_605.0s.png new file mode 100755 index 0000000..637b8bf Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_605.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_609.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_609.4s.png new file mode 100755 index 0000000..518d072 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_609.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_62.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_62.8s.png new file mode 100755 index 0000000..f234fed Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_62.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_67.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_67.2s.png new file mode 100755 index 0000000..6b2a017 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_67.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_744.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_744.6s.png new file mode 100755 index 0000000..a76916d Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_744.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_76.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_76.6s.png new file mode 100755 index 0000000..7729e71 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_76.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_789.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_789.8s.png new file mode 100755 index 0000000..700e3aa Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_789.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_797.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_797.2s.png new file mode 100755 index 0000000..9af418e Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_797.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_81.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_81.2s.png new file mode 100755 index 0000000..af5de25 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_81.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_815.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_815.0s.png new file mode 100755 index 0000000..698ee01 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_815.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_820.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_820.2s.png new file mode 100755 index 0000000..1439a3f Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_820.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_824.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_824.4s.png new file mode 100755 index 0000000..6ef775c Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_824.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_84.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_84.0s.png new file mode 100755 index 0000000..ef42150 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_84.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_88.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_88.0s.png new file mode 100755 index 0000000..b54be81 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_88.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_948.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_948.4s.png new file mode 100755 index 0000000..e461878 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_948.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_952.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_952.0s.png new file mode 100644 index 0000000..0819fd1 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_952.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_952.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_952.4s.png new file mode 100755 index 0000000..98983a5 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_952.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_955.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_955.4s.png new file mode 100755 index 0000000..d911775 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_955.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_974.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_974.2s.png new file mode 100755 index 0000000..11c3518 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_974.2s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_98.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_98.6s.png new file mode 100755 index 0000000..ad6832c Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_98.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_981.8s.png b/results_v16/BEK_EP_023/annotated_frames/frame_981.8s.png new file mode 100755 index 0000000..a972fc1 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_981.8s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_984.0s.png b/results_v16/BEK_EP_023/annotated_frames/frame_984.0s.png new file mode 100755 index 0000000..44a5400 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_984.0s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_986.4s.png b/results_v16/BEK_EP_023/annotated_frames/frame_986.4s.png new file mode 100755 index 0000000..d2f30a5 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_986.4s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_989.6s.png b/results_v16/BEK_EP_023/annotated_frames/frame_989.6s.png new file mode 100755 index 0000000..f71de0b Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_989.6s.png differ diff --git a/results_v16/BEK_EP_023/annotated_frames/frame_999.2s.png b/results_v16/BEK_EP_023/annotated_frames/frame_999.2s.png new file mode 100755 index 0000000..4cf76b3 Binary files /dev/null and b/results_v16/BEK_EP_023/annotated_frames/frame_999.2s.png differ diff --git a/results_v16/BEK_EP_023/captions.srt b/results_v16/BEK_EP_023/captions.srt new file mode 100755 index 0000000..3249a6d --- /dev/null +++ b/results_v16/BEK_EP_023/captions.srt @@ -0,0 +1,224 @@ +1 +00:00:50,200 --> 00:00:52,000 +[संगीत] + +2 +00:00:52,399 --> 00:01:04,599 +[संगीत के साथ हारमोनियम] + +3 +00:01:07,200 --> 00:01:14,200 +[संगीत के साथ हारमोनियम] + +4 +00:01:16,599 --> 00:01:20,400 +[संगीत] + +5 +00:01:21,200 --> 00:01:23,000 +[संगीत] + +6 +00:01:24,000 --> 00:01:27,400 +[संगीत] + +7 +00:01:28,000 --> 00:01:38,000 +[मंत्रों का उच्चारण] + +8 +00:01:38,599 --> 00:01:42,200 +[संगीत] + +9 +00:01:44,599 --> 00:01:46,400 +[संगीत] + +10 +00:01:47,400 --> 00:01:49,200 +[संगीत] + +11 +00:01:49,799 --> 00:01:51,599 +[संगीत] + +12 +00:01:52,400 --> 00:01:54,200 +[संगीत] + +13 +00:01:59,400 --> 00:02:03,000 +[संगीत] + +14 +00:02:05,000 --> 00:02:06,799 +[संगीत] + +15 +00:02:07,799 --> 00:02:09,599 +[संगीत] + +16 +00:02:10,599 --> 00:02:12,400 +[संगीत] + +17 +00:05:05,399 --> 00:05:06,750 +[गिटार-सितार के साथ संगीत] + +18 +00:05:36,000 --> 00:05:37,180 +[संगीत के साथ सितार] + +19 +00:05:53,399 --> 00:05:55,000 +[संगीत के साथ गिटार] + +20 +00:06:07,800 --> 00:06:09,800 +[संगीत के साथ गिटार] + +21 +00:09:20,600 --> 00:09:25,399 +[संगीत के साथ हारमोनियम] + +22 +00:10:05,000 --> 00:10:07,710 +[संगीत] + +23 +00:10:09,399 --> 00:10:10,649 +[संगीत] + +24 +00:12:24,600 --> 00:12:26,169 +[पानी की आवाज़] + +25 +00:13:09,799 --> 00:13:16,799 +[जानवर की आवाज़] + +26 +00:13:17,200 --> 00:13:20,200 +[जानवर की आवाज़] + +27 +00:13:35,000 --> 00:13:37,950 +[पक्षियों की चहचहाहट] + +28 +00:13:40,200 --> 00:13:50,269 +[सितार-गिटार के साथ संगीत] + +29 +00:15:48,399 --> 00:15:49,399 +[हल्की आवाज़] + +30 +00:15:52,000 --> 00:15:53,529 +[संगीत के साथ वायलिन] + +31 +00:15:55,399 --> 00:16:00,309 +[जानवर की आवाज़] + +32 +00:16:14,200 --> 00:16:20,799 +[संगीत] + +33 +00:16:21,799 --> 00:16:23,600 +[संगीत] + +34 +00:16:24,000 --> 00:16:25,799 +[संगीत] + +35 +00:16:26,399 --> 00:16:27,389 +[संगीत] + +36 +00:16:29,600 --> 00:16:32,799 +[संगीत] + +37 +00:16:39,200 --> 00:16:41,000 +[संगीत] + +38 +00:16:42,000 --> 00:16:46,399 +[संगीत के साथ तबला] + +39 +00:16:48,399 --> 00:16:52,399 +[संगीत के साथ तबला] + +40 +00:16:53,600 --> 00:16:58,600 +[संगीत] + +41 +00:17:00,000 --> 00:17:01,799 +[संगीत] + +42 +00:17:03,000 --> 00:17:04,799 +[संगीत के साथ गिटार] + +43 +00:17:05,200 --> 00:17:08,200 +[संगीत] + +44 +00:17:09,400 --> 00:17:21,599 +[संगीत के साथ तबला] + +45 +00:17:22,000 --> 00:17:23,799 +[संगीत] + +46 +00:17:26,200 --> 00:17:28,000 +[संगीत] + +47 +00:17:28,400 --> 00:17:31,000 +[संगीत के साथ तबला] + +48 +00:17:32,000 --> 00:17:33,799 +[संगीत] + +49 +00:17:34,799 --> 00:17:37,000 +[संगीत के साथ तबला] + +50 +00:17:38,000 --> 00:17:39,349 +[संगीत के साथ तबला] + +51 +00:17:49,400 --> 00:17:51,609 +[तीर की आवाज़] + +52 +00:18:11,799 --> 00:18:14,299 +[पक्षियों की चहचहाहट] + +53 +00:19:25,200 --> 00:19:29,400 +[संगीत] + +54 +00:19:32,599 --> 00:19:38,799 +[संगीत] + +55 +00:19:39,799 --> 00:19:41,599 +[संगीत] + +56 +00:19:42,400 --> 00:19:47,400 +[गिटार-वायलिन के साथ संगीत] + diff --git a/results_v16/BEK_EP_023/florence_log.jsonl b/results_v16/BEK_EP_023/florence_log.jsonl new file mode 100755 index 0000000..c21f254 --- /dev/null +++ b/results_v16/BEK_EP_023/florence_log.jsonl @@ -0,0 +1,158 @@ +{"timestamp_sec": 0.0, "raw_caption": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_text": "The image shows a black background with the words \"Waves Ott for SLC\" written in white font. The font is bold and stands out against the dark background, creating a striking contrast. The text is centered in the middle of the image, giving it a balanced and symmetrical look.", "scene_hints": ["owl hooting", "crackling fire", "wind", "crickets chirping", "night insects", "distant music"], "expressions": []} +{"timestamp_sec": 6.04, "raw_caption": "The image shows a red rose with water droplets on it against a black background, with the words \"Happy Valentine's Day\" written in Hindi.", "scene_text": "The image shows a red rose with water droplets on it against a black background, with the words \"Happy Valentine's Day\" written in Hindi.", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 12.08, "raw_caption": "The image shows a red rose with green leaves and water droplets on it, set against a black background. The rose is adorned with Arabic calligraphy, adding a touch of elegance to the image.", "scene_text": "The image shows a red rose with green leaves and water droplets on it, set against a black background. The rose is adorned with Arabic calligraphy, adding a touch of elegance to the image.", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 18.12, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"bharat ek khoj by shyam benegal\" written in the center.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"bharat ek khoj by shyam benegal\" written in the center.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 24.2, "raw_caption": "The image shows a red rose with its stem and leaves, set against a dark background, with the words \"Jawaharlal Nehru's Discovery of India\" written across it.", "scene_text": "The image shows a red rose with its stem and leaves, set against a dark background, with the words \"Jawaharlal Nehru's Discovery of India\" written across it.", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 30.24, "raw_caption": "The image shows a red rose with its stem and leaves, accompanied by a Hindi shayari on life. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text is written in a bold font, emphasizing the importance of the message.", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 36.28, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth as Jawaharlal Nehru\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Roshan Seth as Jawaharlal Nehru\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 42.32, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Om Puri\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Om Puri\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 48.4, "raw_caption": "The image shows a red rose with the words \"Chief Assistant Director Mandeep Kakkar\" written in Hindi. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background.", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 54.44, "raw_caption": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a dark background.", "scene_hints": ["owl hooting", "crackling fire", "wind", "crickets chirping", "night insects", "distant music"], "expressions": []} +{"timestamp_sec": 60.48, "raw_caption": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mishra\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves, accompanied by the words \"Vasant Dev Ashok Mishra\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 66.52, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasant Dev\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Vasant Dev\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 72.6, "raw_caption": "The image shows a red rose with the words \"Dr. R.S. Sharma\" written in Marathi, along with a quote about life in Hindi. The rose is a vibrant red color, with its petals and leaves standing out against the dark background. The quote is written in a bold font", "scene_text": "The rose is a vibrant red color, with its petals and leaves standing out against the dark background", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 78.64, "raw_caption": "The image shows a red rose with its stem and leaves, edited with the words \"Sutanu Gupta Deepak Segal\" written in Hindi. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background.", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 84.68, "raw_caption": "The image shows a red rose with its stem and leaves, with the words \"Mixing Hitendra Ghosh by Rajkamal Kalamandir\" written in Hindi. The rose is vibrant and full of life, with its petals and leaves standing out against the dark background. The text is written", "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark background", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 90.72, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"vanraj bhatia\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"vanraj bhatia\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 96.8, "raw_caption": "The image shows a single red rose with its stem and leaves against a black background, with the words \"Ashwyn Balsaver Nittish Roy\" written in Hindi.", "scene_text": "The image shows a single red rose with its stem and leaves against a black background, with the words \"Ashwyn Balsaver Nittish Roy\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 102.84, "raw_caption": "The image shows a red rose with the words \"Salim Arif\" written on it, set against a dark background. The rose has a stem and leaves, and the text is written in Hindi.", "scene_text": "The image shows a red rose with the words \"Salim Arif\" written on it, set against a dark background. The rose has a stem and leaves, and the text is written in Hindi.", "scene_hints": ["crow cawing", "owl hooting", "night insects", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crackling fire", "crickets", "footsteps on dirt", "wind", "crickets chirping", "branch creak", "distant music"], "expressions": []} +{"timestamp_sec": 108.88, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Piyush Shah\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Piyush Shah\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 114.92, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"V K Murthy\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"V K Murthy\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 121.0, "raw_caption": "The image shows a red rose with its stem and leaves against a black background, with the words \"Waves Ott for SLC\" written in Hindi.", "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Waves Ott for SLC\" written in Hindi.", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 127.04, "raw_caption": "The image shows a black background with the text \"Episode 23: The Chola Empire Part-II\" written in white font. The text is centered in the middle of the image and is surrounded by a white border.", "scene_text": "The image shows a black background with the text \"Episode 23: The Chola Empire Part-II\" written in white font. The text is centered in the middle of the image and is surrounded by a white border.", "scene_hints": [], "expressions": []} +{"timestamp_sec": 151.24, "raw_caption": "The image shows a group of four men standing next to each other in front of a building, surrounded by pillars and trees in the background. The image is slightly blurred, giving it a dreamy, nostalgic feel.", "scene_text": "The image shows a group of four men standing next to each other in front of a building, surrounded by pillars and trees in the background", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 157.28, "raw_caption": "The image shows a group of four men standing next to each other in front of a building, with a pillar on the left side and trees and plants in the background. There is also a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a group of four men standing next to each other in front of a building, with a pillar on the left side and trees and plants in the background", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 163.32, "raw_caption": "The image shows a group of four men standing next to each other in front of a building, with a pillar on the left side and trees in the background. There is also a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a group of four men standing next to each other in front of a building, with a pillar on the left side and trees in the background", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 169.4, "raw_caption": "The image shows a group of four men standing next to each other in front of a building, with a pillar on the left side and trees in the background. There is also a watermark on the image.", "scene_text": "The image shows a group of four men standing next to each other in front of a building, with a pillar on the left side and trees in the background", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 175.44, "raw_caption": "The image shows a man in a purple sari standing next to a woman in a white sari, both of them holding objects in their hands. In the background there are trees and a wall, and the image is slightly blurred.", "scene_text": "The image shows a man in a purple sari standing next to a woman in a white sari, both of them holding objects in their hands", "scene_hints": ["crow cawing", "rustling grass", "clock ticking", "fan humming", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "footsteps on floor", "distant voices", "branch creak", "door creak"], "expressions": []} +{"timestamp_sec": 181.48, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with trees in the background and a watermark on the image. The men appear to be in a scene from the movie Ramayana.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 187.52, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding a paper in his hand. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding a paper in his hand", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 193.6, "raw_caption": "The image shows a group of men standing next to each other in front of a tree, with a wall in the background and a watermark on the image. The men appear to be in a scene from the movie Ramayana, with one of them holding a sword in his hand.", "scene_text": "The image shows a group of men standing next to each other in front of a tree, with a wall in the background and a watermark on the image", "scene_hints": ["horses", "drums", "clock ticking", "rain falling", "crowd shouting", "fan humming", "frogs croaking", "metal clashing", "water flowing", "wind over water", "footsteps on floor", "running", "wind", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 199.64, "raw_caption": "The image shows a group of men standing next to each other in front of a tree, with a watermark in the background. The image is slightly blurred, giving it a dream-like quality.", "scene_text": "The image shows a group of men standing next to each other in front of a tree, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 205.68, "raw_caption": "The image shows a group of men standing next to each other in front of a tree, with one of them holding a stick. In the background, there are trees and grass, and the image is slightly blurred.", "scene_text": "The image shows a group of men standing next to each other in front of a tree, with one of them holding a stick", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 211.72, "raw_caption": "The image shows a group of four men standing next to each other in front of a building, with trees in the background and a watermark on the image.", "scene_text": "The image shows a group of four men standing next to each other in front of a building, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 217.8, "raw_caption": "The image shows a group of four men standing next to each other in front of a building, with trees in the background and a watermark on the image.", "scene_text": "The image shows a group of four men standing next to each other in front of a building, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 223.84, "raw_caption": "The image shows a group of men standing next to each other in front of a tree, with a watermark in the middle. The men appear to be in a scene from the movie Ramayana, with one of them holding a stick in his hand.", "scene_text": "The image shows a group of men standing next to each other in front of a tree, with a watermark in the middle", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 229.88, "raw_caption": "The image shows a group of four men standing next to each other in front of a tree, with a watermark in the middle and a few trees in the background.", "scene_text": "The image shows a group of four men standing next to each other in front of a tree, with a watermark in the middle and a few trees in the background", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 235.92, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding a stick in his hand. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding a stick in his hand", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 242.0, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding a stick in his hand. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding a stick in his hand", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 248.04, "raw_caption": "The image shows a group of men standing next to each other in front of a building, with one of them holding a stick in his hand. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a building, with one of them holding a stick in his hand", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 254.08, "raw_caption": "The image shows a group of men standing next to each other in front of a tree, with one of them holding a stick in his hand. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of men standing next to each other in front of a tree, with one of them holding a stick in his hand", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 266.2, "raw_caption": "The image shows a man in a purple robe talking to another man wearing a crown, with a wall in the background and a watermark on the image. The man in the purple robe appears to be Ramayana, as indicated by the title of the image, \"Rajinikanth's Ramay", "scene_text": "The image shows a man in a purple robe talking to another man wearing a crown, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 272.24, "raw_caption": "The image shows a man in a white robe talking to another man wearing a crown, surrounded by trees and a wall in the background. There is also a watermark on the image.", "scene_text": "The image shows a man in a white robe talking to another man wearing a crown, surrounded by trees and a wall in the background", "scene_hints": ["crow cawing", "rustling grass", "clock ticking", "water splashing", "rain falling", "fan humming", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "frogs croaking", "wind over water", "crickets", "footsteps on dirt", "footsteps on floor", "distant voices", "branch creak", "door creak"], "expressions": []} +{"timestamp_sec": 278.28, "raw_caption": "The image shows a group of three men standing next to each other in front of a building, with one of them wearing a cap. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of three men standing next to each other in front of a building, with one of them wearing a cap", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 284.36, "raw_caption": "The image shows a group of three men standing next to each other in front of a building, with one of them wearing a cap. In the background, there are trees and a watermark on the image.", "scene_text": "The image shows a group of three men standing next to each other in front of a building, with one of them wearing a cap", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 290.4, "raw_caption": "The image shows a man in a white robe talking to two other men, one of whom is wearing a cap. In the background there are trees and a wall, and in the center of the image there is a watermark. The man in the white robe appears to be a guru, as indicated by the", "scene_text": "The image shows a man in a white robe talking to two other men, one of whom is wearing a cap", "scene_hints": ["crow cawing", "rustling grass", "clock ticking", "water splashing", "rain falling", "fan humming", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "frogs croaking", "wind over water", "crickets", "footsteps on dirt", "footsteps on floor", "distant voices", "branch creak", "door creak"], "expressions": []} +{"timestamp_sec": 296.44, "raw_caption": "The image shows a man in a white robe talking to another man wearing a crown, surrounded by trees and a wall in the background. There is also a watermark on the image.", "scene_text": "The image shows a man in a white robe talking to another man wearing a crown, surrounded by trees and a wall in the background", "scene_hints": ["crow cawing", "rustling grass", "clock ticking", "water splashing", "rain falling", "fan humming", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "frogs croaking", "wind over water", "crickets", "footsteps on dirt", "footsteps on floor", "distant voices", "branch creak", "door creak"], "expressions": []} +{"timestamp_sec": 314.6, "raw_caption": "The image shows a man in a red sari sitting on a throne next to a woman in a blue dress, both of them holding something in their hands. In the background, there is a statue and a wall, and on the right side of the image there are some objects. There is also a water", "scene_text": "The image shows a man in a red sari sitting on a throne next to a woman in a blue dress, both of them holding something in their hands", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 320.64, "raw_caption": "The image shows a woman in a red dress standing on a stage, holding a microphone in her hand. She is surrounded by a few other people, and there is a watermark in the middle of the image.", "scene_text": "The image shows a woman in a red dress standing on a stage, holding a microphone in her hand", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 326.68, "raw_caption": "The image shows a group of people standing around a man in a blue sari, who is sitting on a chair. In the background, there is an umbrella and a wall, and in the middle of the image there is some text. The man in the sari appears to be Ramayana, and", "scene_text": "The image shows a group of people standing around a man in a blue sari, who is sitting on a chair", "scene_hints": ["clock ticking", "fan humming", "footsteps on floor", "distant voices", "door creak"], "expressions": []} +{"timestamp_sec": 332.76, "raw_caption": "The image shows a man with a mustache and a crown on his head sitting on a throne, wearing ornaments and surrounded by a wall and a pillar. In the center of the image there is a watermark, and the man appears to be Ramayana, as indicated by the title of the movie", "scene_text": "The image shows a man with a mustache and a crown on his head sitting on a throne, wearing ornaments and surrounded by a wall and a pillar", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 338.8, "raw_caption": "The image shows a man with a beard and a crown on his head sitting on a throne, wearing ornaments and surrounded by a wall with a watermark in the background.", "scene_text": "The image shows a man with a beard and a crown on his head sitting on a throne, wearing ornaments and surrounded by a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 344.84, "raw_caption": "The image shows a man with a mustache and a crown on his head sitting on a throne, wearing ornaments and surrounded by a wall with a watermark in the background.", "scene_text": "The image shows a man with a mustache and a crown on his head sitting on a throne, wearing ornaments and surrounded by a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 350.88, "raw_caption": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front of a wall with a watermark.", "scene_text": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front of a wall with a watermark", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 356.96, "raw_caption": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front of a wall with a watermark in the background.", "scene_text": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front of a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 363.0, "raw_caption": "The image shows two men standing next to each other in front of a crowd, with a watermark in the middle of the image and a wall in the background. The men appear to be in a scene from the movie Ramayana, with one of them wearing a sari and the other wearing a traditional", "scene_text": "The image shows two men standing next to each other in front of a crowd, with a watermark in the middle of the image and a wall in the background", "scene_hints": ["crowd chatter", "clock ticking", "rain falling", "music playing", "fan humming", "frogs croaking", "bells ringing", "water flowing", "children playing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 369.04, "raw_caption": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front of a wall with a watermark in the background.", "scene_text": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front of a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 375.08, "raw_caption": "The image shows a man in a white robe standing next to a woman in a pink sari, with a few other people standing around them. In the background, there are a few objects and a watermark on the image.", "scene_text": "The image shows a man in a white robe standing next to a woman in a pink sari, with a few other people standing around them", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 381.16, "raw_caption": "The image shows a group of people standing next to each other in a room, with a watermark in the middle and various objects in the background. It appears to be a scene from a movie, with the people in the foreground and the objects and wall behind them.", "scene_text": "The image shows a group of people standing next to each other in a room, with a watermark in the middle and various objects in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 387.2, "raw_caption": "The image shows a man in a blue sari with his hands clasped in prayer, adorned with ornaments, standing in front of a wall with a watermark in the background.", "scene_text": "The image shows a man in a blue sari with his hands clasped in prayer, adorned with ornaments, standing in front of a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "bells ringing", "fan humming", "frogs croaking", "crowd murmur", "water flowing", "wind over water", "footsteps on floor", "wind", "birds", "distant voices", "water splashing", "music", "door creak", "chanting"], "expressions": []} +{"timestamp_sec": 393.24, "raw_caption": "The image shows a man in a blue sari with his hands clasped in prayer, wearing ornaments and standing in front of a wall with a watermark in the background.", "scene_text": "The image shows a man in a blue sari with his hands clasped in prayer, wearing ornaments and standing in front of a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "bells ringing", "fan humming", "frogs croaking", "crowd murmur", "water flowing", "wind over water", "footsteps on floor", "wind", "birds", "distant voices", "water splashing", "music", "door creak", "chanting"], "expressions": []} +{"timestamp_sec": 399.28, "raw_caption": "The image shows three men standing in front of a table filled with fruits and other objects, with a watermark in the middle. The men appear to be in a scene from the movie Ramayana, with the man in the center wearing a blue sari and the two men on either side of him wearing", "scene_text": "The image shows three men standing in front of a table filled with fruits and other objects, with a watermark in the middle", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 405.36, "raw_caption": "The image shows a group of three men standing next to each other in front of a table filled with fruits. In the center of the image there is a watermark, and in the background there are some objects and a wall. The men appear to be in the midst of a conversation, with one of them", "scene_text": "The image shows a group of three men standing next to each other in front of a table filled with fruits", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 411.4, "raw_caption": "The image shows a man in a blue sari standing next to a woman in a red dress, with a table in front of them filled with fruits and other objects. In the background, there are sculptures on the wall and a watermark on the image. The man in the sari appears to be a", "scene_text": "The image shows a man in a blue sari standing next to a woman in a red dress, with a table in front of them filled with fruits and other objects", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 417.44, "raw_caption": "The image shows a woman in a pink sari adorned with ornaments and a crown on her head, with a blurred background and a watermark in the middle.", "scene_text": "The image shows a woman in a pink sari adorned with ornaments and a crown on her head, with a blurred background and a watermark in the middle.", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 423.48, "raw_caption": "The image shows a group of three men standing next to each other in front of a stage, wearing ornaments and surrounded by a dark background. In the center of the image there is a watermark, and in the background there are various objects.", "scene_text": "The image shows a group of three men standing next to each other in front of a stage, wearing ornaments and surrounded by a dark background", "scene_hints": ["owl hooting", "night insects", "rain falling", "frogs croaking", "water flowing", "crackling fire", "wind over water", "wind", "crickets chirping", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 429.56, "raw_caption": "The image shows a man in a blue sari with his hands clasped in prayer, adorned with ornaments, standing in front of a wall with a watermark in the background.", "scene_text": "The image shows a man in a blue sari with his hands clasped in prayer, adorned with ornaments, standing in front of a wall with a watermark in the background", "scene_hints": ["clock ticking", "rain falling", "bells ringing", "fan humming", "frogs croaking", "crowd murmur", "water flowing", "wind over water", "footsteps on floor", "wind", "birds", "distant voices", "water splashing", "music", "door creak", "chanting"], "expressions": []} +{"timestamp_sec": 435.6, "raw_caption": "The image shows a group of three men standing next to each other in front of a stage, with a watermark in the middle and a dark background. The men appear to be in the midst of a conversation, with one of them being Ramayana.", "scene_text": "The image shows a group of three men standing next to each other in front of a stage, with a watermark in the middle and a dark background", "scene_hints": ["owl hooting", "night insects", "rain falling", "frogs croaking", "water flowing", "crackling fire", "wind over water", "wind", "crickets chirping", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 441.64, "raw_caption": "The image shows a group of three men standing next to each other in front of a stage, with a watermark in the center. The men appear to be engaged in conversation, with one of them wearing a sari and the other two wearing traditional Indian clothing.", "scene_text": "The image shows a group of three men standing next to each other in front of a stage, with a watermark in the center", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 447.68, "raw_caption": "The image shows a group of men standing next to each other in front of a crowd, with a watermark in the center and various objects in the background. It appears to be a scene from the movie Ramayana, with the men in the foreground and the objects behind them.", "scene_text": "The image shows a group of men standing next to each other in front of a crowd, with a watermark in the center and various objects in the background", "scene_hints": ["crowd chatter", "rain falling", "music playing", "bells ringing", "frogs croaking", "water flowing", "children playing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 453.76, "raw_caption": "The image shows a group of men standing next to each other in front of a crowd, with a watermark in the center and various objects in the background.", "scene_text": "The image shows a group of men standing next to each other in front of a crowd, with a watermark in the center and various objects in the background", "scene_hints": ["crowd chatter", "rain falling", "music playing", "bells ringing", "frogs croaking", "water flowing", "children playing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 459.8, "raw_caption": "The image shows a group of people standing around each other in front of a statue, with a watermark in the center. The people appear to be in a state of distress, with some of them looking scared and others looking concerned. The statue in the background is of a man with a sword in his hand", "scene_text": "The image shows a group of people standing around each other in front of a statue, with a watermark in the center. The people appear to be in a state of distress, with some of them looking scared and others looking concerned", "scene_hints": ["horses", "drums", "rain falling", "crowd shouting", "metal clashing", "frogs croaking", "water flowing", "wind over water", "wind", "running", "water splashing"], "expressions": ["scared", "concerned"]} +{"timestamp_sec": 465.84, "raw_caption": "The image shows a woman in a blue dress standing in front of a statue, with a man in a white shirt standing beside her. The background is dark and there is a watermark on the image.", "scene_text": "The image shows a woman in a blue dress standing in front of a statue, with a man in a white shirt standing beside her", "scene_hints": ["owl hooting", "night insects", "rain falling", "frogs croaking", "water flowing", "crackling fire", "wind over water", "wind", "crickets chirping", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 477.96, "raw_caption": "The image shows a man in a bikini standing next to a woman in a red dress, with two other people in the background and a watermark on the image.", "scene_text": "The image shows a man in a bikini standing next to a woman in a red dress, with two other people in the background and a watermark on the image", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 490.04, "raw_caption": "The image shows a woman in a white sari talking to a man in a temple, with a watermark in the center of the image and various objects in the background.", "scene_text": "The image shows a woman in a white sari talking to a man in a temple, with a watermark in the center of the image and various objects in the background", "scene_hints": ["rain falling", "bells ringing", "frogs croaking", "crowd murmur", "water flowing", "wind over water", "wind", "birds", "water splashing", "music", "chanting"], "expressions": []} +{"timestamp_sec": 496.12, "raw_caption": "The image shows a man in a white robe and a woman in a gold dress standing next to each other in front of a wall adorned with sculptures and other objects. There is a watermark on the image, suggesting that it is a photo of a heroine.", "scene_text": "The image shows a man in a white robe and a woman in a gold dress standing next to each other in front of a wall adorned with sculptures and other objects", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 502.16, "raw_caption": "The image shows a man and a woman standing next to each other in front of a statue, with a watermark in the middle of the image and a few objects in the background. The man is wearing a white dress, while the woman is wearing traditional Indian clothing.", "scene_text": "The image shows a man and a woman standing next to each other in front of a statue, with a watermark in the middle of the image and a few objects in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 508.2, "raw_caption": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background. The man is wearing a traditional Indian outfit and the woman is wearing traditional Indian clothing. The background is slightly blurred, giving the image a dreamy, ethereal feel.", "scene_text": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 514.24, "raw_caption": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background. The man is wearing a traditional Indian outfit, while the woman is wearing traditional Indian clothing. The background is slightly blurred, giving the image a dreamy, ethereal feel.", "scene_text": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 520.32, "raw_caption": "The image shows a man and a woman standing next to each other in front of a statue, with a watermark in the middle of the image and a few objects in the background. The man is wearing a white dress, while the woman is wearing traditional Indian clothing.", "scene_text": "The image shows a man and a woman standing next to each other in front of a statue, with a watermark in the middle of the image and a few objects in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 526.36, "raw_caption": "The image shows a man and a woman standing next to each other in front of a statue, with a watermark in the background. The man is wearing a traditional Indian outfit, while the woman is wearing an unknown outfit. The background is slightly blurred, giving the image a dreamy, ethereal feel.", "scene_text": "The image shows a man and a woman standing next to each other in front of a statue, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 532.4, "raw_caption": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background. The man is wearing a white dress, while the woman is wearing traditional Indian clothing. The background is slightly blurred, giving the image a dreamy, ethereal feel.", "scene_text": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 538.44, "raw_caption": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background. The man is wearing a white dress, while the woman is wearing traditional Indian clothing. The background is slightly blurred, giving the image a dreamy feel.", "scene_text": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 544.52, "raw_caption": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background. The man is wearing a traditional Indian outfit, while the woman is wearing an unknown outfit. The background is slightly blurred, giving the image a dreamy quality.", "scene_text": "The image shows a man and woman standing next to each other in front of a statue, with a watermark in the background", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 550.56, "raw_caption": "The image shows a woman in a white sari standing next to a man in a blue sari, both of them looking at each other. In the background there are some objects and a watermark on the image. The woman appears to be a heroine, with a determined expression on her face.", "scene_text": "The image shows a woman in a white sari standing next to a man in a blue sari, both of them looking at each other", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 556.6, "raw_caption": "The image shows a woman in a white sari standing next to a man in a blue sari, both of them looking at each other. In the background there are some objects and a watermark on the image.", "scene_text": "The image shows a woman in a white sari standing next to a man in a blue sari, both of them looking at each other", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 568.72, "raw_caption": "The image shows a man with long hair and a beard standing next to another man in front of a wall adorned with sculptures. In the center of the image there is a watermark.", "scene_text": "The image shows a man with long hair and a beard standing next to another man in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 574.76, "raw_caption": "The image shows two men standing next to each other in front of a wall adorned with sculptures. One of the men is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows two men standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 580.8, "raw_caption": "The image shows two men standing next to each other in front of a wall adorned with sculptures. One of the men is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows two men standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 586.84, "raw_caption": "The image shows two men standing next to each other in front of a wall adorned with sculptures. One of the men is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows two men standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 592.92, "raw_caption": "The image shows a man with a beard and a woman in a red dress standing next to each other in front of a wall adorned with sculptures. The man is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man with a beard and a woman in a red dress standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 598.96, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image. One of the men appears to be a guru, wearing a traditional Indian outfit and a long robe.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 605.0, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image. The men appear to be in a scene from the movie Ramayana.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 611.04, "raw_caption": "The image shows a man with a beard and a mustache standing next to another man in front of a wall adorned with sculptures. The man with the beard is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man with a beard and a mustache standing next to another man in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 617.12, "raw_caption": "The image shows a man with a beard and a crown on his head standing next to another man, both wearing ornaments. In the background, there are sculptures and a watermark on the image. The man with the crown appears to be a guru, as indicated by the watermark.", "scene_text": "The image shows a man with a beard and a crown on his head standing next to another man, both wearing ornaments", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 623.16, "raw_caption": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a wall with sculptures in the background. There is a watermark on the image, suggesting that it is a photo of Ramayana.", "scene_text": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a wall with sculptures in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 629.2, "raw_caption": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures. The man is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 635.24, "raw_caption": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures. The man is wearing ornaments and the woman is wearing a crown. In the center of the image there is a watermark, suggesting that this is", "scene_text": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 641.32, "raw_caption": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a wall adorned with sculptures and a watermark. The man with the crown appears to be Ramayana, as indicated by the watermark, and the two men appear to be in a", "scene_text": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a wall adorned with sculptures and a watermark", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 647.36, "raw_caption": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures. The man is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 653.4, "raw_caption": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a wall with sculptures in the background. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows two men, one with a beard and the other with a crown on his head, standing in front of a wall with sculptures in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 659.44, "raw_caption": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures. The man is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man in a black robe and a woman in a red dress standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 665.52, "raw_caption": "The image shows a man in a black robe and a woman in a red sari standing in front of a wall with sculptures in the background. The man is wearing ornaments and the woman is holding something in her hand. There is a watermark on the image, suggesting that it is a photo of", "scene_text": "The image shows a man in a black robe and a woman in a red sari standing in front of a wall with sculptures in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 671.56, "raw_caption": "The image shows a man in a black robe and a woman in a red sari standing next to each other in front of a wall adorned with sculptures. The man is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows a man in a black robe and a woman in a red sari standing next to each other in front of a wall adorned with sculptures", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 677.6, "raw_caption": "The image shows two men, one with a mustache and the other with a beard, standing in front of a wall with sculptures in the background. The man with the mustache is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows two men, one with a mustache and the other with a beard, standing in front of a wall with sculptures in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 683.64, "raw_caption": "The image shows a man with a mustache and a beard standing next to a woman in a red dress, both of them wearing ornaments. In the background, there are sculptures and a watermark on the image.", "scene_text": "The image shows a man with a mustache and a beard standing next to a woman in a red dress, both of them wearing ornaments", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 689.72, "raw_caption": "The image shows a man in a black and gold outfit with a crown on his head and a woman in a red dress standing in front of him. In the background, there are several statues and a watermark on the image.", "scene_text": "The image shows a man in a black and gold outfit with a crown on his head and a woman in a red dress standing in front of him", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 695.76, "raw_caption": "The image shows a man with a beard and a crown on his head standing next to another man, both wearing ornaments. In the background there are sculptures and a wall, and in the center of the image there is a watermark.", "scene_text": "The image shows a man with a beard and a crown on his head standing next to another man, both wearing ornaments", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 707.84, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image. The men appear to be in a scene from the movie Ramayana, as indicated by the title of the movie.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 713.92, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image. One of the men is wearing ornaments, and they appear to be in the midst of a conversation.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 719.96, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background. One of the men is wearing a crown and ornaments, and there is a watermark on the image.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 726.0, "raw_caption": "The image shows a man in a red robe talking to another man in front of a statue, with a wall in the background and a watermark on the image. The man in the red robe appears to be a guru, as indicated by the title of the image, \"Guru Guru\".", "scene_text": "The image shows a man in a red robe talking to another man in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 732.08, "raw_caption": "The image shows a man in a black robe talking to another man in front of a statue, with a wall in the background and a watermark on the image.", "scene_text": "The image shows a man in a black robe talking to another man in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 738.12, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image. The two men appear to be in a scene from the movie Ramayana.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 744.16, "raw_caption": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image. One of the men is wearing ornaments and a cap, while the other is wearing a sari.", "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the background and a watermark on the image", "scene_hints": ["clock ticking", "rain falling", "fan humming", "frogs croaking", "water flowing", "wind over water", "footsteps on floor", "distant voices", "water splashing", "door creak"], "expressions": []} +{"timestamp_sec": 756.28, "raw_caption": "The image shows a man with a beard and a mustache standing next to another man in a temple, both wearing ornaments. In the background, there are sculptures and a watermark on the image. The man with the beard appears to be Ramayana, as indicated by the watermark.", "scene_text": "The image shows a man with a beard and a mustache standing next to another man in a temple, both wearing ornaments", "scene_hints": ["rain falling", "bells ringing", "frogs croaking", "crowd murmur", "water flowing", "wind over water", "wind", "birds", "water splashing", "music", "chanting"], "expressions": []} +{"timestamp_sec": 762.32, "raw_caption": "The image shows a man with a beard and a mustache standing next to another man in front of a statue. The man with the beard is wearing ornaments and there is a watermark on the image. The background is dark, giving the image a mysterious atmosphere.", "scene_text": "The image shows a man with a beard and a mustache standing next to another man in front of a statue", "scene_hints": ["owl hooting", "night insects", "rain falling", "frogs croaking", "water flowing", "crackling fire", "wind over water", "wind", "crickets chirping", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 768.36, "raw_caption": "The image shows a man with a beard and a mustache standing next to another man in a temple, both wearing ornaments. In the background, there are several statues and a watermark on the image.", "scene_text": "The image shows a man with a beard and a mustache standing next to another man in a temple, both wearing ornaments", "scene_hints": ["rain falling", "bells ringing", "frogs croaking", "crowd murmur", "water flowing", "wind over water", "wind", "birds", "water splashing", "music", "chanting"], "expressions": []} +{"timestamp_sec": 774.4, "raw_caption": "The image shows two men standing next to each other in front of a statue. The man on the right is wearing a pink dress and has a long beard, while the man in the middle is wearing traditional ornaments. In the center of the image, there is a watermark, suggesting that this is", "scene_text": "The image shows two men standing next to each other in front of a statue", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 780.48, "raw_caption": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a statue. The man with the beard is wearing ornaments and there is a watermark on the image.", "scene_text": "The image shows two men, one with a beard and the other with a mustache, standing next to each other in front of a statue", "scene_hints": ["rain falling", "frogs croaking", "water flowing", "wind over water", "water splashing"], "expressions": []} +{"timestamp_sec": 786.52, "raw_caption": "The image shows a man with a beard and a mustache standing next to another man in front of a statue. The man with the beard is wearing ornaments and there is a watermark on the image. The background is dark, giving the image a mysterious atmosphere.", "scene_text": "The image shows a man with a beard and a mustache standing next to another man in front of a statue", "scene_hints": ["owl hooting", "night insects", "rain falling", "frogs croaking", "water flowing", "crackling fire", "wind over water", "wind", "crickets chirping", "water splashing", "distant music"], "expressions": []} +{"timestamp_sec": 834.92, "raw_caption": "The image shows a man sitting at a table with a statue of a man in front of him, surrounded by trees and a clear blue sky. On the table there are various objects, and in the center of the image there is some text.", "scene_text": "The image shows a man sitting at a table with a statue of a man in front of him, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "clock ticking", "fan humming", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "footsteps on floor", "distant voices", "branch creak", "door creak"], "expressions": []} +{"timestamp_sec": 840.96, "raw_caption": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky. On the table there are various objects, and in the center of the image there is a watermark.", "scene_text": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "wind over water", "branch creak", "bells ringing", "frogs croaking", "birds chirping", "water flowing", "water splashing", "music", "door creak", "chanting", "rustling grass", "rain falling", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 847.0, "raw_caption": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky. On the table there are various objects, and in the center of the image there is a watermark.", "scene_text": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "wind over water", "branch creak", "bells ringing", "frogs croaking", "birds chirping", "water flowing", "water splashing", "music", "door creak", "chanting", "rustling grass", "rain falling", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 853.08, "raw_caption": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by a few people, trees, and a clear blue sky.", "scene_text": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by a few people, trees, and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "branch creak", "bells ringing", "birds chirping", "music", "door creak", "chanting", "rustling grass", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 859.12, "raw_caption": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky. On the table there are various objects, and in the center of the image there is a watermark.", "scene_text": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "wind over water", "branch creak", "bells ringing", "frogs croaking", "birds chirping", "water flowing", "water splashing", "music", "door creak", "chanting", "rustling grass", "rain falling", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 865.16, "raw_caption": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky. On the table there are various objects, and two people can be seen in the background. The image is slightly blurred, giving it a dream-like quality.", "scene_text": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "branch creak", "bells ringing", "birds chirping", "music", "door creak", "chanting", "rustling grass", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 877.28, "raw_caption": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky. On the table there are various objects, and in the background there is a watermark.", "scene_text": "The image shows a man sitting at a table with a model of a temple in front of him, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "wind over water", "branch creak", "bells ringing", "frogs croaking", "birds chirping", "water flowing", "water splashing", "music", "door creak", "chanting", "rustling grass", "rain falling", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 889.36, "raw_caption": "The image shows a man sitting on a bench next to a model of a temple, surrounded by trees and a clear blue sky. On the table in front of him are various objects, and there is a watermark on the image.", "scene_text": "The image shows a man sitting on a bench next to a model of a temple, surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "clock ticking", "wind rustling leaves", "crickets", "wind", "crowd murmur", "footsteps on dirt", "birds", "distant voices", "wind over water", "branch creak", "bells ringing", "frogs croaking", "birds chirping", "water flowing", "water splashing", "music", "door creak", "chanting", "rustling grass", "rain falling", "fan humming", "insects buzzing", "footsteps on floor"], "expressions": []} +{"timestamp_sec": 901.48, "raw_caption": "The image shows a man sitting atop a green temple, holding something in his hand, with another person walking in the background and various objects scattered on the ground.", "scene_text": "The image shows a man sitting atop a green temple, holding something in his hand, with another person walking in the background and various objects scattered on the ground", "scene_hints": ["bells ringing", "crowd murmur", "wind", "birds", "music", "chanting"], "expressions": []} +{"timestamp_sec": 907.52, "raw_caption": "The image shows a man with long hair and a beard standing in front of a green temple, surrounded by various objects on the ground.", "scene_text": "The image shows a man with long hair and a beard standing in front of a green temple, surrounded by various objects on the ground", "scene_hints": ["bells ringing", "crowd murmur", "wind", "birds", "music", "chanting"], "expressions": []} +{"timestamp_sec": 913.56, "raw_caption": "The image shows a man standing next to a green temple, holding something in his hand. In the background, there are various objects scattered on the ground.", "scene_text": "The image shows a man standing next to a green temple, holding something in his hand", "scene_hints": ["bells ringing", "crowd murmur", "wind", "birds", "music", "chanting"], "expressions": []} +{"timestamp_sec": 943.8, "raw_caption": "The image shows two men standing next to each other in a field, with one of them holding a stick. In the background, there are trees and a sky with clouds, and there is a watermark on the image.", "scene_text": "The image shows two men standing next to each other in a field, with one of them holding a stick", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 968.04, "raw_caption": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue sky. One of the men is holding a stick in his hand, and there is a watermark on the image.", "scene_text": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1004.32, "raw_caption": "The image shows a man walking down a dirt path in the middle of a lush green field, surrounded by trees and plants. He is wearing a white dress, and the sky is visible in the background.", "scene_text": "The image shows a man walking down a dirt path in the middle of a lush green field, surrounded by trees and plants", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1010.36, "raw_caption": "The image shows two women walking down a path in the woods, both wearing white dresses. The trees on either side of the path are lush and green, providing a beautiful backdrop to the scene.", "scene_text": "The image shows two women walking down a path in the woods, both wearing white dresses", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1016.44, "raw_caption": "The image shows a man and woman walking down a dirt road surrounded by trees and plants. The woman is wearing a white dress and the man is wearing glasses.", "scene_text": "The image shows a man and woman walking down a dirt road surrounded by trees and plants", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1022.48, "raw_caption": "The image shows two women in white dresses walking down a dirt road surrounded by trees and plants.", "scene_text": "The image shows two women in white dresses walking down a dirt road surrounded by trees and plants", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1034.56, "raw_caption": "The image shows a group of three women walking down a dirt road surrounded by trees and plants. One of the women is holding a musical instrument in her hand.", "scene_text": "The image shows a group of three women walking down a dirt road surrounded by trees and plants", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1040.64, "raw_caption": "The image shows two women walking down a dirt road with their arms outstretched, surrounded by plants and trees. One of the women is holding a stick in her hand.", "scene_text": "The image shows two women walking down a dirt road with their arms outstretched, surrounded by plants and trees", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1046.68, "raw_caption": "The image shows a group of three people walking down a dirt road surrounded by trees. The person in the front is wearing a white dress and is holding a stick, while the person to the left is wearing an unknown color.", "scene_text": "The image shows a group of three people walking down a dirt road surrounded by trees", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1070.88, "raw_caption": "The image shows two men standing next to each other in a field, with one of them holding a sword. The background of the image is filled with plants and trees, and the sky is visible at the top. There is also a watermark on the image.", "scene_text": "The image shows two men standing next to each other in a field, with one of them holding a sword", "scene_hints": ["crow cawing", "drums", "wind rustling leaves", "crickets", "wind", "horses", "crowd shouting", "footsteps on dirt", "running", "wind over water", "branch creak", "metal clashing", "frogs croaking", "birds chirping", "water flowing", "water splashing", "rustling grass", "rain falling", "insects buzzing"], "expressions": []} +{"timestamp_sec": 1082.96, "raw_caption": "The image shows three men standing next to each other in a field, with one of them holding a sword. In the background, there are trees and a clear blue sky.", "scene_text": "The image shows three men standing next to each other in a field, with one of them holding a sword", "scene_hints": ["crow cawing", "horses", "rustling grass", "crowd shouting", "drums", "metal clashing", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "running", "wind", "branch creak"], "expressions": []} +{"timestamp_sec": 1089.04, "raw_caption": "The image shows a man in a red sari standing next to a woman in a black dress, both of them surrounded by plants and a clear blue sky.", "scene_text": "The image shows a man in a red sari standing next to a woman in a black dress, both of them surrounded by plants and a clear blue sky", "scene_hints": [], "expressions": []} +{"timestamp_sec": 1101.12, "raw_caption": "The image shows two men dressed in traditional Indian clothing standing next to each other in front of a backdrop of trees and a clear blue sky. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows two men dressed in traditional Indian clothing standing next to each other in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1107.16, "raw_caption": "The image shows two men, one with a beard and the other with long hair, standing in front of a backdrop of trees and a clear blue sky. There is a watermark on the image.", "scene_text": "The image shows two men, one with a beard and the other with long hair, standing in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1113.24, "raw_caption": "The image shows two men, one with a long beard and the other with a crown on his head, standing in front of a backdrop of trees and a clear blue sky. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows two men, one with a long beard and the other with a crown on his head, standing in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1119.28, "raw_caption": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image.", "scene_text": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1125.32, "raw_caption": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image.", "scene_text": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1131.36, "raw_caption": "The image shows two men, one with a beard and the other with a long beard, standing in front of a backdrop of trees and a clear blue sky. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows two men, one with a beard and the other with a long beard, standing in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1137.44, "raw_caption": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue sky. The man on the right is wearing a black dress, while the man in the middle is wearing traditional Indian clothing. There is a watermark on the image, suggesting that it is a photo of", "scene_text": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1143.48, "raw_caption": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image.", "scene_text": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1149.52, "raw_caption": "The image shows two men, one with long hair and a beard, talking to each other in front of a backdrop of trees and a clear blue sky. There is a watermark on the image, suggesting that it is a photo of a guru.", "scene_text": "The image shows two men, one with long hair and a beard, talking to each other in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1155.56, "raw_caption": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image.", "scene_text": "The image shows a man with long hair and a beard standing next to another man in a forest, with trees in the background and a watermark on the image", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1161.64, "raw_caption": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue sky. The man on the left is wearing a red and black dress, while the man in the middle is wearing an unknown color. There is a watermark on the image, suggesting that it is a", "scene_text": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1173.72, "raw_caption": "The image shows a wooden gate in the middle of a forest, with a few people sitting on a bench in the foreground. In the background, there are a few trees visible, and in the center of the image there is some edited text.", "scene_text": "The image shows a wooden gate in the middle of a forest, with a few people sitting on a bench in the foreground", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1179.76, "raw_caption": "The image shows a wooden gate in the middle of a forest, with a few trees in the background. Through the gate, I can see a few people, and there are watermarks on the image.", "scene_text": "The image shows a wooden gate in the middle of a forest, with a few trees in the background. Through the gate, I can see a few people, and there are watermarks on the image.", "scene_hints": ["crow cawing", "rustling grass", "water splashing", "rain falling", "frogs croaking", "wind rustling leaves", "birds chirping", "insects buzzing", "water flowing", "wind over water", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1185.84, "raw_caption": "The image shows a man and woman standing in front of a wooden gate, surrounded by trees in the background. The gate is made of wood and has text on it.", "scene_text": "The image shows a man and woman standing in front of a wooden gate, surrounded by trees in the background", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} +{"timestamp_sec": 1204.0, "raw_caption": "The image shows a group of four women standing under a wooden shed surrounded by trees and a clear blue sky.", "scene_text": "The image shows a group of four women standing under a wooden shed surrounded by trees and a clear blue sky", "scene_hints": ["crow cawing", "rustling grass", "wind rustling leaves", "birds chirping", "insects buzzing", "crickets", "footsteps on dirt", "branch creak"], "expressions": []} diff --git a/results_v16/BEK_EP_023/results.json b/results_v16/BEK_EP_023/results.json new file mode 100755 index 0000000..33b8ebd --- /dev/null +++ b/results_v16/BEK_EP_023/results.json @@ -0,0 +1,546 @@ +{ + "caption_segments": 56, + "timeline": [ + { + "start_sec": 50.2, + "end_sec": 52.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 52.4, + "end_sec": 64.6, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The image shows a red rose with the words \"Executive Producer Raj Pius\" written on it, set against a" + }, + { + "start_sec": 67.2, + "end_sec": 74.2, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium" + ], + "scene_text": "The rose is a vibrant red color, with its petals and leaves standing out against the dark background" + }, + { + "start_sec": 76.6, + "end_sec": 80.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 81.2, + "end_sec": 83.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 84.0, + "end_sec": 87.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The rose is vibrant and full of life, with its petals and leaves standing out against the dark backg" + }, + { + "start_sec": 88.0, + "end_sec": 98.0, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"vanr" + }, + { + "start_sec": 98.6, + "end_sec": 102.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a single red rose with its stem and leaves against a black background, with the word" + }, + { + "start_sec": 104.6, + "end_sec": 106.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with the words \"Salim Arif\" written on it, set against a dark background." + }, + { + "start_sec": 107.4, + "end_sec": 109.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Piyu" + }, + { + "start_sec": 109.8, + "end_sec": 111.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Piyu" + }, + { + "start_sec": 112.4, + "end_sec": 114.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"V K " + }, + { + "start_sec": 119.4, + "end_sec": 123.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a red rose with its stem and leaves against a black background, with the words \"Wave" + }, + { + "start_sec": 125.0, + "end_sec": 126.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a black background with the text \"Episode 23: The Chola Empire Part-II\" written in w" + }, + { + "start_sec": 127.8, + "end_sec": 129.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a black background with the text \"Episode 23: The Chola Empire Part-II\" written in w" + }, + { + "start_sec": 130.6, + "end_sec": 132.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a black background with the text \"Episode 23: The Chola Empire Part-II\" written in w" + }, + { + "start_sec": 305.4, + "end_sec": 306.75, + "caption": "[गिटार-सितार के साथ संगीत]", + "families": [ + "music", + "guitar", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 336.0, + "end_sec": 337.18, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar" + ], + "scene_text": "The image shows a man with a beard and a crown on his head sitting on a throne, wearing ornaments an" + }, + { + "start_sec": 353.4, + "end_sec": 355.0, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front" + }, + { + "start_sec": 367.8, + "end_sec": 369.8, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows a man sitting on a throne with a crown on his head, adorned with ornaments, in front" + }, + { + "start_sec": 560.6, + "end_sec": 565.4, + "caption": "[संगीत के साथ हारमोनियम]", + "families": [ + "music", + "harmonium", + "synthesizer" + ], + "scene_text": "The image shows a woman in a white sari standing next to a man in a blue sari, both of them looking " + }, + { + "start_sec": 605.0, + "end_sec": 607.71, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the backgro" + }, + { + "start_sec": 609.4, + "end_sec": 610.65, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man with a beard and a mustache standing next to another man in front of a wall ad" + }, + { + "start_sec": 744.6, + "end_sec": 746.17, + "caption": "[पानी की आवाज़]", + "families": [ + "water" + ], + "scene_text": "The image shows two men standing next to each other in front of a statue, with a wall in the backgro" + }, + { + "start_sec": 789.8, + "end_sec": 796.8, + "caption": "[जानवर की आवाज़]", + "families": [ + "clip-clop", + "animal", + "footstep" + ], + "scene_text": "The image shows a man with a beard and a mustache standing next to another man in front of a statue" + }, + { + "start_sec": 797.2, + "end_sec": 800.2, + "caption": "[जानवर की आवाज़]", + "families": [ + "clip-clop", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 815.0, + "end_sec": 817.95, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "environmental noise", + "bird", + "turkey" + ], + "scene_text": "" + }, + { + "start_sec": 820.2, + "end_sec": 830.27, + "caption": "[सितार-गिटार के साथ संगीत]", + "families": [ + "music", + "sitar", + "guitar" + ], + "scene_text": "" + }, + { + "start_sec": 948.4, + "end_sec": 949.4, + "caption": "[हल्की आवाज़]", + "families": [ + "environmental noise" + ], + "scene_text": "The image shows two men standing next to each other in a field, with one of them holding a stick" + }, + { + "start_sec": 952.0, + "end_sec": 953.53, + "caption": "[संगीत के साथ वायलिन]", + "families": [ + "music", + "violin" + ], + "scene_text": "" + }, + { + "start_sec": 955.4, + "end_sec": 960.31, + "caption": "[जानवर की आवाज़]", + "families": [ + "bagpipes", + "music", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 974.2, + "end_sec": 980.8, + "caption": "[संगीत]", + "families": [ + "music", + "bagpipes" + ], + "scene_text": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue" + }, + { + "start_sec": 981.8, + "end_sec": 983.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 984.0, + "end_sec": 985.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 986.4, + "end_sec": 987.39, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 989.6, + "end_sec": 992.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 999.2, + "end_sec": 1001.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man walking down a dirt path in the middle of a lush green field, surrounded by tr" + }, + { + "start_sec": 1002.0, + "end_sec": 1006.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a man walking down a dirt path in the middle of a lush green field, surrounded by tr" + }, + { + "start_sec": 1008.4, + "end_sec": 1012.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows two women walking down a path in the woods, both wearing white dresses" + }, + { + "start_sec": 1013.6, + "end_sec": 1018.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a man and woman walking down a dirt road surrounded by trees and plants" + }, + { + "start_sec": 1020.0, + "end_sec": 1021.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows two women in white dresses walking down a dirt road surrounded by trees and plants" + }, + { + "start_sec": 1023.0, + "end_sec": 1024.8, + "caption": "[संगीत के साथ गिटार]", + "families": [ + "music", + "guitar" + ], + "scene_text": "The image shows two women in white dresses walking down a dirt road surrounded by trees and plants" + }, + { + "start_sec": 1025.2, + "end_sec": 1028.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows two women in white dresses walking down a dirt road surrounded by trees and plants" + }, + { + "start_sec": 1029.4, + "end_sec": 1041.6, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows two women walking down a dirt road with their arms outstretched, surrounded by plant" + }, + { + "start_sec": 1042.0, + "end_sec": 1043.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows two women walking down a dirt road with their arms outstretched, surrounded by plant" + }, + { + "start_sec": 1046.2, + "end_sec": 1048.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of three people walking down a dirt road surrounded by trees" + }, + { + "start_sec": 1048.4, + "end_sec": 1051.0, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of three people walking down a dirt road surrounded by trees" + }, + { + "start_sec": 1052.0, + "end_sec": 1053.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of three people walking down a dirt road surrounded by trees" + }, + { + "start_sec": 1054.8, + "end_sec": 1057.0, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 1058.0, + "end_sec": 1059.35, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 1069.4, + "end_sec": 1071.61, + "caption": "[तीर की आवाज़]", + "families": [ + "environmental noise", + "arrow" + ], + "scene_text": "The image shows two men standing next to each other in a field, with one of them holding a sword" + }, + { + "start_sec": 1091.8, + "end_sec": 1094.3, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "animal", + "environmental noise", + "bird" + ], + "scene_text": "The image shows a man in a red sari standing next to a woman in a black dress, both of them surround" + }, + { + "start_sec": 1165.2, + "end_sec": 1169.4, + "caption": "[संगीत]", + "families": [ + "music", + "environmental noise" + ], + "scene_text": "The image shows two men standing next to each other in front of a backdrop of trees and a clear blue" + }, + { + "start_sec": 1172.6, + "end_sec": 1178.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a wooden gate in the middle of a forest, with a few people sitting on a bench in the" + }, + { + "start_sec": 1179.8, + "end_sec": 1181.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a wooden gate in the middle of a forest, with a few trees in the background. Through" + }, + { + "start_sec": 1182.4, + "end_sec": 1187.4, + "caption": "[गिटार-वायलिन के साथ संगीत]", + "families": [ + "music", + "guitar", + "violin" + ], + "scene_text": "The image shows a man and woman standing in front of a wooden gate, surrounded by trees in the backg" + } + ], + "raw_events": 1523, + "deduped_events": 163, + "speech_segments": 165 +} \ No newline at end of file diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png new file mode 100755 index 0000000..67ad7ce Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.8s.png new file mode 100755 index 0000000..0206654 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png new file mode 100755 index 0000000..a389063 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1068.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1068.4s.png new file mode 100755 index 0000000..3665113 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1068.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1073.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1073.2s.png new file mode 100755 index 0000000..e3263c7 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1073.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1078.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1078.6s.png new file mode 100755 index 0000000..7cbb6aa Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1078.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png new file mode 100755 index 0000000..e84dc8c Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.2s.png new file mode 100755 index 0000000..3ac9ed9 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1102.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1102.2s.png new file mode 100755 index 0000000..9f4df2d Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1102.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png new file mode 100755 index 0000000..b22390a Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1116.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1116.2s.png new file mode 100755 index 0000000..cbdf8c3 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1116.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1118.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1118.8s.png new file mode 100755 index 0000000..c2d83fd Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1118.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1146.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1146.0s.png new file mode 100755 index 0000000..9c286d6 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1146.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1278.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1278.4s.png new file mode 100755 index 0000000..64a02c4 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1278.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1283.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1283.2s.png new file mode 100755 index 0000000..b3ab160 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1283.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.4s.png new file mode 100755 index 0000000..9e7eed8 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1307.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1307.4s.png new file mode 100755 index 0000000..ea3249e Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1307.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1313.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1313.4s.png new file mode 100755 index 0000000..7fdde63 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1313.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png new file mode 100755 index 0000000..c4c93a8 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1332.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1332.0s.png new file mode 100755 index 0000000..83caed5 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1332.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1346.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1346.2s.png new file mode 100755 index 0000000..b69c74e Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1346.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1351.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1351.4s.png new file mode 100755 index 0000000..09c74cb Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1351.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1353.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1353.6s.png new file mode 100755 index 0000000..2bcc3fa Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1353.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.4s.png new file mode 100755 index 0000000..9d058a9 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.6s.png new file mode 100755 index 0000000..80648ef Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_198.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png new file mode 100755 index 0000000..88ae119 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_211.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_211.4s.png new file mode 100755 index 0000000..5b86deb Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_211.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_223.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_223.4s.png new file mode 100755 index 0000000..30f7b7b Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_223.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png new file mode 100755 index 0000000..0663e37 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.0s.png new file mode 100755 index 0000000..db4b11f Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.6s.png new file mode 100755 index 0000000..936ea6c Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_250.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_250.0s.png new file mode 100755 index 0000000..cad98cb Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_250.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png new file mode 100755 index 0000000..0a087a7 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_256.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_256.8s.png new file mode 100755 index 0000000..e3e6f6a Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_256.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_258.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_258.4s.png new file mode 100755 index 0000000..1d6a135 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_258.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_264.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_264.4s.png new file mode 100755 index 0000000..223d3c0 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_264.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_266.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_266.8s.png new file mode 100755 index 0000000..6cc2ae6 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_266.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_274.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_274.4s.png new file mode 100755 index 0000000..ff0615b Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_274.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png new file mode 100755 index 0000000..b31f42d Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png new file mode 100755 index 0000000..fc4c6f2 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_35.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_35.0s.png new file mode 100755 index 0000000..57b02af Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_35.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_355.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_355.2s.png new file mode 100755 index 0000000..a6b1920 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_355.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_380.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_380.0s.png new file mode 100755 index 0000000..71244f2 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_380.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_386.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_386.2s.png new file mode 100755 index 0000000..78573c9 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_386.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.6s.png new file mode 100755 index 0000000..834dc91 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.6s.png new file mode 100755 index 0000000..667a6d1 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_402.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_402.0s.png new file mode 100755 index 0000000..5217dba Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_402.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.0s.png new file mode 100755 index 0000000..c6a0d8c Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png new file mode 100755 index 0000000..06bc2b4 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_49.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_49.8s.png new file mode 100755 index 0000000..a7b301b Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_49.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_52.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_52.0s.png new file mode 100755 index 0000000..a6aa406 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_52.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_593.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_593.4s.png new file mode 100755 index 0000000..0f96d59 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_593.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png new file mode 100755 index 0000000..416bc96 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_599.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_599.6s.png new file mode 100755 index 0000000..0293ce2 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_599.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_603.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_603.6s.png new file mode 100755 index 0000000..752421d Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_603.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.0s.png new file mode 100755 index 0000000..487ad0b Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_616.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_616.4s.png new file mode 100755 index 0000000..19dd37c Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_616.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.4s.png new file mode 100755 index 0000000..bc6dbd1 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_651.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_651.4s.png new file mode 100755 index 0000000..74b60e4 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_651.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png new file mode 100755 index 0000000..e2b1e51 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png new file mode 100755 index 0000000..ba736f3 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_661.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_661.0s.png new file mode 100755 index 0000000..9d6514c Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_661.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.0s.png new file mode 100755 index 0000000..074ca2b Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png new file mode 100755 index 0000000..0d5fddc Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png new file mode 100755 index 0000000..371a305 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_77.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_77.0s.png new file mode 100755 index 0000000..f4dfc6e Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_77.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png new file mode 100755 index 0000000..afc8582 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_78.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_78.0s.png new file mode 100755 index 0000000..b5c94bd Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_78.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_793.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_793.6s.png new file mode 100755 index 0000000..a3ea828 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_793.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_797.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_797.0s.png new file mode 100755 index 0000000..fa40598 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_797.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png new file mode 100755 index 0000000..f0a879a Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_818.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_818.8s.png new file mode 100755 index 0000000..69e44c9 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_818.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png new file mode 100755 index 0000000..5cf2da1 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png new file mode 100755 index 0000000..65332bd Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png new file mode 100755 index 0000000..4004041 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_841.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_841.8s.png new file mode 100755 index 0000000..8ad3cab Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_841.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.6s.png new file mode 100755 index 0000000..ab1c372 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png new file mode 100755 index 0000000..ddfebad Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png new file mode 100755 index 0000000..4679ffc Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_889.2s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_889.2s.png new file mode 100755 index 0000000..3e3f891 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_889.2s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png new file mode 100755 index 0000000..b2b5264 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png new file mode 100755 index 0000000..d0231bf Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png new file mode 100755 index 0000000..54c8a44 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_917.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_917.0s.png new file mode 100755 index 0000000..9cf3b18 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_917.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png new file mode 100755 index 0000000..f025d33 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png new file mode 100755 index 0000000..09be630 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_932.4s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_932.4s.png new file mode 100755 index 0000000..ee4723f Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_932.4s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png new file mode 100755 index 0000000..8d6fa27 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_94.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_94.8s.png new file mode 100755 index 0000000..37bf0fa Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_94.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png new file mode 100755 index 0000000..0a5b1bc Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png new file mode 100755 index 0000000..3f0410b Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_958.8s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_958.8s.png new file mode 100755 index 0000000..70ff4cc Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_958.8s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_970.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_970.0s.png new file mode 100755 index 0000000..f6dd3fd Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_970.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_99.0s.png b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_99.0s.png new file mode 100755 index 0000000..2662c41 Binary files /dev/null and b/results_v16/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_99.0s.png differ diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/captions.srt b/results_v16/Bharat_Ek_Khoj_Ep_016_full/captions.srt new file mode 100755 index 0000000..2b4a3de --- /dev/null +++ b/results_v16/Bharat_Ek_Khoj_Ep_016_full/captions.srt @@ -0,0 +1,328 @@ +1 +00:00:00,000 --> 00:00:02,000 +[पक्षियों की चहचहाहट] + +2 +00:00:02,600 --> 00:00:06,400 +[पक्षियों की चहचहाहट] + +3 +00:00:35,000 --> 00:00:40,000 +[पक्षियों की चहचहाहट] + +4 +00:00:41,000 --> 00:00:44,799 +[पक्षियों की चहचहाहट] + +5 +00:00:45,200 --> 00:00:47,200 +[कीड़ों की आवाज़] + +6 +00:00:49,799 --> 00:00:51,600 +[पत्तों की सरसराहट] + +7 +00:00:52,000 --> 00:00:55,670 +[जानवर की आवाज़] + +8 +00:01:18,000 --> 00:01:23,000 +[पक्षियों की चहचहाहट] + +9 +00:01:34,799 --> 00:01:38,000 +[पक्षियों की चहचहाहट] + +10 +00:01:39,000 --> 00:01:42,400 +[पक्षियों की चहचहाहट] + +11 +00:03:18,599 --> 00:03:31,000 +[तबला-सितार के साथ संगीत] + +12 +00:03:31,400 --> 00:03:34,650 +[तबला-सितार के साथ संगीत] + +13 +00:03:43,400 --> 00:03:45,800 +[तबला-सितार के साथ संगीत] + +14 +00:03:46,199 --> 00:03:48,000 +[संगीत] + +15 +00:03:49,000 --> 00:03:57,199 +[तबला-सितार के साथ संगीत] + +16 +00:03:57,599 --> 00:04:06,039 +[तबला-सितार के साथ संगीत] + +17 +00:04:10,000 --> 00:04:12,400 +[पक्षियों की चहचहाहट] + +18 +00:04:12,800 --> 00:04:14,360 +[जानवर की आवाज़] + +19 +00:04:18,399 --> 00:04:26,199 +[पक्षियों की चहचहाहट] + +20 +00:04:26,800 --> 00:04:32,149 +[पक्षियों की चहचहाहट] + +21 +00:04:34,399 --> 00:04:37,079 +[हल्की हँसी] + +22 +00:04:53,199 --> 00:04:54,620 +[जानवर की आवाज़] + +23 +00:05:55,199 --> 00:05:59,000 +[जानवर की आवाज़] + +24 +00:06:26,199 --> 00:06:28,399 +[संगीत] + +25 +00:06:31,600 --> 00:06:35,029 +[संगीत के साथ सितार] + +26 +00:06:39,600 --> 00:06:41,600 +[संगीत के साथ सितार] + +27 +00:06:42,000 --> 00:06:48,000 +[सितार-तबला के साथ संगीत] + +28 +00:09:53,399 --> 00:09:56,799 +[संगीत] + +29 +00:09:57,200 --> 00:09:59,000 +[संगीत] + +30 +00:09:59,600 --> 00:10:01,019 +[संगीत के साथ सितार] + +31 +00:10:03,600 --> 00:10:07,399 +[सितार-तबला के साथ संगीत] + +32 +00:10:08,000 --> 00:10:10,940 +[सितार-तबला के साथ संगीत] + +33 +00:10:16,399 --> 00:10:25,399 +[संगीत के साथ सितार] + +34 +00:10:27,399 --> 00:10:28,860 +[पक्षियों की चहचहाहट] + +35 +00:11:04,000 --> 00:11:13,200 +[पक्षियों की चहचहाहट] + +36 +00:11:31,000 --> 00:11:32,759 +[पक्षियों की चहचहाहट] + +37 +00:12:35,399 --> 00:12:50,600 +[संगीत के साथ तबला] + +38 +00:12:51,000 --> 00:12:56,399 +[संगीत के साथ तबला] + +39 +00:13:13,600 --> 00:13:16,200 +[संगीत के साथ तबला] + +40 +00:13:17,000 --> 00:13:32,799 +[संगीत के साथ तबला] + +41 +00:13:33,399 --> 00:13:37,000 +[संगीत] + +42 +00:13:38,799 --> 00:13:42,200 +[संगीत] + +43 +00:13:43,799 --> 00:13:49,799 +[संगीत के साथ तबला] + +44 +00:13:51,000 --> 00:13:54,600 +[संगीत] + +45 +00:13:55,000 --> 00:13:56,799 +[संगीत] + +46 +00:14:01,799 --> 00:14:03,799 +[पक्षियों की चहचहाहट] + +47 +00:14:32,600 --> 00:14:36,399 +[पक्षियों की चहचहाहट] + +48 +00:14:36,799 --> 00:14:46,200 +[संगीत] + +49 +00:14:46,600 --> 00:14:48,399 +[संगीत] + +50 +00:14:49,200 --> 00:14:55,200 +[मंत्रों का उच्चारण] + +51 +00:14:56,799 --> 00:15:03,799 +[मंत्रों का उच्चारण] + +52 +00:15:04,399 --> 00:15:09,399 +[मंत्रों का उच्चारण] + +53 +00:15:10,799 --> 00:15:14,600 +[संगीत के साथ तबला] + +54 +00:15:17,000 --> 00:15:22,200 +[मंत्रों का उच्चारण] + +55 +00:15:23,600 --> 00:15:29,000 +[संगीत के साथ तबला] + +56 +00:15:30,000 --> 00:15:31,799 +[संगीत] + +57 +00:15:32,399 --> 00:15:34,799 +[मंत्रों का उच्चारण] + +58 +00:15:36,799 --> 00:15:46,799 +[मंत्रों का उच्चारण] + +59 +00:15:48,799 --> 00:15:52,600 +[मंत्रों का उच्चारण] + +60 +00:15:53,000 --> 00:15:56,799 +[संगीत] + +61 +00:15:58,799 --> 00:16:05,980 +[मंत्रों का उच्चारण] + +62 +00:16:10,000 --> 00:16:15,799 +[पक्षियों की चहचहाहट] + +63 +00:17:39,799 --> 00:17:41,599 +[जानवर की आवाज़] + +64 +00:17:42,000 --> 00:17:45,799 +[हल्की थपथपाहट जैसी आवाज़ है] + +65 +00:17:48,400 --> 00:17:51,000 +[पक्षियों की चहचहाहट] + +66 +00:17:53,200 --> 00:17:56,400 +[जानवर की आवाज़] + +67 +00:17:58,599 --> 00:18:03,599 +[जानवर की आवाज़] + +68 +00:18:11,799 --> 00:18:13,599 +[जानवर की आवाज़] + +69 +00:18:22,200 --> 00:18:25,799 +[हल्की थपथपाहट जैसी आवाज़ है] + +70 +00:18:36,200 --> 00:18:38,000 +[पक्षियों की चहचहाहट] + +71 +00:18:38,799 --> 00:18:40,599 +[पानी बहने की आवाज़] + +72 +00:19:06,000 --> 00:19:07,799 +[पक्षियों की चहचहाहट] + +73 +00:21:18,400 --> 00:21:21,799 +[संगीत] + +74 +00:21:23,200 --> 00:21:33,690 +[संगीत] + +75 +00:21:41,400 --> 00:21:43,390 +[संगीत] + +76 +00:21:47,400 --> 00:21:50,400 +[जानवर की आवाज़] + +77 +00:21:53,400 --> 00:22:01,000 +[संगीत] + +78 +00:22:01,599 --> 00:22:10,400 +[जानवर की आवाज़] + +79 +00:22:12,000 --> 00:22:13,630 +[हल्की थपथपाहट जैसी आवाज़ है] + +80 +00:22:26,200 --> 00:22:29,630 +[सीटी और जानवर की आवाज़] + +81 +00:22:31,400 --> 00:22:33,200 +[जानवर की आवाज़] + +82 +00:22:33,599 --> 00:22:37,690 +[संगीत के साथ सितार] + diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/florence_log.jsonl b/results_v16/Bharat_Ek_Khoj_Ep_016_full/florence_log.jsonl new file mode 100755 index 0000000..02c1b46 --- /dev/null +++ b/results_v16/Bharat_Ek_Khoj_Ep_016_full/florence_log.jsonl @@ -0,0 +1,103 @@ +{"timestamp_sec": 0.0, "raw_caption": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Period and Silappadikaram Part-II\". The text is written in a bold, sans-serif font and is centered on the image. Below the text, there is a subtitle in Hindi that translates to \"WAVES OTTARAM PART-II\" in English. The subtitle is in a smaller font size and is slightly larger than the rest of the text. The overall design is simple and minimalistic. The image shows a black background with the text \"The Sangam Period and Silappadikaram Part-II\" written in white font The text is centered in the middle of the image and is surrounded by a white border The font size is large enough to be easily read from a distance", "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Period and Silappadikaram Part-II\". The text is written in a bold, sans-serif font and is centered on the image. Below the text, there is a subtitle in Hindi that translates to \"WAVES OTTARAM PART-II\" in English. The subtitle is in a smaller font size and is slightly larger than the rest of the text. The overall design is simple and minimalistic. The image shows a black background with the text \"The Sangam Period and Silappadikaram Part-II\" written in white font The text is centered in the middle of the image and is surrounded by a white border The font size is large enough to be easily read from a distance", "scene_hints": [], "expressions": []} +{"timestamp_sec": 18.12, "raw_caption": "The image shows a dense forest with tall trees and bushes. The trees have thick trunks and the ground is covered in greenery. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the trees. The overall mood of the scene is peaceful and serene. The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the center of the image", "scene_text": "The trees have thick trunks and the ground is covered in greenery. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the trees. The overall mood of the scene is peaceful and serene. The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the center of the image", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 48.36, "raw_caption": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees and bushes in the background. The person is wearing a red jacket and appears to be walking away from the camera. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy, ethereal quality. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the foreground, adding to the mysterious atmosphere of the scene", "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees and bushes in the background. The person is wearing a red jacket and appears to be walking away from the camera. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy, ethereal quality. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the foreground, adding to the mysterious atmosphere of the scene", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 66.52, "raw_caption": "The image shows two women standing in a field of tall grass and bushes. The woman on the left is wearing a red dress and is holding the hand of the man on the right. They are both looking at each other and appear to be engaged in a conversation. The background is filled with trees and shrubs, and the sky is visible through the trees. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows two women standing in a field of tall grass and bushes. They are both looking at each other and appear to be engaged in a conversation. The background is filled with trees and shrubs, and the sky is visible through the trees. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 72.56, "raw_caption": "The image shows a man and a woman standing in a field of tall grass. The woman is wearing a red dress and the man is wearing white. They are holding hands and appear to be engaged in a conversation. The background is filled with trees and bushes, and there is a watermark in the corner of the image that reads \"WAVES OTT FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_text": "The image shows a man and a woman standing in a field of tall grass. They are holding hands and appear to be engaged in a conversation. The background is filled with trees and bushes, and there is a watermark in the corner of the image that reads \"WAVES OTT FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 78.6, "raw_caption": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. The woman is wearing a red dress and the man is wearing white pants. They are holding hands and appear to be engaged in a conversation. The background is dark and there are trees and bushes surrounding them. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through tall grass in a field, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_text": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. They are holding hands and appear to be engaged in a conversation. The background is dark and there are trees and bushes surrounding them. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through tall grass in a field, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 108.84, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with dark hair, wearing a white tank top and shorts. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. On the right side of the image, there are two other people, one of whom is wearing a traditional Indian outfit. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and plants In the center of the image there is a watermark, and in the background there are more trees", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and plants In the center of the image there is a watermark, and in the background there are more trees", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 114.92, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with dark hair, wearing a white tank top and shorts. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. On the right side of the image, there are two other people, one of whom is wearing a traditional Indian outfit. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLO\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLO\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 120.96, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with dark hair, wearing a white tank top and shorts. He is sitting with his legs crossed and appears to be deep in thought. In the middle, there is a woman wearing a red dress and a white headscarf, who is sitting next to him. She is looking at the other two people with a serious expression on her face. The background shows trees and bushes, suggesting that the scene is taking place in a natural environment. The image is captioned \"WAVES OTT FOR SIC\". The image shows three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs crossed and appears to be deep in thought. In the middle, there is a woman wearing a red dress and a white headscarf, who is sitting next to him. She is looking at the other two people with a serious expression on her face. The background shows trees and bushes, suggesting that the scene is taking place in a natural environment. The image is captioned \"WAVES OTT FOR SIC\". The image shows three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 145.16, "raw_caption": "The image is a still from a movie or TV show. It shows a close-up of a man's face and upper body. He is wearing a white tank top and a gold chain necklace. His hair is styled in a messy bun and he is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. Overlaid on the image is text that reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it He is wearing a white shirt and has a determined expression on his face, as if he is ready to take on any challenge", "scene_text": "The image is a still from a movie or TV show. It shows a close-up of a man's face and upper body. His hair is styled in a messy bun and he is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. Overlaid on the image is text that reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it He is wearing a white shirt and has a determined expression on his face, as if he is ready to take on any challenge", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 157.24, "raw_caption": "The image is a still from a movie or TV show. It shows a man wearing a white hooded cloak, standing in a wooded area with trees and bushes in the background. The man appears to be looking off into the distance with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows a man wearing a white hooded cloak, standing in a wooded area with trees and bushes in the background. The man appears to be looking off into the distance with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 163.28, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wrapped in a white cloth, with a hood covering her head. She is standing in a wooded area with trees and bushes in the background. The woman appears to be looking off into the distance with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She is standing in a wooded area with trees and bushes in the background. The woman appears to be looking off into the distance with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 169.36, "raw_caption": "The image is a still from a movie or TV show. It shows a young man wearing a white hoodie with the words \"WAVES OTT FOR SLC\" written on it. He is standing in a wooded area with trees and bushes in the background. The man is looking directly at the camera with a serious expression on his face. The image appears to be taken from a low angle, with the focus on the man's face. The image shows a man in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_text": "The image is a still from a movie or TV show. He is standing in a wooded area with trees and bushes in the background. The man is looking directly at the camera with a serious expression on his face. The image appears to be taken from a low angle, with the focus on the man's face. The image shows a man in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 181.44, "raw_caption": "The image is a still from a movie or TV show. It shows a young man with dark hair tied up in a bun, wearing a white sleeveless shirt and a gold chain necklace. He has a tattoo on his left shoulder and is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it, surrounded by trees in the background", "scene_text": "The image is a still from a movie or TV show. He has a tattoo on his left shoulder and is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it, surrounded by trees in the background", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "crickets chirping", "distant music", "wind", "rustling grass", "crackling fire", "night insects", "insects buzzing", "crickets", "branch creak", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 326.6, "raw_caption": "The image shows a man and a woman embracing each other in a loving hug. The woman is wearing a traditional Indian outfit with a white headpiece and a gold necklace. The man has long dark hair and a beard. They are both smiling and appear to be happy. The background is blurred, but it appears to be a garden or a wooded area with trees and bushes. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a man and woman embracing in front of a backdrop of trees, with a watermark in the middle", "scene_text": "The image shows a man and a woman embracing each other in a loving hug. They are both smiling and appear to be happy. The background is blurred, but it appears to be a garden or a wooded area with trees and bushes. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a man and woman embracing in front of a backdrop of trees, with a watermark in the middle", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": ["smiling"]} +{"timestamp_sec": 332.64, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the right side of the image, with his arm around the woman's waist. They are both wearing traditional Indian clothing, with the man wearing a red saree and the woman wearing a white saree. The woman has a flower crown on her head and is looking at the man with a smile on her face. The background is filled with greenery, suggesting that they are in a garden or a wooded area. The image has a text overlay that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing each other in the foreground, with trees in the background and a watermark in the middle The image is slightly blurred, giving it a dreamy, romantic feel", "scene_text": "The image shows a man and a woman in a romantic embrace. The man is on the right side of the image, with his arm around the woman's waist. The woman has a flower crown on her head and is looking at the man with a smile on her face. The background is filled with greenery, suggesting that they are in a garden or a wooded area. The image has a text overlay that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing each other in the foreground, with trees in the background and a watermark in the middle The image is slightly blurred, giving it a dreamy, romantic feel", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 368.96, "raw_caption": "The image shows three people sitting on a woven mat under a tree. The person on the left is wearing a red saree and is holding a book in her hand. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her hands clasped together and is looking off to the side. All three people are wearing traditional Indian clothing. The background is filled with greenery and there is a watermark in the bottom right corner that reads \"WAVES OUT FOR SALE\". The image shows three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is wearing a white dress, while the person on the left is wearing an unknown color The background is filled with trees and plants, and there is a watermark in the center of the image", "scene_text": "The image shows three people sitting on a woven mat under a tree. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her hands clasped together and is looking off to the side. The background is filled with greenery and there is a watermark in the bottom right corner that reads \"WAVES OUT FOR SALE\". The image shows three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is wearing a white dress, while the person on the left is wearing an unknown color The background is filled with trees and plants, and there is a watermark in the center of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 375.0, "raw_caption": "The image shows three people sitting on a woven mat in a forest. The person in the middle is a young man with dark hair, wearing a white traditional Indian outfit. He is sitting on the ground with his legs crossed and his hands resting on his knees. On the left side of the image, there is a woman wearing a red saree and a man wearing a blue saree. They appear to be engaged in a conversation. The background is filled with trees and greenery, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of three people sitting on top of a dirt field, surrounded by trees and plants In the center of the image, there is a watermark", "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with his legs crossed and his hands resting on his knees. They appear to be engaged in a conversation. The background is filled with trees and greenery, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of three people sitting on top of a dirt field, surrounded by trees and plants In the center of the image, there is a watermark", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 381.04, "raw_caption": "The image shows three people sitting on a woven mat under a tree. The person on the left is wearing a red saree and is holding a book in her hand. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her head bowed and her hands clasped together in front of her. All three people are wearing traditional Indian clothing. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image appears to have been taken during the day. The image shows a group of three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is holding an object, and there is a watermark on the image", "scene_text": "The image shows three people sitting on a woven mat under a tree. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her head bowed and her hands clasped together in front of her. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image appears to have been taken during the day. The image shows a group of three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is holding an object, and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 387.08, "raw_caption": "The image shows three people sitting on a woven mat in a forest. The person in the middle is a young man with dark hair and a white shirt, wearing a traditional Indian outfit. He is sitting on the ground with his legs crossed and his hands resting on his knees. On the left side of the image, there is a woman wearing a red saree and a man wearing a white kurta. The woman on the right side is also sitting and appears to be listening intently to the man. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image has a watermark that reads \"WAVES OF FOR SALE\". The image shows a group of three people sitting on the ground in front of a tree, surrounded by leaves and stems In the middle of the image there is a watermark, and the background is filled with trees", "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with his legs crossed and his hands resting on his knees. The woman on the right side is also sitting and appears to be listening intently to the man. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image has a watermark that reads \"WAVES OF FOR SALE\". The image shows a group of three people sitting on the ground in front of a tree, surrounded by leaves and stems In the middle of the image there is a watermark, and the background is filled with trees", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 399.2, "raw_caption": "The image shows two people walking on a dirt path in a forested area. The person on the left is wearing a white suit with a hood and a face mask, and is carrying a backpack. They appear to be walking towards the right side of the image. The ground is covered in dry grass and shrubs, and there are trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle. There is a watermark on the image that reads \"WAVESOTT FOR SLC\". The image shows a man in a white suit walking down a dirt road surrounded by lush green grass and tall trees The sky is visible in the background, and there is a watermark on the image", "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towards the right side of the image. The ground is covered in dry grass and shrubs, and there are trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle. There is a watermark on the image that reads \"WAVESOTT FOR SLC\". The image shows a man in a white suit walking down a dirt road surrounded by lush green grass and tall trees The sky is visible in the background, and there is a watermark on the image", "scene_hints": ["wind rustling leaves", "crowd shouting", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "rain falling", "horses", "rustling grass", "insects buzzing", "running", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 417.36, "raw_caption": "The image shows three people standing in a field with tall grass and trees in the background. The person on the left is wearing a white robe and is holding a white cloth in his hands. He appears to be speaking, while the person in the middle is looking at the camera with a serious expression. On the right side of the image, there is a woman wearing a red robe and a white headscarf. She is also holding a book in her hands. The image appears to have been taken during the day, as there are no other people visible in the frame. The image shows a group of three people standing next to each other in a field, with one person holding a white object in their hand The background of the image is filled with lush green grass, plants, and trees, and the sky is visible in the background There is also a watermark on the image", "scene_text": "The image shows three people standing in a field with tall grass and trees in the background. He appears to be speaking, while the person in the middle is looking at the camera with a serious expression. She is also holding a book in her hands. The image appears to have been taken during the day, as there are no other people visible in the frame. The image shows a group of three people standing next to each other in a field, with one person holding a white object in their hand The background of the image is filled with lush green grass, plants, and trees, and the sky is visible in the background There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 429.44, "raw_caption": "The image shows two men standing in a field with tall grass and trees in the background. They are both wearing white robes and appear to be engaged in a conversation. The man on the left is holding a book in his hands and the woman on the right is looking at him attentively. The text on the image reads \"WAVES OF FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, both wearing white dresses In the background, there are trees and a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and trees in the background. The man on the left is holding a book in his hands and the woman on the right is looking at him attentively. The text on the image reads \"WAVES OF FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, both wearing white dresses In the background, there are trees and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 435.48, "raw_caption": "The image shows two people standing in a field with tall grass and trees in the background. They are both wearing white dresses and appear to be engaged in a conversation. The person on the left is holding a camera and the person in the middle is looking at the other person with a serious expression. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and woman standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows two people standing in a field with tall grass and trees in the background. The person on the left is holding a camera and the person in the middle is looking at the other person with a serious expression. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and woman standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 441.52, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe, the person in the middle is wearing white robes, and the person at the far right is bald. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 447.6, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe and is holding a stick, while the person in the middle is holding an umbrella. The third person is standing on the right side of the image, wearing a white robe and holding a book. The fourth person is in the center, wearing the same white robe. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses The sky is visible in the background, and there is a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The third person is standing on the right side of the image, wearing a white robe and holding a book. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses The sky is visible in the background, and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 453.64, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all wearing white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe, the person in the middle is holding a white hat, and the person at the far right is holding an object. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 459.68, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe, the person in the middle is holding a white cloth, and the person at the far right is wearing an orange robe. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 465.72, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe and is holding a stick, while the person in the middle is holding an object, possibly a book or a piece of paper. The text on the image reads \"WAVES OF FOR SLC\". It appears to be a still from a movie or TV show. The image shows a group of four people standing in a field surrounded by trees and plants, with a watermark in the background", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The text on the image reads \"WAVES OF FOR SLC\". It appears to be a still from a movie or TV show. The image shows a group of four people standing in a field surrounded by trees and plants, with a watermark in the background", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 471.76, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe and is holding a stick, while the person in the middle is holding an object, possibly a book or a pen. The other three people are wearing white robes. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and one of them is holding a stick There is a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and one of them is holding a stick There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 477.84, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in traditional Indian clothing, with the person in the center wearing a white saree and the person on the left wearing a red saree. The person on their left is holding a white cloth, while the person next to them is wearing a black saree with a white shawl draped over their shoulders. On the right side of the image, there is a man wearing a beige robe and holding a sword. The image appears to be a still from a movie or TV show, as there is text overlaid on the image that reads \"WAVES OFF FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees In the center of the group is a watermark, adding a unique touch to the scene", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The image appears to be a still from a movie or TV show, as there is text overlaid on the image that reads \"WAVES OFF FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees In the center of the group is a watermark, adding a unique touch to the scene", "scene_hints": ["wind rustling leaves", "crowd shouting", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "rain falling", "horses", "rustling grass", "insects buzzing", "running", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 483.88, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. On the left side of the image, there is a woman wearing a red robe, on the right side, and in the center, there are two men wearing white robes. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark in the middle of the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark in the middle of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 489.92, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. On the left side of the image, there is a woman wearing a red robe, on the right side, and in the center, there are two men wearing white robes. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 495.96, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all wearing white robes and appear to be engaged in a conversation. On the left side of the image, there is a man wearing a red robe, on the right side, and in the center, there are two women wearing white dresses. The woman in the middle is holding a microphone and appears to be speaking, while the other two women are listening attentively. The image has a watermark that reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The woman in the middle is holding a microphone and appears to be speaking, while the other two women are listening attentively. The image has a watermark that reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 514.12, "raw_caption": "The image shows three people, two men and a woman, standing in a field with trees in the background. The woman is wearing a red saree and the two men are wearing white traditional Indian clothing. The man on the left is holding a white cloth in his hands and appears to be speaking to the woman on the right. The text on the image reads \"WAVES OFF FOR SIC\". The image appears to have been taken during the day, as the sky is blue and the grass is dry. The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows three people, two men and a woman, standing in a field with trees in the background. The text on the image reads \"WAVES OFF FOR SIC\". The image appears to have been taken during the day, as the sky is blue and the grass is dry. The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 520.16, "raw_caption": "The image shows three people standing in a field with trees in the background. The person in the center is wearing a white robe and is holding a large white object, which appears to be a bowl or a plate. To his left is a young boy wearing a red robe, and to his right is a man wearing a gray robe. All three people are looking at the object with serious expressions on their faces. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding a bag In the background, there are trees and a clear blue sky, and the image is framed with black borders", "scene_text": "The image shows three people standing in a field with trees in the background. All three people are looking at the object with serious expressions on their faces. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding a bag In the background, there are trees and a clear blue sky, and the image is framed with black borders", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 526.2, "raw_caption": "The image shows a group of three people standing in a field. The person in the center is wearing a white robe and is holding a large white object, which appears to be a drum or a musical instrument. To his left is a young boy wearing a red robe, and to his right is an older man wearing a gray robe. They are all looking at each other and appear to be engaged in a conversation. The background shows trees and bushes, and the sky is blue. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding an object in their hand In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows a group of three people standing in a field. They are all looking at each other and appear to be engaged in a conversation. The background shows trees and bushes, and the sky is blue. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding an object in their hand In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 532.28, "raw_caption": "The image shows three people standing in a field with trees in the background. The person in the center is wearing a white robe and is holding a white bag, while the person on the left is a young boy wearing a red robe. On the right side of the image, there is a man wearing a brown robe and a white headscarf. He appears to be speaking to the two people in the middle. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_text": "The image shows three people standing in a field with trees in the background. He appears to be speaking to the two people in the middle. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 538.32, "raw_caption": "The image shows three men standing in a field with trees in the background. The man on the left is wearing a red robe and is holding a white cloth in his hand. He appears to be in the middle of a conversation with the man in the center, who is also wearing a white robe. On the right side of the image, there is another man wearing a traditional Indian outfit, possibly a monk or a priest. He is standing with his back to the camera and is looking at the other two men. The image appears to have been taken during the day, as the sky is blue and the grass is dry and brown. The image shows a group of three men standing next to each other in a field, with one of them holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows three men standing in a field with trees in the background. He is standing with his back to the camera and is looking at the other two men. The image appears to have been taken during the day, as the sky is blue and the grass is dry and brown. The image shows a group of three men standing next to each other in a field, with one of them holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["wind rustling leaves", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crowd murmur", "crickets", "bells ringing", "rain falling", "rustling grass", "insects buzzing", "chanting", "birds", "music", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 544.36, "raw_caption": "The image shows three men standing in a field with trees in the background. The man on the left is wearing a red traditional Indian outfit and is holding a coconut in his hand. He appears to be talking to the man in the middle, who is also wearing a white robe and has a white headscarf covering his head. On the right side of the image, there is a man with a bald head and a white shawl draped over his shoulders. He is standing with his hands on his hips and is looking at the other two men. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three men standing next to each other in a field, with one of them holding a stick The background of the image is filled with trees and a clear blue sky, and there is a watermark on the image", "scene_text": "The image shows three men standing in a field with trees in the background. He appears to be talking to the man in the middle, who is also wearing a white robe and has a white headscarf covering his head. He is standing with his hands on his hips and is looking at the other two men. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three men standing next to each other in a field, with one of them holding a stick The background of the image is filled with trees and a clear blue sky, and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 550.4, "raw_caption": "The image shows three people, two men and a woman, standing in a field with trees in the background. The man on the left is wearing a red robe and appears to be a young boy, while the man in the middle is a man wearing a white robe and a white headscarf. The woman on the right is also wearing a traditional Indian outfit and is holding a white cloth in her hand. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SIC\". The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows three people, two men and a woman, standing in a field with trees in the background. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SIC\". The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 556.48, "raw_caption": "The image shows a group of three people, two men and a woman, standing in a field with trees in the background. The man on the left is wearing a red traditional Indian outfit and is holding a white cloth in his hand. The woman on the right is also wearing a white saree and is standing next to the man in the center. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of people standing next to each other in a field, with one person holding a stick and another holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows a group of three people, two men and a woman, standing in a field with trees in the background. The woman on the right is also wearing a white saree and is standing next to the man in the center. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of people standing next to each other in a field, with one person holding a stick and another holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 574.6, "raw_caption": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, sitting on a wooden bench. The woman is wearing a white headscarf and is holding a black feather in her hand. The man is shirtless and has a tattoo on his chest. They are both looking at each other and appear to be engaged in a conversation. In the background, there is a hill with trees and bushes. The sky is blue and the overall mood of the image is peaceful and serene. The image shows a man and a woman sitting next to each other in a field, with the man holding a stick In the background, there are trees and a clear blue sky, and the image is framed with a black border There is also a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, sitting on a wooden bench. The man is shirtless and has a tattoo on his chest. They are both looking at each other and appear to be engaged in a conversation. In the background, there is a hill with trees and bushes. The sky is blue and the overall mood of the image is peaceful and serene. The image shows a man and a woman sitting next to each other in a field, with the man holding a stick In the background, there are trees and a clear blue sky, and the image is framed with a black border There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 580.64, "raw_caption": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, standing side by side. The man is on the right side of the image, wearing a white robe and a gold chain necklace. He has dark hair and is looking off to the side with a serious expression on his face. The woman is wearing a headscarf and is holding a black feather in her hand. In the background, there is a hill with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man and a woman standing side by side, both wearing white clothing The man is holding a stick in his hand, and in the background there are trees and a clear blue sky There is also a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, standing side by side. He has dark hair and is looking off to the side with a serious expression on his face. In the background, there is a hill with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man and a woman standing side by side, both wearing white clothing The man is holding a stick in his hand, and in the background there are trees and a clear blue sky There is also a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 598.8, "raw_caption": "The image shows a person walking through a field of tall grass. The person is wearing a white dress and appears to be walking away from the camera. The field is surrounded by trees and bushes, and the sky is visible in the background. The grass is dry and brown, and there is a watermark in the center of the image that reads \"WAVES OTTOR SLC\". The image shows a man walking through tall grass with trees in the background He is wearing a white dress and there is a watermark on the image", "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress and appears to be walking away from the camera. The field is surrounded by trees and bushes, and the sky is visible in the background. The grass is dry and brown, and there is a watermark in the center of the image that reads \"WAVES OTTOR SLC\". The image shows a man walking through tall grass with trees in the background He is wearing a white dress and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 610.88, "raw_caption": "The image shows a group of three people standing in a field of tall grass. The person in the center is wearing a white robe and a headscarf, while the person on the left is wearing an orange robe. They appear to be engaged in a conversation. The background is filled with trees and bushes, and the sky is dark. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman standing in tall grass with trees in the background The woman is wearing a white dress and the man is wearing red There is a watermark on the image", "scene_text": "The image shows a group of three people standing in a field of tall grass. They appear to be engaged in a conversation. The background is filled with trees and bushes, and the sky is dark. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman standing in tall grass with trees in the background The woman is wearing a white dress and the man is wearing red There is a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 616.96, "raw_caption": "The image shows three women standing in a field of tall grass. The woman in the center is wearing a red dress and is holding a bouquet of flowers, while the two women on either side of her are wearing white dresses. They appear to be in a peaceful and serene setting, with trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle, giving it a dreamy quality. The image shows a group of three women standing in a field of tall grass, surrounded by plants and trees In the center of the image, there is a watermark", "scene_text": "The image shows three women standing in a field of tall grass. They appear to be in a peaceful and serene setting, with trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle, giving it a dreamy quality. The image shows a group of three women standing in a field of tall grass, surrounded by plants and trees In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 629.04, "raw_caption": "The image shows two men standing on a rocky shore near a body of water. They are both wearing white traditional Indian clothing, with the man on the left wearing a white saree and the woman on the right wearing a red saree. The man in the saree is holding a white cloth in his hands and appears to be speaking, while the woman is looking at him attentively. The background is filled with tall grass and shrubs, and the water is calm and still. The image has a watermark that reads \"WAVES OT FOR SLC\". The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hand, and there are plants in the background There is also a watermark on the image", "scene_text": "The image shows two men standing on a rocky shore near a body of water. The man in the saree is holding a white cloth in his hands and appears to be speaking, while the woman is looking at him attentively. The background is filled with tall grass and shrubs, and the water is calm and still. The image has a watermark that reads \"WAVES OT FOR SLC\". The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hand, and there are plants in the background There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 641.16, "raw_caption": "The image shows two women standing next to each other near a body of water. The woman on the left is wearing a white traditional Indian outfit with a headscarf and a necklace. She is holding a small bowl in her hand and appears to be speaking to the other woman. The man on the right is carrying a large white bag on his back. Both women are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is carrying a bag and the woman is holding something in her hand In the background, there are plants and a watermark on the image", "scene_text": "The image shows two women standing next to each other near a body of water. She is holding a small bowl in her hand and appears to be speaking to the other woman. The man on the right is carrying a large white bag on his back. Both women are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is carrying a bag and the woman is holding something in her hand In the background, there are plants and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "water flowing", "rain falling", "frogs croaking"], "expressions": []} +{"timestamp_sec": 647.2, "raw_caption": "The image shows a man and a woman standing next to each other near a body of water. The woman is wearing a white traditional Indian outfit with a headscarf and jewelry, while the man is carrying a large white bag on his back. They appear to be engaged in a conversation. The background is blurred, but it appears to be an outdoor setting with trees and bushes. The image is likely from a scene from a movie or TV show. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hands, and there are plants in the background There is also a watermark on the image", "scene_text": "The image shows a man and a woman standing next to each other near a body of water. They appear to be engaged in a conversation. The background is blurred, but it appears to be an outdoor setting with trees and bushes. The image is likely from a scene from a movie or TV show. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hands, and there are plants in the background There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 653.24, "raw_caption": "The image shows two Indian women standing next to each other near a body of water. They are both wearing traditional white sarees and jewelry. The woman on the left is holding a small white object in her hand and appears to be speaking, while the man on the right is carrying a large white bag on his back. Both women have their hair styled in an afro and are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, with the man carrying a bag and the woman holding something in her hand There are plants in the background and a watermark on the image", "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the left is holding a small white object in her hand and appears to be speaking, while the man on the right is carrying a large white bag on his back. Both women have their hair styled in an afro and are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, with the man carrying a bag and the woman holding something in her hand There are plants in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "water flowing", "rain falling", "frogs croaking"], "expressions": []} +{"timestamp_sec": 659.28, "raw_caption": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress, with her head in her hands and her eyes closed. The water is calm and there are a few plants visible in the background. The image is taken from a low angle, with the woman's body slightly angled towards the left side of the frame. The overall mood of the image is somber and melancholic. The image shows a woman in a white sari standing next to a body of water, with plants in the background and a watermark on the image", "scene_text": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress, with her head in her hands and her eyes closed. The water is calm and there are a few plants visible in the background. The image is taken from a low angle, with the woman's body slightly angled towards the left side of the frame. The overall mood of the image is somber and melancholic. The image shows a woman in a white sari standing next to a body of water, with plants in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "running", "water flowing", "wind", "drums", "rain falling", "horses", "crowd shouting", "frogs croaking", "metal clashing"], "expressions": []} +{"timestamp_sec": 689.52, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with long dark hair, wearing a white tank top and shorts. He is sitting with his legs crossed and appears to be deep in thought. In the middle, there is a woman wearing a red saree and a white headscarf, who is holding a small bowl in her hands. The woman on the right is a man wearing a traditional Indian outfit, also wearing a headscarves. They are sitting close together and appear to be engaged in a conversation. The background is filled with trees and bushes, suggesting that they are in a natural environment. The image shows three people sitting on the ground next to each other, with one person holding an object in their hand In the background, there are trees and a watermark on the image", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs crossed and appears to be deep in thought. They are sitting close together and appear to be engaged in a conversation. The background is filled with trees and bushes, suggesting that they are in a natural environment. The image shows three people sitting on the ground next to each other, with one person holding an object in their hand In the background, there are trees and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 780.28, "raw_caption": "The image shows a group of four people sitting on the ground in a forested area. There are three people in the image, two men and two women, all dressed in traditional Indian clothing. The woman in the center is wearing a white headscarf and a red saree, while the two men on either side of her are wearing white and red sarees. The man on the left is sitting with his back to the camera, and the woman on the right is sitting next to him with her legs crossed. In front of them, there is a small animal, possibly a deer, with brown spots on its body. The background is filled with trees and bushes, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of people sitting on the ground next to each other, with a woman in the center holding an animal In the background, there are trees and a watermark on the image", "scene_text": "The image shows a group of four people sitting on the ground in a forested area. The man on the left is sitting with his back to the camera, and the woman on the right is sitting next to him with her legs crossed. In front of them, there is a small animal, possibly a deer, with brown spots on its body. The background is filled with trees and bushes, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of people sitting on the ground next to each other, with a woman in the center holding an animal In the background, there are trees and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 786.32, "raw_caption": "The image shows a man and a woman sitting on the ground in a forested area. The man is on the left side of the image, wearing a white and red traditional Indian outfit with a white headscarf. He is sitting with his back to the camera, looking down at the ground with a serious expression on his face. The woman is sitting next to him, wearing traditional Indian clothing with a red and white saree and a white shawl draped over her shoulders. She is holding a basket of flowers in her hands. The background is filled with trees and bushes, and the ground is covered in dirt. The image appears to be a still from a movie or TV show. The image shows a man and woman sitting on the ground next to each other, surrounded by trees in the background There is a watermark on the image, suggesting that it is a photo of a person", "scene_text": "The image shows a man and a woman sitting on the ground in a forested area. He is sitting with his back to the camera, looking down at the ground with a serious expression on his face. The woman is sitting next to him, wearing traditional Indian clothing with a red and white saree and a white shawl draped over her shoulders. She is holding a basket of flowers in her hands. The background is filled with trees and bushes, and the ground is covered in dirt. The image appears to be a still from a movie or TV show. The image shows a man and woman sitting on the ground next to each other, surrounded by trees in the background There is a watermark on the image, suggesting that it is a photo of a person", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 816.56, "raw_caption": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, with trees and bushes in the background. The people appear to be of different ages and ethnicities, and they are dressed in traditional clothing. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the people in the foreground. The image shows a group of people standing in the middle of a forest, surrounded by trees and a clear blue sky The image is slightly blurred, and there is a watermark in the corner", "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, with trees and bushes in the background. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the people in the foreground. The image shows a group of people standing in the middle of a forest, surrounded by trees and a clear blue sky The image is slightly blurred, and there is a watermark in the corner", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 822.6, "raw_caption": "The image shows a group of people in a rural area, with trees and bushes in the background. In the center of the image, there is a text that reads \"WAVES OTT FOR SLC\". The people in the image appear to be engaged in a physical altercation, with some of them holding hands and others throwing rocks at each other. The woman in the center is wearing a red dress, while the others are wearing traditional Indian clothing. The image appears to be taken from a low angle, looking up at the scene. The image shows a group of people dancing on the ground surrounded by trees and a clear blue sky In the center of the image, there is text that reads \"Waves Ott for SLC\"", "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the center of the image, there is a text that reads \"WAVES OTT FOR SLC\". The people in the image appear to be engaged in a physical altercation, with some of them holding hands and others throwing rocks at each other. The image appears to be taken from a low angle, looking up at the scene. The image shows a group of people dancing on the ground surrounded by trees and a clear blue sky In the center of the image, there is text that reads \"Waves Ott for SLC\"", "scene_hints": ["cattle lowing", "birds chirping", "wind rustling leaves", "footsteps on dirt", "bells", "wind", "distant music", "rustling grass", "insects buzzing", "crickets", "branch creak", "birds", "rooster crowing", "crow cawing"], "expressions": []} +{"timestamp_sec": 840.76, "raw_caption": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white kurta and has dark hair. He is smiling and looking at the woman with a slight smile on his face. The woman is wearing a red saree and has her hands clasped together in front of her. The background is blurred, but it appears to be a wooded area with trees and bushes. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a still from a Tamil movie", "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is smiling and looking at the woman with a slight smile on his face. The background is blurred, but it appears to be a wooded area with trees and bushes. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a still from a Tamil movie", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": ["smiling"]} +{"timestamp_sec": 846.8, "raw_caption": "The image is a still from a Bollywood movie. It shows a man and a woman in traditional Indian attire. The man is on the left side of the image, wearing a white saree and has a serious expression on his face. He is looking at the woman with a slight smile on his lips. The woman is wearing a red saree with a gold border and has her hair tied up in a bun. She is also wearing a gold necklace and earrings. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman standing next to each other in front of a backdrop of trees The man is wearing a white and red dress, while the woman is wearing an unknown color There is a watermark in the middle of the image, suggesting that it is a still from a Bollywood movie", "scene_text": "The image is a still from a Bollywood movie. The man is on the left side of the image, wearing a white saree and has a serious expression on his face. He is looking at the woman with a slight smile on his lips. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman standing next to each other in front of a backdrop of trees The man is wearing a white and red dress, while the woman is wearing an unknown color There is a watermark in the middle of the image, suggesting that it is a still from a Bollywood movie", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 852.84, "raw_caption": "The image is a still from a Bollywood movie. It shows a man and a woman sitting side by side, with the man on the left wearing a white saree and the woman on the right wearing a red saree. They are both looking at the camera with serious expressions on their faces. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a man and woman sitting next to each other in front of a tree, with a watermark in the background The man has a human face and is wearing a white and red dress", "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman sitting side by side, with the man on the left wearing a white saree and the woman on the right wearing a red saree. They are both looking at the camera with serious expressions on their faces. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a man and woman sitting next to each other in front of a tree, with a watermark in the background The man has a human face and is wearing a white and red dress", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 858.88, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white saree and has dark hair. He is looking down at the woman with a slight smile on his face. The woman is wearing a red saree with a gold border and has her hair tied up in a bun. She is also wearing a gold necklace and earrings. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves off for SLC\". The image shows a man and a woman in a red sari embracing each other in the foreground, with trees in the background and a watermark on the image", "scene_text": "The image shows a man and a woman in a romantic embrace. He is looking down at the woman with a slight smile on his face. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves off for SLC\"", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 864.96, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white saree and has dark hair. He is looking down at the woman with a slight smile on his face. The woman is wearing a red saree with a gold border and has her hair tied up in a bun. She is also wearing a gold necklace and earrings. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves out for SLC\". The image shows a man and a woman in a red sari standing next to each other, with trees in the background and a watermark on the image", "scene_text": "The image shows a man and a woman in a romantic embrace. He is looking down at the woman with a slight smile on his face. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves out for SLC\". The image shows a man and a woman in a red sari standing next to each other, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 871.0, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white kurta and has long black hair. He is smiling and appears to be in a good mood. The woman on the right side is wearing a red saree and has her arms around the man's neck. They are standing in a wooded area with trees and bushes in the background. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a scene from a Tamil movie", "scene_text": "The image shows a man and a woman in a romantic embrace. He is smiling and appears to be in a good mood. They are standing in a wooded area with trees and bushes in the background. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a scene from a Tamil movie", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": ["smiling"]} +{"timestamp_sec": 883.08, "raw_caption": "The image is a photograph of a sunset over a field of tall grass and palm trees. The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right corner. The palm trees are silhouetted against the sky, creating a contrast of light and shadow. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the photograph is peaceful and serene. The image shows a beautiful sunset with a few palm trees in the foreground and a watermark in the middle The sky is a mix of vibrant oranges, pinks, and purples, and the sun is setting in the background, casting a warm glow over the scene", "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right corner. The palm trees are silhouetted against the sky, creating a contrast of light and shadow. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the photograph is peaceful and serene. The image shows a beautiful sunset with a few palm trees in the foreground and a watermark in the middle The sky is a mix of vibrant oranges, pinks, and purples, and the sun is setting in the background, casting a warm glow over the scene", "scene_hints": ["wind rustling leaves", "crowd shouting", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "rain falling", "horses", "rustling grass", "insects buzzing", "running", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 895.2, "raw_caption": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is overcast and the overall mood of the image is somber. The people in the image appear to be walking away from the camera, with some of them carrying bags or backpacks. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_text": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is overcast and the overall mood of the image is somber. The people in the image appear to be walking away from the camera, with some of them carrying bags or backpacks. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 901.24, "raw_caption": "The image shows a group of people walking through a field of tall grass. The sky is overcast and there are trees in the background. The people appear to be walking in a line, with some of them carrying bags or backpacks. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the image is somber and desolate. The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and there are trees in the background. The people appear to be walking in a line, with some of them carrying bags or backpacks. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the image is somber and desolate. The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 973.84, "raw_caption": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman, standing in a field of tall grass and bushes. The man is holding a baby in his arms and the woman is standing next to him. They appear to be looking at the baby with a concerned expression on their faces. The background is blurred, but it appears to be a wooded area with trees and bushes in the distance. The title of the video is written in white text across the image. The image shows two people standing in a grassy area surrounded by plants and trees, with a watermark in the background The image is slightly blurred, giving it a dreamy, ethereal feel", "scene_text": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman, standing in a field of tall grass and bushes. The man is holding a baby in his arms and the woman is standing next to him. They appear to be looking at the baby with a concerned expression on their faces. The background is blurred, but it appears to be a wooded area with trees and bushes in the distance. The title of the video is written in white text across the image. The image shows two people standing in a grassy area surrounded by plants and trees, with a watermark in the background The image is slightly blurred, giving it a dreamy, ethereal feel", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": ["concerned"]} +{"timestamp_sec": 985.92, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is wearing a white robe and has a tattoo on his left arm. He is holding a white cloth in his right hand and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. He is holding a white cloth in his right hand and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 991.96, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a baby in his arms and appears to be kissing the other man's forehead. Both men are wearing traditional Indian clothing, with the man on on the right wearing a white saree and a gold necklace. The background shows a mountain range and a clear blue sky. The image is captioned \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a baby in his arms The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a baby in his arms and appears to be kissing the other man's forehead. The background shows a mountain range and a clear blue sky. The image is captioned \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a baby in his arms The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 998.0, "raw_caption": "The image shows two men standing in a field with a hill in the background. The man on the left is wearing a white saree and has a tattoo on his forehead. He is holding a white cloth in his hands and appears to be comforting the other man. Both men have serious expressions on their faces. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills and a clear blue sky There is also a watermark on the image, suggesting that it is a photo frame", "scene_text": "The image shows two men standing in a field with a hill in the background. Both men have serious expressions on their faces. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills and a clear blue sky There is also a watermark on the image, suggesting that it is a photo frame", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1004.08, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has a white face paint on his forehead. He is looking at the other man with a serious expression. On the right side of the image, there is a young man with dark hair and a white tank top, who is holding a large white object in his hands. He appears to be looking at him with a concerned expression. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two people standing in a grassy field with plants and trees in the background and a hill in the distance The sky is visible at the top of the image and there is a watermark with the words \"waves ott for slc\" written on it", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has a white face paint on his forehead. He is looking at the other man with a serious expression. He appears to be looking at him with a concerned expression. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two people standing in a grassy field with plants and trees in the background and a hill in the distance The sky is visible at the top of the image and there is a watermark with the words \"waves ott for slc\" written on it", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": ["concerned"]} +{"timestamp_sec": 1010.12, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The image appears to be a still from a movie or TV show. The image shows two people standing in a grassy field with trees and hills in the background and a clear blue sky above One of the people is holding a piece of paper with the words \"Waves Ott for SLC\" written on it", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The image appears to be a still from a movie or TV show. The image shows two people standing in a grassy field with trees and hills in the background and a clear blue sky above One of the people is holding a piece of paper with the words \"Waves Ott for SLC\" written on it", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1016.16, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1022.2, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a large piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a large piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1028.28, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1034.32, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and appears to be looking at the other man with a serious expression on his face. He is holding a large piece of paper in his hands and is looking at it intently. On the right side of the image, there is another man with curly hair and a white shirt, who is also holding the paper. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and appears to be looking at the other man with a serious expression on his face. He is holding a large piece of paper in his hands and is looking at it intently. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1040.36, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is wearing a white tank top and has a tribal headdress on his head. He is holding a large white bag in his hands and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. He is holding a large white bag in his hands and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1046.4, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a small white object in his hand and appears to be looking at the other man with a serious expression on his face. Both men are wearing traditional Indian clothing, with the man on on the right wearing a white saree and the man in the middle wearing a black turban. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a small white object in his hand and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1052.44, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a large white bag with the words \"WAVES OFF FOR SLC\" written on it. He is wearing a white tank top and has a tattoo on his left arm. The other man is standing next to him and appears to be looking at him with a serious expression on his face. Both men are wearing traditional Indian clothing and jewelry. The sky is blue and the overall mood of the image is somber. The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a large white bag with the words \"WAVES OFF FOR SLC\" written on it. The other man is standing next to him and appears to be looking at him with a serious expression on his face. The sky is blue and the overall mood of the image is somber. The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1094.8, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. There are six people in the image, all wearing orange robes, and they appear to be engaged in a conversation. In the center of the group, there is a man wearing a white robe and a hat, who is sitting on a rock. He is holding a white cloth in his hands. To his left, there are two cows, one brown and one white, grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people and the animals. The image shows a group of people sitting around each other in the woods, surrounded by trees and animals In the center of the image there is some text", "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the group, there is a man wearing a white robe and a hat, who is sitting on a rock. To his left, there are two cows, one brown and one white, grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people and the animals. The image shows a group of people sitting around each other in the woods, surrounded by trees and animals In the center of the image there is some text", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1100.84, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. There are six people in the image, all wearing white robes and orange robes. They are sitting in a circle, facing each other and appear to be engaged in a conversation. In the center of the circle, there is a person wearing a white robe and holding a book or a pen. To the right of the person in the orange robe, there are two cows grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people. The image shows a group of people sitting around a table in the woods, surrounded by trees and an animal in the background There is a watermark on the image, giving it a unique look", "scene_text": "The image shows a group of people sitting on the ground in a forested area. They are sitting in a circle, facing each other and appear to be engaged in a conversation. To the right of the person in the orange robe, there are two cows grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people. The image shows a group of people sitting around a table in the woods, surrounded by trees and an animal in the background There is a watermark on the image, giving it a unique look", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1106.88, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. There are nine people in the image, all wearing white robes and sitting in a circle around a small table. The table appears to be made of wood and is covered with a white cloth. The people are engaged in a conversation, with some sitting and others standing. The background is filled with trees and bushes, and the ground is covered in dirt. The image is taken from a low angle, looking up at the people and the table. There is a watermark in the center of the image that reads \"WAVES OF FOR SIC\". The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_text": "The image shows a group of people sitting on the ground in a forested area. There are nine people in the image, all wearing white robes and sitting in a circle around a small table. The people are engaged in a conversation, with some sitting and others standing. The background is filled with trees and bushes, and the ground is covered in dirt. The image is taken from a low angle, looking up at the people and the table. There is a watermark in the center of the image that reads \"WAVES OF FOR SIC\". The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1112.96, "raw_caption": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. There are six people in the image, all wearing orange robes, and they appear to be engaged in a conversation. The structure appears to be made of wood and is supported by two wooden poles. In the background, there are trees and bushes, and a person can be seen walking on the left side of the image. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy quality. The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_text": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. The structure appears to be made of wood and is supported by two wooden poles. In the background, there are trees and bushes, and a person can be seen walking on the left side of the image. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy quality. The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1119.0, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. They are all wearing traditional Indian clothing, with some wearing orange robes and others wearing white robes. In the center of the image, there is a man wearing a white robe and a headscarf, who appears to be a religious figure. He is sitting on a rock and is holding a book in his hands. Around him, there are several other people, some of whom are sitting and some are standing. There are trees and bushes in the background, and a cow can be seen in the distance. The image appears to have been taken from a low angle, looking up at the group. The image shows a group of people sitting on the ground in front of a tree, surrounded by other trees and plants In the center of the image, there is some text visible", "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock and is holding a book in his hands. Around him, there are several other people, some of whom are sitting and some are standing. There are trees and bushes in the background, and a cow can be seen in the distance. The image appears to have been taken from a low angle, looking up at the group. The image shows a group of people sitting on the ground in front of a tree, surrounded by other trees and plants In the center of the image, there is some text visible", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1125.04, "raw_caption": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. There are nine people in the image, all wearing orange robes, and they appear to be engaged in a conversation. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The people are sitting in a circle, with some standing and others sitting. They are all facing the same direction, and some are holding hands. The image appears to be taken from a low angle, and the overall mood of the image is peaceful and contemplative. The image shows a group of people sitting around a table in the woods, surrounded by trees and poles In the center of the image, there is a watermark", "scene_text": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The people are sitting in a circle, with some standing and others sitting. They are all facing the same direction, and some are holding hands. The image appears to be taken from a low angle, and the overall mood of the image is peaceful and contemplative. The image shows a group of people sitting around a table in the woods, surrounded by trees and poles In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1131.08, "raw_caption": "The image shows a group of people sitting under a wooden structure in a forested area. There are six people in the image, all wearing white robes and sitting on the ground. They appear to be engaged in a conversation, with some of them sitting on a bench and others standing. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The image appears to be taken from a low angle, looking up at the people and the structure. There is a watermark on the image that reads \"WAVES OF FOR SLC\". The image shows a group of people sitting on the ground in front of a hut, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of people sitting under a wooden structure in a forested area. There are six people in the image, all wearing white robes and sitting on the ground. They appear to be engaged in a conversation, with some of them sitting on a bench and others standing. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The image appears to be taken from a low angle, looking up at the people and the structure. There is a watermark on the image that reads \"WAVES OF FOR SLC\". The image shows a group of people sitting on the ground in front of a hut, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1143.2, "raw_caption": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing in front of a tree. The woman in the saree is holding her hands together in a prayer-like gesture, while the other woman is looking at her with a concerned expression. The background is blurred, but it appears to be an outdoor setting with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women, one wearing a red dress and the other wearing a white dress, standing in front of a backdrop of trees with a watermark in the middle", "scene_text": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing in front of a tree. The woman in the saree is holding her hands together in a prayer-like gesture, while the other woman is looking at her with a concerned expression. The background is blurred, but it appears to be an outdoor setting with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women, one wearing a red dress and the other wearing a white dress, standing in front of a backdrop of trees with a watermark in the middle", "scene_hints": ["wind rustling leaves", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crowd murmur", "crickets", "bells ringing", "rain falling", "rustling grass", "insects buzzing", "chanting", "birds", "music", "birds chirping", "crow cawing"], "expressions": ["concerned"]} +{"timestamp_sec": 1167.4, "raw_caption": "The image is a still from a movie or TV show. It shows two women, one wearing a white headscarf and the other wearing a red saree, sitting in front of a brown cow. The woman in the saree appears to be upset or upset, with her eyes wide open and her mouth slightly open. The cow is standing behind them, with its head turned to the side. The background is blurred, but it seems to be a wooded area with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women sitting next to each other in front of a cow, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows two women, one wearing a white headscarf and the other wearing a red saree, sitting in front of a brown cow. The woman in the saree appears to be upset or upset, with her eyes wide open and her mouth slightly open. The cow is standing behind them, with its head turned to the side. The background is blurred, but it seems to be a wooded area with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women sitting next to each other in front of a cow, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1179.48, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1185.52, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is covering her head and shoulders. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1191.56, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is covering her head and shoulders. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1203.68, "raw_caption": "The image is a still from a movie or TV show. It shows a young man with dark hair, wearing a white tank top and a gold chain necklace. He has a tattoo on his chest that reads \"WAVES OTT FOR SLC\". He is standing in front of a tree trunk and there is a large clay pot in the background. The man appears to be looking off to the side with a serious expression on his face. The image shows a man with a tattoo on his chest standing in front of a tree trunk with a pot beside him and trees in the background The text on the image reads \"Waves Ott for SLC\"", "scene_text": "The image is a still from a movie or TV show. He has a tattoo on his chest that reads \"WAVES OTT FOR SLC\". He is standing in front of a tree trunk and there is a large clay pot in the background. The man appears to be looking off to the side with a serious expression on his face. The image shows a man with a tattoo on his chest standing in front of a tree trunk with a pot beside him and trees in the background The text on the image reads \"Waves Ott for SLC\"", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "crickets chirping", "distant music", "wind", "rustling grass", "crackling fire", "night insects", "insects buzzing", "crickets", "branch creak", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1215.76, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf and a white shawl. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1221.8, "raw_caption": "The image is a still from a movie or TV show. It shows a young woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late twenties or early thirties, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white headscarf standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows a young woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late twenties or early thirties, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white headscarf standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1227.88, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is covering her head and shoulders. She appears to be in a rural area, with trees and bushes in the background. The woman is looking directly at the camera with a serious expression on her face. In the center of the image, there is text that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in a rural area, with trees and bushes in the background. The woman is looking directly at the camera with a serious expression on her face. In the center of the image, there is text that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1233.92, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is a traditional Indian garment. She is standing in front of a brown cow, and there are trees and bushes in the background. The woman appears to be looking off to the side with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She is standing in front of a brown cow, and there are trees and bushes in the background. The woman appears to be looking off to the side with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1246.0, "raw_caption": "The image shows a group of four people sitting on the ground in a rural area. They are dressed in traditional Indian clothing, with the woman in the center wearing a white saree and the two women on either side wearing white sarees. The woman on the left is holding a bowl of food, while the woman next to her is wearing a red saree. In the background, there is a cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken from a low angle, looking up at the cow. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four people sitting on the ground in a rural area. In the background, there is a cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken from a low angle, looking up at the cow. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1252.08, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are dressed in traditional Indian clothing, with white sarees and red blouses. The woman in the center is wearing a white headscarf and is holding a small bowl in her hand. To her left, there is a woman wearing a blue saree and a white blouse, and to her right, there are two women wearing red sarees. In the background, a brown cow can be seen grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, a brown cow can be seen grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1258.12, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are all wearing traditional Indian clothing, with the woman in the center wearing a white saree and a white headscarf. The woman on the left is holding a small bowl in her hand, while the woman next to her is wearing a red saree. In the background, there is a brown cow grazing on the grass. The women appear to be engaged in a conversation, with one of them gesturing with her hands as if she is explaining something to the other two. The ground is covered in dirt and there are trees and bushes in the background. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, there is a brown cow grazing on the grass. The women appear to be engaged in a conversation, with one of them gesturing with her hands as if she is explaining something to the other two. The ground is covered in dirt and there are trees and bushes in the background. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1264.16, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are dressed in traditional Indian clothing, with white sarees and red blouses. The woman in the center is wearing a white headscarf and is holding a small bowl in her hand. To her left, there is a woman wearing a blue saree and holding a red bowl. Next to her, there are two other women, one wearing a red saree, and the other wearing a black saree. In the background, a brown cow can be seen grazing on the grass. The scene appears to be peaceful and serene. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, a brown cow can be seen grazing on the grass. The scene appears to be peaceful and serene. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1270.2, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are all wearing traditional Indian clothing, with the woman in the center wearing a white saree and a white headscarf. The woman on the left is holding a bowl of food, while the woman next to her is wearing a red saree. In the background, there is a brown cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, there is a brown cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1276.24, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are all wearing traditional Indian clothing, with the woman on the left wearing a white saree and the woman in the middle wearing a red saree. The cow in the background is brown and appears to be grazing on the grass. The women are engaged in a conversation, with one woman holding a book and the other two looking at the cow. The ground is covered in dirt and there are trees and bushes surrounding them. The image appears to have been taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. The cow in the background is brown and appears to be grazing on the grass. The women are engaged in a conversation, with one woman holding a book and the other two looking at the cow. The ground is covered in dirt and there are trees and bushes surrounding them. The image appears to have been taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1324.64, "raw_caption": "The image is a still from a video. It shows a dirt path winding through a tropical garden with tall palm trees and other plants. On the left side of the path, there is a small hut with a thatched roof. In the center of the image, there are two people, one wearing a white dress and the other wearing a red dress. They appear to be walking towards the hut. The text \"WAVES OTT FOR SLC\" is overlaid on the image. The image shows a group of people standing in the middle of a dirt road surrounded by trees and plants, with a watermark in the background", "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatched roof. They appear to be walking towards the hut. The text \"WAVES OTT FOR SLC\" is overlaid on the image. The image shows a group of people standing in the middle of a dirt road surrounded by trees and plants, with a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "crowd shouting", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "bells", "distant music", "rain falling", "horses", "rustling grass", "insects buzzing", "birds", "running", "birds chirping", "crow cawing"], "expressions": []} diff --git a/results_v16/Bharat_Ek_Khoj_Ep_016_full/results.json b/results_v16/Bharat_Ek_Khoj_Ep_016_full/results.json new file mode 100755 index 0000000..55ca5b5 --- /dev/null +++ b/results_v16/Bharat_Ek_Khoj_Ep_016_full/results.json @@ -0,0 +1,835 @@ +{ + "caption_segments": 82, + "timeline": [ + { + "start_sec": 0.0, + "end_sec": 2.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "environmental noise", + "bird" + ], + "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Per" + }, + { + "start_sec": 2.6, + "end_sec": 6.4, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird" + ], + "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Per" + }, + { + "start_sec": 35.0, + "end_sec": 40.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "" + }, + { + "start_sec": 41.0, + "end_sec": 44.8, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "animal", + "environmental noise" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 45.2, + "end_sec": 47.2, + "caption": "[कीड़ों की आवाज़]", + "families": [ + "environmental noise", + "insect" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 49.8, + "end_sec": 51.6, + "caption": "[पत्तों की सरसराहट]", + "families": [ + "environmental noise" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 52.0, + "end_sec": 55.67, + "caption": "[जानवर की आवाज़]", + "families": [ + "rodents, rats, mice", + "environmental noise", + "turkey" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 78.0, + "end_sec": 83.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "animal", + "environmental noise" + ], + "scene_text": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. They ar" + }, + { + "start_sec": 94.8, + "end_sec": 98.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "crow", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 99.0, + "end_sec": 102.4, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "animal", + "bird", + "mechanisms" + ], + "scene_text": "" + }, + { + "start_sec": 198.6, + "end_sec": 211.0, + "caption": "[तबला-सितार के साथ संगीत]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 211.4, + "end_sec": 214.65, + "caption": "[तबला-सितार के साथ संगीत]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 223.4, + "end_sec": 225.8, + "caption": "[तबला-सितार के साथ संगीत]", + "families": [ + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 226.2, + "end_sec": 228.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 229.0, + "end_sec": 237.2, + "caption": "[तबला-सितार के साथ संगीत]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 237.6, + "end_sec": 246.04, + "caption": "[तबला-सितार के साथ संगीत]", + "families": [ + "music", + "tabla", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 250.0, + "end_sec": 252.4, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 252.8, + "end_sec": 254.36, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 258.4, + "end_sec": 266.2, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "crow", + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 266.8, + "end_sec": 272.15, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 274.4, + "end_sec": 277.08, + "caption": "[हल्की हँसी]", + "families": [ + "laugh_soft", + "bird", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 293.2, + "end_sec": 294.62, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 355.2, + "end_sec": 359.0, + "caption": "[जानवर की आवाज़]", + "families": [ + "howl", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 386.2, + "end_sec": 388.4, + "caption": "[संगीत]", + "families": [ + "wind", + "music", + "insect" + ], + "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with hi" + }, + { + "start_sec": 391.6, + "end_sec": 395.03, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar", + "bird" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 399.6, + "end_sec": 401.6, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 402.0, + "end_sec": 408.0, + "caption": "[सितार-तबला के साथ संगीत]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 593.4, + "end_sec": 596.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 597.2, + "end_sec": 599.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 599.6, + "end_sec": 601.02, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 603.6, + "end_sec": 607.4, + "caption": "[सितार-तबला के साथ संगीत]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 608.0, + "end_sec": 610.94, + "caption": "[सितार-तबला के साथ संगीत]", + "families": [ + "music", + "sitar", + "tabla" + ], + "scene_text": "The image shows a group of three people standing in a field of tall grass. They appear to be engaged" + }, + { + "start_sec": 616.4, + "end_sec": 625.4, + "caption": "[संगीत के साथ सितार]", + "families": [ + "music", + "sitar", + "animal" + ], + "scene_text": "The image shows three women standing in a field of tall grass. They appear to be in a peaceful and s" + }, + { + "start_sec": 627.4, + "end_sec": 628.86, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird" + ], + "scene_text": "The image shows two men standing on a rocky shore near a body of water. The man in the saree is hold" + }, + { + "start_sec": 664.0, + "end_sec": 673.2, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "animal", + "bird", + "squawk" + ], + "scene_text": "" + }, + { + "start_sec": 691.0, + "end_sec": 692.76, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs cro" + }, + { + "start_sec": 755.4, + "end_sec": 770.6, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 771.0, + "end_sec": 776.4, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of four people sitting on the ground in a forested area. The man on the left" + }, + { + "start_sec": 793.6, + "end_sec": 796.2, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 797.0, + "end_sec": 812.8, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 813.4, + "end_sec": 817.0, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 818.8, + "end_sec": 822.2, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 823.8, + "end_sec": 829.8, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the c" + }, + { + "start_sec": 831.0, + "end_sec": 834.6, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 835.0, + "end_sec": 836.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is" + }, + { + "start_sec": 841.8, + "end_sec": 843.8, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is" + }, + { + "start_sec": 872.6, + "end_sec": 876.4, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "insect", + "cricket", + "bird" + ], + "scene_text": "The image shows a man and a woman in a romantic embrace. He is smiling and appears to be in a good m" + }, + { + "start_sec": 876.8, + "end_sec": 886.2, + "caption": "[संगीत]", + "families": [ + "music", + "animal", + "bird" + ], + "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right cor" + }, + { + "start_sec": 886.6, + "end_sec": 888.4, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right cor" + }, + { + "start_sec": 889.2, + "end_sec": 895.2, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra", + "tabla" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is o" + }, + { + "start_sec": 896.8, + "end_sec": 903.8, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra", + "sitar" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and the" + }, + { + "start_sec": 904.4, + "end_sec": 909.4, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra", + "chant" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and the" + }, + { + "start_sec": 910.8, + "end_sec": 914.6, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 917.0, + "end_sec": 922.2, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 923.6, + "end_sec": 929.0, + "caption": "[संगीत के साथ तबला]", + "families": [ + "music", + "gargling", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 930.0, + "end_sec": 931.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 932.4, + "end_sec": 934.8, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 936.8, + "end_sec": 946.8, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "chant", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 948.8, + "end_sec": 952.6, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 953.0, + "end_sec": 956.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 958.8, + "end_sec": 965.98, + "caption": "[मंत्रों का उच्चारण]", + "families": [ + "music", + "mantra", + "sitar" + ], + "scene_text": "" + }, + { + "start_sec": 970.0, + "end_sec": 975.8, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird", + "insect", + "environmental noise" + ], + "scene_text": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman" + }, + { + "start_sec": 1059.8, + "end_sec": 1061.6, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal" + ], + "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on" + }, + { + "start_sec": 1062.0, + "end_sec": 1065.8, + "caption": "[हल्की थपथपाहट जैसी आवाज़ है]", + "families": [ + "squish", + "animal", + "patter" + ], + "scene_text": "" + }, + { + "start_sec": 1068.4, + "end_sec": 1071.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "hoot", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1073.2, + "end_sec": 1076.4, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal", + "moo", + "clip-clop" + ], + "scene_text": "" + }, + { + "start_sec": 1078.6, + "end_sec": 1083.6, + "caption": "[जानवर की आवाज़]", + "families": [ + "moo", + "animal", + "whale vocalization" + ], + "scene_text": "" + }, + { + "start_sec": 1091.8, + "end_sec": 1093.6, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the gro" + }, + { + "start_sec": 1102.2, + "end_sec": 1105.8, + "caption": "[हल्की थपथपाहट जैसी आवाज़ है]", + "families": [ + "animal", + "rodents, rats, mice", + "patter" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. They are sitting in a ci" + }, + { + "start_sec": 1116.2, + "end_sec": 1118.0, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock " + }, + { + "start_sec": 1118.8, + "end_sec": 1120.6, + "caption": "[पानी बहने की आवाज़]", + "families": [ + "water" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock " + }, + { + "start_sec": 1146.0, + "end_sec": 1147.8, + "caption": "[पक्षियों की चहचहाहट]", + "families": [ + "bird" + ], + "scene_text": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing" + }, + { + "start_sec": 1278.4, + "end_sec": 1281.8, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "The image shows a group of four women sitting on the ground in a rural area. The cow in the backgrou" + }, + { + "start_sec": 1283.2, + "end_sec": 1293.69, + "caption": "[संगीत]", + "families": [ + "music", + "wind" + ], + "scene_text": "" + }, + { + "start_sec": 1301.4, + "end_sec": 1303.39, + "caption": "[संगीत]", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 1307.4, + "end_sec": 1310.4, + "caption": "[जानवर की आवाज़]", + "families": [ + "theremin", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1313.4, + "end_sec": 1321.0, + "caption": "[संगीत]", + "families": [ + "music", + "animal", + "theremin" + ], + "scene_text": "" + }, + { + "start_sec": 1321.6, + "end_sec": 1330.4, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal", + "moo", + "roar" + ], + "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatche" + }, + { + "start_sec": 1332.0, + "end_sec": 1333.63, + "caption": "[हल्की थपथपाहट जैसी आवाज़ है]", + "families": [ + "patter" + ], + "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatche" + }, + { + "start_sec": 1346.2, + "end_sec": 1349.63, + "caption": "[सीटी और जानवर की आवाज़]", + "families": [ + "rodents, rats, mice", + "whistling", + "roar" + ], + "scene_text": "" + }, + { + "start_sec": 1351.4, + "end_sec": 1353.2, + "caption": "[जानवर की आवाज़]", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1353.6, + "end_sec": 1357.69, + "caption": "[संगीत के साथ सितार]", + "families": [ + "sitar", + "music" + ], + "scene_text": "" + } + ], + "raw_events": 2542, + "deduped_events": 330, + "speech_segments": 156 +} \ No newline at end of file diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full.log b/results_v3/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full.log new file mode 100644 index 0000000..14a97f0 --- /dev/null +++ b/results_v3/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full.log @@ -0,0 +1,22555 @@ +2026-06-25 18:07:55,799 | INFO | ====================================================================== +2026-06-25 18:07:55,799 | INFO | PROCESSING: Bharat_Ek_Khoj_Ep_016_full (v4 — pyannote + GPT-4o-mini) +2026-06-25 18:07:55,799 | INFO | ====================================================================== +2026-06-25 18:08:33,705 | INFO | Loaded 103 vision entries. +2026-06-25 18:08:47,146 | INFO | [0.0s] palette top-5: ['Music of Bollywood', 'Music of Asia', 'Mantra', 'Chorus effect', 'Background music'] | expr=[] +2026-06-25 18:08:47,184 | INFO | [18.1s] palette top-5: ['Wind chime', 'Waves, surf', 'Rustling leaves', 'Wind', 'Chirp tone'] | expr=[] +2026-06-25 18:08:47,220 | INFO | [48.4s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Sound effect', 'Rustling leaves'] | expr=[] +2026-06-25 18:08:47,250 | INFO | [66.5s] palette top-5: ['Waves, surf', 'Wind chime', 'Clatter', 'Rain', 'Wind'] | expr=[] +2026-06-25 18:08:47,288 | INFO | [72.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Buzz', 'Waterfall'] | expr=[] +2026-06-25 18:08:47,331 | INFO | [78.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Insect', 'Environmental noise'] | expr=[] +2026-06-25 18:08:47,372 | INFO | [108.8s] palette top-5: ['Wind chime', 'Rustling leaves', 'Wind', 'Waves, surf', 'Environmental noise'] | expr=[] +2026-06-25 18:08:47,416 | INFO | [114.9s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'White noise', 'Rustling leaves'] | expr=[] +2026-06-25 18:08:47,461 | INFO | [121.0s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Environmental noise', 'Rustling leaves'] | expr=[] +2026-06-25 18:08:47,490 | INFO | [145.2s] palette top-5: ['Wind chime', 'Chirp tone', 'Waves, surf', 'Honk', 'Howl'] | expr=[] +2026-06-25 18:08:47,522 | INFO | [157.2s] palette top-5: ['Wind chime', 'White noise', 'Waves, surf', 'Wind', 'Civil defense siren'] | expr=[] +2026-06-25 18:08:47,555 | INFO | [163.3s] palette top-5: ['Wind chime', 'Waves, surf', 'Civil defense siren', 'Wind', 'White noise'] | expr=[] +2026-06-25 18:08:47,588 | INFO | [169.4s] palette top-5: ['Wind chime', 'Mosquito', 'Camera', 'Bird', 'White noise'] | expr=[] +2026-06-25 18:08:47,622 | INFO | [181.4s] palette top-5: ['Wind chime', 'Howl', 'Chirp tone', 'Waves, surf', 'Crow'] | expr=[] +2026-06-25 18:08:47,658 | INFO | [326.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Chirp tone', 'Wind', 'Sound effect'] | expr=['smiling'] +2026-06-25 18:08:47,693 | INFO | [332.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Waterfall', 'Sound effect'] | expr=[] +2026-06-25 18:08:47,729 | INFO | [369.0s] palette top-5: ['Wind chime', 'White noise', 'Wind', 'Clatter', 'Insect'] | expr=[] +2026-06-25 18:08:47,763 | INFO | [375.0s] palette top-5: ['Wind chime', 'Wind', 'Owl', 'Insect', 'Environmental noise'] | expr=[] +2026-06-25 18:08:47,801 | INFO | [381.0s] palette top-5: ['Wind chime', 'Insect', 'Wind', 'Bird', 'Mosquito'] | expr=[] +2026-06-25 18:08:47,843 | INFO | [387.1s] palette top-5: ['Wind chime', 'Environmental noise', 'Wind', 'Insect', 'Rustling leaves'] | expr=[] +2026-06-25 18:08:47,880 | INFO | [399.2s] palette top-5: ['White noise', 'Walk, footsteps', 'Wind chime', 'Rustling leaves', 'Wind'] | expr=[] +2026-06-25 18:08:47,918 | INFO | [417.4s] palette top-5: ['Wind chime', 'Bird', 'Camera', 'Wind', 'Crowd'] | expr=[] +2026-06-25 18:08:47,950 | INFO | [429.4s] palette top-5: ['Waves, surf', 'Wind chime', 'Wind', 'White noise', 'Fly, housefly'] | expr=[] +2026-06-25 18:08:47,980 | INFO | [435.5s] palette top-5: ['Waves, surf', 'Wind chime', 'Field recording', 'Wind', 'Clatter'] | expr=[] +2026-06-25 18:08:48,012 | INFO | [441.5s] palette top-5: ['Waves, surf', 'Waterfall', 'Crowd', 'Clatter', 'Rain'] | expr=[] +2026-06-25 18:08:48,048 | INFO | [447.6s] palette top-5: ['Wind chime', 'Wind', 'Rain', 'Waterfall', 'White noise'] | expr=[] +2026-06-25 18:08:48,072 | INFO | [453.6s] palette top-5: ['Waterfall', 'Waves, surf', 'Crowd', 'Clatter', 'Rain'] | expr=[] +2026-06-25 18:08:48,109 | INFO | [459.7s] palette top-5: ['Waterfall', 'Wind chime', 'White noise', 'Crowd', 'Rain'] | expr=[] +2026-06-25 18:08:48,147 | INFO | [465.7s] palette top-5: ['Crowd', 'Waterfall', 'Waves, surf', 'Wind', 'Wind chime'] | expr=[] +2026-06-25 18:08:48,182 | INFO | [471.8s] palette top-5: ['Waterfall', 'Crowd', 'White noise', 'Wind chime', 'Clatter'] | expr=[] +2026-06-25 18:08:48,224 | INFO | [477.8s] palette top-5: ['Wind chime', 'Crowd', 'Wind', 'Clatter', 'Bird vocalization, bird call, bird song'] | expr=[] +2026-06-25 18:08:48,264 | INFO | [483.9s] palette top-5: ['Wind chime', 'Bird vocalization, bird call, bird song', 'White noise', 'Wind noise (microphone)', 'Crowd'] | expr=[] +2026-06-25 18:08:48,300 | INFO | [489.9s] palette top-5: ['White noise', 'Wind chime', 'Bird vocalization, bird call, bird song', 'Wind noise (microphone)', 'Crowd'] | expr=[] +2026-06-25 18:08:48,334 | INFO | [496.0s] palette top-5: ['Wind noise (microphone)', 'White noise', 'Bird vocalization, bird call, bird song', 'Wind chime', 'Waterfall'] | expr=[] +2026-06-25 18:08:48,370 | INFO | [514.1s] palette top-5: ['Wind chime', 'Wind', 'Insect', 'Crowd', 'Clatter'] | expr=[] +2026-06-25 18:08:48,402 | INFO | [520.2s] palette top-5: ['Wind chime', 'White noise', 'Crowd', 'Wind', 'Clatter'] | expr=[] +2026-06-25 18:08:48,434 | INFO | [526.2s] palette top-5: ['Wind chime', 'White noise', 'Wind', 'Waves, surf', 'Crowd'] | expr=[] +2026-06-25 18:08:48,467 | INFO | [532.3s] palette top-5: ['Wind chime', 'Clatter', 'Waves, surf', 'Wind', 'Crowd'] | expr=[] +2026-06-25 18:08:48,502 | INFO | [538.3s] palette top-5: ['Wind chime', 'Wind', 'Bird vocalization, bird call, bird song', 'Rain', 'Crowd'] | expr=[] +2026-06-25 18:08:48,532 | INFO | [544.4s] palette top-5: ['Wind chime', 'Waves, surf', 'White noise', 'Clatter', 'Wind'] | expr=[] +2026-06-25 18:08:48,572 | INFO | [550.4s] palette top-5: ['Wind chime', 'Crowd', 'Waves, surf', 'Wind', 'Clatter'] | expr=[] +2026-06-25 18:08:48,604 | INFO | [556.5s] palette top-5: ['Wind chime', 'Wind', 'White noise', 'Waves, surf', 'Rain'] | expr=[] +2026-06-25 18:08:48,642 | INFO | [574.6s] palette top-5: ['Wind chime', 'Wind', 'Bird', 'Fly, housefly', 'Mosquito'] | expr=[] +2026-06-25 18:08:48,688 | INFO | [580.6s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Chirp tone', 'White noise'] | expr=[] +2026-06-25 18:08:48,722 | INFO | [598.8s] palette top-5: ['White noise', 'Wind chime', 'Raindrop', 'Walk, footsteps', 'Rain'] | expr=[] +2026-06-25 18:08:48,760 | INFO | [610.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Chirp tone', 'Insect'] | expr=[] +2026-06-25 18:08:48,797 | INFO | [617.0s] palette top-5: ['Wind chime', 'Waterfall', 'Wild animals', 'Rain', 'Bee, wasp, etc.'] | expr=[] +2026-06-25 18:08:48,835 | INFO | [629.0s] palette top-5: ['Waves, surf', 'Wind chime', 'Wind', 'Rain', 'Water'] | expr=[] +2026-06-25 18:08:48,868 | INFO | [641.2s] palette top-5: ['Rain', 'Raindrop', 'Water', 'Wind', 'Wind chime'] | expr=[] +2026-06-25 18:08:48,908 | INFO | [647.2s] palette top-5: ['Wind chime', 'Insect', 'Bird vocalization, bird call, bird song', 'Mosquito', 'White noise'] | expr=[] +2026-06-25 18:08:48,938 | INFO | [653.2s] palette top-5: ['Rain', 'Mosquito', 'Raindrop', 'Wind', 'Wind chime'] | expr=[] +2026-06-25 18:08:48,997 | INFO | [659.3s] palette top-5: ['Female singing', 'Wind chime', 'Chorus effect', 'Wind', 'Water'] | expr=[] +2026-06-25 18:08:49,074 | INFO | [689.5s] palette top-5: ['Wind chime', 'Environmental noise', 'Wind', 'Insect', 'Rustling leaves'] | expr=[] +2026-06-25 18:08:49,155 | INFO | [780.3s] palette top-5: ['Wild animals', 'Animal', 'Mosquito', 'Bird', 'Insect'] | expr=[] +2026-06-25 18:08:49,252 | INFO | [786.3s] palette top-5: ['Camera', 'Wind chime', 'Bird', 'Insect', 'Wind'] | expr=[] +2026-06-25 18:08:49,343 | INFO | [816.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'White noise', 'Environmental noise'] | expr=[] +2026-06-25 18:08:49,430 | INFO | [822.6s] palette top-5: ['Wind chime', 'Chorus effect', 'Sound effect', 'Waves, surf', 'Whistling'] | expr=[] +2026-06-25 18:08:49,520 | INFO | [840.8s] palette top-5: ['Music of Bollywood', 'Wind chime', 'Cricket', 'Insect', 'Wind'] | expr=['smiling'] +2026-06-25 18:08:49,620 | INFO | [846.8s] palette top-5: ['Music of Bollywood', 'Waves, surf', 'White noise', 'Wind chime', 'Insect'] | expr=[] +2026-06-25 18:08:49,708 | INFO | [852.8s] palette top-5: ['Music of Bollywood', 'Wind chime', 'White noise', 'Mosquito', 'Wind'] | expr=[] +2026-06-25 18:08:49,795 | INFO | [858.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Sound effect', 'Howl'] | expr=[] +2026-06-25 18:08:49,899 | INFO | [865.0s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Chirp tone', 'Howl'] | expr=[] +2026-06-25 18:08:49,980 | INFO | [871.0s] palette top-5: ['Wind chime', 'Waves, surf', 'Waterfall', 'Howl', 'Wind'] | expr=['smiling'] +2026-06-25 18:08:50,092 | INFO | [883.1s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Clatter', 'Humming'] | expr=[] +2026-06-25 18:08:50,180 | INFO | [895.2s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Rustling leaves', 'Walk, footsteps'] | expr=[] +2026-06-25 18:08:50,263 | INFO | [901.2s] palette top-5: ['Wind chime', 'Wind', 'Walk, footsteps', 'Buzz', 'Clatter'] | expr=[] +2026-06-25 18:08:50,375 | INFO | [973.8s] palette top-5: ['Camera', 'White noise', 'Wind chime', 'Waterfall', 'Wind'] | expr=['concerned'] +2026-06-25 18:08:50,466 | INFO | [985.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Clatter', 'Buzz', 'Wind'] | expr=[] +2026-06-25 18:08:50,555 | INFO | [992.0s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Clatter', 'Chirp tone'] | expr=[] +2026-06-25 18:08:50,636 | INFO | [998.0s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Buzz', 'Clatter'] | expr=[] +2026-06-25 18:08:50,746 | INFO | [1004.1s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Chirp tone', 'Clatter'] | expr=['concerned'] +2026-06-25 18:08:50,827 | INFO | [1010.1s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Buzz', 'Chirp tone'] | expr=[] +2026-06-25 18:08:50,924 | INFO | [1016.2s] palette top-5: ['Wind chime', 'Wind', 'Waves, surf', 'Clatter', 'Buzz'] | expr=[] +2026-06-25 18:08:51,019 | INFO | [1022.2s] palette top-5: ['Wind chime', 'Wind', 'Clatter', 'Waves, surf', 'Rain'] | expr=[] +2026-06-25 18:08:51,099 | INFO | [1028.3s] palette top-5: ['Wind', 'Wind chime', 'Clatter', 'Waves, surf', 'Buzz'] | expr=[] +2026-06-25 18:08:51,155 | INFO | [1034.3s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'Clatter', 'Buzz'] | expr=[] +2026-06-25 18:08:51,189 | INFO | [1040.4s] palette top-5: ['Wind chime', 'Waves, surf', 'Clatter', 'Wind', 'Buzz'] | expr=[] +2026-06-25 18:08:51,220 | INFO | [1046.4s] palette top-5: ['Wind chime', 'Waves, surf', 'Clatter', 'Buzz', 'White noise'] | expr=[] +2026-06-25 18:08:51,252 | INFO | [1052.4s] palette top-5: ['Wind chime', 'Wind', 'Rain', 'Fly, housefly', 'White noise'] | expr=[] +2026-06-25 18:08:51,281 | INFO | [1094.8s] palette top-5: ['Wild animals', 'Livestock, farm animals, working animals', 'Animal', 'Crowd', 'Crow'] | expr=[] +2026-06-25 18:08:51,321 | INFO | [1100.8s] palette top-5: ['Wild animals', 'Environmental noise', 'Clatter', 'Wind chime', 'Humming'] | expr=[] +2026-06-25 18:08:51,363 | INFO | [1106.9s] palette top-5: ['Clatter', 'Environmental noise', 'White noise', 'Wind chime', 'Crowd'] | expr=[] +2026-06-25 18:08:51,397 | INFO | [1113.0s] palette top-5: ['Environmental noise', 'Rustling leaves', 'Wind chime', 'Humming', 'Wood'] | expr=[] +2026-06-25 18:08:51,431 | INFO | [1119.0s] palette top-5: ['Rustling leaves', 'Wind chime', 'Wild animals', 'Environmental noise', 'Crow'] | expr=[] +2026-06-25 18:08:51,470 | INFO | [1125.0s] palette top-5: ['Wind chime', 'Environmental noise', 'Crowd', 'Wind', 'Rustling leaves'] | expr=[] +2026-06-25 18:08:51,500 | INFO | [1131.1s] palette top-5: ['Crowd', 'White noise', 'Clatter', 'Wind chime', 'Wind'] | expr=[] +2026-06-25 18:08:51,540 | INFO | [1143.2s] palette top-5: ['Wind chime', 'Female singing', 'Chorus effect', 'Ringtone', 'Sound effect'] | expr=['concerned'] +2026-06-25 18:08:51,584 | INFO | [1167.4s] palette top-5: ['Cattle, bovinae', 'Sound effect', 'Ambulance (siren)', 'Civil defense siren', 'Whale vocalization'] | expr=[] +2026-06-25 18:08:51,624 | INFO | [1179.5s] palette top-5: ['Wind chime', 'Wind', 'White noise', 'Sound effect', 'Waves, surf'] | expr=[] +2026-06-25 18:08:51,663 | INFO | [1185.5s] palette top-5: ['Wind chime', 'Waves, surf', 'White noise', 'Wind', 'Chirp tone'] | expr=[] +2026-06-25 18:08:51,705 | INFO | [1191.6s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'White noise', 'Chirp tone'] | expr=[] +2026-06-25 18:08:51,738 | INFO | [1203.7s] palette top-5: ['Wind chime', 'Chirp tone', 'Howl', 'Owl', 'Buzz'] | expr=[] +2026-06-25 18:08:51,776 | INFO | [1215.8s] palette top-5: ['Wind chime', 'Waves, surf', 'Wind', 'White noise', 'Chirp tone'] | expr=[] +2026-06-25 18:08:51,817 | INFO | [1221.8s] palette top-5: ['Wind chime', 'Wind', 'Sound effect', 'White noise', 'Waves, surf'] | expr=[] +2026-06-25 18:08:51,856 | INFO | [1227.9s] palette top-5: ['Wind chime', 'Waves, surf', 'White noise', 'Chirp tone', 'Sound effect'] | expr=[] +2026-06-25 18:08:51,889 | INFO | [1233.9s] palette top-5: ['Wind chime', 'Waves, surf', 'Whale vocalization', 'Animal', 'Sound effect'] | expr=[] +2026-06-25 18:08:51,925 | INFO | [1246.0s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Humming', 'Wind chime'] | expr=[] +2026-06-25 18:08:51,961 | INFO | [1252.1s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Outside, rural or natural', 'Humming'] | expr=[] +2026-06-25 18:08:52,002 | INFO | [1258.1s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Humming', 'Wind chime'] | expr=[] +2026-06-25 18:08:52,040 | INFO | [1264.2s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Outside, rural or natural', 'Humming'] | expr=[] +2026-06-25 18:08:52,071 | INFO | [1270.2s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Outside, rural or natural', 'Humming'] | expr=[] +2026-06-25 18:08:52,108 | INFO | [1276.2s] palette top-5: ['Livestock, farm animals, working animals', 'Cattle, bovinae', 'Wild animals', 'Owl', 'Humming'] | expr=[] +2026-06-25 18:08:52,154 | INFO | [1324.6s] palette top-5: ['Wind chime', 'Traffic noise, roadway noise', 'Crow', 'Chirp tone', 'White noise'] | expr=[] +2026-06-25 18:08:52,154 | INFO | Scene index: 103 entries +2026-06-25 18:08:52,154 | INFO | Extracting audio: data\Bharat_Ek_Khoj_Ep_016_full.mp4 +2026-06-25 18:08:54,204 | INFO | Running Silero VAD on C:\Users\ADITIP~1\AppData\Local\Temp\tmp_u90sgr3.wav... +2026-06-25 18:09:52,570 | INFO | ✅ Silero detected 156 speech segments (812.8s total speech) +2026-06-25 18:09:52,570 | INFO | ================================================================= +2026-06-25 18:09:52,570 | INFO | AUDIO ANALYSIS — PANNs detection with pyannote speech gate +2026-06-25 18:09:52,570 | INFO | ================================================================= +2026-06-25 18:10:12,220 | INFO | Noise reduction: applied +2026-06-25 18:10:12,505 | INFO | +[ 0.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,505 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,505 | INFO | Environmental noise 0.465 0.000 0.256 ✓ +2026-06-25 18:10:12,505 | INFO | Bird 0.266 0.000 0.146 ✓ +2026-06-25 18:10:12,510 | INFO | Bird vocalization, bird call, bird song 0.233 0.000 0.128 ✓ +2026-06-25 18:10:12,510 | INFO | Chirp, tweet 0.185 0.000 0.102 ✗ +2026-06-25 18:10:12,510 | INFO | Animal 0.130 0.000 0.072 ✗ +2026-06-25 18:10:12,510 | INFO | Outside, rural or natural 0.097 0.000 0.053 ✗ +2026-06-25 18:10:12,510 | INFO | → WINNER: Environmental noise (combined=0.256) +2026-06-25 18:10:12,536 | INFO | +[ 0.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,536 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,537 | INFO | Environmental noise 0.278 0.000 0.153 ✓ +2026-06-25 18:10:12,537 | INFO | Bird 0.273 0.000 0.150 ✓ +2026-06-25 18:10:12,538 | INFO | Bird vocalization, bird call, bird song 0.236 0.000 0.130 ✓ +2026-06-25 18:10:12,538 | INFO | Chirp, tweet 0.225 0.000 0.123 ✓ +2026-06-25 18:10:12,538 | INFO | Animal 0.094 0.000 0.052 ✗ +2026-06-25 18:10:12,539 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:10:12,540 | INFO | → WINNER: Environmental noise (combined=0.153) +2026-06-25 18:10:12,571 | INFO | +[ 0.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,571 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,571 | INFO | Bird 0.240 0.000 0.132 ✓ +2026-06-25 18:10:12,571 | INFO | Chirp, tweet 0.223 0.000 0.123 ✓ +2026-06-25 18:10:12,571 | INFO | Bird vocalization, bird call, bird song 0.185 0.000 0.102 ✗ +2026-06-25 18:10:12,571 | INFO | Environmental noise 0.169 0.000 0.093 ✗ +2026-06-25 18:10:12,572 | INFO | Animal 0.101 0.000 0.055 ✗ +2026-06-25 18:10:12,572 | INFO | → WINNER: Bird (combined=0.132) +2026-06-25 18:10:12,595 | INFO | +[ 0.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,595 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,595 | INFO | Bird 0.255 0.000 0.140 ✓ +2026-06-25 18:10:12,595 | INFO | Chirp, tweet 0.195 0.000 0.107 ✗ +2026-06-25 18:10:12,595 | INFO | Bird vocalization, bird call, bird song 0.153 0.000 0.084 ✗ +2026-06-25 18:10:12,595 | INFO | Animal 0.089 0.000 0.049 ✗ +2026-06-25 18:10:12,595 | INFO | Cricket 0.039 0.000 0.021 ✗ +2026-06-25 18:10:12,595 | INFO | → WINNER: Bird (combined=0.140) +2026-06-25 18:10:12,620 | INFO | +[ 0.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,624 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,624 | INFO | Bird 0.233 0.000 0.128 ✓ +2026-06-25 18:10:12,624 | INFO | Chirp, tweet 0.165 0.000 0.091 ✗ +2026-06-25 18:10:12,624 | INFO | Bird vocalization, bird call, bird song 0.137 0.000 0.075 ✗ +2026-06-25 18:10:12,624 | INFO | Animal 0.111 0.000 0.061 ✗ +2026-06-25 18:10:12,624 | INFO | Insect 0.048 0.000 0.027 ✗ +2026-06-25 18:10:12,624 | INFO | Cricket 0.047 0.000 0.026 ✗ +2026-06-25 18:10:12,624 | INFO | → WINNER: Bird (combined=0.128) +2026-06-25 18:10:12,651 | INFO | +[ 1.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,651 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,651 | INFO | Bird 0.186 0.000 0.102 ✗ +2026-06-25 18:10:12,651 | INFO | Environmental noise 0.148 0.000 0.082 ✗ +2026-06-25 18:10:12,653 | INFO | Bird vocalization, bird call, bird song 0.128 0.000 0.070 ✗ +2026-06-25 18:10:12,653 | INFO | Chirp, tweet 0.121 0.000 0.067 ✗ +2026-06-25 18:10:12,654 | INFO | Animal 0.111 0.000 0.061 ✗ +2026-06-25 18:10:12,654 | INFO | Insect 0.067 0.000 0.037 ✗ +2026-06-25 18:10:12,654 | INFO | → no winner +2026-06-25 18:10:12,681 | INFO | +[ 1.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,681 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,681 | INFO | Environmental noise 0.258 0.000 0.142 ✓ +2026-06-25 18:10:12,681 | INFO | Bird 0.173 0.000 0.095 ✗ +2026-06-25 18:10:12,681 | INFO | Bird vocalization, bird call, bird song 0.143 0.000 0.079 ✗ +2026-06-25 18:10:12,682 | INFO | Chirp, tweet 0.136 0.000 0.074 ✗ +2026-06-25 18:10:12,682 | INFO | Animal 0.118 0.000 0.065 ✗ +2026-06-25 18:10:12,682 | INFO | Insect 0.066 0.000 0.036 ✗ +2026-06-25 18:10:12,682 | INFO | → WINNER: Environmental noise (combined=0.142) +2026-06-25 18:10:12,706 | INFO | +[ 1.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,706 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,707 | INFO | Bird 0.208 0.000 0.114 ✗ +2026-06-25 18:10:12,707 | INFO | Animal 0.155 0.000 0.085 ✗ +2026-06-25 18:10:12,708 | INFO | Bird vocalization, bird call, bird song 0.101 0.000 0.056 ✗ +2026-06-25 18:10:12,708 | INFO | Chirp, tweet 0.089 0.000 0.049 ✗ +2026-06-25 18:10:12,708 | INFO | Environmental noise 0.081 0.000 0.045 ✗ +2026-06-25 18:10:12,708 | INFO | → no winner +2026-06-25 18:10:12,735 | INFO | +[ 1.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,735 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,737 | INFO | Animal 0.109 0.000 0.060 ✗ +2026-06-25 18:10:12,738 | INFO | Bird 0.071 0.000 0.039 ✗ +2026-06-25 18:10:12,738 | INFO | Bird vocalization, bird call, bird song 0.033 0.000 0.018 ✗ +2026-06-25 18:10:12,738 | INFO | → no winner +2026-06-25 18:10:12,765 | INFO | +[ 1.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,766 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,766 | INFO | Animal 0.204 0.000 0.112 ✗ +2026-06-25 18:10:12,766 | INFO | Bird 0.141 0.000 0.078 ✗ +2026-06-25 18:10:12,766 | INFO | Environmental noise 0.139 0.000 0.076 ✗ +2026-06-25 18:10:12,766 | INFO | Bird vocalization, bird call, bird song 0.074 0.000 0.041 ✗ +2026-06-25 18:10:12,766 | INFO | Outside, rural or natural 0.071 0.000 0.039 ✗ +2026-06-25 18:10:12,767 | INFO | Mouse 0.070 0.000 0.039 ✗ +2026-06-25 18:10:12,767 | INFO | → no winner +2026-06-25 18:10:12,794 | INFO | +[ 2.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,795 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,796 | INFO | Bird 0.275 0.000 0.151 ✓ +2026-06-25 18:10:12,796 | INFO | Animal 0.172 0.000 0.095 ✗ +2026-06-25 18:10:12,797 | INFO | Bird vocalization, bird call, bird song 0.149 0.000 0.082 ✗ +2026-06-25 18:10:12,797 | INFO | Chirp, tweet 0.128 0.000 0.070 ✗ +2026-06-25 18:10:12,797 | INFO | Environmental noise 0.112 0.000 0.061 ✗ +2026-06-25 18:10:12,797 | INFO | Mouse 0.055 0.000 0.030 ✗ +2026-06-25 18:10:12,798 | INFO | → WINNER: Bird (combined=0.151) +2026-06-25 18:10:12,820 | INFO | +[ 2.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,820 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,820 | INFO | Bird 0.433 0.000 0.238 ✓ +2026-06-25 18:10:12,820 | INFO | Chirp, tweet 0.343 0.000 0.189 ✓ +2026-06-25 18:10:12,820 | INFO | Bird vocalization, bird call, bird song 0.316 0.000 0.174 ✓ +2026-06-25 18:10:12,820 | INFO | Animal 0.166 0.000 0.091 ✗ +2026-06-25 18:10:12,820 | INFO | Environmental noise 0.114 0.000 0.063 ✗ +2026-06-25 18:10:12,825 | INFO | Outside, rural or natural 0.062 0.000 0.034 ✗ +2026-06-25 18:10:12,825 | INFO | → WINNER: Bird (combined=0.238) +2026-06-25 18:10:12,845 | INFO | +[ 2.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,850 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,850 | INFO | Bird 0.508 0.000 0.280 ✓ +2026-06-25 18:10:12,850 | INFO | Chirp, tweet 0.436 0.000 0.240 ✓ +2026-06-25 18:10:12,850 | INFO | Bird vocalization, bird call, bird song 0.370 0.000 0.204 ✓ +2026-06-25 18:10:12,850 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:10:12,850 | INFO | Duck 0.081 0.000 0.044 ✗ +2026-06-25 18:10:12,850 | INFO | Domestic animals, pets 0.072 0.000 0.040 ✗ +2026-06-25 18:10:12,850 | INFO | → WINNER: Bird (combined=0.280) +2026-06-25 18:10:12,875 | INFO | +[ 2.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,875 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,875 | INFO | Bird 0.574 0.000 0.316 ✓ +2026-06-25 18:10:12,875 | INFO | Chirp, tweet 0.504 0.000 0.277 ✓ +2026-06-25 18:10:12,875 | INFO | Bird vocalization, bird call, bird song 0.414 0.000 0.228 ✓ +2026-06-25 18:10:12,875 | INFO | Animal 0.146 0.000 0.080 ✗ +2026-06-25 18:10:12,875 | INFO | Duck 0.103 0.000 0.057 ✗ +2026-06-25 18:10:12,875 | INFO | Domestic animals, pets 0.082 0.000 0.045 ✗ +2026-06-25 18:10:12,875 | INFO | → WINNER: Bird (combined=0.316) +2026-06-25 18:10:12,909 | INFO | +[ 2.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,909 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,909 | INFO | Bird 0.505 0.000 0.278 ✓ +2026-06-25 18:10:12,909 | INFO | Chirp, tweet 0.347 0.000 0.191 ✓ +2026-06-25 18:10:12,910 | INFO | Bird vocalization, bird call, bird song 0.283 0.000 0.155 ✓ +2026-06-25 18:10:12,910 | INFO | Animal 0.140 0.000 0.077 ✗ +2026-06-25 18:10:12,910 | INFO | Duck 0.139 0.000 0.076 ✗ +2026-06-25 18:10:12,910 | INFO | Chicken, rooster 0.083 0.000 0.046 ✗ +2026-06-25 18:10:12,910 | INFO | → WINNER: Bird (combined=0.278) +2026-06-25 18:10:12,934 | INFO | +[ 3.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,935 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,935 | INFO | Bird 0.461 0.000 0.254 ✓ +2026-06-25 18:10:12,935 | INFO | Chirp, tweet 0.320 0.000 0.176 ✓ +2026-06-25 18:10:12,935 | INFO | Bird vocalization, bird call, bird song 0.253 0.000 0.139 ✓ +2026-06-25 18:10:12,936 | INFO | Animal 0.106 0.000 0.058 ✗ +2026-06-25 18:10:12,936 | INFO | Domestic animals, pets 0.061 0.000 0.034 ✗ +2026-06-25 18:10:12,936 | INFO | Bird flight, flapping wings 0.048 0.000 0.026 ✗ +2026-06-25 18:10:12,936 | INFO | → WINNER: Bird (combined=0.254) +2026-06-25 18:10:12,962 | INFO | +[ 3.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:12,972 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:12,974 | INFO | Bird 0.430 0.000 0.237 ✓ +2026-06-25 18:10:12,974 | INFO | Chirp, tweet 0.330 0.000 0.181 ✓ +2026-06-25 18:10:12,975 | INFO | Bird vocalization, bird call, bird song 0.292 0.000 0.161 ✓ +2026-06-25 18:10:12,982 | INFO | Animal 0.219 0.000 0.120 ✓ +2026-06-25 18:10:12,986 | INFO | Environmental noise 0.084 0.000 0.046 ✗ +2026-06-25 18:10:12,986 | INFO | Domestic animals, pets 0.063 0.000 0.035 ✗ +2026-06-25 18:10:12,990 | INFO | → WINNER: Bird (combined=0.237) +2026-06-25 18:10:13,014 | INFO | +[ 3.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,014 | INFO | Bird 0.233 0.000 0.128 ✓ +2026-06-25 18:10:13,015 | INFO | Environmental noise 0.194 0.000 0.106 ✗ +2026-06-25 18:10:13,015 | INFO | Animal 0.186 0.000 0.102 ✗ +2026-06-25 18:10:13,015 | INFO | Bird vocalization, bird call, bird song 0.172 0.000 0.094 ✗ +2026-06-25 18:10:13,015 | INFO | Chirp, tweet 0.157 0.000 0.086 ✗ +2026-06-25 18:10:13,015 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:13,015 | INFO | → WINNER: Bird (combined=0.128) +2026-06-25 18:10:13,040 | INFO | +[ 3.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,040 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,040 | INFO | Environmental noise 0.220 0.000 0.121 ✓ +2026-06-25 18:10:13,040 | INFO | Animal 0.185 0.000 0.102 ✗ +2026-06-25 18:10:13,040 | INFO | Bird 0.143 0.000 0.078 ✗ +2026-06-25 18:10:13,040 | INFO | Bird vocalization, bird call, bird song 0.090 0.000 0.050 ✗ +2026-06-25 18:10:13,045 | INFO | Outside, rural or natural 0.080 0.000 0.044 ✗ +2026-06-25 18:10:13,045 | INFO | Chirp, tweet 0.070 0.000 0.039 ✗ +2026-06-25 18:10:13,045 | INFO | → WINNER: Environmental noise (combined=0.121) +2026-06-25 18:10:13,071 | INFO | +[ 3.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,071 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,071 | INFO | Environmental noise 0.317 0.000 0.175 ✓ +2026-06-25 18:10:13,071 | INFO | Bird 0.163 0.000 0.089 ✗ +2026-06-25 18:10:13,071 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.086 ✗ +2026-06-25 18:10:13,071 | INFO | Chirp, tweet 0.126 0.000 0.070 ✗ +2026-06-25 18:10:13,071 | INFO | Animal 0.123 0.000 0.068 ✗ +2026-06-25 18:10:13,071 | INFO | Insect 0.066 0.000 0.036 ✗ +2026-06-25 18:10:13,071 | INFO | → WINNER: Environmental noise (combined=0.175) +2026-06-25 18:10:13,098 | INFO | +[ 4.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,098 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,099 | INFO | Environmental noise 0.337 0.000 0.185 ✓ +2026-06-25 18:10:13,099 | INFO | Bird 0.178 0.000 0.098 ✗ +2026-06-25 18:10:13,099 | INFO | Animal 0.148 0.000 0.081 ✗ +2026-06-25 18:10:13,099 | INFO | Bird vocalization, bird call, bird song 0.145 0.000 0.080 ✗ +2026-06-25 18:10:13,099 | INFO | Chirp, tweet 0.128 0.000 0.070 ✗ +2026-06-25 18:10:13,099 | INFO | Outside, rural or natural 0.081 0.000 0.044 ✗ +2026-06-25 18:10:13,099 | INFO | → WINNER: Environmental noise (combined=0.185) +2026-06-25 18:10:13,146 | INFO | +[ 4.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,146 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,146 | INFO | Environmental noise 0.274 0.000 0.151 ✓ +2026-06-25 18:10:13,146 | INFO | Bird 0.226 0.000 0.124 ✓ +2026-06-25 18:10:13,150 | INFO | Animal 0.217 0.000 0.119 ✗ +2026-06-25 18:10:13,150 | INFO | Chirp, tweet 0.168 0.000 0.092 ✗ +2026-06-25 18:10:13,150 | INFO | Bird vocalization, bird call, bird song 0.167 0.000 0.092 ✗ +2026-06-25 18:10:13,150 | INFO | Outside, rural or natural 0.093 0.000 0.051 ✗ +2026-06-25 18:10:13,150 | INFO | → WINNER: Environmental noise (combined=0.151) +2026-06-25 18:10:13,200 | INFO | +[ 4.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,200 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,200 | INFO | Bird 0.287 0.000 0.158 ✓ +2026-06-25 18:10:13,203 | INFO | Animal 0.213 0.000 0.117 ✗ +2026-06-25 18:10:13,203 | INFO | Chirp, tweet 0.158 0.000 0.087 ✗ +2026-06-25 18:10:13,203 | INFO | Bird vocalization, bird call, bird song 0.153 0.000 0.084 ✗ +2026-06-25 18:10:13,203 | INFO | Duck 0.092 0.000 0.050 ✗ +2026-06-25 18:10:13,204 | INFO | Environmental noise 0.091 0.000 0.050 ✗ +2026-06-25 18:10:13,204 | INFO | → WINNER: Bird (combined=0.158) +2026-06-25 18:10:13,255 | INFO | +[ 4.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,255 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,255 | INFO | Bird 0.370 0.000 0.203 ✓ +2026-06-25 18:10:13,256 | INFO | Animal 0.200 0.000 0.110 ✗ +2026-06-25 18:10:13,256 | INFO | Chirp, tweet 0.193 0.000 0.106 ✗ +2026-06-25 18:10:13,256 | INFO | Bird vocalization, bird call, bird song 0.186 0.000 0.102 ✗ +2026-06-25 18:10:13,256 | INFO | Chicken, rooster 0.157 0.000 0.086 ✗ +2026-06-25 18:10:13,257 | INFO | Fowl 0.138 0.000 0.076 ✗ +2026-06-25 18:10:13,257 | INFO | → WINNER: Bird (combined=0.203) +2026-06-25 18:10:13,305 | INFO | +[ 4.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,305 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,305 | INFO | Bird 0.310 0.000 0.171 ✓ +2026-06-25 18:10:13,305 | INFO | Chirp, tweet 0.222 0.000 0.122 ✓ +2026-06-25 18:10:13,305 | INFO | Bird vocalization, bird call, bird song 0.217 0.000 0.119 ✗ +2026-06-25 18:10:13,305 | INFO | Environmental noise 0.214 0.000 0.118 ✗ +2026-06-25 18:10:13,305 | INFO | Animal 0.166 0.000 0.091 ✗ +2026-06-25 18:10:13,305 | INFO | Outside, rural or natural 0.081 0.000 0.044 ✗ +2026-06-25 18:10:13,305 | INFO | → WINNER: Bird (combined=0.171) +2026-06-25 18:10:13,334 | INFO | +[ 5.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,334 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,334 | INFO | Bird 0.356 0.000 0.196 ✓ +2026-06-25 18:10:13,335 | INFO | Chirp, tweet 0.326 0.000 0.179 ✓ +2026-06-25 18:10:13,335 | INFO | Bird vocalization, bird call, bird song 0.276 0.000 0.152 ✓ +2026-06-25 18:10:13,335 | INFO | Animal 0.143 0.000 0.079 ✗ +2026-06-25 18:10:13,335 | INFO | Environmental noise 0.126 0.000 0.069 ✗ +2026-06-25 18:10:13,335 | INFO | Domestic animals, pets 0.070 0.000 0.038 ✗ +2026-06-25 18:10:13,335 | INFO | → WINNER: Bird (combined=0.196) +2026-06-25 18:10:13,362 | INFO | +[ 5.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,363 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,363 | INFO | Bird 0.318 0.000 0.175 ✓ +2026-06-25 18:10:13,363 | INFO | Chicken, rooster 0.197 0.000 0.108 ✗ +2026-06-25 18:10:13,364 | INFO | Chirp, tweet 0.190 0.000 0.104 ✗ +2026-06-25 18:10:13,364 | INFO | Bird vocalization, bird call, bird song 0.166 0.000 0.091 ✗ +2026-06-25 18:10:13,364 | INFO | Animal 0.162 0.000 0.089 ✗ +2026-06-25 18:10:13,364 | INFO | Cluck 0.122 0.000 0.067 ✗ +2026-06-25 18:10:13,365 | INFO | → WINNER: Bird (combined=0.175) +2026-06-25 18:10:13,390 | INFO | +[ 5.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,391 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,392 | INFO | Bird 0.275 0.000 0.151 ✓ +2026-06-25 18:10:13,392 | INFO | Chicken, rooster 0.186 0.000 0.102 ✗ +2026-06-25 18:10:13,392 | INFO | Animal 0.169 0.000 0.093 ✗ +2026-06-25 18:10:13,392 | INFO | Cluck 0.124 0.000 0.068 ✗ +2026-06-25 18:10:13,392 | INFO | Chirp, tweet 0.117 0.000 0.064 ✗ +2026-06-25 18:10:13,393 | INFO | Bird vocalization, bird call, bird song 0.115 0.000 0.063 ✗ +2026-06-25 18:10:13,393 | INFO | → WINNER: Bird (combined=0.151) +2026-06-25 18:10:13,420 | INFO | +[ 5.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,421 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,421 | INFO | Bird 0.282 0.000 0.155 ✓ +2026-06-25 18:10:13,421 | INFO | Animal 0.166 0.000 0.091 ✗ +2026-06-25 18:10:13,421 | INFO | Duck 0.165 0.000 0.091 ✗ +2026-06-25 18:10:13,421 | INFO | Chirp, tweet 0.151 0.000 0.083 ✗ +2026-06-25 18:10:13,422 | INFO | Bird vocalization, bird call, bird song 0.134 0.000 0.073 ✗ +2026-06-25 18:10:13,422 | INFO | Environmental noise 0.066 0.000 0.036 ✗ +2026-06-25 18:10:13,422 | INFO | → WINNER: Bird (combined=0.155) +2026-06-25 18:10:13,446 | INFO | +[ 5.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,447 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,447 | INFO | Bird 0.179 0.000 0.099 ✗ +2026-06-25 18:10:13,447 | INFO | Animal 0.177 0.000 0.098 ✗ +2026-06-25 18:10:13,447 | INFO | Duck 0.109 0.000 0.060 ✗ +2026-06-25 18:10:13,447 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.044 ✗ +2026-06-25 18:10:13,448 | INFO | Chirp, tweet 0.078 0.000 0.043 ✗ +2026-06-25 18:10:13,448 | INFO | Quack 0.054 0.000 0.030 ✗ +2026-06-25 18:10:13,448 | INFO | → no winner +2026-06-25 18:10:13,470 | INFO | +[ 6.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,470 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,470 | INFO | Bird 0.181 0.000 0.100 ✗ +2026-06-25 18:10:13,470 | INFO | Animal 0.134 0.000 0.074 ✗ +2026-06-25 18:10:13,470 | INFO | Chirp, tweet 0.085 0.000 0.047 ✗ +2026-06-25 18:10:13,470 | INFO | Bird vocalization, bird call, bird song 0.083 0.000 0.046 ✗ +2026-06-25 18:10:13,470 | INFO | Duck 0.070 0.000 0.038 ✗ +2026-06-25 18:10:13,470 | INFO | Mouse 0.055 0.000 0.030 ✗ +2026-06-25 18:10:13,470 | INFO | → no winner +2026-06-25 18:10:13,499 | INFO | +[ 6.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,499 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,499 | INFO | Bird 0.183 0.000 0.101 ✗ +2026-06-25 18:10:13,499 | INFO | Animal 0.129 0.000 0.071 ✗ +2026-06-25 18:10:13,499 | INFO | Bird vocalization, bird call, bird song 0.101 0.000 0.056 ✗ +2026-06-25 18:10:13,500 | INFO | Chirp, tweet 0.099 0.000 0.055 ✗ +2026-06-25 18:10:13,500 | INFO | Environmental noise 0.075 0.000 0.041 ✗ +2026-06-25 18:10:13,500 | INFO | Cricket 0.068 0.000 0.037 ✗ +2026-06-25 18:10:13,500 | INFO | → no winner +2026-06-25 18:10:13,524 | INFO | +[ 6.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,531 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,531 | INFO | Bird 0.276 0.000 0.152 ✓ +2026-06-25 18:10:13,531 | INFO | Animal 0.188 0.000 0.103 ✗ +2026-06-25 18:10:13,531 | INFO | Chirp, tweet 0.127 0.000 0.070 ✗ +2026-06-25 18:10:13,531 | INFO | Bird vocalization, bird call, bird song 0.125 0.000 0.069 ✗ +2026-06-25 18:10:13,531 | INFO | Chicken, rooster 0.094 0.000 0.052 ✗ +2026-06-25 18:10:13,531 | INFO | Environmental noise 0.086 0.000 0.047 ✗ +2026-06-25 18:10:13,531 | INFO | → WINNER: Bird (combined=0.152) +2026-06-25 18:10:13,562 | INFO | +[ 6.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,562 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,562 | INFO | Bird 0.252 0.000 0.139 ✓ +2026-06-25 18:10:13,562 | INFO | Environmental noise 0.173 0.000 0.095 ✗ +2026-06-25 18:10:13,563 | INFO | Chirp, tweet 0.159 0.000 0.087 ✗ +2026-06-25 18:10:13,563 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.085 ✗ +2026-06-25 18:10:13,563 | INFO | Animal 0.151 0.000 0.083 ✗ +2026-06-25 18:10:13,563 | INFO | Outside, rural or natural 0.065 0.000 0.036 ✗ +2026-06-25 18:10:13,563 | INFO | → WINNER: Bird (combined=0.139) +2026-06-25 18:10:13,587 | INFO | +[ 6.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,587 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,587 | INFO | Bird 0.241 0.000 0.133 ✓ +2026-06-25 18:10:13,590 | INFO | Environmental noise 0.196 0.000 0.108 ✗ +2026-06-25 18:10:13,590 | INFO | Chirp, tweet 0.183 0.000 0.101 ✗ +2026-06-25 18:10:13,590 | INFO | Bird vocalization, bird call, bird song 0.182 0.000 0.100 ✗ +2026-06-25 18:10:13,590 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:13,590 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:10:13,590 | INFO | → WINNER: Bird (combined=0.133) +2026-06-25 18:10:13,615 | INFO | +[ 7.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,615 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,615 | INFO | Environmental noise 0.277 0.000 0.152 ✓ +2026-06-25 18:10:13,615 | INFO | Bird 0.203 0.000 0.111 ✗ +2026-06-25 18:10:13,616 | INFO | Bird vocalization, bird call, bird song 0.158 0.000 0.087 ✗ +2026-06-25 18:10:13,616 | INFO | Animal 0.146 0.000 0.080 ✗ +2026-06-25 18:10:13,616 | INFO | Chirp, tweet 0.145 0.000 0.080 ✗ +2026-06-25 18:10:13,616 | INFO | Outside, rural or natural 0.068 0.000 0.037 ✗ +2026-06-25 18:10:13,617 | INFO | → WINNER: Environmental noise (combined=0.152) +2026-06-25 18:10:13,640 | INFO | +[ 7.20s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,640 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,640 | INFO | Animal 0.229 0.000 0.126 ✓ +2026-06-25 18:10:13,640 | INFO | Bird 0.158 0.000 0.087 ✗ +2026-06-25 18:10:13,640 | INFO | Environmental noise 0.151 0.000 0.083 ✗ +2026-06-25 18:10:13,640 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.049 ✗ +2026-06-25 18:10:13,640 | INFO | Chirp, tweet 0.081 0.000 0.045 ✗ +2026-06-25 18:10:13,640 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:13,640 | INFO | → WINNER: Animal (combined=0.126) +2026-06-25 18:10:13,670 | INFO | +[ 7.40s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,670 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,670 | INFO | Animal 0.178 0.000 0.098 ✗ +2026-06-25 18:10:13,670 | INFO | Bird 0.104 0.000 0.057 ✗ +2026-06-25 18:10:13,670 | INFO | Environmental noise 0.086 0.000 0.047 ✗ +2026-06-25 18:10:13,670 | INFO | Bird vocalization, bird call, bird song 0.056 0.000 0.030 ✗ +2026-06-25 18:10:13,670 | INFO | → no winner +2026-06-25 18:10:13,698 | INFO | +[ 7.60s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,698 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,698 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:10:13,698 | INFO | Bird 0.126 0.000 0.069 ✗ +2026-06-25 18:10:13,698 | INFO | Chirp, tweet 0.082 0.000 0.045 ✗ +2026-06-25 18:10:13,698 | INFO | Bird vocalization, bird call, bird song 0.081 0.000 0.045 ✗ +2026-06-25 18:10:13,698 | INFO | Environmental noise 0.071 0.000 0.039 ✗ +2026-06-25 18:10:13,698 | INFO | → no winner +2026-06-25 18:10:13,724 | INFO | +[ 7.80s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,724 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,725 | INFO | Bird 0.207 0.000 0.114 ✗ +2026-06-25 18:10:13,725 | INFO | Chirp, tweet 0.165 0.000 0.091 ✗ +2026-06-25 18:10:13,725 | INFO | Environmental noise 0.156 0.000 0.086 ✗ +2026-06-25 18:10:13,726 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.085 ✗ +2026-06-25 18:10:13,726 | INFO | Animal 0.141 0.000 0.077 ✗ +2026-06-25 18:10:13,726 | INFO | Insect 0.051 0.000 0.028 ✗ +2026-06-25 18:10:13,727 | INFO | → no winner +2026-06-25 18:10:13,753 | INFO | +[ 8.00s] AMBIENT | scene='The image is a black background with white text in Hindi. The text rea' +2026-06-25 18:10:13,754 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,754 | INFO | Bird 0.196 0.000 0.108 ✗ +2026-06-25 18:10:13,754 | INFO | Chirp, tweet 0.155 0.000 0.086 ✗ +2026-06-25 18:10:13,754 | INFO | Bird vocalization, bird call, bird song 0.140 0.000 0.077 ✗ +2026-06-25 18:10:13,754 | INFO | Animal 0.139 0.000 0.076 ✗ +2026-06-25 18:10:13,754 | INFO | Environmental noise 0.134 0.000 0.074 ✗ +2026-06-25 18:10:13,754 | INFO | Cricket 0.038 0.000 0.021 ✗ +2026-06-25 18:10:13,754 | INFO | → no winner +2026-06-25 18:10:13,782 | INFO | +[ 8.20s] AMBIENT | scene='' +2026-06-25 18:10:13,782 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,782 | INFO | Bird 0.140 0.000 0.077 ✗ +2026-06-25 18:10:13,782 | INFO | Animal 0.130 0.000 0.071 ✗ +2026-06-25 18:10:13,783 | INFO | Bird vocalization, bird call, bird song 0.091 0.000 0.050 ✗ +2026-06-25 18:10:13,783 | INFO | Environmental noise 0.091 0.000 0.050 ✗ +2026-06-25 18:10:13,783 | INFO | Chirp, tweet 0.076 0.000 0.042 ✗ +2026-06-25 18:10:13,783 | INFO | → no winner +2026-06-25 18:10:13,800 | INFO | +[ 8.40s] AMBIENT | scene='' +2026-06-25 18:10:13,800 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,800 | INFO | Animal 0.178 0.000 0.098 ✗ +2026-06-25 18:10:13,800 | INFO | Bird 0.095 0.000 0.052 ✗ +2026-06-25 18:10:13,809 | INFO | Mouse 0.066 0.000 0.036 ✗ +2026-06-25 18:10:13,810 | INFO | Outside, rural or natural 0.056 0.000 0.030 ✗ +2026-06-25 18:10:13,811 | INFO | Bird vocalization, bird call, bird song 0.032 0.000 0.018 ✗ +2026-06-25 18:10:13,811 | INFO | Cricket 0.032 0.000 0.017 ✗ +2026-06-25 18:10:13,811 | INFO | → no winner +2026-06-25 18:10:13,845 | INFO | +[ 8.60s] AMBIENT | scene='' +2026-06-25 18:10:13,845 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,845 | INFO | Animal 0.214 0.000 0.118 ✗ +2026-06-25 18:10:13,846 | INFO | Bird 0.172 0.000 0.094 ✗ +2026-06-25 18:10:13,846 | INFO | Mouse 0.109 0.000 0.060 ✗ +2026-06-25 18:10:13,846 | INFO | Fowl 0.083 0.000 0.046 ✗ +2026-06-25 18:10:13,846 | INFO | Rodents, rats, mice 0.069 0.000 0.038 ✗ +2026-06-25 18:10:13,846 | INFO | Chicken, rooster 0.061 0.000 0.033 ✗ +2026-06-25 18:10:13,846 | INFO | → no winner +2026-06-25 18:10:13,870 | INFO | +[ 8.80s] AMBIENT | scene='' +2026-06-25 18:10:13,870 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,870 | INFO | Animal 0.183 0.000 0.101 ✗ +2026-06-25 18:10:13,870 | INFO | Bird 0.156 0.000 0.086 ✗ +2026-06-25 18:10:13,870 | INFO | Bird vocalization, bird call, bird song 0.061 0.000 0.034 ✗ +2026-06-25 18:10:13,870 | INFO | Environmental noise 0.059 0.000 0.032 ✗ +2026-06-25 18:10:13,870 | INFO | Outside, rural or natural 0.055 0.000 0.030 ✗ +2026-06-25 18:10:13,870 | INFO | Cricket 0.030 0.000 0.016 ✗ +2026-06-25 18:10:13,870 | INFO | → no winner +2026-06-25 18:10:13,900 | INFO | +[ 9.00s] AMBIENT | scene='' +2026-06-25 18:10:13,900 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,900 | INFO | Animal 0.174 0.000 0.096 ✗ +2026-06-25 18:10:13,900 | INFO | Bird 0.147 0.000 0.081 ✗ +2026-06-25 18:10:13,900 | INFO | Mouse 0.067 0.000 0.037 ✗ +2026-06-25 18:10:13,900 | INFO | Fowl 0.054 0.000 0.030 ✗ +2026-06-25 18:10:13,903 | INFO | Bird vocalization, bird call, bird song 0.046 0.000 0.025 ✗ +2026-06-25 18:10:13,903 | INFO | → no winner +2026-06-25 18:10:13,932 | INFO | +[ 31.40s] AMBIENT | scene='' +2026-06-25 18:10:13,932 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,932 | INFO | Animal 0.226 0.000 0.124 ✓ +2026-06-25 18:10:13,932 | INFO | Bird 0.102 0.000 0.056 ✗ +2026-06-25 18:10:13,932 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:13,932 | INFO | Bird vocalization, bird call, bird song 0.035 0.000 0.019 ✗ +2026-06-25 18:10:13,932 | INFO | → WINNER: Animal (combined=0.124) +2026-06-25 18:10:13,960 | INFO | +[ 31.60s] AMBIENT | scene='' +2026-06-25 18:10:13,960 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,960 | INFO | Animal 0.177 0.000 0.097 ✗ +2026-06-25 18:10:13,960 | INFO | Bird 0.132 0.000 0.073 ✗ +2026-06-25 18:10:13,960 | INFO | Environmental noise 0.096 0.000 0.053 ✗ +2026-06-25 18:10:13,960 | INFO | Bird vocalization, bird call, bird song 0.068 0.000 0.037 ✗ +2026-06-25 18:10:13,961 | INFO | Outside, rural or natural 0.060 0.000 0.033 ✗ +2026-06-25 18:10:13,962 | INFO | Cricket 0.053 0.000 0.029 ✗ +2026-06-25 18:10:13,962 | INFO | → no winner +2026-06-25 18:10:13,986 | INFO | +[ 31.80s] AMBIENT | scene='' +2026-06-25 18:10:13,986 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:13,986 | INFO | Frog 0.171 0.000 0.094 ✗ +2026-06-25 18:10:13,986 | INFO | Animal 0.160 0.000 0.088 ✗ +2026-06-25 18:10:13,986 | INFO | Bird 0.056 0.000 0.030 ✗ +2026-06-25 18:10:13,986 | INFO | → no winner +2026-06-25 18:10:14,013 | INFO | +[ 32.00s] AMBIENT | scene='' +2026-06-25 18:10:14,013 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,013 | INFO | Frog 0.144 0.000 0.079 ✗ +2026-06-25 18:10:14,013 | INFO | Animal 0.101 0.000 0.055 ✗ +2026-06-25 18:10:14,014 | INFO | Bird 0.048 0.000 0.026 ✗ +2026-06-25 18:10:14,014 | INFO | → no winner +2026-06-25 18:10:14,040 | INFO | +[ 32.20s] AMBIENT | scene='' +2026-06-25 18:10:14,040 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,040 | INFO | Frog 0.245 0.000 0.135 ✓ +2026-06-25 18:10:14,040 | INFO | Animal 0.128 0.000 0.070 ✗ +2026-06-25 18:10:14,040 | INFO | Bird 0.114 0.000 0.062 ✗ +2026-06-25 18:10:14,040 | INFO | Chirp, tweet 0.056 0.000 0.031 ✗ +2026-06-25 18:10:14,040 | INFO | Bird vocalization, bird call, bird song 0.045 0.000 0.025 ✗ +2026-06-25 18:10:14,040 | INFO | → WINNER: Frog (combined=0.135) +2026-06-25 18:10:14,061 | INFO | +[ 32.40s] AMBIENT | scene='' +2026-06-25 18:10:14,061 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,061 | INFO | Animal 0.224 0.000 0.123 ✓ +2026-06-25 18:10:14,061 | INFO | Bird 0.161 0.000 0.089 ✗ +2026-06-25 18:10:14,061 | INFO | Frog 0.079 0.000 0.043 ✗ +2026-06-25 18:10:14,061 | INFO | Chirp, tweet 0.073 0.000 0.040 ✗ +2026-06-25 18:10:14,061 | INFO | Duck 0.067 0.000 0.037 ✗ +2026-06-25 18:10:14,061 | INFO | Bird vocalization, bird call, bird song 0.063 0.000 0.035 ✗ +2026-06-25 18:10:14,061 | INFO | → WINNER: Animal (combined=0.123) +2026-06-25 18:10:14,090 | INFO | +[ 32.60s] AMBIENT | scene='' +2026-06-25 18:10:14,090 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,090 | INFO | Bird 0.239 0.000 0.131 ✓ +2026-06-25 18:10:14,090 | INFO | Animal 0.181 0.000 0.099 ✗ +2026-06-25 18:10:14,090 | INFO | Chirp, tweet 0.116 0.000 0.064 ✗ +2026-06-25 18:10:14,090 | INFO | Bird vocalization, bird call, bird song 0.105 0.000 0.058 ✗ +2026-06-25 18:10:14,090 | INFO | Fowl 0.082 0.000 0.045 ✗ +2026-06-25 18:10:14,090 | INFO | Rodents, rats, mice 0.075 0.000 0.042 ✗ +2026-06-25 18:10:14,090 | INFO | → WINNER: Bird (combined=0.131) +2026-06-25 18:10:14,120 | INFO | +[ 32.80s] AMBIENT | scene='' +2026-06-25 18:10:14,120 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,120 | INFO | Bird 0.293 0.000 0.161 ✓ +2026-06-25 18:10:14,121 | INFO | Chirp, tweet 0.171 0.000 0.094 ✗ +2026-06-25 18:10:14,121 | INFO | Bird vocalization, bird call, bird song 0.171 0.000 0.094 ✗ +2026-06-25 18:10:14,121 | INFO | Animal 0.133 0.000 0.073 ✗ +2026-06-25 18:10:14,121 | INFO | Environmental noise 0.091 0.000 0.050 ✗ +2026-06-25 18:10:14,121 | INFO | Fowl 0.081 0.000 0.045 ✗ +2026-06-25 18:10:14,121 | INFO | → WINNER: Bird (combined=0.161) +2026-06-25 18:10:14,148 | INFO | +[ 33.00s] AMBIENT | scene='' +2026-06-25 18:10:14,148 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,148 | INFO | Bird 0.254 0.000 0.140 ✓ +2026-06-25 18:10:14,149 | INFO | Animal 0.192 0.000 0.105 ✗ +2026-06-25 18:10:14,149 | INFO | Bird vocalization, bird call, bird song 0.133 0.000 0.073 ✗ +2026-06-25 18:10:14,149 | INFO | Chirp, tweet 0.121 0.000 0.067 ✗ +2026-06-25 18:10:14,149 | INFO | Environmental noise 0.112 0.000 0.061 ✗ +2026-06-25 18:10:14,149 | INFO | Fowl 0.085 0.000 0.047 ✗ +2026-06-25 18:10:14,150 | INFO | → WINNER: Bird (combined=0.140) +2026-06-25 18:10:14,175 | INFO | +[ 33.20s] AMBIENT | scene='' +2026-06-25 18:10:14,175 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,175 | INFO | Bird 0.270 0.000 0.149 ✓ +2026-06-25 18:10:14,175 | INFO | Environmental noise 0.180 0.000 0.099 ✗ +2026-06-25 18:10:14,175 | INFO | Bird vocalization, bird call, bird song 0.173 0.000 0.095 ✗ +2026-06-25 18:10:14,175 | INFO | Chirp, tweet 0.168 0.000 0.092 ✗ +2026-06-25 18:10:14,175 | INFO | Animal 0.159 0.000 0.087 ✗ +2026-06-25 18:10:14,175 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:10:14,175 | INFO | → WINNER: Bird (combined=0.149) +2026-06-25 18:10:14,203 | INFO | +[ 33.40s] AMBIENT | scene='' +2026-06-25 18:10:14,204 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,204 | INFO | Environmental noise 0.242 0.000 0.133 ✓ +2026-06-25 18:10:14,204 | INFO | Bird 0.191 0.000 0.105 ✗ +2026-06-25 18:10:14,204 | INFO | Animal 0.143 0.000 0.079 ✗ +2026-06-25 18:10:14,204 | INFO | Bird vocalization, bird call, bird song 0.138 0.000 0.076 ✗ +2026-06-25 18:10:14,204 | INFO | Chirp, tweet 0.112 0.000 0.061 ✗ +2026-06-25 18:10:14,204 | INFO | Fowl 0.074 0.000 0.041 ✗ +2026-06-25 18:10:14,204 | INFO | → WINNER: Environmental noise (combined=0.133) +2026-06-25 18:10:14,231 | INFO | +[ 33.60s] AMBIENT | scene='' +2026-06-25 18:10:14,231 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,231 | INFO | Environmental noise 0.292 0.000 0.161 ✓ +2026-06-25 18:10:14,232 | INFO | Animal 0.213 0.000 0.117 ✗ +2026-06-25 18:10:14,232 | INFO | Bird 0.165 0.000 0.091 ✗ +2026-06-25 18:10:14,232 | INFO | Bird vocalization, bird call, bird song 0.106 0.000 0.059 ✗ +2026-06-25 18:10:14,232 | INFO | Outside, rural or natural 0.084 0.000 0.046 ✗ +2026-06-25 18:10:14,232 | INFO | Chirp, tweet 0.082 0.000 0.045 ✗ +2026-06-25 18:10:14,232 | INFO | → WINNER: Environmental noise (combined=0.161) +2026-06-25 18:10:14,260 | INFO | +[ 33.80s] AMBIENT | scene='' +2026-06-25 18:10:14,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,261 | INFO | Animal 0.199 0.000 0.109 ✗ +2026-06-25 18:10:14,262 | INFO | Environmental noise 0.188 0.000 0.103 ✗ +2026-06-25 18:10:14,262 | INFO | Bird 0.137 0.000 0.075 ✗ +2026-06-25 18:10:14,262 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:14,262 | INFO | Bird vocalization, bird call, bird song 0.074 0.000 0.041 ✗ +2026-06-25 18:10:14,262 | INFO | Chirp, tweet 0.054 0.000 0.030 ✗ +2026-06-25 18:10:14,263 | INFO | → no winner +2026-06-25 18:10:14,288 | INFO | +[ 34.00s] AMBIENT | scene='' +2026-06-25 18:10:14,289 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,289 | INFO | Bird 0.232 0.000 0.128 ✓ +2026-06-25 18:10:14,289 | INFO | Environmental noise 0.202 0.000 0.111 ✗ +2026-06-25 18:10:14,289 | INFO | Animal 0.161 0.000 0.088 ✗ +2026-06-25 18:10:14,289 | INFO | Bird vocalization, bird call, bird song 0.146 0.000 0.081 ✗ +2026-06-25 18:10:14,290 | INFO | Chirp, tweet 0.114 0.000 0.063 ✗ +2026-06-25 18:10:14,290 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:14,290 | INFO | → WINNER: Bird (combined=0.128) +2026-06-25 18:10:14,312 | INFO | +[ 34.20s] AMBIENT | scene='' +2026-06-25 18:10:14,312 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,312 | INFO | Rodents, rats, mice 0.254 0.000 0.140 ✓ +2026-06-25 18:10:14,312 | INFO | Bird 0.198 0.000 0.109 ✗ +2026-06-25 18:10:14,312 | INFO | Chirp, tweet 0.131 0.000 0.072 ✗ +2026-06-25 18:10:14,312 | INFO | Bird vocalization, bird call, bird song 0.128 0.000 0.070 ✗ +2026-06-25 18:10:14,312 | INFO | Animal 0.127 0.000 0.070 ✗ +2026-06-25 18:10:14,312 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:14,312 | INFO | → WINNER: Rodents, rats, mice (combined=0.140) +2026-06-25 18:10:14,343 | INFO | +[ 34.40s] AMBIENT | scene='' +2026-06-25 18:10:14,343 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,344 | INFO | Bird 0.283 0.000 0.156 ✓ +2026-06-25 18:10:14,344 | INFO | Rodents, rats, mice 0.200 0.000 0.110 ✗ +2026-06-25 18:10:14,344 | INFO | Chirp, tweet 0.193 0.000 0.106 ✗ +2026-06-25 18:10:14,344 | INFO | Bird vocalization, bird call, bird song 0.151 0.000 0.083 ✗ +2026-06-25 18:10:14,346 | INFO | Animal 0.085 0.000 0.047 ✗ +2026-06-25 18:10:14,346 | INFO | Outside, rural or natural 0.072 0.000 0.040 ✗ +2026-06-25 18:10:14,346 | INFO | → WINNER: Bird (combined=0.156) +2026-06-25 18:10:14,371 | INFO | +[ 34.60s] AMBIENT | scene='' +2026-06-25 18:10:14,371 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,372 | INFO | Bird 0.440 0.000 0.242 ✓ +2026-06-25 18:10:14,372 | INFO | Chirp, tweet 0.325 0.000 0.179 ✓ +2026-06-25 18:10:14,372 | INFO | Bird vocalization, bird call, bird song 0.232 0.000 0.128 ✓ +2026-06-25 18:10:14,372 | INFO | Animal 0.120 0.000 0.066 ✗ +2026-06-25 18:10:14,372 | INFO | Outside, rural or natural 0.080 0.000 0.044 ✗ +2026-06-25 18:10:14,373 | INFO | Domestic animals, pets 0.044 0.000 0.024 ✗ +2026-06-25 18:10:14,373 | INFO | → WINNER: Bird (combined=0.242) +2026-06-25 18:10:14,396 | INFO | +[ 34.80s] AMBIENT | scene='' +2026-06-25 18:10:14,396 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,396 | INFO | Bird 0.361 0.000 0.199 ✓ +2026-06-25 18:10:14,396 | INFO | Chirp, tweet 0.288 0.000 0.158 ✓ +2026-06-25 18:10:14,396 | INFO | Bird vocalization, bird call, bird song 0.210 0.000 0.116 ✗ +2026-06-25 18:10:14,396 | INFO | Animal 0.070 0.000 0.038 ✗ +2026-06-25 18:10:14,396 | INFO | → WINNER: Bird (combined=0.199) +2026-06-25 18:10:14,423 | INFO | +[ 35.00s] AMBIENT | scene='' +2026-06-25 18:10:14,423 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,423 | INFO | Bird 0.416 0.000 0.229 ✓ +2026-06-25 18:10:14,423 | INFO | Chirp, tweet 0.368 0.000 0.203 ✓ +2026-06-25 18:10:14,423 | INFO | Bird vocalization, bird call, bird song 0.308 0.000 0.169 ✓ +2026-06-25 18:10:14,423 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:10:14,423 | INFO | Environmental noise 0.087 0.000 0.048 ✗ +2026-06-25 18:10:14,423 | INFO | Outside, rural or natural 0.057 0.000 0.031 ✗ +2026-06-25 18:10:14,423 | INFO | → WINNER: Bird (combined=0.229) +2026-06-25 18:10:14,450 | INFO | +[ 35.20s] AMBIENT | scene='' +2026-06-25 18:10:14,453 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,453 | INFO | Environmental noise 0.289 0.000 0.159 ✓ +2026-06-25 18:10:14,453 | INFO | Bird 0.281 0.000 0.155 ✓ +2026-06-25 18:10:14,453 | INFO | Bird vocalization, bird call, bird song 0.231 0.000 0.127 ✓ +2026-06-25 18:10:14,454 | INFO | Chirp, tweet 0.200 0.000 0.110 ✗ +2026-06-25 18:10:14,454 | INFO | Animal 0.104 0.000 0.057 ✗ +2026-06-25 18:10:14,454 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:10:14,454 | INFO | → WINNER: Environmental noise (combined=0.159) +2026-06-25 18:10:14,479 | INFO | +[ 35.40s] AMBIENT | scene='' +2026-06-25 18:10:14,479 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,479 | INFO | Environmental noise 0.402 0.000 0.221 ✓ +2026-06-25 18:10:14,479 | INFO | Bird 0.192 0.000 0.106 ✗ +2026-06-25 18:10:14,479 | INFO | Bird vocalization, bird call, bird song 0.156 0.000 0.086 ✗ +2026-06-25 18:10:14,479 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:10:14,479 | INFO | Chirp, tweet 0.111 0.000 0.061 ✗ +2026-06-25 18:10:14,479 | INFO | Outside, rural or natural 0.071 0.000 0.039 ✗ +2026-06-25 18:10:14,479 | INFO | → WINNER: Environmental noise (combined=0.221) +2026-06-25 18:10:14,507 | INFO | +[ 35.60s] AMBIENT | scene='' +2026-06-25 18:10:14,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,508 | INFO | Environmental noise 0.359 0.000 0.198 ✓ +2026-06-25 18:10:14,508 | INFO | Bird 0.201 0.000 0.111 ✗ +2026-06-25 18:10:14,508 | INFO | Bird vocalization, bird call, bird song 0.163 0.000 0.090 ✗ +2026-06-25 18:10:14,509 | INFO | Animal 0.142 0.000 0.078 ✗ +2026-06-25 18:10:14,509 | INFO | Chirp, tweet 0.127 0.000 0.070 ✗ +2026-06-25 18:10:14,509 | INFO | Outside, rural or natural 0.070 0.000 0.038 ✗ +2026-06-25 18:10:14,510 | INFO | → WINNER: Environmental noise (combined=0.198) +2026-06-25 18:10:14,532 | INFO | +[ 35.80s] AMBIENT | scene='' +2026-06-25 18:10:14,532 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,532 | INFO | Environmental noise 0.302 0.000 0.166 ✓ +2026-06-25 18:10:14,532 | INFO | Bird 0.258 0.000 0.142 ✓ +2026-06-25 18:10:14,532 | INFO | Bird vocalization, bird call, bird song 0.195 0.000 0.107 ✗ +2026-06-25 18:10:14,532 | INFO | Chirp, tweet 0.169 0.000 0.093 ✗ +2026-06-25 18:10:14,536 | INFO | Animal 0.151 0.000 0.083 ✗ +2026-06-25 18:10:14,536 | INFO | Outside, rural or natural 0.074 0.000 0.041 ✗ +2026-06-25 18:10:14,536 | INFO | → WINNER: Environmental noise (combined=0.166) +2026-06-25 18:10:14,562 | INFO | +[ 36.00s] AMBIENT | scene='' +2026-06-25 18:10:14,562 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,562 | INFO | Bird 0.258 0.000 0.142 ✓ +2026-06-25 18:10:14,562 | INFO | Environmental noise 0.232 0.000 0.128 ✓ +2026-06-25 18:10:14,562 | INFO | Chirp, tweet 0.227 0.000 0.125 ✓ +2026-06-25 18:10:14,562 | INFO | Bird vocalization, bird call, bird song 0.220 0.000 0.121 ✓ +2026-06-25 18:10:14,562 | INFO | Animal 0.141 0.000 0.077 ✗ +2026-06-25 18:10:14,562 | INFO | Outside, rural or natural 0.068 0.000 0.037 ✗ +2026-06-25 18:10:14,562 | INFO | → WINNER: Bird (combined=0.142) +2026-06-25 18:10:14,588 | INFO | +[ 36.20s] AMBIENT | scene='' +2026-06-25 18:10:14,590 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,590 | INFO | Bird 0.279 0.000 0.153 ✓ +2026-06-25 18:10:14,590 | INFO | Chirp, tweet 0.249 0.000 0.137 ✓ +2026-06-25 18:10:14,590 | INFO | Bird vocalization, bird call, bird song 0.231 0.000 0.127 ✓ +2026-06-25 18:10:14,590 | INFO | Animal 0.146 0.000 0.080 ✗ +2026-06-25 18:10:14,590 | INFO | Environmental noise 0.143 0.000 0.079 ✗ +2026-06-25 18:10:14,590 | INFO | Outside, rural or natural 0.058 0.000 0.032 ✗ +2026-06-25 18:10:14,590 | INFO | → WINNER: Bird (combined=0.153) +2026-06-25 18:10:14,613 | INFO | +[ 36.40s] AMBIENT | scene='' +2026-06-25 18:10:14,613 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,620 | INFO | Bird 0.310 0.000 0.171 ✓ +2026-06-25 18:10:14,620 | INFO | Chirp, tweet 0.270 0.000 0.148 ✓ +2026-06-25 18:10:14,621 | INFO | Bird vocalization, bird call, bird song 0.251 0.000 0.138 ✓ +2026-06-25 18:10:14,621 | INFO | Animal 0.132 0.000 0.073 ✗ +2026-06-25 18:10:14,621 | INFO | Environmental noise 0.124 0.000 0.068 ✗ +2026-06-25 18:10:14,621 | INFO | Insect 0.097 0.000 0.053 ✗ +2026-06-25 18:10:14,622 | INFO | → WINNER: Bird (combined=0.171) +2026-06-25 18:10:14,646 | INFO | +[ 36.60s] AMBIENT | scene='' +2026-06-25 18:10:14,646 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,646 | INFO | Animal 0.318 0.000 0.175 ✓ +2026-06-25 18:10:14,646 | INFO | Bird 0.307 0.000 0.169 ✓ +2026-06-25 18:10:14,646 | INFO | Chirp, tweet 0.180 0.000 0.099 ✗ +2026-06-25 18:10:14,646 | INFO | Bird vocalization, bird call, bird song 0.179 0.000 0.099 ✗ +2026-06-25 18:10:14,650 | INFO | Domestic animals, pets 0.110 0.000 0.060 ✗ +2026-06-25 18:10:14,650 | INFO | Environmental noise 0.090 0.000 0.050 ✗ +2026-06-25 18:10:14,650 | INFO | → WINNER: Animal (combined=0.175) +2026-06-25 18:10:14,675 | INFO | +[ 36.80s] AMBIENT | scene='' +2026-06-25 18:10:14,675 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,675 | INFO | Bird 0.300 0.000 0.165 ✓ +2026-06-25 18:10:14,675 | INFO | Animal 0.190 0.000 0.104 ✗ +2026-06-25 18:10:14,676 | INFO | Chirp, tweet 0.170 0.000 0.094 ✗ +2026-06-25 18:10:14,676 | INFO | Bird vocalization, bird call, bird song 0.152 0.000 0.084 ✗ +2026-06-25 18:10:14,676 | INFO | Cricket 0.069 0.000 0.038 ✗ +2026-06-25 18:10:14,676 | INFO | Insect 0.066 0.000 0.036 ✗ +2026-06-25 18:10:14,676 | INFO | → WINNER: Bird (combined=0.165) +2026-06-25 18:10:14,701 | INFO | +[ 37.00s] AMBIENT | scene='' +2026-06-25 18:10:14,701 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,702 | INFO | Bird 0.282 0.000 0.155 ✓ +2026-06-25 18:10:14,702 | INFO | Chirp, tweet 0.216 0.000 0.119 ✗ +2026-06-25 18:10:14,703 | INFO | Bird vocalization, bird call, bird song 0.193 0.000 0.106 ✗ +2026-06-25 18:10:14,704 | INFO | Animal 0.142 0.000 0.078 ✗ +2026-06-25 18:10:14,704 | INFO | Environmental noise 0.125 0.000 0.069 ✗ +2026-06-25 18:10:14,705 | INFO | Outside, rural or natural 0.077 0.000 0.042 ✗ +2026-06-25 18:10:14,705 | INFO | → WINNER: Bird (combined=0.155) +2026-06-25 18:10:14,733 | INFO | +[ 37.20s] AMBIENT | scene='' +2026-06-25 18:10:14,733 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,736 | INFO | Animal 0.470 0.000 0.258 ✓ +2026-06-25 18:10:14,736 | INFO | Bird 0.333 0.000 0.183 ✓ +2026-06-25 18:10:14,736 | INFO | Chirp, tweet 0.227 0.000 0.125 ✓ +2026-06-25 18:10:14,736 | INFO | Bird vocalization, bird call, bird song 0.218 0.000 0.120 ✓ +2026-06-25 18:10:14,736 | INFO | Domestic animals, pets 0.177 0.000 0.097 ✗ +2026-06-25 18:10:14,740 | INFO | Environmental noise 0.160 0.000 0.088 ✗ +2026-06-25 18:10:14,740 | INFO | → WINNER: Animal (combined=0.258) +2026-06-25 18:10:14,762 | INFO | +[ 37.40s] AMBIENT | scene='' +2026-06-25 18:10:14,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,762 | INFO | Bird 0.451 0.000 0.248 ✓ +2026-06-25 18:10:14,762 | INFO | Chirp, tweet 0.383 0.000 0.210 ✓ +2026-06-25 18:10:14,762 | INFO | Bird vocalization, bird call, bird song 0.359 0.000 0.198 ✓ +2026-06-25 18:10:14,762 | INFO | Animal 0.166 0.000 0.091 ✗ +2026-06-25 18:10:14,762 | INFO | Environmental noise 0.165 0.000 0.091 ✗ +2026-06-25 18:10:14,762 | INFO | Outside, rural or natural 0.084 0.000 0.046 ✗ +2026-06-25 18:10:14,762 | INFO | → WINNER: Bird (combined=0.248) +2026-06-25 18:10:14,792 | INFO | +[ 37.60s] AMBIENT | scene='' +2026-06-25 18:10:14,792 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,792 | INFO | Chirp, tweet 0.374 0.000 0.206 ✓ +2026-06-25 18:10:14,795 | INFO | Bird 0.364 0.000 0.200 ✓ +2026-06-25 18:10:14,796 | INFO | Bird vocalization, bird call, bird song 0.354 0.000 0.195 ✓ +2026-06-25 18:10:14,796 | INFO | Environmental noise 0.197 0.000 0.108 ✗ +2026-06-25 18:10:14,796 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:10:14,796 | INFO | Outside, rural or natural 0.070 0.000 0.038 ✗ +2026-06-25 18:10:14,796 | INFO | → WINNER: Chirp, tweet (combined=0.206) +2026-06-25 18:10:14,823 | INFO | +[ 37.80s] AMBIENT | scene='' +2026-06-25 18:10:14,824 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,824 | INFO | Bird 0.368 0.000 0.203 ✓ +2026-06-25 18:10:14,824 | INFO | Chirp, tweet 0.253 0.000 0.139 ✓ +2026-06-25 18:10:14,824 | INFO | Bird vocalization, bird call, bird song 0.233 0.000 0.128 ✓ +2026-06-25 18:10:14,824 | INFO | Fowl 0.165 0.000 0.091 ✗ +2026-06-25 18:10:14,824 | INFO | Environmental noise 0.151 0.000 0.083 ✗ +2026-06-25 18:10:14,825 | INFO | Animal 0.136 0.000 0.075 ✗ +2026-06-25 18:10:14,825 | INFO | → WINNER: Bird (combined=0.203) +2026-06-25 18:10:14,849 | INFO | +[ 38.00s] AMBIENT | scene='' +2026-06-25 18:10:14,852 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,852 | INFO | Bird 0.254 0.000 0.140 ✓ +2026-06-25 18:10:14,853 | INFO | Fowl 0.199 0.000 0.109 ✗ +2026-06-25 18:10:14,855 | INFO | Bird vocalization, bird call, bird song 0.128 0.000 0.070 ✗ +2026-06-25 18:10:14,855 | INFO | Chicken, rooster 0.124 0.000 0.068 ✗ +2026-06-25 18:10:14,856 | INFO | Chirp, tweet 0.123 0.000 0.068 ✗ +2026-06-25 18:10:14,856 | INFO | Animal 0.117 0.000 0.064 ✗ +2026-06-25 18:10:14,856 | INFO | → WINNER: Bird (combined=0.140) +2026-06-25 18:10:14,880 | INFO | +[ 38.20s] AMBIENT | scene='' +2026-06-25 18:10:14,880 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,880 | INFO | Fowl 0.280 0.000 0.154 ✓ +2026-06-25 18:10:14,880 | INFO | Turkey 0.218 0.000 0.120 ✗ +2026-06-25 18:10:14,880 | INFO | Animal 0.205 0.000 0.113 ✗ +2026-06-25 18:10:14,880 | INFO | Bird 0.161 0.000 0.089 ✗ +2026-06-25 18:10:14,880 | INFO | Gobble 0.160 0.000 0.088 ✗ +2026-06-25 18:10:14,880 | INFO | Environmental noise 0.090 0.000 0.049 ✗ +2026-06-25 18:10:14,886 | INFO | → WINNER: Fowl (combined=0.154) +2026-06-25 18:10:14,924 | INFO | +[ 38.40s] AMBIENT | scene='' +2026-06-25 18:10:14,925 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,925 | INFO | Turkey 0.201 0.000 0.111 ✗ +2026-06-25 18:10:14,925 | INFO | Fowl 0.199 0.000 0.109 ✗ +2026-06-25 18:10:14,925 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:14,926 | INFO | Gobble 0.136 0.000 0.075 ✗ +2026-06-25 18:10:14,926 | INFO | Environmental noise 0.128 0.000 0.070 ✗ +2026-06-25 18:10:14,926 | INFO | Bird 0.118 0.000 0.065 ✗ +2026-06-25 18:10:14,926 | INFO | → no winner +2026-06-25 18:10:14,975 | INFO | +[ 38.60s] AMBIENT | scene='' +2026-06-25 18:10:14,975 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:14,975 | INFO | Fowl 0.281 0.000 0.154 ✓ +2026-06-25 18:10:14,975 | INFO | Turkey 0.222 0.000 0.122 ✓ +2026-06-25 18:10:14,975 | INFO | Bird 0.146 0.000 0.080 ✗ +2026-06-25 18:10:14,975 | INFO | Gobble 0.138 0.000 0.076 ✗ +2026-06-25 18:10:14,975 | INFO | Animal 0.103 0.000 0.056 ✗ +2026-06-25 18:10:14,975 | INFO | Bird vocalization, bird call, bird song 0.092 0.000 0.051 ✗ +2026-06-25 18:10:14,975 | INFO | → WINNER: Fowl (combined=0.154) +2026-06-25 18:10:15,030 | INFO | +[ 38.80s] AMBIENT | scene='' +2026-06-25 18:10:15,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,030 | INFO | Bird 0.115 0.000 0.063 ✗ +2026-06-25 18:10:15,030 | INFO | Alarm 0.110 0.000 0.061 ✗ +2026-06-25 18:10:15,030 | INFO | Chirp, tweet 0.072 0.000 0.040 ✗ +2026-06-25 18:10:15,033 | INFO | Bird vocalization, bird call, bird song 0.066 0.000 0.036 ✗ +2026-06-25 18:10:15,033 | INFO | Animal 0.060 0.000 0.033 ✗ +2026-06-25 18:10:15,033 | INFO | → no winner +2026-06-25 18:10:15,079 | INFO | +[ 39.00s] AMBIENT | scene='' +2026-06-25 18:10:15,079 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,085 | INFO | Bird 0.177 0.000 0.097 ✗ +2026-06-25 18:10:15,085 | INFO | Chirp, tweet 0.113 0.000 0.062 ✗ +2026-06-25 18:10:15,085 | INFO | Bird vocalization, bird call, bird song 0.092 0.000 0.051 ✗ +2026-06-25 18:10:15,085 | INFO | Animal 0.080 0.000 0.044 ✗ +2026-06-25 18:10:15,085 | INFO | → no winner +2026-06-25 18:10:15,112 | INFO | +[ 39.20s] AMBIENT | scene='' +2026-06-25 18:10:15,120 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,120 | INFO | Bird 0.133 0.000 0.073 ✗ +2026-06-25 18:10:15,120 | INFO | Animal 0.089 0.000 0.049 ✗ +2026-06-25 18:10:15,120 | INFO | Chirp, tweet 0.066 0.000 0.036 ✗ +2026-06-25 18:10:15,120 | INFO | Bird vocalization, bird call, bird song 0.055 0.000 0.030 ✗ +2026-06-25 18:10:15,121 | INFO | → no winner +2026-06-25 18:10:15,147 | INFO | +[ 39.40s] AMBIENT | scene='' +2026-06-25 18:10:15,148 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,148 | INFO | Bird 0.225 0.000 0.124 ✓ +2026-06-25 18:10:15,148 | INFO | Animal 0.129 0.000 0.071 ✗ +2026-06-25 18:10:15,148 | INFO | Chirp, tweet 0.109 0.000 0.060 ✗ +2026-06-25 18:10:15,148 | INFO | Bird vocalization, bird call, bird song 0.093 0.000 0.051 ✗ +2026-06-25 18:10:15,149 | INFO | Duck 0.090 0.000 0.050 ✗ +2026-06-25 18:10:15,149 | INFO | Fowl 0.066 0.000 0.036 ✗ +2026-06-25 18:10:15,149 | INFO | → WINNER: Bird (combined=0.124) +2026-06-25 18:10:15,171 | INFO | +[ 39.60s] AMBIENT | scene='' +2026-06-25 18:10:15,171 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,171 | INFO | Bird 0.181 0.000 0.100 ✗ +2026-06-25 18:10:15,175 | INFO | Environmental noise 0.172 0.000 0.095 ✗ +2026-06-25 18:10:15,175 | INFO | Animal 0.150 0.000 0.083 ✗ +2026-06-25 18:10:15,175 | INFO | Bird vocalization, bird call, bird song 0.108 0.000 0.060 ✗ +2026-06-25 18:10:15,175 | INFO | Chirp, tweet 0.096 0.000 0.053 ✗ +2026-06-25 18:10:15,175 | INFO | Outside, rural or natural 0.054 0.000 0.030 ✗ +2026-06-25 18:10:15,175 | INFO | → no winner +2026-06-25 18:10:15,200 | INFO | +[ 39.80s] AMBIENT | scene='' +2026-06-25 18:10:15,200 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,200 | INFO | Bird 0.254 0.000 0.140 ✓ +2026-06-25 18:10:15,200 | INFO | Bird vocalization, bird call, bird song 0.154 0.000 0.085 ✗ +2026-06-25 18:10:15,200 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:10:15,203 | INFO | Environmental noise 0.144 0.000 0.079 ✗ +2026-06-25 18:10:15,204 | INFO | Chirp, tweet 0.140 0.000 0.077 ✗ +2026-06-25 18:10:15,204 | INFO | Cricket 0.034 0.000 0.019 ✗ +2026-06-25 18:10:15,204 | INFO | → WINNER: Bird (combined=0.140) +2026-06-25 18:10:15,230 | INFO | +[ 40.00s] AMBIENT | scene='' +2026-06-25 18:10:15,230 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,230 | INFO | Environmental noise 0.239 0.000 0.131 ✓ +2026-06-25 18:10:15,230 | INFO | Bird 0.238 0.000 0.131 ✓ +2026-06-25 18:10:15,230 | INFO | Bird vocalization, bird call, bird song 0.169 0.000 0.093 ✗ +2026-06-25 18:10:15,230 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:10:15,230 | INFO | Chirp, tweet 0.133 0.000 0.073 ✗ +2026-06-25 18:10:15,230 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:15,233 | INFO | → WINNER: Environmental noise (combined=0.131) +2026-06-25 18:10:15,253 | INFO | +[ 40.20s] AMBIENT | scene='' +2026-06-25 18:10:15,253 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,260 | INFO | Bird 0.285 0.000 0.157 ✓ +2026-06-25 18:10:15,260 | INFO | Animal 0.169 0.000 0.093 ✗ +2026-06-25 18:10:15,260 | INFO | Bird vocalization, bird call, bird song 0.167 0.000 0.092 ✗ +2026-06-25 18:10:15,260 | INFO | Chirp, tweet 0.146 0.000 0.080 ✗ +2026-06-25 18:10:15,260 | INFO | Environmental noise 0.114 0.000 0.063 ✗ +2026-06-25 18:10:15,260 | INFO | → WINNER: Bird (combined=0.157) +2026-06-25 18:10:15,305 | INFO | +[ 40.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,333 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,333 | INFO | Environmental noise 0.145 0.320 0.224 ✓ +2026-06-25 18:10:15,336 | INFO | Bird 0.390 0.000 0.214 ✓ +2026-06-25 18:10:15,336 | INFO | Chirp, tweet 0.280 0.000 0.154 ✓ +2026-06-25 18:10:15,337 | INFO | Bird vocalization, bird call, bird song 0.250 0.000 0.137 ✓ +2026-06-25 18:10:15,337 | INFO | Animal 0.192 0.000 0.106 ✗ +2026-06-25 18:10:15,337 | INFO | Duck 0.075 0.000 0.041 ✗ +2026-06-25 18:10:15,337 | INFO | → WINNER: Environmental noise (combined=0.224) +2026-06-25 18:10:15,363 | INFO | +[ 40.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,364 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,364 | INFO | Bird 0.405 0.000 0.223 ✓ +2026-06-25 18:10:15,364 | INFO | Chirp, tweet 0.282 0.000 0.155 ✓ +2026-06-25 18:10:15,364 | INFO | Bird vocalization, bird call, bird song 0.245 0.000 0.135 ✓ +2026-06-25 18:10:15,364 | INFO | Duck 0.201 0.000 0.111 ✗ +2026-06-25 18:10:15,364 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:10:15,364 | INFO | Fowl 0.131 0.000 0.072 ✗ +2026-06-25 18:10:15,365 | INFO | → WINNER: Bird (combined=0.223) +2026-06-25 18:10:15,389 | INFO | +[ 40.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,390 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,390 | INFO | Bird 0.463 0.000 0.255 ✓ +2026-06-25 18:10:15,390 | INFO | Environmental noise 0.055 0.320 0.174 ✓ +2026-06-25 18:10:15,390 | INFO | Chirp, tweet 0.307 0.000 0.169 ✓ +2026-06-25 18:10:15,390 | INFO | Bird vocalization, bird call, bird song 0.250 0.000 0.137 ✓ +2026-06-25 18:10:15,390 | INFO | Duck 0.231 0.000 0.127 ✓ +2026-06-25 18:10:15,390 | INFO | Animal 0.212 0.000 0.116 ✗ +2026-06-25 18:10:15,390 | INFO | → WINNER: Bird (combined=0.255) +2026-06-25 18:10:15,417 | INFO | +[ 41.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,417 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,417 | INFO | Bird 0.574 0.000 0.316 ✓ +2026-06-25 18:10:15,418 | INFO | Chirp, tweet 0.435 0.000 0.239 ✓ +2026-06-25 18:10:15,418 | INFO | Bird vocalization, bird call, bird song 0.348 0.000 0.191 ✓ +2026-06-25 18:10:15,418 | INFO | Animal 0.233 0.000 0.128 ✓ +2026-06-25 18:10:15,418 | INFO | Duck 0.224 0.000 0.123 ✓ +2026-06-25 18:10:15,418 | INFO | Domestic animals, pets 0.110 0.000 0.060 ✗ +2026-06-25 18:10:15,418 | INFO | → WINNER: Bird (combined=0.316) +2026-06-25 18:10:15,444 | INFO | +[ 41.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,445 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,446 | INFO | Bird 0.697 0.000 0.383 ✓ +2026-06-25 18:10:15,446 | INFO | Chirp, tweet 0.526 0.000 0.289 ✓ +2026-06-25 18:10:15,446 | INFO | Bird vocalization, bird call, bird song 0.368 0.000 0.202 ✓ +2026-06-25 18:10:15,446 | INFO | Animal 0.244 0.000 0.134 ✓ +2026-06-25 18:10:15,446 | INFO | Domestic animals, pets 0.139 0.000 0.076 ✗ +2026-06-25 18:10:15,446 | INFO | Duck 0.132 0.000 0.073 ✗ +2026-06-25 18:10:15,446 | INFO | → WINNER: Bird (combined=0.383) +2026-06-25 18:10:15,471 | INFO | +[ 41.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,471 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,471 | INFO | Bird 0.558 0.000 0.307 ✓ +2026-06-25 18:10:15,471 | INFO | Chirp, tweet 0.442 0.000 0.243 ✓ +2026-06-25 18:10:15,471 | INFO | Bird vocalization, bird call, bird song 0.357 0.000 0.197 ✓ +2026-06-25 18:10:15,471 | INFO | Animal 0.187 0.000 0.103 ✗ +2026-06-25 18:10:15,471 | INFO | Domestic animals, pets 0.085 0.000 0.047 ✗ +2026-06-25 18:10:15,471 | INFO | Outside, rural or natural 0.056 0.000 0.031 ✗ +2026-06-25 18:10:15,471 | INFO | → WINNER: Bird (combined=0.307) +2026-06-25 18:10:15,503 | INFO | +[ 41.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,503 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,503 | INFO | Bird 0.390 0.000 0.215 ✓ +2026-06-25 18:10:15,503 | INFO | Environmental noise 0.087 0.320 0.192 ✓ +2026-06-25 18:10:15,504 | INFO | Bird vocalization, bird call, bird song 0.219 0.000 0.120 ✓ +2026-06-25 18:10:15,505 | INFO | Chirp, tweet 0.206 0.000 0.113 ✗ +2026-06-25 18:10:15,505 | INFO | Animal 0.192 0.000 0.105 ✗ +2026-06-25 18:10:15,505 | INFO | Domestic animals, pets 0.064 0.000 0.035 ✗ +2026-06-25 18:10:15,505 | INFO | → WINNER: Bird (combined=0.215) +2026-06-25 18:10:15,562 | INFO | +[ 41.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,563 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,563 | INFO | Environmental noise 0.186 0.320 0.246 ✓ +2026-06-25 18:10:15,563 | INFO | Bird 0.324 0.000 0.178 ✓ +2026-06-25 18:10:15,563 | INFO | Bird vocalization, bird call, bird song 0.223 0.000 0.123 ✓ +2026-06-25 18:10:15,563 | INFO | Animal 0.209 0.000 0.115 ✗ +2026-06-25 18:10:15,563 | INFO | Chirp, tweet 0.207 0.000 0.114 ✗ +2026-06-25 18:10:15,563 | INFO | Outside, rural or natural 0.065 0.000 0.036 ✗ +2026-06-25 18:10:15,563 | INFO | → WINNER: Environmental noise (combined=0.246) +2026-06-25 18:10:15,620 | INFO | +[ 42.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,620 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,620 | INFO | Environmental noise 0.177 0.320 0.241 ✓ +2026-06-25 18:10:15,620 | INFO | Bird 0.230 0.000 0.127 ✓ +2026-06-25 18:10:15,620 | INFO | Animal 0.175 0.000 0.096 ✗ +2026-06-25 18:10:15,620 | INFO | Bird vocalization, bird call, bird song 0.163 0.000 0.089 ✗ +2026-06-25 18:10:15,620 | INFO | Chirp, tweet 0.144 0.000 0.079 ✗ +2026-06-25 18:10:15,620 | INFO | Outside, rural or natural 0.070 0.000 0.039 ✗ +2026-06-25 18:10:15,620 | INFO | → WINNER: Environmental noise (combined=0.241) +2026-06-25 18:10:15,678 | INFO | +[ 42.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,678 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,680 | INFO | Environmental noise 0.337 0.320 0.329 ✓ +2026-06-25 18:10:15,680 | INFO | Bird 0.175 0.000 0.096 ✗ +2026-06-25 18:10:15,680 | INFO | Animal 0.172 0.000 0.094 ✗ +2026-06-25 18:10:15,680 | INFO | Bird vocalization, bird call, bird song 0.130 0.000 0.071 ✗ +2026-06-25 18:10:15,680 | INFO | Chirp, tweet 0.103 0.000 0.056 ✗ +2026-06-25 18:10:15,680 | INFO | Outside, rural or natural 0.081 0.000 0.044 ✗ +2026-06-25 18:10:15,680 | INFO | → WINNER: Environmental noise (combined=0.329) +2026-06-25 18:10:15,717 | INFO | +[ 42.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,718 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,718 | INFO | Environmental noise 0.318 0.320 0.319 ✓ +2026-06-25 18:10:15,718 | INFO | Bird 0.216 0.000 0.119 ✗ +2026-06-25 18:10:15,718 | INFO | Bird vocalization, bird call, bird song 0.180 0.000 0.099 ✗ +2026-06-25 18:10:15,718 | INFO | Chirp, tweet 0.170 0.000 0.093 ✗ +2026-06-25 18:10:15,718 | INFO | Animal 0.138 0.000 0.076 ✗ +2026-06-25 18:10:15,718 | INFO | Outside, rural or natural 0.077 0.000 0.042 ✗ +2026-06-25 18:10:15,720 | INFO | → WINNER: Environmental noise (combined=0.319) +2026-06-25 18:10:15,746 | INFO | +[ 42.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,746 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,746 | INFO | Environmental noise 0.261 0.320 0.287 ✓ +2026-06-25 18:10:15,746 | INFO | Bird 0.281 0.000 0.154 ✓ +2026-06-25 18:10:15,746 | INFO | Chirp, tweet 0.278 0.000 0.153 ✓ +2026-06-25 18:10:15,746 | INFO | Bird vocalization, bird call, bird song 0.273 0.000 0.150 ✓ +2026-06-25 18:10:15,746 | INFO | Animal 0.143 0.000 0.079 ✗ +2026-06-25 18:10:15,746 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:15,746 | INFO | → WINNER: Environmental noise (combined=0.287) +2026-06-25 18:10:15,771 | INFO | +[ 42.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,771 | INFO | Environmental noise 0.123 0.320 0.212 ✓ +2026-06-25 18:10:15,771 | INFO | Chirp, tweet 0.359 0.000 0.198 ✓ +2026-06-25 18:10:15,771 | INFO | Bird 0.337 0.000 0.185 ✓ +2026-06-25 18:10:15,771 | INFO | Bird vocalization, bird call, bird song 0.306 0.000 0.168 ✓ +2026-06-25 18:10:15,771 | INFO | Animal 0.137 0.000 0.075 ✗ +2026-06-25 18:10:15,771 | INFO | Outside, rural or natural 0.066 0.000 0.036 ✗ +2026-06-25 18:10:15,771 | INFO | → WINNER: Environmental noise (combined=0.212) +2026-06-25 18:10:15,800 | INFO | +[ 43.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,803 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,803 | INFO | Bird 0.385 0.000 0.211 ✓ +2026-06-25 18:10:15,804 | INFO | Chirp, tweet 0.371 0.000 0.204 ✓ +2026-06-25 18:10:15,804 | INFO | Environmental noise 0.064 0.320 0.179 ✓ +2026-06-25 18:10:15,804 | INFO | Bird vocalization, bird call, bird song 0.292 0.000 0.161 ✓ +2026-06-25 18:10:15,804 | INFO | Animal 0.112 0.000 0.062 ✗ +2026-06-25 18:10:15,804 | INFO | Domestic animals, pets 0.061 0.000 0.034 ✗ +2026-06-25 18:10:15,804 | INFO | → WINNER: Bird (combined=0.211) +2026-06-25 18:10:15,830 | INFO | +[ 43.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,831 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,831 | INFO | Environmental noise 0.131 0.320 0.216 ✓ +2026-06-25 18:10:15,831 | INFO | Bird 0.345 0.000 0.190 ✓ +2026-06-25 18:10:15,831 | INFO | Chirp, tweet 0.259 0.000 0.142 ✓ +2026-06-25 18:10:15,832 | INFO | Bird vocalization, bird call, bird song 0.239 0.000 0.131 ✓ +2026-06-25 18:10:15,832 | INFO | Animal 0.161 0.000 0.089 ✗ +2026-06-25 18:10:15,832 | INFO | Fowl 0.113 0.000 0.062 ✗ +2026-06-25 18:10:15,832 | INFO | → WINNER: Environmental noise (combined=0.216) +2026-06-25 18:10:15,854 | INFO | +[ 43.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,854 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,860 | INFO | Environmental noise 0.228 0.320 0.269 ✓ +2026-06-25 18:10:15,860 | INFO | Bird 0.300 0.000 0.165 ✓ +2026-06-25 18:10:15,860 | INFO | Bird vocalization, bird call, bird song 0.247 0.000 0.136 ✓ +2026-06-25 18:10:15,860 | INFO | Chirp, tweet 0.236 0.000 0.130 ✓ +2026-06-25 18:10:15,860 | INFO | Animal 0.134 0.000 0.074 ✗ +2026-06-25 18:10:15,860 | INFO | Outside, rural or natural 0.078 0.000 0.043 ✗ +2026-06-25 18:10:15,860 | INFO | → WINNER: Environmental noise (combined=0.269) +2026-06-25 18:10:15,887 | INFO | +[ 43.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,887 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,887 | INFO | Environmental noise 0.139 0.320 0.220 ✓ +2026-06-25 18:10:15,890 | INFO | Bird 0.372 0.000 0.204 ✓ +2026-06-25 18:10:15,890 | INFO | Chirp, tweet 0.284 0.000 0.156 ✓ +2026-06-25 18:10:15,890 | INFO | Bird vocalization, bird call, bird song 0.263 0.000 0.144 ✓ +2026-06-25 18:10:15,890 | INFO | Animal 0.156 0.000 0.086 ✗ +2026-06-25 18:10:15,890 | INFO | Outside, rural or natural 0.074 0.000 0.041 ✗ +2026-06-25 18:10:15,890 | INFO | → WINNER: Environmental noise (combined=0.220) +2026-06-25 18:10:15,915 | INFO | +[ 43.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,915 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,915 | INFO | Environmental noise 0.153 0.320 0.228 ✓ +2026-06-25 18:10:15,915 | INFO | Bird 0.268 0.000 0.147 ✓ +2026-06-25 18:10:15,915 | INFO | Animal 0.177 0.000 0.097 ✗ +2026-06-25 18:10:15,915 | INFO | Chicken, rooster 0.144 0.000 0.079 ✗ +2026-06-25 18:10:15,915 | INFO | Bird vocalization, bird call, bird song 0.129 0.000 0.071 ✗ +2026-06-25 18:10:15,915 | INFO | Chirp, tweet 0.117 0.000 0.065 ✗ +2026-06-25 18:10:15,915 | INFO | → WINNER: Environmental noise (combined=0.228) +2026-06-25 18:10:15,946 | INFO | +[ 44.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,947 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,947 | INFO | Bird 0.190 0.000 0.104 ✗ +2026-06-25 18:10:15,947 | INFO | Chicken, rooster 0.152 0.000 0.084 ✗ +2026-06-25 18:10:15,948 | INFO | Animal 0.141 0.000 0.077 ✗ +2026-06-25 18:10:15,948 | INFO | Cluck 0.110 0.000 0.060 ✗ +2026-06-25 18:10:15,948 | INFO | Fowl 0.097 0.000 0.053 ✗ +2026-06-25 18:10:15,948 | INFO | Bird vocalization, bird call, bird song 0.064 0.000 0.035 ✗ +2026-06-25 18:10:15,948 | INFO | → no winner +2026-06-25 18:10:15,971 | INFO | +[ 44.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:15,971 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:15,971 | INFO | Bird 0.304 0.000 0.168 ✓ +2026-06-25 18:10:15,971 | INFO | Chicken, rooster 0.226 0.000 0.124 ✓ +2026-06-25 18:10:15,971 | INFO | Cluck 0.152 0.000 0.084 ✗ +2026-06-25 18:10:15,971 | INFO | Fowl 0.143 0.000 0.079 ✗ +2026-06-25 18:10:15,971 | INFO | Animal 0.129 0.000 0.071 ✗ +2026-06-25 18:10:15,971 | INFO | Chirp, tweet 0.127 0.000 0.070 ✗ +2026-06-25 18:10:15,971 | INFO | → WINNER: Bird (combined=0.168) +2026-06-25 18:10:16,003 | INFO | +[ 44.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,004 | INFO | Environmental noise 0.079 0.320 0.187 ✓ +2026-06-25 18:10:16,004 | INFO | Insect 0.052 0.299 0.163 ✓ +2026-06-25 18:10:16,004 | INFO | Bird 0.249 0.000 0.137 ✓ +2026-06-25 18:10:16,004 | INFO | Animal 0.151 0.000 0.083 ✗ +2026-06-25 18:10:16,004 | INFO | Chirp, tweet 0.129 0.000 0.071 ✗ +2026-06-25 18:10:16,004 | INFO | Bird vocalization, bird call, bird song 0.123 0.000 0.068 ✗ +2026-06-25 18:10:16,004 | INFO | → WINNER: Environmental noise (combined=0.187) +2026-06-25 18:10:16,030 | INFO | +[ 44.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,030 | INFO | Environmental noise 0.100 0.320 0.199 ✓ +2026-06-25 18:10:16,033 | INFO | Insect 0.085 0.299 0.181 ✓ +2026-06-25 18:10:16,033 | INFO | Bird 0.243 0.000 0.134 ✓ +2026-06-25 18:10:16,033 | INFO | Chirp, tweet 0.173 0.000 0.095 ✗ +2026-06-25 18:10:16,033 | INFO | Bird vocalization, bird call, bird song 0.162 0.000 0.089 ✗ +2026-06-25 18:10:16,033 | INFO | Animal 0.131 0.000 0.072 ✗ +2026-06-25 18:10:16,033 | INFO | → WINNER: Environmental noise (combined=0.199) +2026-06-25 18:10:16,067 | INFO | +[ 44.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,068 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,068 | INFO | Environmental noise 0.150 0.320 0.227 ✓ +2026-06-25 18:10:16,068 | INFO | Insect 0.111 0.299 0.196 ✓ +2026-06-25 18:10:16,069 | INFO | Bird 0.182 0.000 0.100 ✗ +2026-06-25 18:10:16,069 | INFO | Animal 0.128 0.000 0.070 ✗ +2026-06-25 18:10:16,069 | INFO | Bird vocalization, bird call, bird song 0.120 0.000 0.066 ✗ +2026-06-25 18:10:16,069 | INFO | Chirp, tweet 0.106 0.000 0.058 ✗ +2026-06-25 18:10:16,070 | INFO | → WINNER: Environmental noise (combined=0.227) +2026-06-25 18:10:16,092 | INFO | +[ 45.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,092 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,095 | INFO | Environmental noise 0.224 0.320 0.267 ✓ +2026-06-25 18:10:16,095 | INFO | Insect 0.096 0.299 0.187 ✓ +2026-06-25 18:10:16,095 | INFO | Animal 0.207 0.000 0.114 ✗ +2026-06-25 18:10:16,095 | INFO | Bird 0.198 0.000 0.109 ✗ +2026-06-25 18:10:16,096 | INFO | Bird vocalization, bird call, bird song 0.113 0.000 0.062 ✗ +2026-06-25 18:10:16,096 | INFO | Chirp, tweet 0.089 0.000 0.049 ✗ +2026-06-25 18:10:16,096 | INFO | → WINNER: Environmental noise (combined=0.267) +2026-06-25 18:10:16,120 | INFO | +[ 45.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,120 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,120 | INFO | Environmental noise 0.323 0.320 0.322 ✓ +2026-06-25 18:10:16,120 | INFO | Insect 0.112 0.299 0.196 ✓ +2026-06-25 18:10:16,120 | INFO | Animal 0.184 0.000 0.101 ✗ +2026-06-25 18:10:16,120 | INFO | Bird 0.176 0.000 0.097 ✗ +2026-06-25 18:10:16,120 | INFO | Bird vocalization, bird call, bird song 0.123 0.000 0.068 ✗ +2026-06-25 18:10:16,120 | INFO | Chirp, tweet 0.096 0.000 0.053 ✗ +2026-06-25 18:10:16,120 | INFO | → WINNER: Environmental noise (combined=0.322) +2026-06-25 18:10:16,148 | INFO | +[ 45.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,149 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,149 | INFO | Environmental noise 0.210 0.320 0.260 ✓ +2026-06-25 18:10:16,149 | INFO | Insect 0.115 0.299 0.197 ✓ +2026-06-25 18:10:16,149 | INFO | Animal 0.216 0.000 0.119 ✗ +2026-06-25 18:10:16,150 | INFO | Bird 0.166 0.000 0.091 ✗ +2026-06-25 18:10:16,150 | INFO | Bird vocalization, bird call, bird song 0.090 0.000 0.049 ✗ +2026-06-25 18:10:16,150 | INFO | Chirp, tweet 0.077 0.000 0.043 ✗ +2026-06-25 18:10:16,150 | INFO | → WINNER: Environmental noise (combined=0.260) +2026-06-25 18:10:16,175 | INFO | +[ 45.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,176 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,176 | INFO | Environmental noise 0.157 0.320 0.231 ✓ +2026-06-25 18:10:16,176 | INFO | Insect 0.064 0.299 0.170 ✓ +2026-06-25 18:10:16,176 | INFO | Animal 0.308 0.000 0.169 ✓ +2026-06-25 18:10:16,176 | INFO | Bird 0.176 0.000 0.097 ✗ +2026-06-25 18:10:16,176 | INFO | Outside, rural or natural 0.093 0.000 0.051 ✗ +2026-06-25 18:10:16,176 | INFO | Bird vocalization, bird call, bird song 0.077 0.000 0.042 ✗ +2026-06-25 18:10:16,178 | INFO | → WINNER: Environmental noise (combined=0.231) +2026-06-25 18:10:16,203 | INFO | +[ 45.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,203 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,204 | INFO | Environmental noise 0.148 0.320 0.225 ✓ +2026-06-25 18:10:16,204 | INFO | Animal 0.377 0.000 0.207 ✓ +2026-06-25 18:10:16,204 | INFO | Insect 0.077 0.299 0.177 ✓ +2026-06-25 18:10:16,204 | INFO | Bird 0.137 0.000 0.075 ✗ +2026-06-25 18:10:16,205 | INFO | Outside, rural or natural 0.123 0.000 0.068 ✗ +2026-06-25 18:10:16,205 | INFO | Cricket 0.064 0.000 0.035 ✗ +2026-06-25 18:10:16,205 | INFO | → WINNER: Environmental noise (combined=0.225) +2026-06-25 18:10:16,229 | INFO | +[ 46.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,229 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,229 | INFO | Animal 0.397 0.000 0.218 ✓ +2026-06-25 18:10:16,229 | INFO | Environmental noise 0.055 0.320 0.174 ✓ +2026-06-25 18:10:16,229 | INFO | Wild animals 0.094 0.000 0.051 ✗ +2026-06-25 18:10:16,229 | INFO | Bird 0.086 0.000 0.048 ✗ +2026-06-25 18:10:16,229 | INFO | Outside, rural or natural 0.082 0.000 0.045 ✗ +2026-06-25 18:10:16,229 | INFO | Livestock, farm animals, working animals 0.041 0.000 0.022 ✗ +2026-06-25 18:10:16,229 | INFO | → WINNER: Animal (combined=0.218) +2026-06-25 18:10:16,253 | INFO | +[ 46.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,253 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,253 | INFO | Environmental noise 0.059 0.320 0.177 ✓ +2026-06-25 18:10:16,253 | INFO | Animal 0.177 0.000 0.097 ✗ +2026-06-25 18:10:16,253 | INFO | Water 0.137 0.000 0.075 ✗ +2026-06-25 18:10:16,253 | INFO | Liquid 0.098 0.000 0.054 ✗ +2026-06-25 18:10:16,253 | INFO | Bird 0.083 0.000 0.045 ✗ +2026-06-25 18:10:16,253 | INFO | Trickle, dribble 0.082 0.000 0.045 ✗ +2026-06-25 18:10:16,253 | INFO | → WINNER: Environmental noise (combined=0.177) +2026-06-25 18:10:16,283 | INFO | +[ 46.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,283 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,283 | INFO | Water 0.125 0.000 0.069 ✗ +2026-06-25 18:10:16,283 | INFO | Liquid 0.091 0.000 0.050 ✗ +2026-06-25 18:10:16,283 | INFO | Animal 0.087 0.000 0.048 ✗ +2026-06-25 18:10:16,283 | INFO | Trickle, dribble 0.084 0.000 0.046 ✗ +2026-06-25 18:10:16,283 | INFO | Drip 0.072 0.000 0.040 ✗ +2026-06-25 18:10:16,283 | INFO | Bird 0.063 0.000 0.035 ✗ +2026-06-25 18:10:16,283 | INFO | → no winner +2026-06-25 18:10:16,310 | INFO | +[ 46.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,312 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,312 | INFO | Environmental noise 0.147 0.320 0.225 ✓ +2026-06-25 18:10:16,313 | INFO | Insect 0.064 0.299 0.170 ✓ +2026-06-25 18:10:16,313 | INFO | Animal 0.215 0.000 0.118 ✗ +2026-06-25 18:10:16,313 | INFO | Bird 0.195 0.000 0.107 ✗ +2026-06-25 18:10:16,313 | INFO | Bird vocalization, bird call, bird song 0.127 0.000 0.070 ✗ +2026-06-25 18:10:16,314 | INFO | Chirp, tweet 0.113 0.000 0.062 ✗ +2026-06-25 18:10:16,314 | INFO | → WINNER: Environmental noise (combined=0.225) +2026-06-25 18:10:16,340 | INFO | +[ 46.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,340 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,340 | INFO | Environmental noise 0.157 0.320 0.230 ✓ +2026-06-25 18:10:16,340 | INFO | Animal 0.247 0.000 0.136 ✓ +2026-06-25 18:10:16,340 | INFO | Bird 0.178 0.000 0.098 ✗ +2026-06-25 18:10:16,340 | INFO | Bird vocalization, bird call, bird song 0.096 0.000 0.053 ✗ +2026-06-25 18:10:16,340 | INFO | Chirp, tweet 0.081 0.000 0.045 ✗ +2026-06-25 18:10:16,340 | INFO | Outside, rural or natural 0.075 0.000 0.041 ✗ +2026-06-25 18:10:16,340 | INFO | → WINNER: Environmental noise (combined=0.230) +2026-06-25 18:10:16,370 | INFO | +[ 47.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,370 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,371 | INFO | Environmental noise 0.128 0.320 0.214 ✓ +2026-06-25 18:10:16,371 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:16,371 | INFO | Bird 0.183 0.000 0.101 ✗ +2026-06-25 18:10:16,372 | INFO | Fowl 0.088 0.000 0.049 ✗ +2026-06-25 18:10:16,372 | INFO | Outside, rural or natural 0.080 0.000 0.044 ✗ +2026-06-25 18:10:16,372 | INFO | Bird vocalization, bird call, bird song 0.071 0.000 0.039 ✗ +2026-06-25 18:10:16,372 | INFO | → WINNER: Environmental noise (combined=0.214) +2026-06-25 18:10:16,396 | INFO | +[ 47.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,396 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,396 | INFO | Environmental noise 0.073 0.320 0.184 ✓ +2026-06-25 18:10:16,400 | INFO | Bird 0.261 0.000 0.143 ✓ +2026-06-25 18:10:16,400 | INFO | Animal 0.198 0.000 0.109 ✗ +2026-06-25 18:10:16,400 | INFO | Fowl 0.116 0.000 0.064 ✗ +2026-06-25 18:10:16,400 | INFO | Bird vocalization, bird call, bird song 0.105 0.000 0.058 ✗ +2026-06-25 18:10:16,400 | INFO | Chicken, rooster 0.099 0.000 0.055 ✗ +2026-06-25 18:10:16,400 | INFO | → WINNER: Environmental noise (combined=0.184) +2026-06-25 18:10:16,426 | INFO | +[ 47.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,426 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,427 | INFO | Bird 0.242 0.000 0.133 ✓ +2026-06-25 18:10:16,427 | INFO | Animal 0.171 0.000 0.094 ✗ +2026-06-25 18:10:16,428 | INFO | Bird vocalization, bird call, bird song 0.095 0.000 0.052 ✗ +2026-06-25 18:10:16,428 | INFO | Chirp, tweet 0.093 0.000 0.051 ✗ +2026-06-25 18:10:16,428 | INFO | Fowl 0.074 0.000 0.041 ✗ +2026-06-25 18:10:16,429 | INFO | Chicken, rooster 0.070 0.000 0.038 ✗ +2026-06-25 18:10:16,429 | INFO | → WINNER: Bird (combined=0.133) +2026-06-25 18:10:16,454 | INFO | +[ 47.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,454 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,456 | INFO | Bird 0.166 0.000 0.091 ✗ +2026-06-25 18:10:16,456 | INFO | Animal 0.114 0.000 0.063 ✗ +2026-06-25 18:10:16,456 | INFO | Chirp, tweet 0.093 0.000 0.051 ✗ +2026-06-25 18:10:16,456 | INFO | Bird vocalization, bird call, bird song 0.078 0.000 0.043 ✗ +2026-06-25 18:10:16,457 | INFO | Rodents, rats, mice 0.064 0.000 0.035 ✗ +2026-06-25 18:10:16,457 | INFO | Outside, rural or natural 0.053 0.000 0.029 ✗ +2026-06-25 18:10:16,457 | INFO | → no winner +2026-06-25 18:10:16,480 | INFO | +[ 47.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,480 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,480 | INFO | Animal 0.150 0.000 0.083 ✗ +2026-06-25 18:10:16,480 | INFO | Frog 0.065 0.000 0.036 ✗ +2026-06-25 18:10:16,480 | INFO | Bird 0.061 0.000 0.034 ✗ +2026-06-25 18:10:16,480 | INFO | Rodents, rats, mice 0.059 0.000 0.033 ✗ +2026-06-25 18:10:16,480 | INFO | → no winner +2026-06-25 18:10:16,510 | INFO | +[ 48.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,510 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,510 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:10:16,510 | INFO | Duck 0.123 0.000 0.068 ✗ +2026-06-25 18:10:16,511 | INFO | Bird 0.098 0.000 0.054 ✗ +2026-06-25 18:10:16,511 | INFO | Rodents, rats, mice 0.084 0.000 0.046 ✗ +2026-06-25 18:10:16,512 | INFO | Quack 0.068 0.000 0.037 ✗ +2026-06-25 18:10:16,512 | INFO | Frog 0.057 0.000 0.032 ✗ +2026-06-25 18:10:16,512 | INFO | → no winner +2026-06-25 18:10:16,537 | INFO | +[ 48.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,537 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,538 | INFO | Environmental noise 0.063 0.320 0.179 ✓ +2026-06-25 18:10:16,538 | INFO | Bird 0.244 0.000 0.134 ✓ +2026-06-25 18:10:16,538 | INFO | Animal 0.231 0.000 0.127 ✓ +2026-06-25 18:10:16,538 | INFO | Duck 0.164 0.000 0.090 ✗ +2026-06-25 18:10:16,538 | INFO | Chirp, tweet 0.135 0.000 0.074 ✗ +2026-06-25 18:10:16,538 | INFO | Bird vocalization, bird call, bird song 0.120 0.000 0.066 ✗ +2026-06-25 18:10:16,540 | INFO | → WINNER: Environmental noise (combined=0.179) +2026-06-25 18:10:16,562 | INFO | +[ 48.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,562 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,562 | INFO | Animal 0.246 0.000 0.136 ✓ +2026-06-25 18:10:16,562 | INFO | Bird 0.219 0.000 0.120 ✓ +2026-06-25 18:10:16,562 | INFO | Duck 0.189 0.000 0.104 ✗ +2026-06-25 18:10:16,562 | INFO | Chirp, tweet 0.094 0.000 0.052 ✗ +2026-06-25 18:10:16,562 | INFO | Bird vocalization, bird call, bird song 0.084 0.000 0.046 ✗ +2026-06-25 18:10:16,562 | INFO | Fowl 0.080 0.000 0.044 ✗ +2026-06-25 18:10:16,562 | INFO | → WINNER: Animal (combined=0.136) +2026-06-25 18:10:16,590 | INFO | +[ 48.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,590 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,590 | INFO | Environmental noise 0.077 0.320 0.187 ✓ +2026-06-25 18:10:16,590 | INFO | Bird 0.228 0.000 0.125 ✓ +2026-06-25 18:10:16,590 | INFO | Chirp, tweet 0.142 0.000 0.078 ✗ +2026-06-25 18:10:16,590 | INFO | Bird vocalization, bird call, bird song 0.124 0.000 0.068 ✗ +2026-06-25 18:10:16,590 | INFO | Animal 0.114 0.000 0.063 ✗ +2026-06-25 18:10:16,590 | INFO | Fowl 0.066 0.000 0.036 ✗ +2026-06-25 18:10:16,590 | INFO | → WINNER: Environmental noise (combined=0.187) +2026-06-25 18:10:16,621 | INFO | +[ 48.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,621 | INFO | Environmental noise 0.234 0.320 0.273 ✓ +2026-06-25 18:10:16,621 | INFO | Turkey 0.209 0.000 0.115 ✗ +2026-06-25 18:10:16,621 | INFO | Bird 0.184 0.000 0.101 ✗ +2026-06-25 18:10:16,621 | INFO | Gobble 0.157 0.000 0.086 ✗ +2026-06-25 18:10:16,621 | INFO | Fowl 0.134 0.000 0.074 ✗ +2026-06-25 18:10:16,621 | INFO | Bird vocalization, bird call, bird song 0.132 0.000 0.072 ✗ +2026-06-25 18:10:16,621 | INFO | → WINNER: Environmental noise (combined=0.273) +2026-06-25 18:10:16,650 | INFO | +[ 49.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,650 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,650 | INFO | Environmental noise 0.208 0.320 0.258 ✓ +2026-06-25 18:10:16,650 | INFO | Bird 0.185 0.000 0.102 ✗ +2026-06-25 18:10:16,650 | INFO | Animal 0.151 0.000 0.083 ✗ +2026-06-25 18:10:16,650 | INFO | Bird vocalization, bird call, bird song 0.113 0.000 0.062 ✗ +2026-06-25 18:10:16,650 | INFO | Chirp, tweet 0.087 0.000 0.048 ✗ +2026-06-25 18:10:16,650 | INFO | Outside, rural or natural 0.078 0.000 0.043 ✗ +2026-06-25 18:10:16,653 | INFO | → WINNER: Environmental noise (combined=0.258) +2026-06-25 18:10:16,678 | INFO | +[ 49.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,680 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,680 | INFO | Environmental noise 0.140 0.320 0.221 ✓ +2026-06-25 18:10:16,680 | INFO | Insect 0.049 0.299 0.161 ✓ +2026-06-25 18:10:16,680 | INFO | Animal 0.213 0.000 0.117 ✗ +2026-06-25 18:10:16,680 | INFO | Bird 0.196 0.000 0.107 ✗ +2026-06-25 18:10:16,681 | INFO | Bird vocalization, bird call, bird song 0.086 0.000 0.047 ✗ +2026-06-25 18:10:16,681 | INFO | Outside, rural or natural 0.083 0.000 0.046 ✗ +2026-06-25 18:10:16,681 | INFO | → WINNER: Environmental noise (combined=0.221) +2026-06-25 18:10:16,706 | INFO | +[ 49.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,706 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,706 | INFO | Environmental noise 0.262 0.320 0.288 ✓ +2026-06-25 18:10:16,706 | INFO | Bird vocalization, bird call, bird song 0.158 0.000 0.087 ✗ +2026-06-25 18:10:16,706 | INFO | Bird 0.152 0.000 0.084 ✗ +2026-06-25 18:10:16,706 | INFO | Animal 0.133 0.000 0.073 ✗ +2026-06-25 18:10:16,706 | INFO | Chirp, tweet 0.121 0.000 0.067 ✗ +2026-06-25 18:10:16,706 | INFO | Outside, rural or natural 0.070 0.000 0.038 ✗ +2026-06-25 18:10:16,710 | INFO | → WINNER: Environmental noise (combined=0.288) +2026-06-25 18:10:16,734 | INFO | +[ 49.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,734 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,734 | INFO | Environmental noise 0.138 0.320 0.220 ✓ +2026-06-25 18:10:16,734 | INFO | Bird 0.145 0.000 0.080 ✗ +2026-06-25 18:10:16,736 | INFO | Water 0.144 0.000 0.080 ✗ +2026-06-25 18:10:16,736 | INFO | Bird vocalization, bird call, bird song 0.122 0.000 0.067 ✗ +2026-06-25 18:10:16,736 | INFO | Animal 0.110 0.000 0.061 ✗ +2026-06-25 18:10:16,737 | INFO | Chirp, tweet 0.090 0.000 0.049 ✗ +2026-06-25 18:10:16,737 | INFO | → WINNER: Environmental noise (combined=0.220) +2026-06-25 18:10:16,762 | INFO | +[ 49.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,762 | INFO | Environmental noise 0.177 0.320 0.242 ✓ +2026-06-25 18:10:16,762 | INFO | Insect 0.062 0.299 0.169 ✓ +2026-06-25 18:10:16,762 | INFO | Bird 0.229 0.000 0.126 ✓ +2026-06-25 18:10:16,762 | INFO | Chirp, tweet 0.180 0.000 0.099 ✗ +2026-06-25 18:10:16,762 | INFO | Bird vocalization, bird call, bird song 0.176 0.000 0.097 ✗ +2026-06-25 18:10:16,762 | INFO | Animal 0.155 0.000 0.086 ✗ +2026-06-25 18:10:16,762 | INFO | → WINNER: Environmental noise (combined=0.242) +2026-06-25 18:10:16,789 | INFO | +[ 50.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,789 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,790 | INFO | Environmental noise 0.082 0.320 0.189 ✓ +2026-06-25 18:10:16,790 | INFO | Bird 0.141 0.000 0.077 ✗ +2026-06-25 18:10:16,790 | INFO | Animal 0.133 0.000 0.073 ✗ +2026-06-25 18:10:16,790 | INFO | Bird vocalization, bird call, bird song 0.093 0.000 0.051 ✗ +2026-06-25 18:10:16,790 | INFO | Chirp, tweet 0.089 0.000 0.049 ✗ +2026-06-25 18:10:16,790 | INFO | Water 0.064 0.000 0.035 ✗ +2026-06-25 18:10:16,790 | INFO | → WINNER: Environmental noise (combined=0.189) +2026-06-25 18:10:16,813 | INFO | +[ 50.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,813 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,813 | INFO | Environmental noise 0.125 0.320 0.213 ✓ +2026-06-25 18:10:16,813 | INFO | Bird 0.146 0.000 0.080 ✗ +2026-06-25 18:10:16,813 | INFO | Animal 0.110 0.000 0.061 ✗ +2026-06-25 18:10:16,813 | INFO | Bird vocalization, bird call, bird song 0.106 0.000 0.058 ✗ +2026-06-25 18:10:16,813 | INFO | Chirp, tweet 0.092 0.000 0.051 ✗ +2026-06-25 18:10:16,813 | INFO | Mouse 0.063 0.000 0.035 ✗ +2026-06-25 18:10:16,813 | INFO | → WINNER: Environmental noise (combined=0.213) +2026-06-25 18:10:16,840 | INFO | +[ 50.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,840 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,840 | INFO | Animal 0.195 0.000 0.107 ✗ +2026-06-25 18:10:16,840 | INFO | Bird 0.108 0.000 0.060 ✗ +2026-06-25 18:10:16,840 | INFO | Mouse 0.073 0.000 0.040 ✗ +2026-06-25 18:10:16,844 | INFO | Patter 0.055 0.000 0.030 ✗ +2026-06-25 18:10:16,844 | INFO | Outside, rural or natural 0.052 0.000 0.029 ✗ +2026-06-25 18:10:16,845 | INFO | Bird vocalization, bird call, bird song 0.039 0.000 0.021 ✗ +2026-06-25 18:10:16,845 | INFO | → no winner +2026-06-25 18:10:16,872 | INFO | +[ 50.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,873 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,873 | INFO | Environmental noise 0.052 0.320 0.173 ✓ +2026-06-25 18:10:16,873 | INFO | Animal 0.276 0.000 0.152 ✓ +2026-06-25 18:10:16,873 | INFO | Bird 0.120 0.000 0.066 ✗ +2026-06-25 18:10:16,873 | INFO | Outside, rural or natural 0.081 0.000 0.044 ✗ +2026-06-25 18:10:16,873 | INFO | Clip-clop 0.052 0.000 0.029 ✗ +2026-06-25 18:10:16,873 | INFO | Bird vocalization, bird call, bird song 0.040 0.000 0.022 ✗ +2026-06-25 18:10:16,873 | INFO | → WINNER: Environmental noise (combined=0.173) +2026-06-25 18:10:16,904 | INFO | +[ 50.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,904 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,905 | INFO | Animal 0.381 0.000 0.209 ✓ +2026-06-25 18:10:16,905 | INFO | Clip-clop 0.131 0.000 0.072 ✗ +2026-06-25 18:10:16,905 | INFO | Bird 0.131 0.000 0.072 ✗ +2026-06-25 18:10:16,905 | INFO | Horse 0.126 0.000 0.069 ✗ +2026-06-25 18:10:16,905 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:16,906 | INFO | Patter 0.066 0.000 0.036 ✗ +2026-06-25 18:10:16,906 | INFO | → WINNER: Animal (combined=0.209) +2026-06-25 18:10:16,933 | INFO | +[ 51.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,933 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,933 | INFO | Rodents, rats, mice 0.230 0.000 0.126 ✓ +2026-06-25 18:10:16,933 | INFO | Animal 0.218 0.000 0.120 ✓ +2026-06-25 18:10:16,933 | INFO | Patter 0.144 0.000 0.079 ✗ +2026-06-25 18:10:16,934 | INFO | Bird 0.134 0.000 0.074 ✗ +2026-06-25 18:10:16,935 | INFO | Chicken, rooster 0.081 0.000 0.045 ✗ +2026-06-25 18:10:16,935 | INFO | Fowl 0.078 0.000 0.043 ✗ +2026-06-25 18:10:16,937 | INFO | → WINNER: Rodents, rats, mice (combined=0.126) +2026-06-25 18:10:16,964 | INFO | +[ 51.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,964 | INFO | Animal 0.155 0.000 0.085 ✗ +2026-06-25 18:10:16,964 | INFO | Chicken, rooster 0.147 0.000 0.081 ✗ +2026-06-25 18:10:16,965 | INFO | Rodents, rats, mice 0.144 0.000 0.079 ✗ +2026-06-25 18:10:16,965 | INFO | Bird 0.137 0.000 0.075 ✗ +2026-06-25 18:10:16,965 | INFO | Fowl 0.126 0.000 0.069 ✗ +2026-06-25 18:10:16,965 | INFO | Duck 0.118 0.000 0.065 ✗ +2026-06-25 18:10:16,965 | INFO | → no winner +2026-06-25 18:10:16,990 | INFO | +[ 51.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:16,990 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:16,990 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:10:16,990 | INFO | Rodents, rats, mice 0.111 0.000 0.061 ✗ +2026-06-25 18:10:16,990 | INFO | Frog 0.081 0.000 0.044 ✗ +2026-06-25 18:10:16,990 | INFO | Duck 0.081 0.000 0.044 ✗ +2026-06-25 18:10:16,990 | INFO | Bird 0.075 0.000 0.041 ✗ +2026-06-25 18:10:16,990 | INFO | → no winner +2026-06-25 18:10:17,014 | INFO | +[ 51.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,014 | INFO | Animal 0.261 0.000 0.144 ✓ +2026-06-25 18:10:17,014 | INFO | Bird 0.149 0.000 0.082 ✗ +2026-06-25 18:10:17,014 | INFO | Fowl 0.140 0.000 0.077 ✗ +2026-06-25 18:10:17,020 | INFO | Duck 0.094 0.000 0.052 ✗ +2026-06-25 18:10:17,020 | INFO | Chicken, rooster 0.058 0.000 0.032 ✗ +2026-06-25 18:10:17,020 | INFO | Outside, rural or natural 0.056 0.000 0.031 ✗ +2026-06-25 18:10:17,020 | INFO | → WINNER: Animal (combined=0.144) +2026-06-25 18:10:17,047 | INFO | +[ 51.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,047 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,048 | INFO | Environmental noise 0.112 0.320 0.205 ✓ +2026-06-25 18:10:17,048 | INFO | Animal 0.290 0.000 0.160 ✓ +2026-06-25 18:10:17,049 | INFO | Fowl 0.192 0.000 0.106 ✗ +2026-06-25 18:10:17,049 | INFO | Bird 0.175 0.000 0.097 ✗ +2026-06-25 18:10:17,049 | INFO | Turkey 0.154 0.000 0.085 ✗ +2026-06-25 18:10:17,049 | INFO | Gobble 0.100 0.000 0.055 ✗ +2026-06-25 18:10:17,049 | INFO | → WINNER: Environmental noise (combined=0.205) +2026-06-25 18:10:17,071 | INFO | +[ 52.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,074 | INFO | Environmental noise 0.119 0.320 0.209 ✓ +2026-06-25 18:10:17,074 | INFO | Animal 0.309 0.000 0.170 ✓ +2026-06-25 18:10:17,074 | INFO | Bird 0.126 0.000 0.069 ✗ +2026-06-25 18:10:17,074 | INFO | Wild animals 0.108 0.000 0.060 ✗ +2026-06-25 18:10:17,074 | INFO | Turkey 0.082 0.000 0.045 ✗ +2026-06-25 18:10:17,074 | INFO | Bird vocalization, bird call, bird song 0.072 0.000 0.040 ✗ +2026-06-25 18:10:17,074 | INFO | → WINNER: Environmental noise (combined=0.209) +2026-06-25 18:10:17,104 | INFO | +[ 52.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,104 | INFO | Environmental noise 0.145 0.320 0.224 ✓ +2026-06-25 18:10:17,104 | INFO | Animal 0.297 0.000 0.163 ✓ +2026-06-25 18:10:17,104 | INFO | Bird 0.230 0.000 0.126 ✓ +2026-06-25 18:10:17,104 | INFO | Bird vocalization, bird call, bird song 0.119 0.000 0.065 ✗ +2026-06-25 18:10:17,104 | INFO | Chirp, tweet 0.104 0.000 0.057 ✗ +2026-06-25 18:10:17,104 | INFO | Outside, rural or natural 0.088 0.000 0.049 ✗ +2026-06-25 18:10:17,104 | INFO | → WINNER: Environmental noise (combined=0.224) +2026-06-25 18:10:17,130 | INFO | +[ 52.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,130 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,130 | INFO | Environmental noise 0.154 0.320 0.229 ✓ +2026-06-25 18:10:17,130 | INFO | Animal 0.303 0.000 0.166 ✓ +2026-06-25 18:10:17,130 | INFO | Bird 0.253 0.000 0.139 ✓ +2026-06-25 18:10:17,130 | INFO | Chirp, tweet 0.150 0.000 0.083 ✗ +2026-06-25 18:10:17,130 | INFO | Bird vocalization, bird call, bird song 0.146 0.000 0.081 ✗ +2026-06-25 18:10:17,130 | INFO | Outside, rural or natural 0.106 0.000 0.059 ✗ +2026-06-25 18:10:17,130 | INFO | → WINNER: Environmental noise (combined=0.229) +2026-06-25 18:10:17,159 | INFO | +[ 52.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,161 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,162 | INFO | Environmental noise 0.107 0.320 0.203 ✓ +2026-06-25 18:10:17,163 | INFO | Bird 0.271 0.000 0.149 ✓ +2026-06-25 18:10:17,163 | INFO | Animal 0.250 0.000 0.137 ✓ +2026-06-25 18:10:17,163 | INFO | Bird vocalization, bird call, bird song 0.164 0.000 0.090 ✗ +2026-06-25 18:10:17,163 | INFO | Chirp, tweet 0.162 0.000 0.089 ✗ +2026-06-25 18:10:17,163 | INFO | Outside, rural or natural 0.074 0.000 0.041 ✗ +2026-06-25 18:10:17,163 | INFO | → WINNER: Environmental noise (combined=0.203) +2026-06-25 18:10:17,189 | INFO | +[ 52.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,190 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,190 | INFO | Environmental noise 0.082 0.320 0.189 ✓ +2026-06-25 18:10:17,190 | INFO | Insect 0.051 0.299 0.163 ✓ +2026-06-25 18:10:17,191 | INFO | Animal 0.226 0.000 0.124 ✓ +2026-06-25 18:10:17,191 | INFO | Bird 0.175 0.000 0.096 ✗ +2026-06-25 18:10:17,191 | INFO | Bird vocalization, bird call, bird song 0.120 0.000 0.066 ✗ +2026-06-25 18:10:17,191 | INFO | Chirp, tweet 0.114 0.000 0.063 ✗ +2026-06-25 18:10:17,191 | INFO | → WINNER: Environmental noise (combined=0.189) +2026-06-25 18:10:17,210 | INFO | +[ 53.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,210 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,210 | INFO | Environmental noise 0.184 0.320 0.245 ✓ +2026-06-25 18:10:17,210 | INFO | Animal 0.265 0.000 0.146 ✓ +2026-06-25 18:10:17,210 | INFO | Bird 0.153 0.000 0.084 ✗ +2026-06-25 18:10:17,219 | INFO | Bird vocalization, bird call, bird song 0.091 0.000 0.050 ✗ +2026-06-25 18:10:17,219 | INFO | Chirp, tweet 0.083 0.000 0.045 ✗ +2026-06-25 18:10:17,220 | INFO | Outside, rural or natural 0.077 0.000 0.042 ✗ +2026-06-25 18:10:17,221 | INFO | → WINNER: Environmental noise (combined=0.245) +2026-06-25 18:10:17,245 | INFO | +[ 53.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,245 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,245 | INFO | Animal 0.349 0.000 0.192 ✓ +2026-06-25 18:10:17,245 | INFO | Environmental noise 0.056 0.320 0.175 ✓ +2026-06-25 18:10:17,245 | INFO | Bird 0.130 0.000 0.072 ✗ +2026-06-25 18:10:17,245 | INFO | Outside, rural or natural 0.077 0.000 0.042 ✗ +2026-06-25 18:10:17,245 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.028 ✗ +2026-06-25 18:10:17,245 | INFO | Domestic animals, pets 0.046 0.000 0.025 ✗ +2026-06-25 18:10:17,245 | INFO | → WINNER: Animal (combined=0.192) +2026-06-25 18:10:17,271 | INFO | +[ 53.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,271 | INFO | Animal 0.426 0.000 0.235 ✓ +2026-06-25 18:10:17,271 | INFO | Outside, rural or natural 0.122 0.000 0.067 ✗ +2026-06-25 18:10:17,271 | INFO | Vehicle 0.092 0.000 0.051 ✗ +2026-06-25 18:10:17,271 | INFO | Bird 0.086 0.000 0.047 ✗ +2026-06-25 18:10:17,271 | INFO | Domestic animals, pets 0.075 0.000 0.041 ✗ +2026-06-25 18:10:17,271 | INFO | Boat, Water vehicle 0.065 0.000 0.036 ✗ +2026-06-25 18:10:17,280 | INFO | → WINNER: Animal (combined=0.235) +2026-06-25 18:10:17,325 | INFO | +[ 53.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,325 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,325 | INFO | Animal 0.347 0.000 0.191 ✓ +2026-06-25 18:10:17,325 | INFO | Rodents, rats, mice 0.306 0.000 0.168 ✓ +2026-06-25 18:10:17,325 | INFO | Bird 0.172 0.000 0.095 ✗ +2026-06-25 18:10:17,325 | INFO | Patter 0.101 0.000 0.055 ✗ +2026-06-25 18:10:17,325 | INFO | Outside, rural or natural 0.095 0.000 0.052 ✗ +2026-06-25 18:10:17,325 | INFO | Chirp, tweet 0.074 0.000 0.041 ✗ +2026-06-25 18:10:17,325 | INFO | → WINNER: Animal (combined=0.191) +2026-06-25 18:10:17,378 | INFO | +[ 53.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,378 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,378 | INFO | Bird 0.239 0.000 0.131 ✓ +2026-06-25 18:10:17,379 | INFO | Animal 0.212 0.000 0.117 ✗ +2026-06-25 18:10:17,379 | INFO | Outside, rural or natural 0.103 0.000 0.057 ✗ +2026-06-25 18:10:17,379 | INFO | Chirp, tweet 0.075 0.000 0.042 ✗ +2026-06-25 18:10:17,379 | INFO | Bird vocalization, bird call, bird song 0.075 0.000 0.041 ✗ +2026-06-25 18:10:17,379 | INFO | Domestic animals, pets 0.064 0.000 0.035 ✗ +2026-06-25 18:10:17,379 | INFO | → WINNER: Bird (combined=0.131) +2026-06-25 18:10:17,429 | INFO | +[ 54.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,430 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,430 | INFO | Bird 0.235 0.000 0.129 ✓ +2026-06-25 18:10:17,430 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:17,430 | INFO | Rodents, rats, mice 0.117 0.000 0.064 ✗ +2026-06-25 18:10:17,430 | INFO | Chirp, tweet 0.097 0.000 0.053 ✗ +2026-06-25 18:10:17,430 | INFO | Bird vocalization, bird call, bird song 0.095 0.000 0.052 ✗ +2026-06-25 18:10:17,430 | INFO | Mouse 0.091 0.000 0.050 ✗ +2026-06-25 18:10:17,430 | INFO | → WINNER: Bird (combined=0.129) +2026-06-25 18:10:17,480 | INFO | +[ 54.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,480 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,480 | INFO | Bird 0.277 0.000 0.152 ✓ +2026-06-25 18:10:17,480 | INFO | Animal 0.250 0.000 0.138 ✓ +2026-06-25 18:10:17,480 | INFO | Chirp, tweet 0.089 0.000 0.049 ✗ +2026-06-25 18:10:17,480 | INFO | Bird vocalization, bird call, bird song 0.085 0.000 0.047 ✗ +2026-06-25 18:10:17,480 | INFO | Domestic animals, pets 0.070 0.000 0.039 ✗ +2026-06-25 18:10:17,480 | INFO | Mouse 0.068 0.000 0.038 ✗ +2026-06-25 18:10:17,480 | INFO | → WINNER: Bird (combined=0.152) +2026-06-25 18:10:17,518 | INFO | +[ 54.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,518 | INFO | Environmental noise 0.208 0.320 0.258 ✓ +2026-06-25 18:10:17,518 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:17,519 | INFO | Bird 0.212 0.000 0.117 ✗ +2026-06-25 18:10:17,520 | INFO | Bird vocalization, bird call, bird song 0.114 0.000 0.063 ✗ +2026-06-25 18:10:17,520 | INFO | Chirp, tweet 0.098 0.000 0.054 ✗ +2026-06-25 18:10:17,520 | INFO | Outside, rural or natural 0.086 0.000 0.047 ✗ +2026-06-25 18:10:17,520 | INFO | → WINNER: Environmental noise (combined=0.258) +2026-06-25 18:10:17,547 | INFO | +[ 54.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,548 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,548 | INFO | Environmental noise 0.161 0.320 0.233 ✓ +2026-06-25 18:10:17,548 | INFO | Animal 0.219 0.000 0.120 ✓ +2026-06-25 18:10:17,548 | INFO | Bird 0.103 0.000 0.057 ✗ +2026-06-25 18:10:17,549 | INFO | Outside, rural or natural 0.101 0.000 0.056 ✗ +2026-06-25 18:10:17,549 | INFO | Walk, footsteps 0.054 0.000 0.030 ✗ +2026-06-25 18:10:17,549 | INFO | Bird vocalization, bird call, bird song 0.050 0.000 0.028 ✗ +2026-06-25 18:10:17,549 | INFO | → WINNER: Environmental noise (combined=0.233) +2026-06-25 18:10:17,570 | INFO | +[ 54.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,570 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,570 | INFO | Environmental noise 0.166 0.320 0.235 ✓ +2026-06-25 18:10:17,570 | INFO | Insect 0.092 0.299 0.185 ✓ +2026-06-25 18:10:17,570 | INFO | Animal 0.242 0.000 0.133 ✓ +2026-06-25 18:10:17,570 | INFO | Bird 0.136 0.000 0.075 ✗ +2026-06-25 18:10:17,570 | INFO | Outside, rural or natural 0.122 0.000 0.067 ✗ +2026-06-25 18:10:17,570 | INFO | Bird vocalization, bird call, bird song 0.053 0.000 0.029 ✗ +2026-06-25 18:10:17,570 | INFO | → WINNER: Environmental noise (combined=0.235) +2026-06-25 18:10:17,603 | INFO | +[ 55.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a person walkin' +2026-06-25 18:10:17,604 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,604 | INFO | Environmental noise 0.095 0.320 0.196 ✓ +2026-06-25 18:10:17,604 | INFO | Insect 0.051 0.299 0.162 ✓ +2026-06-25 18:10:17,604 | INFO | Animal 0.241 0.000 0.133 ✓ +2026-06-25 18:10:17,604 | INFO | Bird 0.122 0.000 0.067 ✗ +2026-06-25 18:10:17,604 | INFO | Outside, rural or natural 0.093 0.000 0.051 ✗ +2026-06-25 18:10:17,604 | INFO | Bird vocalization, bird call, bird song 0.053 0.000 0.029 ✗ +2026-06-25 18:10:17,604 | INFO | → WINNER: Environmental noise (combined=0.196) +2026-06-25 18:10:17,637 | INFO | +[ 66.20s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,637 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,637 | INFO | Animal 0.143 0.000 0.079 ✗ +2026-06-25 18:10:17,637 | INFO | Boat, Water vehicle 0.092 0.000 0.050 ✗ +2026-06-25 18:10:17,638 | INFO | Vehicle 0.073 0.000 0.040 ✗ +2026-06-25 18:10:17,638 | INFO | Rowboat, canoe, kayak 0.058 0.000 0.032 ✗ +2026-06-25 18:10:17,638 | INFO | Bird 0.034 0.000 0.018 ✗ +2026-06-25 18:10:17,638 | INFO | → no winner +2026-06-25 18:10:17,663 | INFO | +[ 66.40s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,663 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,663 | INFO | Bird vocalization, bird call, bird song 0.030 0.273 0.140 ✓ +2026-06-25 18:10:17,664 | INFO | Animal 0.208 0.000 0.115 ✗ +2026-06-25 18:10:17,664 | INFO | Bird 0.090 0.000 0.049 ✗ +2026-06-25 18:10:17,664 | INFO | Outside, rural or natural 0.090 0.000 0.049 ✗ +2026-06-25 18:10:17,664 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.140) +2026-06-25 18:10:17,690 | INFO | +[ 66.60s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,690 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,690 | INFO | Bird vocalization, bird call, bird song 0.031 0.273 0.140 ✓ +2026-06-25 18:10:17,690 | INFO | Animal 0.227 0.000 0.125 ✓ +2026-06-25 18:10:17,691 | INFO | Bird 0.093 0.000 0.051 ✗ +2026-06-25 18:10:17,691 | INFO | Outside, rural or natural 0.090 0.000 0.049 ✗ +2026-06-25 18:10:17,691 | INFO | Cricket 0.031 0.000 0.017 ✗ +2026-06-25 18:10:17,691 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.140) +2026-06-25 18:10:17,716 | INFO | +[ 66.80s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,717 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,717 | INFO | Animal 0.288 0.000 0.158 ✓ +2026-06-25 18:10:17,717 | INFO | Bird vocalization, bird call, bird song 0.041 0.273 0.145 ✓ +2026-06-25 18:10:17,717 | INFO | Bird 0.130 0.000 0.071 ✗ +2026-06-25 18:10:17,717 | INFO | Outside, rural or natural 0.102 0.000 0.056 ✗ +2026-06-25 18:10:17,717 | INFO | → WINNER: Animal (combined=0.158) +2026-06-25 18:10:17,746 | INFO | +[ 67.00s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,747 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,747 | INFO | Bird vocalization, bird call, bird song 0.039 0.273 0.144 ✓ +2026-06-25 18:10:17,747 | INFO | Animal 0.246 0.000 0.135 ✓ +2026-06-25 18:10:17,747 | INFO | Bird 0.130 0.000 0.072 ✗ +2026-06-25 18:10:17,747 | INFO | Outside, rural or natural 0.082 0.000 0.045 ✗ +2026-06-25 18:10:17,748 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.144) +2026-06-25 18:10:17,771 | INFO | +[ 67.20s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,771 | INFO | Animal 0.256 0.000 0.141 ✓ +2026-06-25 18:10:17,771 | INFO | Bird vocalization, bird call, bird song 0.030 0.273 0.140 ✓ +2026-06-25 18:10:17,771 | INFO | Bird 0.118 0.000 0.065 ✗ +2026-06-25 18:10:17,771 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:10:17,771 | INFO | → WINNER: Animal (combined=0.141) +2026-06-25 18:10:17,800 | INFO | +[ 67.40s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,800 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,800 | INFO | Animal 0.212 0.000 0.117 ✗ +2026-06-25 18:10:17,800 | INFO | Mouse 0.083 0.000 0.046 ✗ +2026-06-25 18:10:17,800 | INFO | Bird 0.059 0.000 0.032 ✗ +2026-06-25 18:10:17,803 | INFO | Vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:10:17,803 | INFO | → no winner +2026-06-25 18:10:17,829 | INFO | +[ 67.60s] AMBIENT | scene='The image shows two women standing in a field of tall grass and bushes' +2026-06-25 18:10:17,830 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,830 | INFO | Animal 0.298 0.000 0.164 ✓ +2026-06-25 18:10:17,830 | INFO | Mouse 0.094 0.000 0.051 ✗ +2026-06-25 18:10:17,830 | INFO | Patter 0.076 0.000 0.042 ✗ +2026-06-25 18:10:17,830 | INFO | Bird 0.073 0.000 0.040 ✗ +2026-06-25 18:10:17,830 | INFO | Rodents, rats, mice 0.061 0.000 0.034 ✗ +2026-06-25 18:10:17,831 | INFO | Horse 0.056 0.000 0.031 ✗ +2026-06-25 18:10:17,831 | INFO | → WINNER: Animal (combined=0.164) +2026-06-25 18:10:17,854 | INFO | +[ 76.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:17,854 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,854 | INFO | Environmental noise 0.118 0.350 0.222 ✓ +2026-06-25 18:10:17,854 | INFO | Animal 0.374 0.000 0.206 ✓ +2026-06-25 18:10:17,854 | INFO | Bird vocalization, bird call, bird song 0.050 0.314 0.169 ✓ +2026-06-25 18:10:17,854 | INFO | Bird 0.115 0.000 0.063 ✗ +2026-06-25 18:10:17,854 | INFO | Outside, rural or natural 0.100 0.000 0.055 ✗ +2026-06-25 18:10:17,854 | INFO | → WINNER: Environmental noise (combined=0.222) +2026-06-25 18:10:17,880 | INFO | +[ 77.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:17,880 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,885 | INFO | Animal 0.343 0.000 0.189 ✓ +2026-06-25 18:10:17,885 | INFO | Bird vocalization, bird call, bird song 0.038 0.314 0.162 ✓ +2026-06-25 18:10:17,885 | INFO | Bird 0.127 0.000 0.070 ✗ +2026-06-25 18:10:17,885 | INFO | Outside, rural or natural 0.081 0.000 0.045 ✗ +2026-06-25 18:10:17,885 | INFO | Horse 0.064 0.000 0.035 ✗ +2026-06-25 18:10:17,887 | INFO | Livestock, farm animals, working animals 0.056 0.000 0.031 ✗ +2026-06-25 18:10:17,887 | INFO | → WINNER: Animal (combined=0.189) +2026-06-25 18:10:17,913 | INFO | +[ 77.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:17,913 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,913 | INFO | Environmental noise 0.065 0.350 0.193 ✓ +2026-06-25 18:10:17,913 | INFO | Bird vocalization, bird call, bird song 0.066 0.314 0.178 ✓ +2026-06-25 18:10:17,914 | INFO | Animal 0.186 0.000 0.102 ✗ +2026-06-25 18:10:17,914 | INFO | Bird 0.157 0.000 0.086 ✗ +2026-06-25 18:10:17,914 | INFO | Fowl 0.068 0.000 0.037 ✗ +2026-06-25 18:10:17,914 | INFO | Turkey 0.054 0.000 0.030 ✗ +2026-06-25 18:10:17,914 | INFO | → WINNER: Environmental noise (combined=0.193) +2026-06-25 18:10:17,940 | INFO | +[ 77.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:17,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,940 | INFO | Bird vocalization, bird call, bird song 0.047 0.314 0.167 ✓ +2026-06-25 18:10:17,940 | INFO | Animal 0.199 0.000 0.109 ✗ +2026-06-25 18:10:17,940 | INFO | Bird 0.122 0.000 0.067 ✗ +2026-06-25 18:10:17,940 | INFO | Duck 0.070 0.000 0.038 ✗ +2026-06-25 18:10:17,940 | INFO | Fowl 0.066 0.000 0.036 ✗ +2026-06-25 18:10:17,940 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.167) +2026-06-25 18:10:17,966 | INFO | +[ 77.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:17,966 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,967 | INFO | Bird vocalization, bird call, bird song 0.032 0.314 0.159 ✓ +2026-06-25 18:10:17,967 | INFO | Animal 0.134 0.000 0.074 ✗ +2026-06-25 18:10:17,967 | INFO | Fowl 0.121 0.000 0.067 ✗ +2026-06-25 18:10:17,968 | INFO | Bird 0.119 0.000 0.065 ✗ +2026-06-25 18:10:17,968 | INFO | Goose 0.094 0.000 0.051 ✗ +2026-06-25 18:10:17,968 | INFO | Duck 0.090 0.000 0.049 ✗ +2026-06-25 18:10:17,968 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.159) +2026-06-25 18:10:17,990 | INFO | +[ 77.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:17,995 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:17,995 | INFO | Crow 0.227 0.000 0.125 ✓ +2026-06-25 18:10:17,996 | INFO | Animal 0.174 0.000 0.096 ✗ +2026-06-25 18:10:17,996 | INFO | Caw 0.156 0.000 0.086 ✗ +2026-06-25 18:10:17,996 | INFO | Goose 0.155 0.000 0.085 ✗ +2026-06-25 18:10:17,996 | INFO | Fowl 0.135 0.000 0.074 ✗ +2026-06-25 18:10:17,996 | INFO | Honk 0.133 0.000 0.073 ✗ +2026-06-25 18:10:17,997 | INFO | → WINNER: Crow (combined=0.125) +2026-06-25 18:10:18,022 | INFO | +[ 78.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,022 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,022 | INFO | Goose 0.348 0.000 0.191 ✓ +2026-06-25 18:10:18,022 | INFO | Honk 0.327 0.000 0.180 ✓ +2026-06-25 18:10:18,022 | INFO | Fowl 0.253 0.000 0.139 ✓ +2026-06-25 18:10:18,022 | INFO | Crow 0.187 0.000 0.103 ✗ +2026-06-25 18:10:18,022 | INFO | Animal 0.172 0.000 0.094 ✗ +2026-06-25 18:10:18,022 | INFO | Duck 0.161 0.000 0.088 ✗ +2026-06-25 18:10:18,022 | INFO | → WINNER: Goose (combined=0.191) +2026-06-25 18:10:18,049 | INFO | +[ 78.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,049 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,049 | INFO | Goose 0.386 0.000 0.212 ✓ +2026-06-25 18:10:18,049 | INFO | Honk 0.355 0.000 0.195 ✓ +2026-06-25 18:10:18,049 | INFO | Fowl 0.338 0.000 0.186 ✓ +2026-06-25 18:10:18,050 | INFO | Duck 0.270 0.000 0.148 ✓ +2026-06-25 18:10:18,050 | INFO | Bird 0.176 0.000 0.097 ✗ +2026-06-25 18:10:18,050 | INFO | Animal 0.145 0.000 0.080 ✗ +2026-06-25 18:10:18,050 | INFO | → WINNER: Goose (combined=0.212) +2026-06-25 18:10:18,075 | INFO | +[ 78.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,075 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,076 | INFO | Goose 0.478 0.000 0.263 ✓ +2026-06-25 18:10:18,076 | INFO | Fowl 0.382 0.000 0.210 ✓ +2026-06-25 18:10:18,077 | INFO | Honk 0.370 0.000 0.204 ✓ +2026-06-25 18:10:18,077 | INFO | Duck 0.353 0.000 0.194 ✓ +2026-06-25 18:10:18,077 | INFO | Bird vocalization, bird call, bird song 0.046 0.314 0.166 ✓ +2026-06-25 18:10:18,077 | INFO | Animal 0.230 0.000 0.126 ✓ +2026-06-25 18:10:18,078 | INFO | → WINNER: Goose (combined=0.263) +2026-06-25 18:10:18,103 | INFO | +[ 78.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,104 | INFO | Fowl 0.642 0.000 0.353 ✓ +2026-06-25 18:10:18,105 | INFO | Goose 0.369 0.000 0.203 ✓ +2026-06-25 18:10:18,105 | INFO | Bird vocalization, bird call, bird song 0.037 0.314 0.162 ✓ +2026-06-25 18:10:18,105 | INFO | Honk 0.273 0.000 0.150 ✓ +2026-06-25 18:10:18,105 | INFO | Turkey 0.228 0.000 0.125 ✓ +2026-06-25 18:10:18,105 | INFO | Gobble 0.186 0.000 0.102 ✗ +2026-06-25 18:10:18,105 | INFO | → WINNER: Fowl (combined=0.353) +2026-06-25 18:10:18,130 | INFO | +[ 78.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,130 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,130 | INFO | Bird vocalization, bird call, bird song 0.052 0.314 0.170 ✓ +2026-06-25 18:10:18,130 | INFO | Duck 0.256 0.000 0.141 ✓ +2026-06-25 18:10:18,130 | INFO | Animal 0.236 0.000 0.130 ✓ +2026-06-25 18:10:18,130 | INFO | Bird 0.193 0.000 0.106 ✗ +2026-06-25 18:10:18,130 | INFO | Fowl 0.188 0.000 0.104 ✗ +2026-06-25 18:10:18,130 | INFO | Quack 0.124 0.000 0.068 ✗ +2026-06-25 18:10:18,130 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.170) +2026-06-25 18:10:18,158 | INFO | +[ 79.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,158 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,158 | INFO | Fowl 0.429 0.000 0.236 ✓ +2026-06-25 18:10:18,158 | INFO | Turkey 0.336 0.000 0.185 ✓ +2026-06-25 18:10:18,158 | INFO | Bird vocalization, bird call, bird song 0.040 0.314 0.163 ✓ +2026-06-25 18:10:18,158 | INFO | Gobble 0.268 0.000 0.147 ✓ +2026-06-25 18:10:18,158 | INFO | Animal 0.163 0.000 0.089 ✗ +2026-06-25 18:10:18,160 | INFO | Duck 0.100 0.000 0.055 ✗ +2026-06-25 18:10:18,160 | INFO | → WINNER: Fowl (combined=0.236) +2026-06-25 18:10:18,187 | INFO | +[ 79.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,187 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,187 | INFO | Bird vocalization, bird call, bird song 0.046 0.314 0.166 ✓ +2026-06-25 18:10:18,187 | INFO | Animal 0.207 0.000 0.114 ✗ +2026-06-25 18:10:18,190 | INFO | Bird 0.136 0.000 0.074 ✗ +2026-06-25 18:10:18,190 | INFO | Frog 0.073 0.000 0.040 ✗ +2026-06-25 18:10:18,190 | INFO | Domestic animals, pets 0.066 0.000 0.036 ✗ +2026-06-25 18:10:18,190 | INFO | Fowl 0.059 0.000 0.032 ✗ +2026-06-25 18:10:18,190 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.166) +2026-06-25 18:10:18,216 | INFO | +[ 79.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,216 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,217 | INFO | Bird vocalization, bird call, bird song 0.181 0.314 0.241 ✓ +2026-06-25 18:10:18,217 | INFO | Bird 0.391 0.000 0.215 ✓ +2026-06-25 18:10:18,217 | INFO | Animal 0.266 0.000 0.146 ✓ +2026-06-25 18:10:18,217 | INFO | Chirp, tweet 0.175 0.000 0.096 ✗ +2026-06-25 18:10:18,217 | INFO | Domestic animals, pets 0.121 0.000 0.067 ✗ +2026-06-25 18:10:18,217 | INFO | Dog 0.044 0.000 0.024 ✗ +2026-06-25 18:10:18,218 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.241) +2026-06-25 18:10:18,243 | INFO | +[ 79.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,246 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,247 | INFO | Bird vocalization, bird call, bird song 0.347 0.314 0.332 ✓ +2026-06-25 18:10:18,247 | INFO | Bird 0.526 0.000 0.289 ✓ +2026-06-25 18:10:18,247 | INFO | Chirp, tweet 0.332 0.000 0.183 ✓ +2026-06-25 18:10:18,250 | INFO | Animal 0.146 0.000 0.080 ✗ +2026-06-25 18:10:18,250 | INFO | Domestic animals, pets 0.076 0.000 0.042 ✗ +2026-06-25 18:10:18,253 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.332) +2026-06-25 18:10:18,280 | INFO | +[ 79.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,280 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,285 | INFO | Bird vocalization, bird call, bird song 0.332 0.314 0.324 ✓ +2026-06-25 18:10:18,285 | INFO | Bird 0.539 0.000 0.297 ✓ +2026-06-25 18:10:18,285 | INFO | Chirp, tweet 0.372 0.000 0.205 ✓ +2026-06-25 18:10:18,286 | INFO | Animal 0.131 0.000 0.072 ✗ +2026-06-25 18:10:18,286 | INFO | Domestic animals, pets 0.079 0.000 0.043 ✗ +2026-06-25 18:10:18,286 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.324) +2026-06-25 18:10:18,328 | INFO | +[ 80.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,329 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,329 | INFO | Bird vocalization, bird call, bird song 0.269 0.314 0.289 ✓ +2026-06-25 18:10:18,329 | INFO | Bird 0.443 0.000 0.244 ✓ +2026-06-25 18:10:18,330 | INFO | Environmental noise 0.083 0.350 0.203 ✓ +2026-06-25 18:10:18,330 | INFO | Chirp, tweet 0.233 0.000 0.128 ✓ +2026-06-25 18:10:18,330 | INFO | Animal 0.162 0.000 0.089 ✗ +2026-06-25 18:10:18,330 | INFO | Outside, rural or natural 0.062 0.000 0.034 ✗ +2026-06-25 18:10:18,330 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.289) +2026-06-25 18:10:18,380 | INFO | +[ 80.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,380 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,380 | INFO | Bird vocalization, bird call, bird song 0.091 0.314 0.191 ✓ +2026-06-25 18:10:18,380 | INFO | Bird 0.209 0.000 0.115 ✗ +2026-06-25 18:10:18,380 | INFO | Animal 0.167 0.000 0.092 ✗ +2026-06-25 18:10:18,380 | INFO | Chirp, tweet 0.060 0.000 0.033 ✗ +2026-06-25 18:10:18,380 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:10:18,380 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.191) +2026-06-25 18:10:18,432 | INFO | +[ 80.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,433 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,433 | INFO | Environmental noise 0.092 0.350 0.208 ✓ +2026-06-25 18:10:18,433 | INFO | Bird vocalization, bird call, bird song 0.065 0.314 0.177 ✓ +2026-06-25 18:10:18,433 | INFO | Animal 0.272 0.000 0.150 ✓ +2026-06-25 18:10:18,433 | INFO | Bird 0.159 0.000 0.087 ✗ +2026-06-25 18:10:18,434 | INFO | Outside, rural or natural 0.068 0.000 0.037 ✗ +2026-06-25 18:10:18,434 | INFO | → WINNER: Environmental noise (combined=0.208) +2026-06-25 18:10:18,484 | INFO | +[ 80.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,485 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,485 | INFO | Environmental noise 0.124 0.350 0.226 ✓ +2026-06-25 18:10:18,485 | INFO | Animal 0.354 0.000 0.195 ✓ +2026-06-25 18:10:18,485 | INFO | Bird vocalization, bird call, bird song 0.051 0.314 0.170 ✓ +2026-06-25 18:10:18,485 | INFO | Bird 0.136 0.000 0.075 ✗ +2026-06-25 18:10:18,485 | INFO | Outside, rural or natural 0.080 0.000 0.044 ✗ +2026-06-25 18:10:18,485 | INFO | → WINNER: Environmental noise (combined=0.226) +2026-06-25 18:10:18,511 | INFO | +[ 80.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,519 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,519 | INFO | Environmental noise 0.163 0.350 0.247 ✓ +2026-06-25 18:10:18,520 | INFO | Bird vocalization, bird call, bird song 0.059 0.314 0.174 ✓ +2026-06-25 18:10:18,520 | INFO | Animal 0.257 0.000 0.141 ✓ +2026-06-25 18:10:18,520 | INFO | Bird 0.146 0.000 0.081 ✗ +2026-06-25 18:10:18,520 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:10:18,521 | INFO | → WINNER: Environmental noise (combined=0.247) +2026-06-25 18:10:18,548 | INFO | +[ 81.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,548 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,549 | INFO | Environmental noise 0.239 0.350 0.289 ✓ +2026-06-25 18:10:18,549 | INFO | Bird vocalization, bird call, bird song 0.095 0.314 0.194 ✓ +2026-06-25 18:10:18,549 | INFO | Animal 0.206 0.000 0.113 ✗ +2026-06-25 18:10:18,549 | INFO | Bird 0.191 0.000 0.105 ✗ +2026-06-25 18:10:18,550 | INFO | Outside, rural or natural 0.082 0.000 0.045 ✗ +2026-06-25 18:10:18,550 | INFO | Chirp, tweet 0.076 0.000 0.042 ✗ +2026-06-25 18:10:18,550 | INFO | → WINNER: Environmental noise (combined=0.289) +2026-06-25 18:10:18,575 | INFO | +[ 81.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,575 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,575 | INFO | Environmental noise 0.202 0.350 0.268 ✓ +2026-06-25 18:10:18,575 | INFO | Bird vocalization, bird call, bird song 0.087 0.314 0.189 ✓ +2026-06-25 18:10:18,575 | INFO | Animal 0.188 0.000 0.103 ✗ +2026-06-25 18:10:18,575 | INFO | Bird 0.167 0.000 0.092 ✗ +2026-06-25 18:10:18,575 | INFO | Outside, rural or natural 0.075 0.000 0.042 ✗ +2026-06-25 18:10:18,575 | INFO | Chirp, tweet 0.068 0.000 0.037 ✗ +2026-06-25 18:10:18,575 | INFO | → WINNER: Environmental noise (combined=0.268) +2026-06-25 18:10:18,600 | INFO | +[ 81.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,603 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,603 | INFO | Environmental noise 0.204 0.350 0.270 ✓ +2026-06-25 18:10:18,603 | INFO | Bird vocalization, bird call, bird song 0.104 0.314 0.198 ✓ +2026-06-25 18:10:18,604 | INFO | Bird 0.179 0.000 0.098 ✗ +2026-06-25 18:10:18,604 | INFO | Animal 0.170 0.000 0.094 ✗ +2026-06-25 18:10:18,604 | INFO | Outside, rural or natural 0.088 0.000 0.049 ✗ +2026-06-25 18:10:18,604 | INFO | Chirp, tweet 0.082 0.000 0.045 ✗ +2026-06-25 18:10:18,604 | INFO | → WINNER: Environmental noise (combined=0.270) +2026-06-25 18:10:18,630 | INFO | +[ 81.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,630 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,630 | INFO | Environmental noise 0.133 0.350 0.231 ✓ +2026-06-25 18:10:18,630 | INFO | Bird vocalization, bird call, bird song 0.076 0.314 0.183 ✓ +2026-06-25 18:10:18,630 | INFO | Animal 0.204 0.000 0.113 ✗ +2026-06-25 18:10:18,630 | INFO | Bird 0.173 0.000 0.095 ✗ +2026-06-25 18:10:18,630 | INFO | Outside, rural or natural 0.112 0.000 0.062 ✗ +2026-06-25 18:10:18,630 | INFO | Cricket 0.035 0.000 0.019 ✗ +2026-06-25 18:10:18,630 | INFO | → WINNER: Environmental noise (combined=0.231) +2026-06-25 18:10:18,654 | INFO | +[ 81.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,654 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,654 | INFO | Environmental noise 0.155 0.350 0.243 ✓ +2026-06-25 18:10:18,660 | INFO | Bird vocalization, bird call, bird song 0.072 0.314 0.181 ✓ +2026-06-25 18:10:18,660 | INFO | Animal 0.236 0.000 0.130 ✓ +2026-06-25 18:10:18,660 | INFO | Bird 0.160 0.000 0.088 ✗ +2026-06-25 18:10:18,660 | INFO | Outside, rural or natural 0.122 0.000 0.067 ✗ +2026-06-25 18:10:18,660 | INFO | Cricket 0.033 0.000 0.018 ✗ +2026-06-25 18:10:18,660 | INFO | → WINNER: Environmental noise (combined=0.243) +2026-06-25 18:10:18,687 | INFO | +[ 82.00s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,688 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,688 | INFO | Environmental noise 0.148 0.350 0.239 ✓ +2026-06-25 18:10:18,688 | INFO | Insect 0.049 0.362 0.190 ✓ +2026-06-25 18:10:18,688 | INFO | Bird vocalization, bird call, bird song 0.058 0.314 0.173 ✓ +2026-06-25 18:10:18,688 | INFO | Animal 0.282 0.000 0.155 ✓ +2026-06-25 18:10:18,688 | INFO | Outside, rural or natural 0.128 0.000 0.070 ✗ +2026-06-25 18:10:18,688 | INFO | Bird 0.128 0.000 0.070 ✗ +2026-06-25 18:10:18,690 | INFO | → WINNER: Environmental noise (combined=0.239) +2026-06-25 18:10:18,716 | INFO | +[ 82.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,717 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,717 | INFO | Animal 0.438 0.000 0.241 ✓ +2026-06-25 18:10:18,717 | INFO | Environmental noise 0.120 0.350 0.223 ✓ +2026-06-25 18:10:18,717 | INFO | Bird vocalization, bird call, bird song 0.049 0.314 0.168 ✓ +2026-06-25 18:10:18,717 | INFO | Horse 0.139 0.000 0.076 ✗ +2026-06-25 18:10:18,718 | INFO | Bird 0.133 0.000 0.073 ✗ +2026-06-25 18:10:18,718 | INFO | Outside, rural or natural 0.123 0.000 0.068 ✗ +2026-06-25 18:10:18,718 | INFO | → WINNER: Animal (combined=0.241) +2026-06-25 18:10:18,744 | INFO | +[ 82.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,745 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,745 | INFO | Environmental noise 0.082 0.350 0.202 ✓ +2026-06-25 18:10:18,745 | INFO | Bird vocalization, bird call, bird song 0.043 0.314 0.165 ✓ +2026-06-25 18:10:18,746 | INFO | Animal 0.293 0.000 0.161 ✓ +2026-06-25 18:10:18,746 | INFO | Bird 0.120 0.000 0.066 ✗ +2026-06-25 18:10:18,746 | INFO | Outside, rural or natural 0.099 0.000 0.054 ✗ +2026-06-25 18:10:18,746 | INFO | Horse 0.069 0.000 0.038 ✗ +2026-06-25 18:10:18,746 | INFO | → WINNER: Environmental noise (combined=0.202) +2026-06-25 18:10:18,771 | INFO | +[ 82.60s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,771 | INFO | Environmental noise 0.149 0.350 0.239 ✓ +2026-06-25 18:10:18,771 | INFO | Bird vocalization, bird call, bird song 0.073 0.314 0.181 ✓ +2026-06-25 18:10:18,771 | INFO | Animal 0.233 0.000 0.128 ✓ +2026-06-25 18:10:18,771 | INFO | Bird 0.155 0.000 0.085 ✗ +2026-06-25 18:10:18,771 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:18,771 | INFO | Chirp, tweet 0.055 0.000 0.030 ✗ +2026-06-25 18:10:18,771 | INFO | → WINNER: Environmental noise (combined=0.239) +2026-06-25 18:10:18,802 | INFO | +[ 82.80s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,803 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,803 | INFO | Environmental noise 0.080 0.350 0.201 ✓ +2026-06-25 18:10:18,803 | INFO | Bird vocalization, bird call, bird song 0.087 0.314 0.189 ✓ +2026-06-25 18:10:18,803 | INFO | Bird 0.185 0.000 0.102 ✗ +2026-06-25 18:10:18,803 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:10:18,804 | INFO | Chirp, tweet 0.071 0.000 0.039 ✗ +2026-06-25 18:10:18,804 | INFO | Outside, rural or natural 0.057 0.000 0.031 ✗ +2026-06-25 18:10:18,804 | INFO | → WINNER: Environmental noise (combined=0.201) +2026-06-25 18:10:18,831 | INFO | +[ 85.20s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,832 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,832 | INFO | Pour 0.106 0.000 0.058 ✗ +2026-06-25 18:10:18,832 | INFO | Water 0.088 0.000 0.048 ✗ +2026-06-25 18:10:18,832 | INFO | Liquid 0.078 0.000 0.043 ✗ +2026-06-25 18:10:18,833 | INFO | Drip 0.054 0.000 0.030 ✗ +2026-06-25 18:10:18,833 | INFO | Animal 0.048 0.000 0.026 ✗ +2026-06-25 18:10:18,833 | INFO | → no winner +2026-06-25 18:10:18,860 | INFO | +[ 85.40s] AMBIENT | scene='The image shows two people, a man and a woman, standing in a field of ' +2026-06-25 18:10:18,860 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,862 | INFO | Pour 0.134 0.000 0.073 ✗ +2026-06-25 18:10:18,862 | INFO | Animal 0.109 0.000 0.060 ✗ +2026-06-25 18:10:18,862 | INFO | Liquid 0.074 0.000 0.041 ✗ +2026-06-25 18:10:18,863 | INFO | Drip 0.070 0.000 0.038 ✗ +2026-06-25 18:10:18,863 | INFO | Water 0.069 0.000 0.038 ✗ +2026-06-25 18:10:18,863 | INFO | Boat, Water vehicle 0.042 0.000 0.023 ✗ +2026-06-25 18:10:18,863 | INFO | → no winner +2026-06-25 18:10:18,890 | INFO | +[ 93.60s] AMBIENT | scene='' +2026-06-25 18:10:18,890 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,890 | INFO | Animal 0.413 0.000 0.227 ✓ +2026-06-25 18:10:18,890 | INFO | Bird 0.092 0.000 0.051 ✗ +2026-06-25 18:10:18,890 | INFO | Horse 0.092 0.000 0.051 ✗ +2026-06-25 18:10:18,890 | INFO | Outside, rural or natural 0.084 0.000 0.046 ✗ +2026-06-25 18:10:18,890 | INFO | Clip-clop 0.071 0.000 0.039 ✗ +2026-06-25 18:10:18,890 | INFO | Domestic animals, pets 0.050 0.000 0.027 ✗ +2026-06-25 18:10:18,890 | INFO | → WINNER: Animal (combined=0.227) +2026-06-25 18:10:18,914 | INFO | +[ 93.80s] AMBIENT | scene='' +2026-06-25 18:10:18,914 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,914 | INFO | Animal 0.436 0.000 0.240 ✓ +2026-06-25 18:10:18,914 | INFO | Bird 0.142 0.000 0.078 ✗ +2026-06-25 18:10:18,914 | INFO | Environmental noise 0.140 0.000 0.077 ✗ +2026-06-25 18:10:18,914 | INFO | Outside, rural or natural 0.087 0.000 0.048 ✗ +2026-06-25 18:10:18,919 | INFO | Crow 0.059 0.000 0.033 ✗ +2026-06-25 18:10:18,919 | INFO | Horse 0.055 0.000 0.030 ✗ +2026-06-25 18:10:18,921 | INFO | → WINNER: Animal (combined=0.240) +2026-06-25 18:10:18,946 | INFO | +[ 94.00s] AMBIENT | scene='' +2026-06-25 18:10:18,947 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,947 | INFO | Crow 0.404 0.000 0.222 ✓ +2026-06-25 18:10:18,947 | INFO | Animal 0.354 0.000 0.195 ✓ +2026-06-25 18:10:18,947 | INFO | Caw 0.330 0.000 0.182 ✓ +2026-06-25 18:10:18,947 | INFO | Bird 0.135 0.000 0.074 ✗ +2026-06-25 18:10:18,948 | INFO | Bird vocalization, bird call, bird song 0.036 0.000 0.020 ✗ +2026-06-25 18:10:18,948 | INFO | → WINNER: Crow (combined=0.222) +2026-06-25 18:10:18,971 | INFO | +[ 94.20s] AMBIENT | scene='' +2026-06-25 18:10:18,971 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:18,971 | INFO | Crow 0.431 0.000 0.237 ✓ +2026-06-25 18:10:18,971 | INFO | Caw 0.403 0.000 0.222 ✓ +2026-06-25 18:10:18,971 | INFO | Animal 0.241 0.000 0.133 ✓ +2026-06-25 18:10:18,971 | INFO | Bird 0.109 0.000 0.060 ✗ +2026-06-25 18:10:18,971 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:10:18,971 | INFO | Bird vocalization, bird call, bird song 0.032 0.000 0.018 ✗ +2026-06-25 18:10:18,980 | INFO | → WINNER: Crow (combined=0.237) +2026-06-25 18:10:19,004 | INFO | +[ 94.40s] AMBIENT | scene='' +2026-06-25 18:10:19,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,004 | INFO | Crow 0.704 0.000 0.387 ✓ +2026-06-25 18:10:19,004 | INFO | Caw 0.631 0.000 0.347 ✓ +2026-06-25 18:10:19,004 | INFO | Animal 0.201 0.000 0.110 ✗ +2026-06-25 18:10:19,004 | INFO | Bird 0.104 0.000 0.057 ✗ +2026-06-25 18:10:19,004 | INFO | → WINNER: Crow (combined=0.387) +2026-06-25 18:10:19,030 | INFO | +[ 94.60s] AMBIENT | scene='' +2026-06-25 18:10:19,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,030 | INFO | Crow 0.755 0.000 0.415 ✓ +2026-06-25 18:10:19,030 | INFO | Caw 0.622 0.000 0.342 ✓ +2026-06-25 18:10:19,030 | INFO | Animal 0.212 0.000 0.117 ✗ +2026-06-25 18:10:19,035 | INFO | Bird 0.135 0.000 0.074 ✗ +2026-06-25 18:10:19,035 | INFO | → WINNER: Crow (combined=0.415) +2026-06-25 18:10:19,060 | INFO | +[ 94.80s] AMBIENT | scene='' +2026-06-25 18:10:19,061 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,061 | INFO | Crow 0.845 0.000 0.465 ✓ +2026-06-25 18:10:19,061 | INFO | Caw 0.662 0.000 0.364 ✓ +2026-06-25 18:10:19,061 | INFO | Animal 0.236 0.000 0.130 ✓ +2026-06-25 18:10:19,062 | INFO | Bird 0.208 0.000 0.115 ✗ +2026-06-25 18:10:19,062 | INFO | → WINNER: Crow (combined=0.465) +2026-06-25 18:10:19,087 | INFO | +[ 95.00s] AMBIENT | scene='' +2026-06-25 18:10:19,087 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,087 | INFO | Crow 0.789 0.000 0.434 ✓ +2026-06-25 18:10:19,087 | INFO | Caw 0.609 0.000 0.335 ✓ +2026-06-25 18:10:19,087 | INFO | Animal 0.291 0.000 0.160 ✓ +2026-06-25 18:10:19,087 | INFO | Bird 0.223 0.000 0.123 ✓ +2026-06-25 18:10:19,087 | INFO | → WINNER: Crow (combined=0.434) +2026-06-25 18:10:19,114 | INFO | +[ 95.20s] AMBIENT | scene='' +2026-06-25 18:10:19,114 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,114 | INFO | Crow 0.388 0.000 0.214 ✓ +2026-06-25 18:10:19,115 | INFO | Animal 0.366 0.000 0.202 ✓ +2026-06-25 18:10:19,115 | INFO | Caw 0.268 0.000 0.147 ✓ +2026-06-25 18:10:19,115 | INFO | Bird 0.251 0.000 0.138 ✓ +2026-06-25 18:10:19,115 | INFO | Bird vocalization, bird call, bird song 0.066 0.000 0.036 ✗ +2026-06-25 18:10:19,115 | INFO | Duck 0.064 0.000 0.035 ✗ +2026-06-25 18:10:19,115 | INFO | → WINNER: Crow (combined=0.214) +2026-06-25 18:10:19,141 | INFO | +[ 95.40s] AMBIENT | scene='' +2026-06-25 18:10:19,141 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,141 | INFO | Duck 0.465 0.000 0.256 ✓ +2026-06-25 18:10:19,141 | INFO | Animal 0.267 0.000 0.147 ✓ +2026-06-25 18:10:19,142 | INFO | Quack 0.251 0.000 0.138 ✓ +2026-06-25 18:10:19,142 | INFO | Fowl 0.223 0.000 0.123 ✓ +2026-06-25 18:10:19,142 | INFO | Goose 0.199 0.000 0.110 ✗ +2026-06-25 18:10:19,142 | INFO | Bird 0.191 0.000 0.105 ✗ +2026-06-25 18:10:19,142 | INFO | → WINNER: Duck (combined=0.256) +2026-06-25 18:10:19,164 | INFO | +[ 95.60s] AMBIENT | scene='' +2026-06-25 18:10:19,164 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,164 | INFO | Animal 0.344 0.000 0.189 ✓ +2026-06-25 18:10:19,164 | INFO | Bird 0.250 0.000 0.137 ✓ +2026-06-25 18:10:19,164 | INFO | Crow 0.164 0.000 0.090 ✗ +2026-06-25 18:10:19,164 | INFO | Fowl 0.094 0.000 0.052 ✗ +2026-06-25 18:10:19,164 | INFO | Domestic animals, pets 0.093 0.000 0.051 ✗ +2026-06-25 18:10:19,169 | INFO | Caw 0.087 0.000 0.048 ✗ +2026-06-25 18:10:19,169 | INFO | → WINNER: Animal (combined=0.189) +2026-06-25 18:10:19,194 | INFO | +[ 95.80s] AMBIENT | scene='' +2026-06-25 18:10:19,194 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,196 | INFO | Crow 0.320 0.000 0.176 ✓ +2026-06-25 18:10:19,196 | INFO | Bird 0.249 0.000 0.137 ✓ +2026-06-25 18:10:19,196 | INFO | Animal 0.238 0.000 0.131 ✓ +2026-06-25 18:10:19,196 | INFO | Caw 0.235 0.000 0.130 ✓ +2026-06-25 18:10:19,197 | INFO | Environmental noise 0.089 0.000 0.049 ✗ +2026-06-25 18:10:19,197 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.049 ✗ +2026-06-25 18:10:19,197 | INFO | → WINNER: Crow (combined=0.176) +2026-06-25 18:10:19,221 | INFO | +[ 96.00s] AMBIENT | scene='' +2026-06-25 18:10:19,221 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,221 | INFO | Crow 0.285 0.000 0.157 ✓ +2026-06-25 18:10:19,221 | INFO | Bird 0.259 0.000 0.142 ✓ +2026-06-25 18:10:19,221 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:19,221 | INFO | Caw 0.179 0.000 0.099 ✗ +2026-06-25 18:10:19,221 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:19,221 | INFO | Bird vocalization, bird call, bird song 0.060 0.000 0.033 ✗ +2026-06-25 18:10:19,221 | INFO | → WINNER: Crow (combined=0.157) +2026-06-25 18:10:19,249 | INFO | +[ 96.20s] AMBIENT | scene='' +2026-06-25 18:10:19,249 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,249 | INFO | Crow 0.452 0.000 0.248 ✓ +2026-06-25 18:10:19,250 | INFO | Bird 0.400 0.000 0.220 ✓ +2026-06-25 18:10:19,250 | INFO | Animal 0.280 0.000 0.154 ✓ +2026-06-25 18:10:19,250 | INFO | Caw 0.223 0.000 0.122 ✓ +2026-06-25 18:10:19,250 | INFO | Duck 0.116 0.000 0.064 ✗ +2026-06-25 18:10:19,250 | INFO | Domestic animals, pets 0.061 0.000 0.034 ✗ +2026-06-25 18:10:19,250 | INFO | → WINNER: Crow (combined=0.248) +2026-06-25 18:10:19,276 | INFO | +[ 96.40s] AMBIENT | scene='' +2026-06-25 18:10:19,276 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,276 | INFO | Duck 0.360 0.000 0.198 ✓ +2026-06-25 18:10:19,276 | INFO | Bird 0.281 0.000 0.154 ✓ +2026-06-25 18:10:19,278 | INFO | Animal 0.247 0.000 0.136 ✓ +2026-06-25 18:10:19,278 | INFO | Fowl 0.149 0.000 0.082 ✗ +2026-06-25 18:10:19,278 | INFO | Quack 0.136 0.000 0.075 ✗ +2026-06-25 18:10:19,279 | INFO | Goose 0.129 0.000 0.071 ✗ +2026-06-25 18:10:19,279 | INFO | → WINNER: Duck (combined=0.198) +2026-06-25 18:10:19,305 | INFO | +[ 96.60s] AMBIENT | scene='' +2026-06-25 18:10:19,305 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,305 | INFO | Animal 0.200 0.000 0.110 ✗ +2026-06-25 18:10:19,306 | INFO | Bird 0.094 0.000 0.052 ✗ +2026-06-25 18:10:19,306 | INFO | Frog 0.055 0.000 0.030 ✗ +2026-06-25 18:10:19,306 | INFO | Domestic animals, pets 0.052 0.000 0.029 ✗ +2026-06-25 18:10:19,306 | INFO | → no winner +2026-06-25 18:10:19,330 | INFO | +[ 96.80s] AMBIENT | scene='' +2026-06-25 18:10:19,330 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,330 | INFO | Frog 0.651 0.000 0.358 ✓ +2026-06-25 18:10:19,330 | INFO | Croak 0.378 0.000 0.208 ✓ +2026-06-25 18:10:19,330 | INFO | Animal 0.092 0.000 0.050 ✗ +2026-06-25 18:10:19,330 | INFO | Bird 0.037 0.000 0.020 ✗ +2026-06-25 18:10:19,330 | INFO | → WINNER: Frog (combined=0.358) +2026-06-25 18:10:19,358 | INFO | +[ 97.00s] AMBIENT | scene='' +2026-06-25 18:10:19,358 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,358 | INFO | Frog 0.169 0.000 0.093 ✗ +2026-06-25 18:10:19,358 | INFO | Animal 0.067 0.000 0.037 ✗ +2026-06-25 18:10:19,358 | INFO | Bird 0.044 0.000 0.024 ✗ +2026-06-25 18:10:19,360 | INFO | → no winner +2026-06-25 18:10:19,385 | INFO | +[ 97.20s] AMBIENT | scene='' +2026-06-25 18:10:19,387 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,388 | INFO | Crow 0.264 0.000 0.145 ✓ +2026-06-25 18:10:19,390 | INFO | Caw 0.180 0.000 0.099 ✗ +2026-06-25 18:10:19,390 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:10:19,390 | INFO | Bird 0.082 0.000 0.045 ✗ +2026-06-25 18:10:19,390 | INFO | Fowl 0.064 0.000 0.035 ✗ +2026-06-25 18:10:19,390 | INFO | Duck 0.061 0.000 0.034 ✗ +2026-06-25 18:10:19,390 | INFO | → WINNER: Crow (combined=0.145) +2026-06-25 18:10:19,416 | INFO | +[ 97.40s] AMBIENT | scene='' +2026-06-25 18:10:19,416 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,416 | INFO | Crow 0.364 0.000 0.200 ✓ +2026-06-25 18:10:19,416 | INFO | Caw 0.273 0.000 0.150 ✓ +2026-06-25 18:10:19,416 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:19,416 | INFO | Bird 0.070 0.000 0.038 ✗ +2026-06-25 18:10:19,416 | INFO | Fowl 0.064 0.000 0.035 ✗ +2026-06-25 18:10:19,416 | INFO | Honk 0.061 0.000 0.034 ✗ +2026-06-25 18:10:19,416 | INFO | → WINNER: Crow (combined=0.200) +2026-06-25 18:10:19,445 | INFO | +[ 97.60s] AMBIENT | scene='' +2026-06-25 18:10:19,445 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,446 | INFO | Crow 0.139 0.000 0.076 ✗ +2026-06-25 18:10:19,446 | INFO | Animal 0.133 0.000 0.073 ✗ +2026-06-25 18:10:19,446 | INFO | Caw 0.098 0.000 0.054 ✗ +2026-06-25 18:10:19,446 | INFO | Bird 0.052 0.000 0.029 ✗ +2026-06-25 18:10:19,446 | INFO | → no winner +2026-06-25 18:10:19,472 | INFO | +[ 97.80s] AMBIENT | scene='' +2026-06-25 18:10:19,473 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,473 | INFO | Crow 0.082 0.000 0.045 ✗ +2026-06-25 18:10:19,473 | INFO | Tap 0.073 0.000 0.040 ✗ +2026-06-25 18:10:19,473 | INFO | Caw 0.055 0.000 0.030 ✗ +2026-06-25 18:10:19,473 | INFO | → no winner +2026-06-25 18:10:19,490 | INFO | +[ 98.00s] AMBIENT | scene='' +2026-06-25 18:10:19,499 | INFO | → no winner +2026-06-25 18:10:19,525 | INFO | +[ 98.20s] AMBIENT | scene='' +2026-06-25 18:10:19,525 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,525 | INFO | Animal 0.248 0.000 0.137 ✓ +2026-06-25 18:10:19,525 | INFO | Bird 0.079 0.000 0.043 ✗ +2026-06-25 18:10:19,525 | INFO | Horse 0.062 0.000 0.034 ✗ +2026-06-25 18:10:19,525 | INFO | Clip-clop 0.059 0.000 0.033 ✗ +2026-06-25 18:10:19,525 | INFO | Walk, footsteps 0.030 0.000 0.017 ✗ +2026-06-25 18:10:19,525 | INFO | → WINNER: Animal (combined=0.137) +2026-06-25 18:10:19,552 | INFO | +[ 98.40s] AMBIENT | scene='' +2026-06-25 18:10:19,552 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,553 | INFO | Animal 0.302 0.000 0.166 ✓ +2026-06-25 18:10:19,553 | INFO | Bird 0.160 0.000 0.088 ✗ +2026-06-25 18:10:19,553 | INFO | Outside, rural or natural 0.084 0.000 0.046 ✗ +2026-06-25 18:10:19,554 | INFO | Horse 0.066 0.000 0.036 ✗ +2026-06-25 18:10:19,554 | INFO | Clip-clop 0.066 0.000 0.036 ✗ +2026-06-25 18:10:19,554 | INFO | Livestock, farm animals, working animals 0.056 0.000 0.030 ✗ +2026-06-25 18:10:19,554 | INFO | → WINNER: Animal (combined=0.166) +2026-06-25 18:10:19,580 | INFO | +[ 98.60s] AMBIENT | scene='' +2026-06-25 18:10:19,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,580 | INFO | Animal 0.297 0.000 0.163 ✓ +2026-06-25 18:10:19,580 | INFO | Bird 0.216 0.000 0.119 ✗ +2026-06-25 18:10:19,580 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:19,580 | INFO | Livestock, farm animals, working animals 0.074 0.000 0.041 ✗ +2026-06-25 18:10:19,580 | INFO | Bird vocalization, bird call, bird song 0.063 0.000 0.035 ✗ +2026-06-25 18:10:19,580 | INFO | Chicken, rooster 0.057 0.000 0.031 ✗ +2026-06-25 18:10:19,580 | INFO | → WINNER: Animal (combined=0.163) +2026-06-25 18:10:19,607 | INFO | +[ 98.80s] AMBIENT | scene='' +2026-06-25 18:10:19,607 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,607 | INFO | Bird 0.300 0.000 0.165 ✓ +2026-06-25 18:10:19,607 | INFO | Animal 0.174 0.000 0.096 ✗ +2026-06-25 18:10:19,607 | INFO | Chicken, rooster 0.138 0.000 0.076 ✗ +2026-06-25 18:10:19,607 | INFO | Fowl 0.099 0.000 0.055 ✗ +2026-06-25 18:10:19,608 | INFO | Livestock, farm animals, working animals 0.090 0.000 0.050 ✗ +2026-06-25 18:10:19,608 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.044 ✗ +2026-06-25 18:10:19,608 | INFO | → WINNER: Bird (combined=0.165) +2026-06-25 18:10:19,632 | INFO | +[ 99.00s] AMBIENT | scene='' +2026-06-25 18:10:19,633 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,633 | INFO | Bird 0.321 0.000 0.177 ✓ +2026-06-25 18:10:19,633 | INFO | Animal 0.232 0.000 0.127 ✓ +2026-06-25 18:10:19,633 | INFO | Chicken, rooster 0.106 0.000 0.059 ✗ +2026-06-25 18:10:19,633 | INFO | Livestock, farm animals, working animals 0.102 0.000 0.056 ✗ +2026-06-25 18:10:19,633 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.052 ✗ +2026-06-25 18:10:19,634 | INFO | Fowl 0.087 0.000 0.048 ✗ +2026-06-25 18:10:19,634 | INFO | → WINNER: Bird (combined=0.177) +2026-06-25 18:10:19,660 | INFO | +[ 99.20s] AMBIENT | scene='' +2026-06-25 18:10:19,660 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,661 | INFO | Bird 0.266 0.000 0.146 ✓ +2026-06-25 18:10:19,661 | INFO | Animal 0.213 0.000 0.117 ✗ +2026-06-25 18:10:19,662 | INFO | Bird vocalization, bird call, bird song 0.108 0.000 0.059 ✗ +2026-06-25 18:10:19,662 | INFO | Pigeon, dove 0.101 0.000 0.056 ✗ +2026-06-25 18:10:19,663 | INFO | Chirp, tweet 0.081 0.000 0.045 ✗ +2026-06-25 18:10:19,663 | INFO | Patter 0.068 0.000 0.037 ✗ +2026-06-25 18:10:19,663 | INFO | → WINNER: Bird (combined=0.146) +2026-06-25 18:10:19,688 | INFO | +[ 99.40s] AMBIENT | scene='' +2026-06-25 18:10:19,688 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,688 | INFO | Animal 0.557 0.000 0.306 ✓ +2026-06-25 18:10:19,688 | INFO | Bird 0.168 0.000 0.092 ✗ +2026-06-25 18:10:19,688 | INFO | Outside, rural or natural 0.098 0.000 0.054 ✗ +2026-06-25 18:10:19,688 | INFO | Livestock, farm animals, working animals 0.094 0.000 0.052 ✗ +2026-06-25 18:10:19,688 | INFO | Horse 0.086 0.000 0.047 ✗ +2026-06-25 18:10:19,688 | INFO | Clip-clop 0.068 0.000 0.038 ✗ +2026-06-25 18:10:19,688 | INFO | → WINNER: Animal (combined=0.306) +2026-06-25 18:10:19,712 | INFO | +[ 99.60s] AMBIENT | scene='' +2026-06-25 18:10:19,712 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,712 | INFO | Animal 0.539 0.000 0.296 ✓ +2026-06-25 18:10:19,712 | INFO | Horse 0.138 0.000 0.076 ✗ +2026-06-25 18:10:19,712 | INFO | Bird 0.124 0.000 0.068 ✗ +2026-06-25 18:10:19,712 | INFO | Clip-clop 0.107 0.000 0.059 ✗ +2026-06-25 18:10:19,712 | INFO | Outside, rural or natural 0.091 0.000 0.050 ✗ +2026-06-25 18:10:19,712 | INFO | Livestock, farm animals, working animals 0.068 0.000 0.038 ✗ +2026-06-25 18:10:19,712 | INFO | → WINNER: Animal (combined=0.296) +2026-06-25 18:10:19,740 | INFO | +[ 99.80s] AMBIENT | scene='' +2026-06-25 18:10:19,740 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,740 | INFO | Animal 0.350 0.000 0.193 ✓ +2026-06-25 18:10:19,740 | INFO | Bird 0.066 0.000 0.036 ✗ +2026-06-25 18:10:19,740 | INFO | Horse 0.066 0.000 0.036 ✗ +2026-06-25 18:10:19,740 | INFO | Clip-clop 0.062 0.000 0.034 ✗ +2026-06-25 18:10:19,740 | INFO | Outside, rural or natural 0.055 0.000 0.030 ✗ +2026-06-25 18:10:19,740 | INFO | → WINNER: Animal (combined=0.193) +2026-06-25 18:10:19,765 | INFO | +[100.00s] AMBIENT | scene='' +2026-06-25 18:10:19,765 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,765 | INFO | Ratchet, pawl 0.415 0.000 0.228 ✓ +2026-06-25 18:10:19,765 | INFO | Gears 0.361 0.000 0.199 ✓ +2026-06-25 18:10:19,765 | INFO | Mechanisms 0.355 0.000 0.195 ✓ +2026-06-25 18:10:19,770 | INFO | Animal 0.212 0.000 0.117 ✗ +2026-06-25 18:10:19,770 | INFO | Pulleys 0.072 0.000 0.040 ✗ +2026-06-25 18:10:19,771 | INFO | Patter 0.065 0.000 0.036 ✗ +2026-06-25 18:10:19,771 | INFO | → WINNER: Ratchet, pawl (combined=0.228) +2026-06-25 18:10:19,797 | INFO | +[100.20s] AMBIENT | scene='' +2026-06-25 18:10:19,797 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,798 | INFO | Ratchet, pawl 0.628 0.000 0.345 ✓ +2026-06-25 18:10:19,798 | INFO | Gears 0.616 0.000 0.339 ✓ +2026-06-25 18:10:19,798 | INFO | Mechanisms 0.586 0.000 0.322 ✓ +2026-06-25 18:10:19,798 | INFO | Pulleys 0.246 0.000 0.135 ✓ +2026-06-25 18:10:19,798 | INFO | Animal 0.064 0.000 0.035 ✗ +2026-06-25 18:10:19,799 | INFO | → WINNER: Ratchet, pawl (combined=0.345) +2026-06-25 18:10:19,821 | INFO | +[100.40s] AMBIENT | scene='' +2026-06-25 18:10:19,821 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,821 | INFO | Animal 0.414 0.000 0.228 ✓ +2026-06-25 18:10:19,825 | INFO | Mechanisms 0.181 0.000 0.099 ✗ +2026-06-25 18:10:19,825 | INFO | Ratchet, pawl 0.158 0.000 0.087 ✗ +2026-06-25 18:10:19,825 | INFO | Gears 0.143 0.000 0.079 ✗ +2026-06-25 18:10:19,825 | INFO | Bird 0.095 0.000 0.052 ✗ +2026-06-25 18:10:19,825 | INFO | Horse 0.092 0.000 0.051 ✗ +2026-06-25 18:10:19,825 | INFO | → WINNER: Animal (combined=0.228) +2026-06-25 18:10:19,849 | INFO | +[100.60s] AMBIENT | scene='' +2026-06-25 18:10:19,849 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,849 | INFO | Animal 0.390 0.000 0.214 ✓ +2026-06-25 18:10:19,849 | INFO | Mechanisms 0.112 0.000 0.061 ✗ +2026-06-25 18:10:19,849 | INFO | Horse 0.084 0.000 0.046 ✗ +2026-06-25 18:10:19,849 | INFO | Clip-clop 0.079 0.000 0.043 ✗ +2026-06-25 18:10:19,849 | INFO | Ratchet, pawl 0.077 0.000 0.043 ✗ +2026-06-25 18:10:19,849 | INFO | Patter 0.073 0.000 0.040 ✗ +2026-06-25 18:10:19,849 | INFO | → WINNER: Animal (combined=0.214) +2026-06-25 18:10:19,870 | INFO | +[100.80s] AMBIENT | scene='' +2026-06-25 18:10:19,870 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,870 | INFO | Animal 0.344 0.000 0.189 ✓ +2026-06-25 18:10:19,870 | INFO | Patter 0.178 0.000 0.098 ✗ +2026-06-25 18:10:19,870 | INFO | Bird 0.103 0.000 0.057 ✗ +2026-06-25 18:10:19,879 | INFO | Mouse 0.089 0.000 0.049 ✗ +2026-06-25 18:10:19,879 | INFO | Rodents, rats, mice 0.074 0.000 0.041 ✗ +2026-06-25 18:10:19,879 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:19,880 | INFO | → WINNER: Animal (combined=0.189) +2026-06-25 18:10:19,904 | INFO | +[101.00s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:19,904 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,904 | INFO | Animal 0.379 0.000 0.208 ✓ +2026-06-25 18:10:19,904 | INFO | Bird 0.156 0.000 0.086 ✗ +2026-06-25 18:10:19,904 | INFO | Patter 0.115 0.000 0.063 ✗ +2026-06-25 18:10:19,904 | INFO | Outside, rural or natural 0.104 0.000 0.058 ✗ +2026-06-25 18:10:19,904 | INFO | Livestock, farm animals, working animals 0.075 0.000 0.041 ✗ +2026-06-25 18:10:19,904 | INFO | Horse 0.064 0.000 0.035 ✗ +2026-06-25 18:10:19,904 | INFO | → WINNER: Animal (combined=0.208) +2026-06-25 18:10:19,933 | INFO | +[101.20s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:19,934 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,934 | INFO | Animal 0.360 0.000 0.198 ✓ +2026-06-25 18:10:19,934 | INFO | Patter 0.140 0.000 0.077 ✗ +2026-06-25 18:10:19,934 | INFO | Bird 0.121 0.000 0.067 ✗ +2026-06-25 18:10:19,934 | INFO | Outside, rural or natural 0.110 0.000 0.061 ✗ +2026-06-25 18:10:19,935 | INFO | Walk, footsteps 0.072 0.000 0.040 ✗ +2026-06-25 18:10:19,935 | INFO | Snake 0.060 0.000 0.033 ✗ +2026-06-25 18:10:19,935 | INFO | → WINNER: Animal (combined=0.198) +2026-06-25 18:10:19,961 | INFO | +[101.40s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:19,963 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:19,963 | INFO | Animal 0.389 0.000 0.214 ✓ +2026-06-25 18:10:19,963 | INFO | Environmental noise 0.086 0.313 0.188 ✓ +2026-06-25 18:10:19,963 | INFO | Bird 0.133 0.000 0.073 ✗ +2026-06-25 18:10:19,963 | INFO | Outside, rural or natural 0.113 0.000 0.062 ✗ +2026-06-25 18:10:19,963 | INFO | Horse 0.079 0.000 0.043 ✗ +2026-06-25 18:10:19,963 | INFO | Clip-clop 0.068 0.000 0.037 ✗ +2026-06-25 18:10:19,970 | INFO | → WINNER: Animal (combined=0.214) +2026-06-25 18:10:20,000 | INFO | +[101.60s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:20,000 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,000 | INFO | Environmental noise 0.210 0.313 0.256 ✓ +2026-06-25 18:10:20,000 | INFO | Animal 0.274 0.000 0.151 ✓ +2026-06-25 18:10:20,000 | INFO | Bird 0.171 0.000 0.094 ✗ +2026-06-25 18:10:20,000 | INFO | Outside, rural or natural 0.101 0.000 0.056 ✗ +2026-06-25 18:10:20,000 | INFO | Bird vocalization, bird call, bird song 0.099 0.000 0.054 ✗ +2026-06-25 18:10:20,000 | INFO | Chirp, tweet 0.095 0.000 0.052 ✗ +2026-06-25 18:10:20,000 | INFO | → WINNER: Environmental noise (combined=0.256) +2026-06-25 18:10:20,037 | INFO | +[147.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a close-up of a' +2026-06-25 18:10:20,038 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,038 | INFO | Animal 0.150 0.000 0.082 ✗ +2026-06-25 18:10:20,038 | INFO | Bird 0.136 0.000 0.075 ✗ +2026-06-25 18:10:20,038 | INFO | Bird vocalization, bird call, bird song 0.039 0.000 0.021 ✗ +2026-06-25 18:10:20,038 | INFO | → no winner +2026-06-25 18:10:20,063 | INFO | +[148.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a close-up of a' +2026-06-25 18:10:20,063 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,063 | INFO | Animal 0.218 0.000 0.120 ✓ +2026-06-25 18:10:20,063 | INFO | Bird 0.163 0.000 0.089 ✗ +2026-06-25 18:10:20,063 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:10:20,063 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.028 ✗ +2026-06-25 18:10:20,063 | INFO | → WINNER: Animal (combined=0.120) +2026-06-25 18:10:20,113 | INFO | +[190.00s] AMBIENT | scene='' +2026-06-25 18:10:20,113 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,113 | INFO | Animal 0.330 0.000 0.182 ✓ +2026-06-25 18:10:20,113 | INFO | Bird 0.106 0.000 0.058 ✗ +2026-06-25 18:10:20,114 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:20,114 | INFO | Horse 0.066 0.000 0.036 ✗ +2026-06-25 18:10:20,114 | INFO | Clip-clop 0.062 0.000 0.034 ✗ +2026-06-25 18:10:20,114 | INFO | Bird vocalization, bird call, bird song 0.031 0.000 0.017 ✗ +2026-06-25 18:10:20,114 | INFO | → WINNER: Animal (combined=0.182) +2026-06-25 18:10:20,170 | INFO | +[190.20s] AMBIENT | scene='' +2026-06-25 18:10:20,170 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,170 | INFO | Animal 0.157 0.000 0.086 ✗ +2026-06-25 18:10:20,170 | INFO | Bird 0.125 0.000 0.069 ✗ +2026-06-25 18:10:20,171 | INFO | Mouse 0.092 0.000 0.051 ✗ +2026-06-25 18:10:20,171 | INFO | Bird vocalization, bird call, bird song 0.047 0.000 0.026 ✗ +2026-06-25 18:10:20,171 | INFO | → no winner +2026-06-25 18:10:20,226 | INFO | +[190.40s] AMBIENT | scene='' +2026-06-25 18:10:20,226 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,226 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:10:20,226 | INFO | Bird 0.095 0.000 0.052 ✗ +2026-06-25 18:10:20,226 | INFO | Mouse 0.060 0.000 0.033 ✗ +2026-06-25 18:10:20,226 | INFO | Bird vocalization, bird call, bird song 0.037 0.000 0.021 ✗ +2026-06-25 18:10:20,228 | INFO | → no winner +2026-06-25 18:10:20,280 | INFO | +[190.60s] AMBIENT | scene='' +2026-06-25 18:10:20,280 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,280 | INFO | Animal 0.116 0.000 0.064 ✗ +2026-06-25 18:10:20,280 | INFO | Bird 0.044 0.000 0.025 ✗ +2026-06-25 18:10:20,280 | INFO | → no winner +2026-06-25 18:10:20,318 | INFO | +[190.80s] AMBIENT | scene='' +2026-06-25 18:10:20,318 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,319 | INFO | Animal 0.068 0.000 0.037 ✗ +2026-06-25 18:10:20,319 | INFO | → no winner +2026-06-25 18:10:20,347 | INFO | +[191.00s] AMBIENT | scene='' +2026-06-25 18:10:20,347 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,348 | INFO | Animal 0.083 0.000 0.045 ✗ +2026-06-25 18:10:20,348 | INFO | Inside, small room 0.065 0.000 0.036 ✗ +2026-06-25 18:10:20,348 | INFO | → no winner +2026-06-25 18:10:20,371 | INFO | +[198.20s] AMBIENT | scene='' +2026-06-25 18:10:20,371 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,371 | INFO | Music 0.667 0.000 0.367 ✓ +2026-06-25 18:10:20,371 | INFO | Tabla 0.414 0.000 0.228 ✓ +2026-06-25 18:10:20,371 | INFO | Musical instrument 0.352 0.000 0.194 ✓ +2026-06-25 18:10:20,378 | INFO | Percussion 0.221 0.000 0.122 ✓ +2026-06-25 18:10:20,378 | INFO | Carnatic music 0.205 0.000 0.113 ✗ +2026-06-25 18:10:20,378 | INFO | Classical music 0.180 0.000 0.099 ✗ +2026-06-25 18:10:20,379 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:10:20,404 | INFO | +[198.40s] AMBIENT | scene='' +2026-06-25 18:10:20,405 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,405 | INFO | Music 0.725 0.000 0.399 ✓ +2026-06-25 18:10:20,405 | INFO | Tabla 0.578 0.000 0.318 ✓ +2026-06-25 18:10:20,405 | INFO | Musical instrument 0.518 0.000 0.285 ✓ +2026-06-25 18:10:20,405 | INFO | Carnatic music 0.426 0.000 0.234 ✓ +2026-06-25 18:10:20,405 | INFO | Classical music 0.364 0.000 0.200 ✓ +2026-06-25 18:10:20,405 | INFO | Sitar 0.340 0.000 0.187 ✓ +2026-06-25 18:10:20,405 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:10:20,431 | INFO | +[198.60s] AMBIENT | scene='' +2026-06-25 18:10:20,431 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,431 | INFO | Music 0.748 0.000 0.411 ✓ +2026-06-25 18:10:20,432 | INFO | Tabla 0.494 0.000 0.272 ✓ +2026-06-25 18:10:20,432 | INFO | Musical instrument 0.442 0.000 0.243 ✓ +2026-06-25 18:10:20,432 | INFO | Sitar 0.379 0.000 0.209 ✓ +2026-06-25 18:10:20,432 | INFO | Carnatic music 0.304 0.000 0.167 ✓ +2026-06-25 18:10:20,432 | INFO | Percussion 0.211 0.000 0.116 ✗ +2026-06-25 18:10:20,432 | INFO | → WINNER: Music (combined=0.411) +2026-06-25 18:10:20,458 | INFO | +[198.80s] AMBIENT | scene='' +2026-06-25 18:10:20,461 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,462 | INFO | Music 0.878 0.000 0.483 ✓ +2026-06-25 18:10:20,462 | INFO | Musical instrument 0.553 0.000 0.304 ✓ +2026-06-25 18:10:20,466 | INFO | Plucked string instrument 0.410 0.000 0.226 ✓ +2026-06-25 18:10:20,467 | INFO | Sitar 0.247 0.000 0.136 ✓ +2026-06-25 18:10:20,467 | INFO | Guitar 0.237 0.000 0.130 ✓ +2026-06-25 18:10:20,468 | INFO | Carnatic music 0.118 0.000 0.065 ✗ +2026-06-25 18:10:20,468 | INFO | → WINNER: Music (combined=0.483) +2026-06-25 18:10:20,490 | INFO | +[199.00s] AMBIENT | scene='' +2026-06-25 18:10:20,496 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,496 | INFO | Music 0.916 0.000 0.504 ✓ +2026-06-25 18:10:20,496 | INFO | Musical instrument 0.789 0.000 0.434 ✓ +2026-06-25 18:10:20,497 | INFO | Plucked string instrument 0.745 0.000 0.410 ✓ +2026-06-25 18:10:20,498 | INFO | Guitar 0.683 0.000 0.376 ✓ +2026-06-25 18:10:20,499 | INFO | Acoustic guitar 0.268 0.000 0.147 ✓ +2026-06-25 18:10:20,499 | INFO | Strum 0.192 0.000 0.105 ✗ +2026-06-25 18:10:20,499 | INFO | → WINNER: Music (combined=0.504) +2026-06-25 18:10:20,523 | INFO | +[199.20s] AMBIENT | scene='' +2026-06-25 18:10:20,523 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,523 | INFO | Music 0.920 0.000 0.506 ✓ +2026-06-25 18:10:20,523 | INFO | Musical instrument 0.848 0.000 0.466 ✓ +2026-06-25 18:10:20,523 | INFO | Guitar 0.821 0.000 0.452 ✓ +2026-06-25 18:10:20,528 | INFO | Plucked string instrument 0.816 0.000 0.449 ✓ +2026-06-25 18:10:20,528 | INFO | Acoustic guitar 0.380 0.000 0.209 ✓ +2026-06-25 18:10:20,528 | INFO | Strum 0.285 0.000 0.157 ✓ +2026-06-25 18:10:20,528 | INFO | → WINNER: Music (combined=0.506) +2026-06-25 18:10:20,553 | INFO | +[199.40s] AMBIENT | scene='' +2026-06-25 18:10:20,553 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,553 | INFO | Music 0.865 0.000 0.476 ✓ +2026-06-25 18:10:20,555 | INFO | Musical instrument 0.700 0.000 0.385 ✓ +2026-06-25 18:10:20,555 | INFO | Plucked string instrument 0.640 0.000 0.352 ✓ +2026-06-25 18:10:20,555 | INFO | Guitar 0.541 0.000 0.298 ✓ +2026-06-25 18:10:20,555 | INFO | Acoustic guitar 0.228 0.000 0.126 ✓ +2026-06-25 18:10:20,555 | INFO | Strum 0.146 0.000 0.080 ✗ +2026-06-25 18:10:20,556 | INFO | → WINNER: Music (combined=0.476) +2026-06-25 18:10:20,581 | INFO | +[199.60s] AMBIENT | scene='' +2026-06-25 18:10:20,581 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,582 | INFO | Music 0.860 0.000 0.473 ✓ +2026-06-25 18:10:20,582 | INFO | Musical instrument 0.662 0.000 0.364 ✓ +2026-06-25 18:10:20,582 | INFO | Plucked string instrument 0.618 0.000 0.340 ✓ +2026-06-25 18:10:20,582 | INFO | Guitar 0.547 0.000 0.301 ✓ +2026-06-25 18:10:20,583 | INFO | Acoustic guitar 0.194 0.000 0.107 ✗ +2026-06-25 18:10:20,583 | INFO | Strum 0.182 0.000 0.100 ✗ +2026-06-25 18:10:20,583 | INFO | → WINNER: Music (combined=0.473) +2026-06-25 18:10:20,606 | INFO | +[199.80s] AMBIENT | scene='' +2026-06-25 18:10:20,606 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,606 | INFO | Music 0.813 0.000 0.447 ✓ +2026-06-25 18:10:20,606 | INFO | Musical instrument 0.499 0.000 0.275 ✓ +2026-06-25 18:10:20,606 | INFO | Plucked string instrument 0.274 0.000 0.151 ✓ +2026-06-25 18:10:20,606 | INFO | Guitar 0.211 0.000 0.116 ✗ +2026-06-25 18:10:20,606 | INFO | Acoustic guitar 0.057 0.000 0.031 ✗ +2026-06-25 18:10:20,610 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:10:20,635 | INFO | +[200.00s] AMBIENT | scene='' +2026-06-25 18:10:20,635 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,636 | INFO | Music 0.780 0.000 0.429 ✓ +2026-06-25 18:10:20,636 | INFO | Musical instrument 0.368 0.000 0.202 ✓ +2026-06-25 18:10:20,636 | INFO | Tabla 0.187 0.000 0.103 ✗ +2026-06-25 18:10:20,636 | INFO | Plucked string instrument 0.104 0.000 0.057 ✗ +2026-06-25 18:10:20,636 | INFO | Guitar 0.081 0.000 0.044 ✗ +2026-06-25 18:10:20,637 | INFO | Percussion 0.067 0.000 0.037 ✗ +2026-06-25 18:10:20,637 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:10:20,663 | INFO | +[200.20s] AMBIENT | scene='' +2026-06-25 18:10:20,664 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,664 | INFO | Tabla 0.717 0.000 0.395 ✓ +2026-06-25 18:10:20,665 | INFO | Music 0.690 0.000 0.380 ✓ +2026-06-25 18:10:20,665 | INFO | Musical instrument 0.405 0.000 0.223 ✓ +2026-06-25 18:10:20,665 | INFO | Percussion 0.243 0.000 0.134 ✓ +2026-06-25 18:10:20,666 | INFO | Drum 0.221 0.000 0.121 ✓ +2026-06-25 18:10:20,666 | INFO | Carnatic music 0.124 0.000 0.068 ✗ +2026-06-25 18:10:20,666 | INFO | → WINNER: Tabla (combined=0.395) +2026-06-25 18:10:20,691 | INFO | +[200.40s] AMBIENT | scene='' +2026-06-25 18:10:20,692 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,692 | INFO | Tabla 0.823 0.000 0.453 ✓ +2026-06-25 18:10:20,692 | INFO | Music 0.640 0.000 0.352 ✓ +2026-06-25 18:10:20,692 | INFO | Percussion 0.384 0.000 0.211 ✓ +2026-06-25 18:10:20,693 | INFO | Musical instrument 0.336 0.000 0.185 ✓ +2026-06-25 18:10:20,693 | INFO | Drum 0.300 0.000 0.165 ✓ +2026-06-25 18:10:20,693 | INFO | Carnatic music 0.159 0.000 0.087 ✗ +2026-06-25 18:10:20,693 | INFO | → WINNER: Tabla (combined=0.453) +2026-06-25 18:10:20,720 | INFO | +[200.60s] AMBIENT | scene='' +2026-06-25 18:10:20,720 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,721 | INFO | Tabla 0.812 0.000 0.447 ✓ +2026-06-25 18:10:20,721 | INFO | Music 0.652 0.000 0.359 ✓ +2026-06-25 18:10:20,721 | INFO | Musical instrument 0.406 0.000 0.223 ✓ +2026-06-25 18:10:20,721 | INFO | Percussion 0.368 0.000 0.202 ✓ +2026-06-25 18:10:20,721 | INFO | Drum 0.324 0.000 0.178 ✓ +2026-06-25 18:10:20,721 | INFO | Carnatic music 0.150 0.000 0.083 ✗ +2026-06-25 18:10:20,721 | INFO | → WINNER: Tabla (combined=0.447) +2026-06-25 18:10:20,747 | INFO | +[200.80s] AMBIENT | scene='' +2026-06-25 18:10:20,747 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,747 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:10:20,747 | INFO | Tabla 0.502 0.000 0.276 ✓ +2026-06-25 18:10:20,747 | INFO | Musical instrument 0.464 0.000 0.255 ✓ +2026-06-25 18:10:20,747 | INFO | Plucked string instrument 0.173 0.000 0.095 ✗ +2026-06-25 18:10:20,748 | INFO | Drum 0.167 0.000 0.092 ✗ +2026-06-25 18:10:20,748 | INFO | Percussion 0.156 0.000 0.086 ✗ +2026-06-25 18:10:20,748 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:20,772 | INFO | +[201.00s] AMBIENT | scene='' +2026-06-25 18:10:20,772 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,772 | INFO | Music 0.840 0.000 0.462 ✓ +2026-06-25 18:10:20,772 | INFO | Musical instrument 0.719 0.000 0.395 ✓ +2026-06-25 18:10:20,772 | INFO | Plucked string instrument 0.448 0.000 0.246 ✓ +2026-06-25 18:10:20,772 | INFO | Carnatic music 0.436 0.000 0.240 ✓ +2026-06-25 18:10:20,772 | INFO | Tabla 0.389 0.000 0.214 ✓ +2026-06-25 18:10:20,772 | INFO | Sitar 0.304 0.000 0.167 ✓ +2026-06-25 18:10:20,772 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:10:20,799 | INFO | +[201.20s] AMBIENT | scene='' +2026-06-25 18:10:20,799 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,799 | INFO | Music 0.855 0.000 0.470 ✓ +2026-06-25 18:10:20,803 | INFO | Musical instrument 0.638 0.000 0.351 ✓ +2026-06-25 18:10:20,803 | INFO | Plucked string instrument 0.449 0.000 0.247 ✓ +2026-06-25 18:10:20,803 | INFO | Sitar 0.436 0.000 0.240 ✓ +2026-06-25 18:10:20,804 | INFO | Tabla 0.363 0.000 0.200 ✓ +2026-06-25 18:10:20,804 | INFO | Carnatic music 0.351 0.000 0.193 ✓ +2026-06-25 18:10:20,804 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:20,829 | INFO | +[201.40s] AMBIENT | scene='' +2026-06-25 18:10:20,829 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,829 | INFO | Music 0.823 0.000 0.453 ✓ +2026-06-25 18:10:20,829 | INFO | Sitar 0.663 0.000 0.365 ✓ +2026-06-25 18:10:20,829 | INFO | Musical instrument 0.529 0.000 0.291 ✓ +2026-06-25 18:10:20,830 | INFO | Plucked string instrument 0.417 0.000 0.229 ✓ +2026-06-25 18:10:20,831 | INFO | Carnatic music 0.285 0.000 0.157 ✓ +2026-06-25 18:10:20,831 | INFO | Classical music 0.186 0.000 0.102 ✗ +2026-06-25 18:10:20,831 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:20,854 | INFO | +[201.60s] AMBIENT | scene='' +2026-06-25 18:10:20,854 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,854 | INFO | Music 0.814 0.000 0.448 ✓ +2026-06-25 18:10:20,854 | INFO | Sitar 0.765 0.000 0.421 ✓ +2026-06-25 18:10:20,854 | INFO | Musical instrument 0.374 0.000 0.206 ✓ +2026-06-25 18:10:20,854 | INFO | Carnatic music 0.315 0.000 0.173 ✓ +2026-06-25 18:10:20,854 | INFO | Plucked string instrument 0.290 0.000 0.159 ✓ +2026-06-25 18:10:20,854 | INFO | Classical music 0.161 0.000 0.088 ✗ +2026-06-25 18:10:20,854 | INFO | → WINNER: Music (combined=0.448) +2026-06-25 18:10:20,881 | INFO | +[201.80s] AMBIENT | scene='' +2026-06-25 18:10:20,881 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,881 | INFO | Music 0.771 0.000 0.424 ✓ +2026-06-25 18:10:20,881 | INFO | Sitar 0.348 0.000 0.191 ✓ +2026-06-25 18:10:20,881 | INFO | Musical instrument 0.334 0.000 0.184 ✓ +2026-06-25 18:10:20,881 | INFO | Carnatic music 0.245 0.000 0.135 ✓ +2026-06-25 18:10:20,881 | INFO | Middle Eastern music 0.169 0.000 0.093 ✗ +2026-06-25 18:10:20,886 | INFO | Plucked string instrument 0.162 0.000 0.089 ✗ +2026-06-25 18:10:20,886 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:10:20,911 | INFO | +[202.00s] AMBIENT | scene='' +2026-06-25 18:10:20,912 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,912 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:20,913 | INFO | Musical instrument 0.314 0.000 0.173 ✓ +2026-06-25 18:10:20,913 | INFO | Middle Eastern music 0.189 0.000 0.104 ✗ +2026-06-25 18:10:20,913 | INFO | Plucked string instrument 0.176 0.000 0.097 ✗ +2026-06-25 18:10:20,913 | INFO | Sitar 0.163 0.000 0.090 ✗ +2026-06-25 18:10:20,914 | INFO | Folk music 0.129 0.000 0.071 ✗ +2026-06-25 18:10:20,914 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:20,940 | INFO | +[202.20s] AMBIENT | scene='' +2026-06-25 18:10:20,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,940 | INFO | Music 0.856 0.000 0.471 ✓ +2026-06-25 18:10:20,940 | INFO | Musical instrument 0.461 0.000 0.254 ✓ +2026-06-25 18:10:20,940 | INFO | Plucked string instrument 0.395 0.000 0.217 ✓ +2026-06-25 18:10:20,940 | INFO | Guitar 0.331 0.000 0.182 ✓ +2026-06-25 18:10:20,940 | INFO | Acoustic guitar 0.186 0.000 0.103 ✗ +2026-06-25 18:10:20,940 | INFO | Strum 0.153 0.000 0.085 ✗ +2026-06-25 18:10:20,940 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:20,964 | INFO | +[202.40s] AMBIENT | scene='' +2026-06-25 18:10:20,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,964 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:20,964 | INFO | Musical instrument 0.499 0.000 0.274 ✓ +2026-06-25 18:10:20,964 | INFO | Plucked string instrument 0.364 0.000 0.200 ✓ +2026-06-25 18:10:20,964 | INFO | Guitar 0.282 0.000 0.155 ✓ +2026-06-25 18:10:20,964 | INFO | Acoustic guitar 0.108 0.000 0.059 ✗ +2026-06-25 18:10:20,964 | INFO | Strum 0.100 0.000 0.055 ✗ +2026-06-25 18:10:20,964 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:20,995 | INFO | +[202.60s] AMBIENT | scene='' +2026-06-25 18:10:20,996 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:20,996 | INFO | Music 0.854 0.000 0.470 ✓ +2026-06-25 18:10:20,996 | INFO | Musical instrument 0.725 0.000 0.399 ✓ +2026-06-25 18:10:20,996 | INFO | Plucked string instrument 0.641 0.000 0.353 ✓ +2026-06-25 18:10:20,996 | INFO | Guitar 0.528 0.000 0.290 ✓ +2026-06-25 18:10:20,996 | INFO | Acoustic guitar 0.210 0.000 0.116 ✗ +2026-06-25 18:10:20,997 | INFO | Strum 0.198 0.000 0.109 ✗ +2026-06-25 18:10:20,997 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:21,022 | INFO | +[202.80s] AMBIENT | scene='' +2026-06-25 18:10:21,022 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,022 | INFO | Music 0.849 0.000 0.467 ✓ +2026-06-25 18:10:21,022 | INFO | Musical instrument 0.656 0.000 0.361 ✓ +2026-06-25 18:10:21,022 | INFO | Plucked string instrument 0.530 0.000 0.292 ✓ +2026-06-25 18:10:21,022 | INFO | Carnatic music 0.357 0.000 0.196 ✓ +2026-06-25 18:10:21,022 | INFO | Sitar 0.325 0.000 0.178 ✓ +2026-06-25 18:10:21,022 | INFO | Guitar 0.278 0.000 0.153 ✓ +2026-06-25 18:10:21,022 | INFO | → WINNER: Music (combined=0.467) +2026-06-25 18:10:21,050 | INFO | +[203.00s] AMBIENT | scene='' +2026-06-25 18:10:21,054 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,054 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:21,054 | INFO | Carnatic music 0.615 0.000 0.338 ✓ +2026-06-25 18:10:21,054 | INFO | Musical instrument 0.568 0.000 0.312 ✓ +2026-06-25 18:10:21,054 | INFO | Classical music 0.363 0.000 0.200 ✓ +2026-06-25 18:10:21,054 | INFO | Tabla 0.334 0.000 0.184 ✓ +2026-06-25 18:10:21,054 | INFO | Sitar 0.263 0.000 0.145 ✓ +2026-06-25 18:10:21,054 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:21,085 | INFO | +[203.20s] AMBIENT | scene='' +2026-06-25 18:10:21,088 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,089 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:10:21,090 | INFO | Musical instrument 0.493 0.000 0.271 ✓ +2026-06-25 18:10:21,091 | INFO | Plucked string instrument 0.236 0.000 0.130 ✓ +2026-06-25 18:10:21,091 | INFO | Carnatic music 0.156 0.000 0.086 ✗ +2026-06-25 18:10:21,092 | INFO | Guitar 0.123 0.000 0.068 ✗ +2026-06-25 18:10:21,092 | INFO | Sitar 0.123 0.000 0.068 ✗ +2026-06-25 18:10:21,092 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:21,118 | INFO | +[203.40s] AMBIENT | scene='' +2026-06-25 18:10:21,118 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,118 | INFO | Music 0.895 0.000 0.492 ✓ +2026-06-25 18:10:21,118 | INFO | Musical instrument 0.554 0.000 0.304 ✓ +2026-06-25 18:10:21,121 | INFO | Plucked string instrument 0.421 0.000 0.232 ✓ +2026-06-25 18:10:21,122 | INFO | Traditional music 0.207 0.000 0.114 ✗ +2026-06-25 18:10:21,122 | INFO | Guitar 0.155 0.000 0.085 ✗ +2026-06-25 18:10:21,122 | INFO | Sitar 0.145 0.000 0.080 ✗ +2026-06-25 18:10:21,122 | INFO | → WINNER: Music (combined=0.492) +2026-06-25 18:10:21,149 | INFO | +[203.60s] AMBIENT | scene='' +2026-06-25 18:10:21,151 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,151 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:21,152 | INFO | Musical instrument 0.432 0.000 0.238 ✓ +2026-06-25 18:10:21,152 | INFO | Plucked string instrument 0.293 0.000 0.161 ✓ +2026-06-25 18:10:21,152 | INFO | Traditional music 0.236 0.000 0.130 ✓ +2026-06-25 18:10:21,152 | INFO | Zither 0.182 0.000 0.100 ✗ +2026-06-25 18:10:21,153 | INFO | Sitar 0.153 0.000 0.084 ✗ +2026-06-25 18:10:21,153 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:21,182 | INFO | +[203.80s] AMBIENT | scene='' +2026-06-25 18:10:21,182 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,183 | INFO | Music 0.816 0.000 0.449 ✓ +2026-06-25 18:10:21,183 | INFO | Musical instrument 0.448 0.000 0.246 ✓ +2026-06-25 18:10:21,183 | INFO | Plucked string instrument 0.333 0.000 0.183 ✓ +2026-06-25 18:10:21,184 | INFO | Banjo 0.175 0.000 0.097 ✗ +2026-06-25 18:10:21,184 | INFO | Tabla 0.147 0.000 0.081 ✗ +2026-06-25 18:10:21,184 | INFO | Sitar 0.140 0.000 0.077 ✗ +2026-06-25 18:10:21,184 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:10:21,200 | INFO | +[204.00s] AMBIENT | scene='' +2026-06-25 18:10:21,210 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,211 | INFO | Music 0.758 0.000 0.417 ✓ +2026-06-25 18:10:21,212 | INFO | Tabla 0.484 0.000 0.266 ✓ +2026-06-25 18:10:21,212 | INFO | Musical instrument 0.437 0.000 0.240 ✓ +2026-06-25 18:10:21,212 | INFO | Plucked string instrument 0.304 0.000 0.167 ✓ +2026-06-25 18:10:21,212 | INFO | Sitar 0.245 0.000 0.135 ✓ +2026-06-25 18:10:21,212 | INFO | Percussion 0.152 0.000 0.084 ✗ +2026-06-25 18:10:21,213 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:10:21,242 | INFO | +[204.20s] AMBIENT | scene='' +2026-06-25 18:10:21,243 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,243 | INFO | Music 0.650 0.000 0.358 ✓ +2026-06-25 18:10:21,244 | INFO | Tabla 0.600 0.000 0.330 ✓ +2026-06-25 18:10:21,244 | INFO | Musical instrument 0.219 0.000 0.121 ✓ +2026-06-25 18:10:21,244 | INFO | Percussion 0.206 0.000 0.113 ✗ +2026-06-25 18:10:21,244 | INFO | Drum 0.182 0.000 0.100 ✗ +2026-06-25 18:10:21,244 | INFO | Carnatic music 0.117 0.000 0.064 ✗ +2026-06-25 18:10:21,245 | INFO | → WINNER: Music (combined=0.358) +2026-06-25 18:10:21,271 | INFO | +[204.40s] AMBIENT | scene='' +2026-06-25 18:10:21,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,271 | INFO | Music 0.732 0.000 0.402 ✓ +2026-06-25 18:10:21,271 | INFO | Musical instrument 0.195 0.000 0.107 ✗ +2026-06-25 18:10:21,272 | INFO | Singing 0.118 0.000 0.065 ✗ +2026-06-25 18:10:21,272 | INFO | Tabla 0.102 0.000 0.056 ✗ +2026-06-25 18:10:21,272 | INFO | Drum 0.072 0.000 0.040 ✗ +2026-06-25 18:10:21,273 | INFO | Percussion 0.066 0.000 0.036 ✗ +2026-06-25 18:10:21,274 | INFO | → WINNER: Music (combined=0.402) +2026-06-25 18:10:21,295 | INFO | +[204.60s] AMBIENT | scene='' +2026-06-25 18:10:21,300 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,300 | INFO | Music 0.580 0.000 0.319 ✓ +2026-06-25 18:10:21,300 | INFO | Singing 0.178 0.000 0.098 ✗ +2026-06-25 18:10:21,300 | INFO | Musical instrument 0.139 0.000 0.077 ✗ +2026-06-25 18:10:21,300 | INFO | → WINNER: Music (combined=0.319) +2026-06-25 18:10:21,324 | INFO | +[204.80s] AMBIENT | scene='' +2026-06-25 18:10:21,324 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,324 | INFO | Music 0.610 0.000 0.335 ✓ +2026-06-25 18:10:21,324 | INFO | Musical instrument 0.239 0.000 0.132 ✓ +2026-06-25 18:10:21,324 | INFO | Singing 0.155 0.000 0.085 ✗ +2026-06-25 18:10:21,324 | INFO | Plucked string instrument 0.104 0.000 0.058 ✗ +2026-06-25 18:10:21,324 | INFO | Guitar 0.104 0.000 0.057 ✗ +2026-06-25 18:10:21,324 | INFO | Inside, small room 0.068 0.000 0.037 ✗ +2026-06-25 18:10:21,328 | INFO | → WINNER: Music (combined=0.335) +2026-06-25 18:10:21,354 | INFO | +[205.00s] AMBIENT | scene='' +2026-06-25 18:10:21,354 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,354 | INFO | Music 0.806 0.000 0.444 ✓ +2026-06-25 18:10:21,354 | INFO | Musical instrument 0.340 0.000 0.187 ✓ +2026-06-25 18:10:21,354 | INFO | Plucked string instrument 0.216 0.000 0.119 ✗ +2026-06-25 18:10:21,354 | INFO | Singing 0.207 0.000 0.114 ✗ +2026-06-25 18:10:21,355 | INFO | Guitar 0.159 0.000 0.088 ✗ +2026-06-25 18:10:21,355 | INFO | Inside, small room 0.073 0.000 0.040 ✗ +2026-06-25 18:10:21,355 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:21,380 | INFO | +[205.20s] AMBIENT | scene='' +2026-06-25 18:10:21,380 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,380 | INFO | Music 0.761 0.000 0.418 ✓ +2026-06-25 18:10:21,380 | INFO | Musical instrument 0.498 0.000 0.274 ✓ +2026-06-25 18:10:21,380 | INFO | Tabla 0.325 0.000 0.178 ✓ +2026-06-25 18:10:21,380 | INFO | Plucked string instrument 0.292 0.000 0.161 ✓ +2026-06-25 18:10:21,380 | INFO | Carnatic music 0.219 0.000 0.120 ✓ +2026-06-25 18:10:21,380 | INFO | Guitar 0.139 0.000 0.076 ✗ +2026-06-25 18:10:21,385 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:10:21,411 | INFO | +[205.40s] AMBIENT | scene='' +2026-06-25 18:10:21,411 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,412 | INFO | Music 0.756 0.000 0.416 ✓ +2026-06-25 18:10:21,412 | INFO | Musical instrument 0.397 0.000 0.219 ✓ +2026-06-25 18:10:21,412 | INFO | Plucked string instrument 0.276 0.000 0.152 ✓ +2026-06-25 18:10:21,412 | INFO | Guitar 0.148 0.000 0.081 ✗ +2026-06-25 18:10:21,412 | INFO | Sitar 0.107 0.000 0.059 ✗ +2026-06-25 18:10:21,412 | INFO | Banjo 0.065 0.000 0.036 ✗ +2026-06-25 18:10:21,412 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:10:21,440 | INFO | +[205.60s] AMBIENT | scene='' +2026-06-25 18:10:21,440 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,440 | INFO | Music 0.855 0.000 0.470 ✓ +2026-06-25 18:10:21,440 | INFO | Musical instrument 0.615 0.000 0.338 ✓ +2026-06-25 18:10:21,440 | INFO | Plucked string instrument 0.497 0.000 0.273 ✓ +2026-06-25 18:10:21,440 | INFO | Banjo 0.323 0.000 0.178 ✓ +2026-06-25 18:10:21,440 | INFO | Guitar 0.256 0.000 0.141 ✓ +2026-06-25 18:10:21,440 | INFO | Sitar 0.129 0.000 0.071 ✗ +2026-06-25 18:10:21,440 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:21,466 | INFO | +[205.80s] AMBIENT | scene='' +2026-06-25 18:10:21,466 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,466 | INFO | Music 0.860 0.000 0.473 ✓ +2026-06-25 18:10:21,466 | INFO | Musical instrument 0.696 0.000 0.383 ✓ +2026-06-25 18:10:21,466 | INFO | Plucked string instrument 0.616 0.000 0.339 ✓ +2026-06-25 18:10:21,466 | INFO | Guitar 0.405 0.000 0.223 ✓ +2026-06-25 18:10:21,466 | INFO | Banjo 0.196 0.000 0.108 ✗ +2026-06-25 18:10:21,466 | INFO | Mandolin 0.121 0.000 0.066 ✗ +2026-06-25 18:10:21,466 | INFO | → WINNER: Music (combined=0.473) +2026-06-25 18:10:21,490 | INFO | +[206.00s] AMBIENT | scene='' +2026-06-25 18:10:21,495 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,495 | INFO | Music 0.828 0.000 0.456 ✓ +2026-06-25 18:10:21,495 | INFO | Musical instrument 0.437 0.000 0.240 ✓ +2026-06-25 18:10:21,496 | INFO | Plucked string instrument 0.304 0.000 0.167 ✓ +2026-06-25 18:10:21,496 | INFO | Sitar 0.233 0.000 0.128 ✓ +2026-06-25 18:10:21,496 | INFO | Guitar 0.133 0.000 0.073 ✗ +2026-06-25 18:10:21,496 | INFO | Tabla 0.065 0.000 0.036 ✗ +2026-06-25 18:10:21,497 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:21,525 | INFO | +[206.20s] AMBIENT | scene='' +2026-06-25 18:10:21,525 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,525 | INFO | Music 0.871 0.000 0.479 ✓ +2026-06-25 18:10:21,526 | INFO | Musical instrument 0.715 0.000 0.393 ✓ +2026-06-25 18:10:21,526 | INFO | Plucked string instrument 0.599 0.000 0.329 ✓ +2026-06-25 18:10:21,526 | INFO | Guitar 0.439 0.000 0.241 ✓ +2026-06-25 18:10:21,526 | INFO | Sitar 0.131 0.000 0.072 ✗ +2026-06-25 18:10:21,526 | INFO | Acoustic guitar 0.123 0.000 0.068 ✗ +2026-06-25 18:10:21,527 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:21,554 | INFO | +[206.40s] AMBIENT | scene='' +2026-06-25 18:10:21,556 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,556 | INFO | Music 0.840 0.000 0.462 ✓ +2026-06-25 18:10:21,556 | INFO | Musical instrument 0.624 0.000 0.343 ✓ +2026-06-25 18:10:21,556 | INFO | Plucked string instrument 0.501 0.000 0.276 ✓ +2026-06-25 18:10:21,556 | INFO | Guitar 0.322 0.000 0.177 ✓ +2026-06-25 18:10:21,557 | INFO | Tabla 0.195 0.000 0.107 ✗ +2026-06-25 18:10:21,557 | INFO | Sitar 0.135 0.000 0.074 ✗ +2026-06-25 18:10:21,557 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:10:21,585 | INFO | +[206.60s] AMBIENT | scene='' +2026-06-25 18:10:21,586 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,586 | INFO | Music 0.859 0.000 0.473 ✓ +2026-06-25 18:10:21,587 | INFO | Musical instrument 0.500 0.000 0.275 ✓ +2026-06-25 18:10:21,587 | INFO | Plucked string instrument 0.340 0.000 0.187 ✓ +2026-06-25 18:10:21,588 | INFO | Guitar 0.283 0.000 0.155 ✓ +2026-06-25 18:10:21,589 | INFO | Singing 0.105 0.000 0.058 ✗ +2026-06-25 18:10:21,589 | INFO | Acoustic guitar 0.097 0.000 0.053 ✗ +2026-06-25 18:10:21,592 | INFO | → WINNER: Music (combined=0.473) +2026-06-25 18:10:21,619 | INFO | +[206.80s] AMBIENT | scene='' +2026-06-25 18:10:21,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,621 | INFO | Music 0.817 0.000 0.450 ✓ +2026-06-25 18:10:21,622 | INFO | Musical instrument 0.354 0.000 0.195 ✓ +2026-06-25 18:10:21,622 | INFO | Plucked string instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:10:21,622 | INFO | Singing 0.106 0.000 0.058 ✗ +2026-06-25 18:10:21,622 | INFO | Guitar 0.105 0.000 0.058 ✗ +2026-06-25 18:10:21,622 | INFO | Tabla 0.064 0.000 0.035 ✗ +2026-06-25 18:10:21,624 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:21,648 | INFO | +[207.00s] AMBIENT | scene='' +2026-06-25 18:10:21,650 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,650 | INFO | Music 0.852 0.000 0.468 ✓ +2026-06-25 18:10:21,650 | INFO | Musical instrument 0.622 0.000 0.342 ✓ +2026-06-25 18:10:21,650 | INFO | Plucked string instrument 0.457 0.000 0.251 ✓ +2026-06-25 18:10:21,650 | INFO | Guitar 0.366 0.000 0.201 ✓ +2026-06-25 18:10:21,650 | INFO | Tabla 0.119 0.000 0.066 ✗ +2026-06-25 18:10:21,650 | INFO | Acoustic guitar 0.110 0.000 0.061 ✗ +2026-06-25 18:10:21,650 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:21,678 | INFO | +[207.20s] AMBIENT | scene='' +2026-06-25 18:10:21,679 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,680 | INFO | Music 0.812 0.000 0.447 ✓ +2026-06-25 18:10:21,680 | INFO | Musical instrument 0.464 0.000 0.255 ✓ +2026-06-25 18:10:21,680 | INFO | Plucked string instrument 0.227 0.000 0.125 ✓ +2026-06-25 18:10:21,680 | INFO | Tabla 0.174 0.000 0.096 ✗ +2026-06-25 18:10:21,680 | INFO | Guitar 0.144 0.000 0.079 ✗ +2026-06-25 18:10:21,680 | INFO | Singing 0.131 0.000 0.072 ✗ +2026-06-25 18:10:21,680 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:10:21,718 | INFO | +[207.40s] AMBIENT | scene='' +2026-06-25 18:10:21,718 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,719 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:21,719 | INFO | Musical instrument 0.420 0.000 0.231 ✓ +2026-06-25 18:10:21,720 | INFO | Plucked string instrument 0.226 0.000 0.124 ✓ +2026-06-25 18:10:21,720 | INFO | Guitar 0.154 0.000 0.085 ✗ +2026-06-25 18:10:21,720 | INFO | Singing 0.139 0.000 0.076 ✗ +2026-06-25 18:10:21,720 | INFO | Tabla 0.126 0.000 0.069 ✗ +2026-06-25 18:10:21,721 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:21,772 | INFO | +[207.60s] AMBIENT | scene='' +2026-06-25 18:10:21,772 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,772 | INFO | Music 0.842 0.000 0.463 ✓ +2026-06-25 18:10:21,772 | INFO | Musical instrument 0.498 0.000 0.274 ✓ +2026-06-25 18:10:21,772 | INFO | Plucked string instrument 0.416 0.000 0.229 ✓ +2026-06-25 18:10:21,776 | INFO | Guitar 0.293 0.000 0.161 ✓ +2026-06-25 18:10:21,776 | INFO | Ukulele 0.207 0.000 0.114 ✗ +2026-06-25 18:10:21,776 | INFO | Acoustic guitar 0.109 0.000 0.060 ✗ +2026-06-25 18:10:21,776 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:21,828 | INFO | +[207.80s] AMBIENT | scene='' +2026-06-25 18:10:21,830 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,830 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:21,830 | INFO | Musical instrument 0.522 0.000 0.287 ✓ +2026-06-25 18:10:21,830 | INFO | Plucked string instrument 0.435 0.000 0.239 ✓ +2026-06-25 18:10:21,830 | INFO | Banjo 0.323 0.000 0.177 ✓ +2026-06-25 18:10:21,830 | INFO | Ukulele 0.308 0.000 0.170 ✓ +2026-06-25 18:10:21,830 | INFO | Guitar 0.271 0.000 0.149 ✓ +2026-06-25 18:10:21,830 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:21,880 | INFO | +[208.00s] AMBIENT | scene='' +2026-06-25 18:10:21,880 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,885 | INFO | Music 0.882 0.000 0.485 ✓ +2026-06-25 18:10:21,885 | INFO | Musical instrument 0.611 0.000 0.336 ✓ +2026-06-25 18:10:21,885 | INFO | Plucked string instrument 0.529 0.000 0.291 ✓ +2026-06-25 18:10:21,885 | INFO | Ukulele 0.327 0.000 0.180 ✓ +2026-06-25 18:10:21,885 | INFO | Banjo 0.326 0.000 0.179 ✓ +2026-06-25 18:10:21,885 | INFO | Guitar 0.321 0.000 0.177 ✓ +2026-06-25 18:10:21,885 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:10:21,918 | INFO | +[208.20s] AMBIENT | scene='' +2026-06-25 18:10:21,920 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,920 | INFO | Music 0.837 0.000 0.460 ✓ +2026-06-25 18:10:21,920 | INFO | Musical instrument 0.479 0.000 0.263 ✓ +2026-06-25 18:10:21,921 | INFO | Plucked string instrument 0.381 0.000 0.209 ✓ +2026-06-25 18:10:21,921 | INFO | Banjo 0.360 0.000 0.198 ✓ +2026-06-25 18:10:21,921 | INFO | Guitar 0.160 0.000 0.088 ✗ +2026-06-25 18:10:21,921 | INFO | Mandolin 0.154 0.000 0.085 ✗ +2026-06-25 18:10:21,922 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:21,947 | INFO | +[208.40s] AMBIENT | scene='' +2026-06-25 18:10:21,947 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,947 | INFO | Music 0.822 0.000 0.452 ✓ +2026-06-25 18:10:21,947 | INFO | Musical instrument 0.533 0.000 0.293 ✓ +2026-06-25 18:10:21,947 | INFO | Plucked string instrument 0.404 0.000 0.222 ✓ +2026-06-25 18:10:21,947 | INFO | Banjo 0.320 0.000 0.176 ✓ +2026-06-25 18:10:21,947 | INFO | Tabla 0.188 0.000 0.103 ✗ +2026-06-25 18:10:21,947 | INFO | Guitar 0.187 0.000 0.103 ✗ +2026-06-25 18:10:21,947 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:21,973 | INFO | +[208.60s] AMBIENT | scene='' +2026-06-25 18:10:21,973 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:21,973 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:21,973 | INFO | Musical instrument 0.474 0.000 0.261 ✓ +2026-06-25 18:10:21,973 | INFO | Tabla 0.272 0.000 0.149 ✓ +2026-06-25 18:10:21,973 | INFO | Percussion 0.244 0.000 0.134 ✓ +2026-06-25 18:10:21,973 | INFO | Plucked string instrument 0.215 0.000 0.118 ✗ +2026-06-25 18:10:21,973 | INFO | Drum 0.147 0.000 0.081 ✗ +2026-06-25 18:10:21,973 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:22,003 | INFO | +[208.80s] AMBIENT | scene='' +2026-06-25 18:10:22,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,004 | INFO | Music 0.726 0.000 0.399 ✓ +2026-06-25 18:10:22,004 | INFO | Tabla 0.696 0.000 0.383 ✓ +2026-06-25 18:10:22,004 | INFO | Percussion 0.453 0.000 0.249 ✓ +2026-06-25 18:10:22,005 | INFO | Musical instrument 0.375 0.000 0.206 ✓ +2026-06-25 18:10:22,005 | INFO | Drum 0.366 0.000 0.201 ✓ +2026-06-25 18:10:22,005 | INFO | Plucked string instrument 0.079 0.000 0.043 ✗ +2026-06-25 18:10:22,005 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:10:22,030 | INFO | +[209.00s] AMBIENT | scene='' +2026-06-25 18:10:22,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,030 | INFO | Music 0.809 0.000 0.445 ✓ +2026-06-25 18:10:22,030 | INFO | Tabla 0.611 0.000 0.336 ✓ +2026-06-25 18:10:22,030 | INFO | Musical instrument 0.601 0.000 0.330 ✓ +2026-06-25 18:10:22,030 | INFO | Plucked string instrument 0.357 0.000 0.197 ✓ +2026-06-25 18:10:22,030 | INFO | Sitar 0.353 0.000 0.194 ✓ +2026-06-25 18:10:22,030 | INFO | Percussion 0.227 0.000 0.125 ✓ +2026-06-25 18:10:22,030 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:22,057 | INFO | +[209.20s] AMBIENT | scene='' +2026-06-25 18:10:22,058 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,058 | INFO | Tabla 0.762 0.000 0.419 ✓ +2026-06-25 18:10:22,058 | INFO | Music 0.734 0.000 0.404 ✓ +2026-06-25 18:10:22,058 | INFO | Musical instrument 0.613 0.000 0.337 ✓ +2026-06-25 18:10:22,058 | INFO | Carnatic music 0.339 0.000 0.186 ✓ +2026-06-25 18:10:22,058 | INFO | Percussion 0.284 0.000 0.156 ✓ +2026-06-25 18:10:22,058 | INFO | Drum 0.256 0.000 0.141 ✓ +2026-06-25 18:10:22,058 | INFO | → WINNER: Tabla (combined=0.419) +2026-06-25 18:10:22,085 | INFO | +[209.40s] AMBIENT | scene='' +2026-06-25 18:10:22,085 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,086 | INFO | Music 0.707 0.000 0.389 ✓ +2026-06-25 18:10:22,087 | INFO | Tabla 0.645 0.000 0.355 ✓ +2026-06-25 18:10:22,087 | INFO | Musical instrument 0.461 0.000 0.254 ✓ +2026-06-25 18:10:22,087 | INFO | Percussion 0.313 0.000 0.172 ✓ +2026-06-25 18:10:22,087 | INFO | Drum 0.255 0.000 0.140 ✓ +2026-06-25 18:10:22,087 | INFO | Classical music 0.236 0.000 0.130 ✓ +2026-06-25 18:10:22,087 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:10:22,114 | INFO | +[209.60s] AMBIENT | scene='' +2026-06-25 18:10:22,124 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,132 | INFO | Music 0.720 0.000 0.396 ✓ +2026-06-25 18:10:22,134 | INFO | Tabla 0.649 0.000 0.357 ✓ +2026-06-25 18:10:22,140 | INFO | Musical instrument 0.512 0.000 0.282 ✓ +2026-06-25 18:10:22,172 | INFO | Percussion 0.283 0.000 0.155 ✓ +2026-06-25 18:10:22,180 | INFO | Drum 0.237 0.000 0.130 ✓ +2026-06-25 18:10:22,182 | INFO | Plucked string instrument 0.201 0.000 0.110 ✗ +2026-06-25 18:10:22,182 | INFO | → WINNER: Music (combined=0.396) +2026-06-25 18:10:22,213 | INFO | +[209.80s] AMBIENT | scene='' +2026-06-25 18:10:22,213 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,216 | INFO | Music 0.855 0.000 0.470 ✓ +2026-06-25 18:10:22,216 | INFO | Musical instrument 0.382 0.000 0.210 ✓ +2026-06-25 18:10:22,231 | INFO | Tabla 0.260 0.000 0.143 ✓ +2026-06-25 18:10:22,231 | INFO | Percussion 0.191 0.000 0.105 ✗ +2026-06-25 18:10:22,231 | INFO | Drum 0.167 0.000 0.092 ✗ +2026-06-25 18:10:22,231 | INFO | Plucked string instrument 0.121 0.000 0.066 ✗ +2026-06-25 18:10:22,231 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:22,258 | INFO | +[210.00s] AMBIENT | scene='' +2026-06-25 18:10:22,267 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,269 | INFO | Music 0.887 0.000 0.488 ✓ +2026-06-25 18:10:22,275 | INFO | Musical instrument 0.613 0.000 0.337 ✓ +2026-06-25 18:10:22,276 | INFO | Plucked string instrument 0.442 0.000 0.243 ✓ +2026-06-25 18:10:22,276 | INFO | Guitar 0.300 0.000 0.165 ✓ +2026-06-25 18:10:22,276 | INFO | Acoustic guitar 0.092 0.000 0.051 ✗ +2026-06-25 18:10:22,276 | INFO | Percussion 0.088 0.000 0.048 ✗ +2026-06-25 18:10:22,277 | INFO | → WINNER: Music (combined=0.488) +2026-06-25 18:10:22,330 | INFO | +[210.20s] AMBIENT | scene='' +2026-06-25 18:10:22,330 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,330 | INFO | Music 0.834 0.000 0.459 ✓ +2026-06-25 18:10:22,330 | INFO | Musical instrument 0.527 0.000 0.290 ✓ +2026-06-25 18:10:22,330 | INFO | Plucked string instrument 0.255 0.000 0.140 ✓ +2026-06-25 18:10:22,330 | INFO | Tabla 0.183 0.000 0.101 ✗ +2026-06-25 18:10:22,330 | INFO | Guitar 0.131 0.000 0.072 ✗ +2026-06-25 18:10:22,330 | INFO | Percussion 0.101 0.000 0.055 ✗ +2026-06-25 18:10:22,330 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:22,358 | INFO | +[210.40s] AMBIENT | scene='' +2026-06-25 18:10:22,359 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,359 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:10:22,359 | INFO | Musical instrument 0.514 0.000 0.282 ✓ +2026-06-25 18:10:22,360 | INFO | Tabla 0.394 0.000 0.217 ✓ +2026-06-25 18:10:22,360 | INFO | Plucked string instrument 0.234 0.000 0.129 ✓ +2026-06-25 18:10:22,362 | INFO | Sitar 0.192 0.000 0.106 ✗ +2026-06-25 18:10:22,374 | INFO | Carnatic music 0.150 0.000 0.083 ✗ +2026-06-25 18:10:22,375 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:22,404 | INFO | +[210.60s] AMBIENT | scene='' +2026-06-25 18:10:22,406 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,406 | INFO | Music 0.821 0.000 0.451 ✓ +2026-06-25 18:10:22,406 | INFO | Musical instrument 0.414 0.000 0.228 ✓ +2026-06-25 18:10:22,407 | INFO | Plucked string instrument 0.183 0.000 0.101 ✗ +2026-06-25 18:10:22,407 | INFO | Tabla 0.174 0.000 0.096 ✗ +2026-06-25 18:10:22,407 | INFO | Folk music 0.159 0.000 0.088 ✗ +2026-06-25 18:10:22,407 | INFO | Middle Eastern music 0.140 0.000 0.077 ✗ +2026-06-25 18:10:22,407 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:22,430 | INFO | +[210.80s] AMBIENT | scene='' +2026-06-25 18:10:22,430 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,430 | INFO | Music 0.844 0.000 0.464 ✓ +2026-06-25 18:10:22,430 | INFO | Musical instrument 0.612 0.000 0.336 ✓ +2026-06-25 18:10:22,430 | INFO | Plucked string instrument 0.328 0.000 0.180 ✓ +2026-06-25 18:10:22,430 | INFO | Carnatic music 0.193 0.000 0.106 ✗ +2026-06-25 18:10:22,437 | INFO | Tabla 0.185 0.000 0.102 ✗ +2026-06-25 18:10:22,437 | INFO | Guitar 0.182 0.000 0.100 ✗ +2026-06-25 18:10:22,438 | INFO | → WINNER: Music (combined=0.464) +2026-06-25 18:10:22,465 | INFO | +[211.00s] AMBIENT | scene='' +2026-06-25 18:10:22,465 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,465 | INFO | Music 0.872 0.000 0.479 ✓ +2026-06-25 18:10:22,465 | INFO | Musical instrument 0.735 0.000 0.404 ✓ +2026-06-25 18:10:22,465 | INFO | Plucked string instrument 0.650 0.000 0.357 ✓ +2026-06-25 18:10:22,465 | INFO | Guitar 0.581 0.000 0.320 ✓ +2026-06-25 18:10:22,465 | INFO | Acoustic guitar 0.253 0.000 0.139 ✓ +2026-06-25 18:10:22,465 | INFO | Strum 0.195 0.000 0.107 ✗ +2026-06-25 18:10:22,465 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:22,490 | INFO | +[211.20s] AMBIENT | scene='' +2026-06-25 18:10:22,490 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,495 | INFO | Music 0.875 0.000 0.481 ✓ +2026-06-25 18:10:22,496 | INFO | Musical instrument 0.497 0.000 0.273 ✓ +2026-06-25 18:10:22,496 | INFO | Plucked string instrument 0.364 0.000 0.200 ✓ +2026-06-25 18:10:22,496 | INFO | Guitar 0.299 0.000 0.165 ✓ +2026-06-25 18:10:22,496 | INFO | Acoustic guitar 0.126 0.000 0.069 ✗ +2026-06-25 18:10:22,496 | INFO | Strum 0.111 0.000 0.061 ✗ +2026-06-25 18:10:22,496 | INFO | → WINNER: Music (combined=0.481) +2026-06-25 18:10:22,554 | INFO | +[211.40s] AMBIENT | scene='' +2026-06-25 18:10:22,554 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,554 | INFO | Music 0.883 0.000 0.485 ✓ +2026-06-25 18:10:22,554 | INFO | Musical instrument 0.614 0.000 0.338 ✓ +2026-06-25 18:10:22,554 | INFO | Plucked string instrument 0.564 0.000 0.310 ✓ +2026-06-25 18:10:22,554 | INFO | Guitar 0.528 0.000 0.290 ✓ +2026-06-25 18:10:22,554 | INFO | Acoustic guitar 0.226 0.000 0.124 ✓ +2026-06-25 18:10:22,554 | INFO | Strum 0.207 0.000 0.114 ✗ +2026-06-25 18:10:22,554 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:10:22,610 | INFO | +[211.60s] AMBIENT | scene='' +2026-06-25 18:10:22,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,610 | INFO | Music 0.812 0.000 0.447 ✓ +2026-06-25 18:10:22,610 | INFO | Musical instrument 0.624 0.000 0.343 ✓ +2026-06-25 18:10:22,610 | INFO | Tabla 0.427 0.000 0.235 ✓ +2026-06-25 18:10:22,610 | INFO | Carnatic music 0.383 0.000 0.210 ✓ +2026-06-25 18:10:22,610 | INFO | Plucked string instrument 0.372 0.000 0.204 ✓ +2026-06-25 18:10:22,614 | INFO | Sitar 0.196 0.000 0.108 ✗ +2026-06-25 18:10:22,614 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:10:22,670 | INFO | +[211.80s] AMBIENT | scene='' +2026-06-25 18:10:22,670 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,673 | INFO | Music 0.838 0.000 0.461 ✓ +2026-06-25 18:10:22,673 | INFO | Musical instrument 0.512 0.000 0.281 ✓ +2026-06-25 18:10:22,673 | INFO | Carnatic music 0.330 0.000 0.181 ✓ +2026-06-25 18:10:22,673 | INFO | Plucked string instrument 0.229 0.000 0.126 ✓ +2026-06-25 18:10:22,673 | INFO | Tabla 0.148 0.000 0.082 ✗ +2026-06-25 18:10:22,673 | INFO | Sitar 0.137 0.000 0.075 ✗ +2026-06-25 18:10:22,673 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:10:22,714 | INFO | +[212.00s] AMBIENT | scene='' +2026-06-25 18:10:22,714 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,714 | INFO | Music 0.794 0.000 0.436 ✓ +2026-06-25 18:10:22,714 | INFO | Musical instrument 0.467 0.000 0.257 ✓ +2026-06-25 18:10:22,714 | INFO | Plucked string instrument 0.264 0.000 0.145 ✓ +2026-06-25 18:10:22,714 | INFO | Carnatic music 0.228 0.000 0.125 ✓ +2026-06-25 18:10:22,714 | INFO | Guitar 0.163 0.000 0.090 ✗ +2026-06-25 18:10:22,714 | INFO | Singing 0.101 0.000 0.056 ✗ +2026-06-25 18:10:22,716 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:22,740 | INFO | +[212.20s] AMBIENT | scene='' +2026-06-25 18:10:22,745 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,745 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:22,746 | INFO | Musical instrument 0.552 0.000 0.303 ✓ +2026-06-25 18:10:22,746 | INFO | Carnatic music 0.477 0.000 0.263 ✓ +2026-06-25 18:10:22,746 | INFO | Sitar 0.362 0.000 0.199 ✓ +2026-06-25 18:10:22,746 | INFO | Plucked string instrument 0.305 0.000 0.168 ✓ +2026-06-25 18:10:22,747 | INFO | Tabla 0.213 0.000 0.117 ✗ +2026-06-25 18:10:22,747 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:22,772 | INFO | +[212.40s] AMBIENT | scene='' +2026-06-25 18:10:22,773 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,773 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:22,773 | INFO | Musical instrument 0.468 0.000 0.258 ✓ +2026-06-25 18:10:22,773 | INFO | Carnatic music 0.320 0.000 0.176 ✓ +2026-06-25 18:10:22,773 | INFO | Plucked string instrument 0.282 0.000 0.155 ✓ +2026-06-25 18:10:22,774 | INFO | Sitar 0.239 0.000 0.132 ✓ +2026-06-25 18:10:22,774 | INFO | Classical music 0.108 0.000 0.060 ✗ +2026-06-25 18:10:22,774 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:22,800 | INFO | +[212.60s] AMBIENT | scene='' +2026-06-25 18:10:22,801 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,801 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:10:22,801 | INFO | Sitar 0.457 0.000 0.252 ✓ +2026-06-25 18:10:22,803 | INFO | Musical instrument 0.394 0.000 0.217 ✓ +2026-06-25 18:10:22,803 | INFO | Plucked string instrument 0.239 0.000 0.132 ✓ +2026-06-25 18:10:22,803 | INFO | Tabla 0.215 0.000 0.118 ✗ +2026-06-25 18:10:22,803 | INFO | Carnatic music 0.157 0.000 0.086 ✗ +2026-06-25 18:10:22,803 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:22,830 | INFO | +[212.80s] AMBIENT | scene='' +2026-06-25 18:10:22,830 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,831 | INFO | Music 0.841 0.000 0.463 ✓ +2026-06-25 18:10:22,831 | INFO | Musical instrument 0.497 0.000 0.274 ✓ +2026-06-25 18:10:22,831 | INFO | Plucked string instrument 0.342 0.000 0.188 ✓ +2026-06-25 18:10:22,832 | INFO | Guitar 0.180 0.000 0.099 ✗ +2026-06-25 18:10:22,832 | INFO | Sitar 0.149 0.000 0.082 ✗ +2026-06-25 18:10:22,832 | INFO | Carnatic music 0.144 0.000 0.080 ✗ +2026-06-25 18:10:22,832 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:22,859 | INFO | +[213.00s] AMBIENT | scene='' +2026-06-25 18:10:22,859 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,859 | INFO | Music 0.870 0.000 0.479 ✓ +2026-06-25 18:10:22,859 | INFO | Musical instrument 0.585 0.000 0.322 ✓ +2026-06-25 18:10:22,859 | INFO | Plucked string instrument 0.494 0.000 0.272 ✓ +2026-06-25 18:10:22,859 | INFO | Guitar 0.413 0.000 0.227 ✓ +2026-06-25 18:10:22,861 | INFO | Acoustic guitar 0.127 0.000 0.070 ✗ +2026-06-25 18:10:22,861 | INFO | Strum 0.103 0.000 0.057 ✗ +2026-06-25 18:10:22,861 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:22,888 | INFO | +[213.20s] AMBIENT | scene='' +2026-06-25 18:10:22,890 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,890 | INFO | Music 0.899 0.000 0.494 ✓ +2026-06-25 18:10:22,891 | INFO | Musical instrument 0.800 0.000 0.440 ✓ +2026-06-25 18:10:22,891 | INFO | Guitar 0.742 0.000 0.408 ✓ +2026-06-25 18:10:22,891 | INFO | Plucked string instrument 0.715 0.000 0.393 ✓ +2026-06-25 18:10:22,891 | INFO | Bass guitar 0.238 0.000 0.131 ✓ +2026-06-25 18:10:22,891 | INFO | Acoustic guitar 0.199 0.000 0.110 ✗ +2026-06-25 18:10:22,892 | INFO | → WINNER: Music (combined=0.494) +2026-06-25 18:10:22,922 | INFO | +[213.40s] AMBIENT | scene='' +2026-06-25 18:10:22,922 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,923 | INFO | Music 0.825 0.000 0.454 ✓ +2026-06-25 18:10:22,923 | INFO | Musical instrument 0.440 0.000 0.242 ✓ +2026-06-25 18:10:22,924 | INFO | Plucked string instrument 0.234 0.000 0.129 ✓ +2026-06-25 18:10:22,924 | INFO | Guitar 0.198 0.000 0.109 ✗ +2026-06-25 18:10:22,924 | INFO | Singing 0.128 0.000 0.070 ✗ +2026-06-25 18:10:22,926 | INFO | Acoustic guitar 0.057 0.000 0.031 ✗ +2026-06-25 18:10:22,926 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:22,953 | INFO | +[213.60s] AMBIENT | scene='' +2026-06-25 18:10:22,954 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,954 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:10:22,954 | INFO | Musical instrument 0.713 0.000 0.392 ✓ +2026-06-25 18:10:22,955 | INFO | Guitar 0.668 0.000 0.367 ✓ +2026-06-25 18:10:22,955 | INFO | Plucked string instrument 0.598 0.000 0.329 ✓ +2026-06-25 18:10:22,955 | INFO | Acoustic guitar 0.270 0.000 0.148 ✓ +2026-06-25 18:10:22,955 | INFO | Strum 0.181 0.000 0.100 ✗ +2026-06-25 18:10:22,956 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:22,981 | INFO | +[213.80s] AMBIENT | scene='' +2026-06-25 18:10:22,982 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:22,982 | INFO | Music 0.850 0.000 0.467 ✓ +2026-06-25 18:10:22,982 | INFO | Musical instrument 0.635 0.000 0.349 ✓ +2026-06-25 18:10:22,982 | INFO | Guitar 0.598 0.000 0.329 ✓ +2026-06-25 18:10:22,982 | INFO | Plucked string instrument 0.545 0.000 0.300 ✓ +2026-06-25 18:10:22,982 | INFO | Acoustic guitar 0.309 0.000 0.170 ✓ +2026-06-25 18:10:22,982 | INFO | Strum 0.212 0.000 0.117 ✗ +2026-06-25 18:10:22,982 | INFO | → WINNER: Music (combined=0.467) +2026-06-25 18:10:23,010 | INFO | +[214.00s] AMBIENT | scene='' +2026-06-25 18:10:23,011 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,011 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:23,012 | INFO | Musical instrument 0.319 0.000 0.176 ✓ +2026-06-25 18:10:23,012 | INFO | Singing 0.134 0.000 0.074 ✗ +2026-06-25 18:10:23,012 | INFO | Guitar 0.131 0.000 0.072 ✗ +2026-06-25 18:10:23,013 | INFO | Plucked string instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:10:23,013 | INFO | Brass instrument 0.052 0.000 0.029 ✗ +2026-06-25 18:10:23,013 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:23,041 | INFO | +[222.40s] AMBIENT | scene='' +2026-06-25 18:10:23,041 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,043 | INFO | Music 0.810 0.000 0.446 ✓ +2026-06-25 18:10:23,043 | INFO | Musical instrument 0.411 0.000 0.226 ✓ +2026-06-25 18:10:23,048 | INFO | Tabla 0.247 0.000 0.136 ✓ +2026-06-25 18:10:23,048 | INFO | Plucked string instrument 0.197 0.000 0.108 ✗ +2026-06-25 18:10:23,049 | INFO | Banjo 0.129 0.000 0.071 ✗ +2026-06-25 18:10:23,050 | INFO | Guitar 0.110 0.000 0.061 ✗ +2026-06-25 18:10:23,050 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:23,075 | INFO | +[222.60s] AMBIENT | scene='' +2026-06-25 18:10:23,075 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,075 | INFO | Music 0.750 0.000 0.412 ✓ +2026-06-25 18:10:23,075 | INFO | Musical instrument 0.336 0.000 0.185 ✓ +2026-06-25 18:10:23,075 | INFO | Tabla 0.122 0.000 0.067 ✗ +2026-06-25 18:10:23,075 | INFO | Drum 0.109 0.000 0.060 ✗ +2026-06-25 18:10:23,075 | INFO | Percussion 0.103 0.000 0.057 ✗ +2026-06-25 18:10:23,075 | INFO | Plucked string instrument 0.101 0.000 0.056 ✗ +2026-06-25 18:10:23,075 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:10:23,108 | INFO | +[222.80s] AMBIENT | scene='' +2026-06-25 18:10:23,110 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,110 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:10:23,110 | INFO | Tabla 0.462 0.000 0.254 ✓ +2026-06-25 18:10:23,110 | INFO | Musical instrument 0.317 0.000 0.174 ✓ +2026-06-25 18:10:23,111 | INFO | Drum 0.210 0.000 0.115 ✗ +2026-06-25 18:10:23,111 | INFO | Percussion 0.200 0.000 0.110 ✗ +2026-06-25 18:10:23,112 | INFO | Plucked string instrument 0.056 0.000 0.031 ✗ +2026-06-25 18:10:23,112 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:23,162 | INFO | +[223.00s] AMBIENT | scene='' +2026-06-25 18:10:23,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,162 | INFO | Music 0.750 0.000 0.412 ✓ +2026-06-25 18:10:23,162 | INFO | Tabla 0.611 0.000 0.336 ✓ +2026-06-25 18:10:23,162 | INFO | Musical instrument 0.346 0.000 0.190 ✓ +2026-06-25 18:10:23,162 | INFO | Percussion 0.283 0.000 0.155 ✓ +2026-06-25 18:10:23,162 | INFO | Drum 0.222 0.000 0.122 ✓ +2026-06-25 18:10:23,162 | INFO | Plucked string instrument 0.071 0.000 0.039 ✗ +2026-06-25 18:10:23,162 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:10:23,215 | INFO | +[223.20s] AMBIENT | scene='' +2026-06-25 18:10:23,215 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,215 | INFO | Music 0.739 0.000 0.407 ✓ +2026-06-25 18:10:23,215 | INFO | Tabla 0.585 0.000 0.322 ✓ +2026-06-25 18:10:23,215 | INFO | Musical instrument 0.413 0.000 0.227 ✓ +2026-06-25 18:10:23,215 | INFO | Percussion 0.241 0.000 0.133 ✓ +2026-06-25 18:10:23,215 | INFO | Sitar 0.206 0.000 0.113 ✗ +2026-06-25 18:10:23,215 | INFO | Drum 0.176 0.000 0.097 ✗ +2026-06-25 18:10:23,215 | INFO | → WINNER: Music (combined=0.407) +2026-06-25 18:10:23,266 | INFO | +[223.40s] AMBIENT | scene='' +2026-06-25 18:10:23,270 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,270 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:23,270 | INFO | Musical instrument 0.660 0.000 0.363 ✓ +2026-06-25 18:10:23,272 | INFO | Plucked string instrument 0.469 0.000 0.258 ✓ +2026-06-25 18:10:23,273 | INFO | Sitar 0.355 0.000 0.195 ✓ +2026-06-25 18:10:23,273 | INFO | Tabla 0.277 0.000 0.152 ✓ +2026-06-25 18:10:23,273 | INFO | Guitar 0.154 0.000 0.085 ✗ +2026-06-25 18:10:23,274 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:23,312 | INFO | +[223.60s] AMBIENT | scene='' +2026-06-25 18:10:23,312 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,312 | INFO | Music 0.801 0.000 0.441 ✓ +2026-06-25 18:10:23,312 | INFO | Musical instrument 0.526 0.000 0.289 ✓ +2026-06-25 18:10:23,312 | INFO | Tabla 0.518 0.000 0.285 ✓ +2026-06-25 18:10:23,312 | INFO | Plucked string instrument 0.314 0.000 0.172 ✓ +2026-06-25 18:10:23,312 | INFO | Sitar 0.232 0.000 0.128 ✓ +2026-06-25 18:10:23,312 | INFO | Percussion 0.188 0.000 0.103 ✗ +2026-06-25 18:10:23,312 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:10:23,340 | INFO | +[223.80s] AMBIENT | scene='' +2026-06-25 18:10:23,340 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,340 | INFO | Music 0.733 0.000 0.403 ✓ +2026-06-25 18:10:23,345 | INFO | Tabla 0.630 0.000 0.346 ✓ +2026-06-25 18:10:23,345 | INFO | Musical instrument 0.465 0.000 0.256 ✓ +2026-06-25 18:10:23,346 | INFO | Percussion 0.366 0.000 0.202 ✓ +2026-06-25 18:10:23,346 | INFO | Drum 0.259 0.000 0.142 ✓ +2026-06-25 18:10:23,346 | INFO | Plucked string instrument 0.205 0.000 0.113 ✗ +2026-06-25 18:10:23,346 | INFO | → WINNER: Music (combined=0.403) +2026-06-25 18:10:23,372 | INFO | +[224.00s] AMBIENT | scene='' +2026-06-25 18:10:23,372 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,373 | INFO | Tabla 0.816 0.000 0.449 ✓ +2026-06-25 18:10:23,373 | INFO | Music 0.690 0.000 0.380 ✓ +2026-06-25 18:10:23,373 | INFO | Musical instrument 0.503 0.000 0.276 ✓ +2026-06-25 18:10:23,374 | INFO | Percussion 0.378 0.000 0.208 ✓ +2026-06-25 18:10:23,374 | INFO | Drum 0.368 0.000 0.202 ✓ +2026-06-25 18:10:23,374 | INFO | Plucked string instrument 0.168 0.000 0.092 ✗ +2026-06-25 18:10:23,374 | INFO | → WINNER: Tabla (combined=0.449) +2026-06-25 18:10:23,402 | INFO | +[224.20s] AMBIENT | scene='' +2026-06-25 18:10:23,403 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,403 | INFO | Music 0.733 0.000 0.403 ✓ +2026-06-25 18:10:23,403 | INFO | Tabla 0.512 0.000 0.282 ✓ +2026-06-25 18:10:23,403 | INFO | Percussion 0.262 0.000 0.144 ✓ +2026-06-25 18:10:23,403 | INFO | Drum 0.175 0.000 0.096 ✗ +2026-06-25 18:10:23,404 | INFO | Musical instrument 0.169 0.000 0.093 ✗ +2026-06-25 18:10:23,404 | INFO | Middle Eastern music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:23,404 | INFO | → WINNER: Music (combined=0.403) +2026-06-25 18:10:23,430 | INFO | +[224.40s] AMBIENT | scene='' +2026-06-25 18:10:23,432 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,432 | INFO | Music 0.788 0.000 0.433 ✓ +2026-06-25 18:10:23,432 | INFO | Tabla 0.531 0.000 0.292 ✓ +2026-06-25 18:10:23,433 | INFO | Musical instrument 0.316 0.000 0.174 ✓ +2026-06-25 18:10:23,433 | INFO | Percussion 0.216 0.000 0.119 ✗ +2026-06-25 18:10:23,433 | INFO | Carnatic music 0.179 0.000 0.099 ✗ +2026-06-25 18:10:23,433 | INFO | Singing 0.148 0.000 0.081 ✗ +2026-06-25 18:10:23,434 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:10:23,461 | INFO | +[224.60s] AMBIENT | scene='' +2026-06-25 18:10:23,461 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,462 | INFO | Music 0.815 0.000 0.448 ✓ +2026-06-25 18:10:23,462 | INFO | Musical instrument 0.154 0.000 0.085 ✗ +2026-06-25 18:10:23,462 | INFO | Singing 0.152 0.000 0.084 ✗ +2026-06-25 18:10:23,462 | INFO | Tabla 0.104 0.000 0.057 ✗ +2026-06-25 18:10:23,462 | INFO | Carnatic music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:23,464 | INFO | Percussion 0.058 0.000 0.032 ✗ +2026-06-25 18:10:23,464 | INFO | → WINNER: Music (combined=0.448) +2026-06-25 18:10:23,490 | INFO | +[224.80s] AMBIENT | scene='' +2026-06-25 18:10:23,491 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,491 | INFO | Music 0.867 0.000 0.477 ✓ +2026-06-25 18:10:23,491 | INFO | Musical instrument 0.278 0.000 0.153 ✓ +2026-06-25 18:10:23,491 | INFO | Singing 0.147 0.000 0.081 ✗ +2026-06-25 18:10:23,493 | INFO | Plucked string instrument 0.082 0.000 0.045 ✗ +2026-06-25 18:10:23,493 | INFO | Guitar 0.057 0.000 0.031 ✗ +2026-06-25 18:10:23,493 | INFO | → WINNER: Music (combined=0.477) +2026-06-25 18:10:23,523 | INFO | +[225.00s] AMBIENT | scene='' +2026-06-25 18:10:23,523 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,523 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:23,523 | INFO | Musical instrument 0.204 0.000 0.113 ✗ +2026-06-25 18:10:23,523 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:10:23,525 | INFO | Carnatic music 0.104 0.000 0.057 ✗ +2026-06-25 18:10:23,525 | INFO | Plucked string instrument 0.053 0.000 0.029 ✗ +2026-06-25 18:10:23,525 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:23,553 | INFO | +[225.20s] AMBIENT | scene='' +2026-06-25 18:10:23,553 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,554 | INFO | Music 0.861 0.000 0.474 ✓ +2026-06-25 18:10:23,554 | INFO | Musical instrument 0.480 0.000 0.264 ✓ +2026-06-25 18:10:23,554 | INFO | Plucked string instrument 0.288 0.000 0.158 ✓ +2026-06-25 18:10:23,554 | INFO | Guitar 0.129 0.000 0.071 ✗ +2026-06-25 18:10:23,554 | INFO | Traditional music 0.128 0.000 0.070 ✗ +2026-06-25 18:10:23,554 | INFO | Banjo 0.122 0.000 0.067 ✗ +2026-06-25 18:10:23,554 | INFO | → WINNER: Music (combined=0.474) +2026-06-25 18:10:23,581 | INFO | +[225.40s] AMBIENT | scene='' +2026-06-25 18:10:23,581 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,581 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:23,582 | INFO | Middle Eastern music 0.269 0.000 0.148 ✓ +2026-06-25 18:10:23,582 | INFO | Musical instrument 0.165 0.000 0.091 ✗ +2026-06-25 18:10:23,582 | INFO | Singing 0.145 0.000 0.080 ✗ +2026-06-25 18:10:23,582 | INFO | Folk music 0.145 0.000 0.080 ✗ +2026-06-25 18:10:23,583 | INFO | Tabla 0.071 0.000 0.039 ✗ +2026-06-25 18:10:23,583 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:23,608 | INFO | +[225.60s] AMBIENT | scene='' +2026-06-25 18:10:23,609 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,609 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:23,609 | INFO | Musical instrument 0.392 0.000 0.215 ✓ +2026-06-25 18:10:23,610 | INFO | Tabla 0.241 0.000 0.133 ✓ +2026-06-25 18:10:23,610 | INFO | Carnatic music 0.226 0.000 0.124 ✓ +2026-06-25 18:10:23,610 | INFO | Plucked string instrument 0.163 0.000 0.090 ✗ +2026-06-25 18:10:23,611 | INFO | Sitar 0.149 0.000 0.082 ✗ +2026-06-25 18:10:23,611 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:23,638 | INFO | +[225.80s] AMBIENT | scene='' +2026-06-25 18:10:23,639 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,640 | INFO | Music 0.772 0.000 0.425 ✓ +2026-06-25 18:10:23,640 | INFO | Musical instrument 0.384 0.000 0.211 ✓ +2026-06-25 18:10:23,640 | INFO | Tabla 0.310 0.000 0.170 ✓ +2026-06-25 18:10:23,640 | INFO | Plucked string instrument 0.207 0.000 0.114 ✗ +2026-06-25 18:10:23,640 | INFO | Middle Eastern music 0.159 0.000 0.088 ✗ +2026-06-25 18:10:23,641 | INFO | Percussion 0.153 0.000 0.084 ✗ +2026-06-25 18:10:23,641 | INFO | → WINNER: Music (combined=0.425) +2026-06-25 18:10:23,665 | INFO | +[226.00s] AMBIENT | scene='' +2026-06-25 18:10:23,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,665 | INFO | Music 0.865 0.000 0.476 ✓ +2026-06-25 18:10:23,665 | INFO | Musical instrument 0.661 0.000 0.364 ✓ +2026-06-25 18:10:23,665 | INFO | Plucked string instrument 0.504 0.000 0.277 ✓ +2026-06-25 18:10:23,665 | INFO | Guitar 0.196 0.000 0.108 ✗ +2026-06-25 18:10:23,665 | INFO | Tabla 0.174 0.000 0.096 ✗ +2026-06-25 18:10:23,665 | INFO | Traditional music 0.140 0.000 0.077 ✗ +2026-06-25 18:10:23,665 | INFO | → WINNER: Music (combined=0.476) +2026-06-25 18:10:23,694 | INFO | +[226.20s] AMBIENT | scene='' +2026-06-25 18:10:23,694 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,696 | INFO | Music 0.891 0.000 0.490 ✓ +2026-06-25 18:10:23,696 | INFO | Musical instrument 0.734 0.000 0.404 ✓ +2026-06-25 18:10:23,696 | INFO | Plucked string instrument 0.584 0.000 0.321 ✓ +2026-06-25 18:10:23,696 | INFO | Guitar 0.368 0.000 0.203 ✓ +2026-06-25 18:10:23,696 | INFO | Banjo 0.226 0.000 0.124 ✓ +2026-06-25 18:10:23,696 | INFO | Traditional music 0.124 0.000 0.068 ✗ +2026-06-25 18:10:23,697 | INFO | → WINNER: Music (combined=0.490) +2026-06-25 18:10:23,723 | INFO | +[226.40s] AMBIENT | scene='' +2026-06-25 18:10:23,723 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,723 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:23,723 | INFO | Musical instrument 0.592 0.000 0.325 ✓ +2026-06-25 18:10:23,723 | INFO | Plucked string instrument 0.502 0.000 0.276 ✓ +2026-06-25 18:10:23,723 | INFO | Guitar 0.358 0.000 0.197 ✓ +2026-06-25 18:10:23,725 | INFO | Banjo 0.207 0.000 0.114 ✗ +2026-06-25 18:10:23,725 | INFO | Acoustic guitar 0.149 0.000 0.082 ✗ +2026-06-25 18:10:23,725 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:23,750 | INFO | +[226.60s] AMBIENT | scene='' +2026-06-25 18:10:23,752 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,752 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:10:23,752 | INFO | Musical instrument 0.577 0.000 0.318 ✓ +2026-06-25 18:10:23,754 | INFO | Plucked string instrument 0.378 0.000 0.208 ✓ +2026-06-25 18:10:23,755 | INFO | Guitar 0.291 0.000 0.160 ✓ +2026-06-25 18:10:23,755 | INFO | Tabla 0.160 0.000 0.088 ✗ +2026-06-25 18:10:23,756 | INFO | Acoustic guitar 0.088 0.000 0.049 ✗ +2026-06-25 18:10:23,756 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:23,791 | INFO | +[226.80s] AMBIENT | scene='' +2026-06-25 18:10:23,791 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,792 | INFO | Music 0.690 0.000 0.380 ✓ +2026-06-25 18:10:23,792 | INFO | Tabla 0.527 0.000 0.290 ✓ +2026-06-25 18:10:23,792 | INFO | Musical instrument 0.312 0.000 0.172 ✓ +2026-06-25 18:10:23,792 | INFO | Drum 0.215 0.000 0.118 ✗ +2026-06-25 18:10:23,793 | INFO | Percussion 0.189 0.000 0.104 ✗ +2026-06-25 18:10:23,793 | INFO | Carnatic music 0.180 0.000 0.099 ✗ +2026-06-25 18:10:23,793 | INFO | → WINNER: Music (combined=0.380) +2026-06-25 18:10:23,819 | INFO | +[227.00s] AMBIENT | scene='' +2026-06-25 18:10:23,821 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,822 | INFO | Music 0.567 0.000 0.312 ✓ +2026-06-25 18:10:23,822 | INFO | Musical instrument 0.143 0.000 0.079 ✗ +2026-06-25 18:10:23,822 | INFO | Singing 0.104 0.000 0.057 ✗ +2026-06-25 18:10:23,826 | INFO | Drum 0.081 0.000 0.045 ✗ +2026-06-25 18:10:23,826 | INFO | Tabla 0.070 0.000 0.038 ✗ +2026-06-25 18:10:23,830 | INFO | Percussion 0.061 0.000 0.033 ✗ +2026-06-25 18:10:23,830 | INFO | → WINNER: Music (combined=0.312) +2026-06-25 18:10:23,859 | INFO | +[227.20s] AMBIENT | scene='' +2026-06-25 18:10:23,859 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,860 | INFO | Music 0.816 0.000 0.449 ✓ +2026-06-25 18:10:23,860 | INFO | Musical instrument 0.427 0.000 0.235 ✓ +2026-06-25 18:10:23,862 | INFO | Tabla 0.243 0.000 0.134 ✓ +2026-06-25 18:10:23,862 | INFO | Carnatic music 0.195 0.000 0.107 ✗ +2026-06-25 18:10:23,863 | INFO | Sitar 0.135 0.000 0.074 ✗ +2026-06-25 18:10:23,863 | INFO | Plucked string instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:10:23,863 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:10:23,891 | INFO | +[227.40s] AMBIENT | scene='' +2026-06-25 18:10:23,891 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,892 | INFO | Music 0.764 0.000 0.420 ✓ +2026-06-25 18:10:23,892 | INFO | Musical instrument 0.346 0.000 0.190 ✓ +2026-06-25 18:10:23,892 | INFO | Tabla 0.321 0.000 0.177 ✓ +2026-06-25 18:10:23,892 | INFO | Sitar 0.264 0.000 0.145 ✓ +2026-06-25 18:10:23,893 | INFO | Plucked string instrument 0.152 0.000 0.084 ✗ +2026-06-25 18:10:23,893 | INFO | Carnatic music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:23,893 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:10:23,951 | INFO | +[227.60s] AMBIENT | scene='' +2026-06-25 18:10:23,953 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:23,954 | INFO | Music 0.781 0.000 0.429 ✓ +2026-06-25 18:10:23,955 | INFO | Musical instrument 0.452 0.000 0.248 ✓ +2026-06-25 18:10:23,956 | INFO | Sitar 0.336 0.000 0.184 ✓ +2026-06-25 18:10:23,957 | INFO | Tabla 0.324 0.000 0.178 ✓ +2026-06-25 18:10:23,957 | INFO | Plucked string instrument 0.262 0.000 0.144 ✓ +2026-06-25 18:10:23,957 | INFO | Carnatic music 0.139 0.000 0.076 ✗ +2026-06-25 18:10:23,958 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:10:24,013 | INFO | +[227.80s] AMBIENT | scene='' +2026-06-25 18:10:24,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,015 | INFO | Music 0.793 0.000 0.436 ✓ +2026-06-25 18:10:24,016 | INFO | Sitar 0.647 0.000 0.356 ✓ +2026-06-25 18:10:24,017 | INFO | Musical instrument 0.414 0.000 0.228 ✓ +2026-06-25 18:10:24,017 | INFO | Plucked string instrument 0.302 0.000 0.166 ✓ +2026-06-25 18:10:24,018 | INFO | Tabla 0.224 0.000 0.123 ✓ +2026-06-25 18:10:24,018 | INFO | Carnatic music 0.222 0.000 0.122 ✓ +2026-06-25 18:10:24,024 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:24,082 | INFO | +[228.00s] AMBIENT | scene='' +2026-06-25 18:10:24,083 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,083 | INFO | Music 0.702 0.000 0.386 ✓ +2026-06-25 18:10:24,083 | INFO | Tabla 0.477 0.000 0.263 ✓ +2026-06-25 18:10:24,083 | INFO | Musical instrument 0.367 0.000 0.202 ✓ +2026-06-25 18:10:24,084 | INFO | Carnatic music 0.320 0.000 0.176 ✓ +2026-06-25 18:10:24,084 | INFO | Sitar 0.235 0.000 0.129 ✓ +2026-06-25 18:10:24,084 | INFO | Classical music 0.174 0.000 0.096 ✗ +2026-06-25 18:10:24,084 | INFO | → WINNER: Music (combined=0.386) +2026-06-25 18:10:24,118 | INFO | +[228.20s] AMBIENT | scene='' +2026-06-25 18:10:24,118 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,120 | INFO | Music 0.766 0.000 0.421 ✓ +2026-06-25 18:10:24,120 | INFO | Tabla 0.285 0.000 0.157 ✓ +2026-06-25 18:10:24,120 | INFO | Carnatic music 0.280 0.000 0.154 ✓ +2026-06-25 18:10:24,121 | INFO | Musical instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:10:24,121 | INFO | Middle Eastern music 0.173 0.000 0.095 ✗ +2026-06-25 18:10:24,121 | INFO | Singing 0.167 0.000 0.092 ✗ +2026-06-25 18:10:24,121 | INFO | → WINNER: Music (combined=0.421) +2026-06-25 18:10:24,146 | INFO | +[228.40s] AMBIENT | scene='' +2026-06-25 18:10:24,146 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,150 | INFO | Music 0.781 0.000 0.430 ✓ +2026-06-25 18:10:24,150 | INFO | Musical instrument 0.350 0.000 0.193 ✓ +2026-06-25 18:10:24,150 | INFO | Carnatic music 0.296 0.000 0.163 ✓ +2026-06-25 18:10:24,150 | INFO | Plucked string instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:10:24,150 | INFO | Tabla 0.108 0.000 0.059 ✗ +2026-06-25 18:10:24,150 | INFO | Singing 0.079 0.000 0.044 ✗ +2026-06-25 18:10:24,150 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:10:24,178 | INFO | +[228.60s] AMBIENT | scene='' +2026-06-25 18:10:24,180 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,180 | INFO | Music 0.792 0.000 0.435 ✓ +2026-06-25 18:10:24,180 | INFO | Carnatic music 0.209 0.000 0.115 ✗ +2026-06-25 18:10:24,180 | INFO | Musical instrument 0.205 0.000 0.113 ✗ +2026-06-25 18:10:24,181 | INFO | Singing 0.124 0.000 0.068 ✗ +2026-06-25 18:10:24,181 | INFO | Mantra 0.078 0.000 0.043 ✗ +2026-06-25 18:10:24,181 | INFO | Plucked string instrument 0.059 0.000 0.033 ✗ +2026-06-25 18:10:24,181 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:24,204 | INFO | +[228.80s] AMBIENT | scene='' +2026-06-25 18:10:24,204 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,204 | INFO | Music 0.832 0.000 0.457 ✓ +2026-06-25 18:10:24,204 | INFO | Musical instrument 0.615 0.000 0.338 ✓ +2026-06-25 18:10:24,204 | INFO | Plucked string instrument 0.481 0.000 0.265 ✓ +2026-06-25 18:10:24,204 | INFO | Carnatic music 0.292 0.000 0.161 ✓ +2026-06-25 18:10:24,204 | INFO | Guitar 0.290 0.000 0.159 ✓ +2026-06-25 18:10:24,204 | INFO | Sitar 0.219 0.000 0.121 ✓ +2026-06-25 18:10:24,204 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:24,231 | INFO | +[229.00s] AMBIENT | scene='' +2026-06-25 18:10:24,231 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,231 | INFO | Music 0.835 0.000 0.459 ✓ +2026-06-25 18:10:24,231 | INFO | Musical instrument 0.681 0.000 0.374 ✓ +2026-06-25 18:10:24,235 | INFO | Sitar 0.601 0.000 0.331 ✓ +2026-06-25 18:10:24,235 | INFO | Plucked string instrument 0.546 0.000 0.300 ✓ +2026-06-25 18:10:24,235 | INFO | Carnatic music 0.469 0.000 0.258 ✓ +2026-06-25 18:10:24,235 | INFO | Tabla 0.366 0.000 0.201 ✓ +2026-06-25 18:10:24,235 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:24,261 | INFO | +[229.20s] AMBIENT | scene='' +2026-06-25 18:10:24,262 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,262 | INFO | Music 0.737 0.000 0.405 ✓ +2026-06-25 18:10:24,263 | INFO | Musical instrument 0.660 0.000 0.363 ✓ +2026-06-25 18:10:24,263 | INFO | Tabla 0.659 0.000 0.362 ✓ +2026-06-25 18:10:24,263 | INFO | Classical music 0.487 0.000 0.268 ✓ +2026-06-25 18:10:24,263 | INFO | Carnatic music 0.478 0.000 0.263 ✓ +2026-06-25 18:10:24,263 | INFO | Sitar 0.394 0.000 0.217 ✓ +2026-06-25 18:10:24,264 | INFO | → WINNER: Music (combined=0.405) +2026-06-25 18:10:24,290 | INFO | +[229.40s] AMBIENT | scene='' +2026-06-25 18:10:24,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,290 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:24,290 | INFO | Musical instrument 0.660 0.000 0.363 ✓ +2026-06-25 18:10:24,290 | INFO | Tabla 0.428 0.000 0.236 ✓ +2026-06-25 18:10:24,290 | INFO | Plucked string instrument 0.403 0.000 0.222 ✓ +2026-06-25 18:10:24,290 | INFO | Sitar 0.364 0.000 0.200 ✓ +2026-06-25 18:10:24,290 | INFO | Carnatic music 0.319 0.000 0.175 ✓ +2026-06-25 18:10:24,290 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:24,314 | INFO | +[229.60s] AMBIENT | scene='' +2026-06-25 18:10:24,314 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,314 | INFO | Music 0.894 0.000 0.492 ✓ +2026-06-25 18:10:24,314 | INFO | Musical instrument 0.660 0.000 0.363 ✓ +2026-06-25 18:10:24,314 | INFO | Plucked string instrument 0.437 0.000 0.240 ✓ +2026-06-25 18:10:24,319 | INFO | Carnatic music 0.247 0.000 0.136 ✓ +2026-06-25 18:10:24,319 | INFO | Tabla 0.230 0.000 0.126 ✓ +2026-06-25 18:10:24,320 | INFO | Sitar 0.179 0.000 0.098 ✗ +2026-06-25 18:10:24,320 | INFO | → WINNER: Music (combined=0.492) +2026-06-25 18:10:24,347 | INFO | +[229.80s] AMBIENT | scene='' +2026-06-25 18:10:24,347 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,347 | INFO | Music 0.882 0.000 0.485 ✓ +2026-06-25 18:10:24,347 | INFO | Musical instrument 0.556 0.000 0.306 ✓ +2026-06-25 18:10:24,347 | INFO | Plucked string instrument 0.426 0.000 0.234 ✓ +2026-06-25 18:10:24,347 | INFO | Guitar 0.285 0.000 0.157 ✓ +2026-06-25 18:10:24,347 | INFO | Animal 0.113 0.000 0.062 ✗ +2026-06-25 18:10:24,347 | INFO | Ukulele 0.077 0.000 0.042 ✗ +2026-06-25 18:10:24,349 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:10:24,375 | INFO | +[230.00s] AMBIENT | scene='' +2026-06-25 18:10:24,375 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,375 | INFO | Music 0.859 0.000 0.472 ✓ +2026-06-25 18:10:24,375 | INFO | Musical instrument 0.376 0.000 0.207 ✓ +2026-06-25 18:10:24,375 | INFO | Plucked string instrument 0.260 0.000 0.143 ✓ +2026-06-25 18:10:24,378 | INFO | Banjo 0.197 0.000 0.109 ✗ +2026-06-25 18:10:24,378 | INFO | Tabla 0.111 0.000 0.061 ✗ +2026-06-25 18:10:24,378 | INFO | Folk music 0.106 0.000 0.058 ✗ +2026-06-25 18:10:24,378 | INFO | → WINNER: Music (combined=0.472) +2026-06-25 18:10:24,404 | INFO | +[230.20s] AMBIENT | scene='' +2026-06-25 18:10:24,404 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,404 | INFO | Music 0.795 0.000 0.437 ✓ +2026-06-25 18:10:24,404 | INFO | Musical instrument 0.406 0.000 0.223 ✓ +2026-06-25 18:10:24,404 | INFO | Plucked string instrument 0.238 0.000 0.131 ✓ +2026-06-25 18:10:24,404 | INFO | Tabla 0.212 0.000 0.117 ✗ +2026-06-25 18:10:24,404 | INFO | Banjo 0.202 0.000 0.111 ✗ +2026-06-25 18:10:24,404 | INFO | Sitar 0.169 0.000 0.093 ✗ +2026-06-25 18:10:24,404 | INFO | → WINNER: Music (combined=0.437) +2026-06-25 18:10:24,432 | INFO | +[230.40s] AMBIENT | scene='' +2026-06-25 18:10:24,433 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,433 | INFO | Music 0.826 0.000 0.454 ✓ +2026-06-25 18:10:24,433 | INFO | Tabla 0.216 0.000 0.119 ✗ +2026-06-25 18:10:24,433 | INFO | Musical instrument 0.175 0.000 0.096 ✗ +2026-06-25 18:10:24,434 | INFO | Middle Eastern music 0.145 0.000 0.080 ✗ +2026-06-25 18:10:24,434 | INFO | Folk music 0.139 0.000 0.077 ✗ +2026-06-25 18:10:24,434 | INFO | Drum 0.117 0.000 0.064 ✗ +2026-06-25 18:10:24,434 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:24,460 | INFO | +[230.60s] AMBIENT | scene='' +2026-06-25 18:10:24,461 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,461 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:24,461 | INFO | Musical instrument 0.416 0.000 0.229 ✓ +2026-06-25 18:10:24,462 | INFO | Plucked string instrument 0.174 0.000 0.096 ✗ +2026-06-25 18:10:24,462 | INFO | Guitar 0.139 0.000 0.077 ✗ +2026-06-25 18:10:24,462 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:24,488 | INFO | +[230.80s] AMBIENT | scene='' +2026-06-25 18:10:24,490 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,491 | INFO | Music 0.759 0.000 0.417 ✓ +2026-06-25 18:10:24,491 | INFO | Tabla 0.497 0.000 0.273 ✓ +2026-06-25 18:10:24,491 | INFO | Musical instrument 0.377 0.000 0.207 ✓ +2026-06-25 18:10:24,491 | INFO | Carnatic music 0.231 0.000 0.127 ✓ +2026-06-25 18:10:24,491 | INFO | Percussion 0.184 0.000 0.101 ✗ +2026-06-25 18:10:24,491 | INFO | Drum 0.182 0.000 0.100 ✗ +2026-06-25 18:10:24,491 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:10:24,524 | INFO | +[231.00s] AMBIENT | scene='' +2026-06-25 18:10:24,524 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,529 | INFO | Music 0.676 0.000 0.372 ✓ +2026-06-25 18:10:24,530 | INFO | Musical instrument 0.368 0.000 0.203 ✓ +2026-06-25 18:10:24,530 | INFO | Plucked string instrument 0.132 0.000 0.073 ✗ +2026-06-25 18:10:24,530 | INFO | Guitar 0.093 0.000 0.051 ✗ +2026-06-25 18:10:24,530 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:10:24,559 | INFO | +[231.20s] AMBIENT | scene='' +2026-06-25 18:10:24,559 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,560 | INFO | Music 0.765 0.000 0.421 ✓ +2026-06-25 18:10:24,560 | INFO | Singing 0.233 0.000 0.128 ✓ +2026-06-25 18:10:24,560 | INFO | Musical instrument 0.207 0.000 0.114 ✗ +2026-06-25 18:10:24,560 | INFO | Plucked string instrument 0.063 0.000 0.035 ✗ +2026-06-25 18:10:24,560 | INFO | Guitar 0.057 0.000 0.031 ✗ +2026-06-25 18:10:24,560 | INFO | Drum 0.055 0.000 0.030 ✗ +2026-06-25 18:10:24,561 | INFO | → WINNER: Music (combined=0.421) +2026-06-25 18:10:24,587 | INFO | +[231.40s] AMBIENT | scene='' +2026-06-25 18:10:24,587 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,587 | INFO | Music 0.697 0.000 0.384 ✓ +2026-06-25 18:10:24,587 | INFO | Musical instrument 0.256 0.000 0.141 ✓ +2026-06-25 18:10:24,587 | INFO | Tabla 0.123 0.000 0.068 ✗ +2026-06-25 18:10:24,587 | INFO | Singing 0.119 0.000 0.066 ✗ +2026-06-25 18:10:24,587 | INFO | Carnatic music 0.116 0.000 0.064 ✗ +2026-06-25 18:10:24,587 | INFO | Drum 0.081 0.000 0.045 ✗ +2026-06-25 18:10:24,587 | INFO | → WINNER: Music (combined=0.384) +2026-06-25 18:10:24,614 | INFO | +[231.60s] AMBIENT | scene='' +2026-06-25 18:10:24,615 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,615 | INFO | Music 0.579 0.000 0.318 ✓ +2026-06-25 18:10:24,615 | INFO | Musical instrument 0.167 0.000 0.092 ✗ +2026-06-25 18:10:24,615 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:10:24,616 | INFO | Plucked string instrument 0.062 0.000 0.034 ✗ +2026-06-25 18:10:24,616 | INFO | Guitar 0.056 0.000 0.031 ✗ +2026-06-25 18:10:24,616 | INFO | → WINNER: Music (combined=0.318) +2026-06-25 18:10:24,642 | INFO | +[231.80s] AMBIENT | scene='' +2026-06-25 18:10:24,642 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,643 | INFO | Music 0.786 0.000 0.432 ✓ +2026-06-25 18:10:24,643 | INFO | Musical instrument 0.264 0.000 0.145 ✓ +2026-06-25 18:10:24,643 | INFO | Plucked string instrument 0.191 0.000 0.105 ✗ +2026-06-25 18:10:24,643 | INFO | Singing 0.178 0.000 0.098 ✗ +2026-06-25 18:10:24,643 | INFO | Guitar 0.172 0.000 0.095 ✗ +2026-06-25 18:10:24,645 | INFO | Acoustic guitar 0.057 0.000 0.032 ✗ +2026-06-25 18:10:24,645 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:24,674 | INFO | +[232.00s] AMBIENT | scene='' +2026-06-25 18:10:24,674 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,674 | INFO | Music 0.837 0.000 0.461 ✓ +2026-06-25 18:10:24,674 | INFO | Musical instrument 0.594 0.000 0.327 ✓ +2026-06-25 18:10:24,675 | INFO | Plucked string instrument 0.475 0.000 0.261 ✓ +2026-06-25 18:10:24,675 | INFO | Guitar 0.347 0.000 0.191 ✓ +2026-06-25 18:10:24,675 | INFO | Acoustic guitar 0.105 0.000 0.058 ✗ +2026-06-25 18:10:24,675 | INFO | Strum 0.101 0.000 0.056 ✗ +2026-06-25 18:10:24,675 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:10:24,707 | INFO | +[232.20s] AMBIENT | scene='' +2026-06-25 18:10:24,708 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,708 | INFO | Music 0.808 0.000 0.444 ✓ +2026-06-25 18:10:24,708 | INFO | Musical instrument 0.470 0.000 0.258 ✓ +2026-06-25 18:10:24,709 | INFO | Tabla 0.291 0.000 0.160 ✓ +2026-06-25 18:10:24,709 | INFO | Plucked string instrument 0.255 0.000 0.140 ✓ +2026-06-25 18:10:24,709 | INFO | Sitar 0.160 0.000 0.088 ✗ +2026-06-25 18:10:24,709 | INFO | Percussion 0.132 0.000 0.073 ✗ +2026-06-25 18:10:24,709 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:24,740 | INFO | +[232.40s] AMBIENT | scene='' +2026-06-25 18:10:24,740 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,740 | INFO | Music 0.726 0.000 0.399 ✓ +2026-06-25 18:10:24,740 | INFO | Tabla 0.530 0.000 0.291 ✓ +2026-06-25 18:10:24,741 | INFO | Musical instrument 0.448 0.000 0.246 ✓ +2026-06-25 18:10:24,741 | INFO | Percussion 0.220 0.000 0.121 ✓ +2026-06-25 18:10:24,741 | INFO | Drum 0.202 0.000 0.111 ✗ +2026-06-25 18:10:24,741 | INFO | Sitar 0.164 0.000 0.090 ✗ +2026-06-25 18:10:24,742 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:10:24,772 | INFO | +[232.60s] AMBIENT | scene='' +2026-06-25 18:10:24,776 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,776 | INFO | Tabla 0.726 0.000 0.399 ✓ +2026-06-25 18:10:24,778 | INFO | Music 0.652 0.000 0.358 ✓ +2026-06-25 18:10:24,778 | INFO | Percussion 0.367 0.000 0.202 ✓ +2026-06-25 18:10:24,781 | INFO | Drum 0.310 0.000 0.171 ✓ +2026-06-25 18:10:24,782 | INFO | Musical instrument 0.305 0.000 0.168 ✓ +2026-06-25 18:10:24,782 | INFO | Sitar 0.112 0.000 0.062 ✗ +2026-06-25 18:10:24,782 | INFO | → WINNER: Tabla (combined=0.399) +2026-06-25 18:10:24,812 | INFO | +[232.80s] AMBIENT | scene='' +2026-06-25 18:10:24,812 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,813 | INFO | Music 0.676 0.000 0.372 ✓ +2026-06-25 18:10:24,813 | INFO | Tabla 0.623 0.000 0.343 ✓ +2026-06-25 18:10:24,813 | INFO | Musical instrument 0.342 0.000 0.188 ✓ +2026-06-25 18:10:24,813 | INFO | Percussion 0.331 0.000 0.182 ✓ +2026-06-25 18:10:24,814 | INFO | Drum 0.269 0.000 0.148 ✓ +2026-06-25 18:10:24,814 | INFO | Carnatic music 0.177 0.000 0.097 ✗ +2026-06-25 18:10:24,814 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:10:24,840 | INFO | +[233.00s] AMBIENT | scene='' +2026-06-25 18:10:24,845 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,845 | INFO | Tabla 0.748 0.000 0.412 ✓ +2026-06-25 18:10:24,845 | INFO | Music 0.640 0.000 0.352 ✓ +2026-06-25 18:10:24,846 | INFO | Musical instrument 0.358 0.000 0.197 ✓ +2026-06-25 18:10:24,846 | INFO | Carnatic music 0.308 0.000 0.169 ✓ +2026-06-25 18:10:24,846 | INFO | Percussion 0.305 0.000 0.168 ✓ +2026-06-25 18:10:24,847 | INFO | Drum 0.260 0.000 0.143 ✓ +2026-06-25 18:10:24,847 | INFO | → WINNER: Tabla (combined=0.412) +2026-06-25 18:10:24,876 | INFO | +[233.20s] AMBIENT | scene='' +2026-06-25 18:10:24,876 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,876 | INFO | Tabla 0.710 0.000 0.391 ✓ +2026-06-25 18:10:24,876 | INFO | Music 0.645 0.000 0.355 ✓ +2026-06-25 18:10:24,878 | INFO | Musical instrument 0.351 0.000 0.193 ✓ +2026-06-25 18:10:24,878 | INFO | Percussion 0.336 0.000 0.185 ✓ +2026-06-25 18:10:24,879 | INFO | Drum 0.298 0.000 0.164 ✓ +2026-06-25 18:10:24,879 | INFO | Carnatic music 0.238 0.000 0.131 ✓ +2026-06-25 18:10:24,880 | INFO | → WINNER: Tabla (combined=0.391) +2026-06-25 18:10:24,904 | INFO | +[233.40s] AMBIENT | scene='' +2026-06-25 18:10:24,904 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,910 | INFO | Tabla 0.742 0.000 0.408 ✓ +2026-06-25 18:10:24,910 | INFO | Music 0.661 0.000 0.363 ✓ +2026-06-25 18:10:24,910 | INFO | Musical instrument 0.404 0.000 0.222 ✓ +2026-06-25 18:10:24,910 | INFO | Percussion 0.350 0.000 0.193 ✓ +2026-06-25 18:10:24,911 | INFO | Drum 0.286 0.000 0.158 ✓ +2026-06-25 18:10:24,911 | INFO | Carnatic music 0.216 0.000 0.119 ✗ +2026-06-25 18:10:24,911 | INFO | → WINNER: Tabla (combined=0.408) +2026-06-25 18:10:24,940 | INFO | +[233.60s] AMBIENT | scene='' +2026-06-25 18:10:24,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,940 | INFO | Music 0.756 0.000 0.416 ✓ +2026-06-25 18:10:24,940 | INFO | Tabla 0.524 0.000 0.288 ✓ +2026-06-25 18:10:24,940 | INFO | Musical instrument 0.376 0.000 0.207 ✓ +2026-06-25 18:10:24,940 | INFO | Percussion 0.284 0.000 0.156 ✓ +2026-06-25 18:10:24,945 | INFO | Drum 0.239 0.000 0.132 ✓ +2026-06-25 18:10:24,945 | INFO | Plucked string instrument 0.088 0.000 0.048 ✗ +2026-06-25 18:10:24,945 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:10:24,974 | INFO | +[233.80s] AMBIENT | scene='' +2026-06-25 18:10:24,974 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:24,976 | INFO | Music 0.852 0.000 0.469 ✓ +2026-06-25 18:10:24,976 | INFO | Musical instrument 0.476 0.000 0.262 ✓ +2026-06-25 18:10:24,976 | INFO | Plucked string instrument 0.316 0.000 0.174 ✓ +2026-06-25 18:10:24,976 | INFO | Guitar 0.177 0.000 0.098 ✗ +2026-06-25 18:10:24,977 | INFO | Sitar 0.092 0.000 0.051 ✗ +2026-06-25 18:10:24,977 | INFO | Tabla 0.091 0.000 0.050 ✗ +2026-06-25 18:10:24,977 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:25,007 | INFO | +[234.00s] AMBIENT | scene='' +2026-06-25 18:10:25,007 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,008 | INFO | Music 0.808 0.000 0.445 ✓ +2026-06-25 18:10:25,008 | INFO | Musical instrument 0.446 0.000 0.245 ✓ +2026-06-25 18:10:25,008 | INFO | Plucked string instrument 0.322 0.000 0.177 ✓ +2026-06-25 18:10:25,008 | INFO | Tabla 0.148 0.000 0.081 ✗ +2026-06-25 18:10:25,008 | INFO | Banjo 0.145 0.000 0.080 ✗ +2026-06-25 18:10:25,008 | INFO | Sitar 0.144 0.000 0.079 ✗ +2026-06-25 18:10:25,009 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:25,040 | INFO | +[234.20s] AMBIENT | scene='' +2026-06-25 18:10:25,041 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,042 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:25,042 | INFO | Musical instrument 0.385 0.000 0.212 ✓ +2026-06-25 18:10:25,043 | INFO | Plucked string instrument 0.247 0.000 0.136 ✓ +2026-06-25 18:10:25,043 | INFO | Guitar 0.152 0.000 0.083 ✗ +2026-06-25 18:10:25,043 | INFO | Tabla 0.088 0.000 0.049 ✗ +2026-06-25 18:10:25,043 | INFO | Percussion 0.057 0.000 0.032 ✗ +2026-06-25 18:10:25,043 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:25,074 | INFO | +[234.40s] AMBIENT | scene='' +2026-06-25 18:10:25,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,074 | INFO | Music 0.852 0.000 0.468 ✓ +2026-06-25 18:10:25,074 | INFO | Musical instrument 0.450 0.000 0.248 ✓ +2026-06-25 18:10:25,075 | INFO | Plucked string instrument 0.240 0.000 0.132 ✓ +2026-06-25 18:10:25,075 | INFO | Guitar 0.176 0.000 0.097 ✗ +2026-06-25 18:10:25,075 | INFO | Banjo 0.067 0.000 0.037 ✗ +2026-06-25 18:10:25,075 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:25,105 | INFO | +[234.60s] AMBIENT | scene='' +2026-06-25 18:10:25,105 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,106 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:10:25,106 | INFO | Musical instrument 0.290 0.000 0.160 ✓ +2026-06-25 18:10:25,106 | INFO | Plucked string instrument 0.086 0.000 0.048 ✗ +2026-06-25 18:10:25,106 | INFO | Guitar 0.073 0.000 0.040 ✗ +2026-06-25 18:10:25,106 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:25,137 | INFO | +[234.80s] AMBIENT | scene='' +2026-06-25 18:10:25,138 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,139 | INFO | Music 0.772 0.000 0.424 ✓ +2026-06-25 18:10:25,140 | INFO | Musical instrument 0.456 0.000 0.251 ✓ +2026-06-25 18:10:25,140 | INFO | Plucked string instrument 0.117 0.000 0.064 ✗ +2026-06-25 18:10:25,140 | INFO | Keyboard (musical) 0.107 0.000 0.059 ✗ +2026-06-25 18:10:25,140 | INFO | Organ 0.105 0.000 0.058 ✗ +2026-06-25 18:10:25,140 | INFO | Guitar 0.105 0.000 0.058 ✗ +2026-06-25 18:10:25,140 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:10:25,171 | INFO | +[235.00s] AMBIENT | scene='' +2026-06-25 18:10:25,171 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,172 | INFO | Music 0.803 0.000 0.442 ✓ +2026-06-25 18:10:25,172 | INFO | Tabla 0.431 0.000 0.237 ✓ +2026-06-25 18:10:25,172 | INFO | Musical instrument 0.293 0.000 0.161 ✓ +2026-06-25 18:10:25,172 | INFO | Drum 0.180 0.000 0.099 ✗ +2026-06-25 18:10:25,173 | INFO | Percussion 0.179 0.000 0.099 ✗ +2026-06-25 18:10:25,173 | INFO | Folk music 0.121 0.000 0.067 ✗ +2026-06-25 18:10:25,173 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:10:25,203 | INFO | +[235.20s] AMBIENT | scene='' +2026-06-25 18:10:25,204 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,204 | INFO | Tabla 0.673 0.000 0.370 ✓ +2026-06-25 18:10:25,204 | INFO | Music 0.651 0.000 0.358 ✓ +2026-06-25 18:10:25,204 | INFO | Musical instrument 0.355 0.000 0.195 ✓ +2026-06-25 18:10:25,204 | INFO | Carnatic music 0.321 0.000 0.176 ✓ +2026-06-25 18:10:25,205 | INFO | Percussion 0.280 0.000 0.154 ✓ +2026-06-25 18:10:25,205 | INFO | Drum 0.223 0.000 0.122 ✓ +2026-06-25 18:10:25,205 | INFO | → WINNER: Tabla (combined=0.370) +2026-06-25 18:10:25,235 | INFO | +[235.40s] AMBIENT | scene='' +2026-06-25 18:10:25,236 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,236 | INFO | Music 0.723 0.000 0.398 ✓ +2026-06-25 18:10:25,237 | INFO | Tabla 0.686 0.000 0.377 ✓ +2026-06-25 18:10:25,237 | INFO | Musical instrument 0.359 0.000 0.197 ✓ +2026-06-25 18:10:25,237 | INFO | Percussion 0.307 0.000 0.169 ✓ +2026-06-25 18:10:25,238 | INFO | Drum 0.278 0.000 0.153 ✓ +2026-06-25 18:10:25,238 | INFO | Carnatic music 0.241 0.000 0.133 ✓ +2026-06-25 18:10:25,238 | INFO | → WINNER: Music (combined=0.398) +2026-06-25 18:10:25,265 | INFO | +[235.60s] AMBIENT | scene='' +2026-06-25 18:10:25,270 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,270 | INFO | Music 0.617 0.000 0.339 ✓ +2026-06-25 18:10:25,270 | INFO | Tabla 0.561 0.000 0.308 ✓ +2026-06-25 18:10:25,270 | INFO | Musical instrument 0.331 0.000 0.182 ✓ +2026-06-25 18:10:25,270 | INFO | Carnatic music 0.228 0.000 0.125 ✓ +2026-06-25 18:10:25,272 | INFO | Drum 0.200 0.000 0.110 ✗ +2026-06-25 18:10:25,272 | INFO | Percussion 0.199 0.000 0.110 ✗ +2026-06-25 18:10:25,272 | INFO | → WINNER: Music (combined=0.339) +2026-06-25 18:10:25,302 | INFO | +[235.80s] AMBIENT | scene='' +2026-06-25 18:10:25,303 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,303 | INFO | Music 0.751 0.000 0.413 ✓ +2026-06-25 18:10:25,303 | INFO | Musical instrument 0.311 0.000 0.171 ✓ +2026-06-25 18:10:25,304 | INFO | Tabla 0.291 0.000 0.160 ✓ +2026-06-25 18:10:25,304 | INFO | Carnatic music 0.291 0.000 0.160 ✓ +2026-06-25 18:10:25,304 | INFO | Sitar 0.147 0.000 0.081 ✗ +2026-06-25 18:10:25,304 | INFO | Plucked string instrument 0.121 0.000 0.067 ✗ +2026-06-25 18:10:25,304 | INFO | → WINNER: Music (combined=0.413) +2026-06-25 18:10:25,334 | INFO | +[236.00s] AMBIENT | scene='' +2026-06-25 18:10:25,335 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,335 | INFO | Music 0.667 0.000 0.367 ✓ +2026-06-25 18:10:25,335 | INFO | Tabla 0.432 0.000 0.237 ✓ +2026-06-25 18:10:25,335 | INFO | Musical instrument 0.333 0.000 0.183 ✓ +2026-06-25 18:10:25,336 | INFO | Carnatic music 0.211 0.000 0.116 ✗ +2026-06-25 18:10:25,336 | INFO | Percussion 0.180 0.000 0.099 ✗ +2026-06-25 18:10:25,336 | INFO | Drum 0.170 0.000 0.093 ✗ +2026-06-25 18:10:25,337 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:10:25,366 | INFO | +[236.20s] AMBIENT | scene='' +2026-06-25 18:10:25,366 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,367 | INFO | Music 0.757 0.000 0.417 ✓ +2026-06-25 18:10:25,367 | INFO | Tabla 0.413 0.000 0.227 ✓ +2026-06-25 18:10:25,367 | INFO | Musical instrument 0.389 0.000 0.214 ✓ +2026-06-25 18:10:25,368 | INFO | Sitar 0.312 0.000 0.171 ✓ +2026-06-25 18:10:25,368 | INFO | Plucked string instrument 0.195 0.000 0.107 ✗ +2026-06-25 18:10:25,368 | INFO | Percussion 0.166 0.000 0.091 ✗ +2026-06-25 18:10:25,368 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:10:25,395 | INFO | +[236.40s] AMBIENT | scene='' +2026-06-25 18:10:25,395 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,395 | INFO | Music 0.717 0.000 0.394 ✓ +2026-06-25 18:10:25,395 | INFO | Tabla 0.429 0.000 0.236 ✓ +2026-06-25 18:10:25,395 | INFO | Musical instrument 0.282 0.000 0.155 ✓ +2026-06-25 18:10:25,395 | INFO | Carnatic music 0.252 0.000 0.139 ✓ +2026-06-25 18:10:25,400 | INFO | Sitar 0.221 0.000 0.121 ✓ +2026-06-25 18:10:25,400 | INFO | Percussion 0.157 0.000 0.086 ✗ +2026-06-25 18:10:25,400 | INFO | → WINNER: Music (combined=0.394) +2026-06-25 18:10:25,430 | INFO | +[236.60s] AMBIENT | scene='' +2026-06-25 18:10:25,430 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,430 | INFO | Music 0.740 0.000 0.407 ✓ +2026-06-25 18:10:25,430 | INFO | Tabla 0.396 0.000 0.218 ✓ +2026-06-25 18:10:25,430 | INFO | Musical instrument 0.307 0.000 0.169 ✓ +2026-06-25 18:10:25,430 | INFO | Carnatic music 0.206 0.000 0.113 ✗ +2026-06-25 18:10:25,430 | INFO | Sitar 0.171 0.000 0.094 ✗ +2026-06-25 18:10:25,430 | INFO | Percussion 0.147 0.000 0.081 ✗ +2026-06-25 18:10:25,430 | INFO | → WINNER: Music (combined=0.407) +2026-06-25 18:10:25,461 | INFO | +[236.80s] AMBIENT | scene='' +2026-06-25 18:10:25,461 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,462 | INFO | Music 0.837 0.000 0.460 ✓ +2026-06-25 18:10:25,462 | INFO | Musical instrument 0.385 0.000 0.212 ✓ +2026-06-25 18:10:25,463 | INFO | Plucked string instrument 0.166 0.000 0.091 ✗ +2026-06-25 18:10:25,463 | INFO | Folk music 0.097 0.000 0.053 ✗ +2026-06-25 18:10:25,463 | INFO | Tabla 0.093 0.000 0.051 ✗ +2026-06-25 18:10:25,463 | INFO | Guitar 0.089 0.000 0.049 ✗ +2026-06-25 18:10:25,463 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:25,490 | INFO | +[237.00s] AMBIENT | scene='' +2026-06-25 18:10:25,490 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,494 | INFO | Music 0.812 0.000 0.446 ✓ +2026-06-25 18:10:25,494 | INFO | Musical instrument 0.363 0.000 0.200 ✓ +2026-06-25 18:10:25,494 | INFO | Tabla 0.193 0.000 0.106 ✗ +2026-06-25 18:10:25,494 | INFO | Plucked string instrument 0.110 0.000 0.060 ✗ +2026-06-25 18:10:25,496 | INFO | Folk music 0.096 0.000 0.053 ✗ +2026-06-25 18:10:25,496 | INFO | Percussion 0.091 0.000 0.050 ✗ +2026-06-25 18:10:25,496 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:25,526 | INFO | +[237.20s] AMBIENT | scene='' +2026-06-25 18:10:25,526 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,527 | INFO | Music 0.853 0.000 0.469 ✓ +2026-06-25 18:10:25,527 | INFO | Musical instrument 0.571 0.000 0.314 ✓ +2026-06-25 18:10:25,527 | INFO | Plucked string instrument 0.390 0.000 0.214 ✓ +2026-06-25 18:10:25,527 | INFO | Guitar 0.307 0.000 0.169 ✓ +2026-06-25 18:10:25,527 | INFO | Acoustic guitar 0.098 0.000 0.054 ✗ +2026-06-25 18:10:25,528 | INFO | Strum 0.070 0.000 0.038 ✗ +2026-06-25 18:10:25,528 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:25,554 | INFO | +[237.40s] AMBIENT | scene='' +2026-06-25 18:10:25,554 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,554 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:10:25,554 | INFO | Musical instrument 0.695 0.000 0.382 ✓ +2026-06-25 18:10:25,554 | INFO | Plucked string instrument 0.507 0.000 0.279 ✓ +2026-06-25 18:10:25,554 | INFO | Guitar 0.285 0.000 0.157 ✓ +2026-06-25 18:10:25,560 | INFO | Carnatic music 0.255 0.000 0.140 ✓ +2026-06-25 18:10:25,560 | INFO | Sitar 0.204 0.000 0.112 ✗ +2026-06-25 18:10:25,560 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:25,587 | INFO | +[237.60s] AMBIENT | scene='' +2026-06-25 18:10:25,590 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,590 | INFO | Music 0.858 0.000 0.472 ✓ +2026-06-25 18:10:25,590 | INFO | Musical instrument 0.679 0.000 0.373 ✓ +2026-06-25 18:10:25,590 | INFO | Plucked string instrument 0.500 0.000 0.275 ✓ +2026-06-25 18:10:25,590 | INFO | Sitar 0.423 0.000 0.233 ✓ +2026-06-25 18:10:25,590 | INFO | Carnatic music 0.327 0.000 0.180 ✓ +2026-06-25 18:10:25,590 | INFO | Classical music 0.193 0.000 0.106 ✗ +2026-06-25 18:10:25,590 | INFO | → WINNER: Music (combined=0.472) +2026-06-25 18:10:25,621 | INFO | +[237.80s] AMBIENT | scene='' +2026-06-25 18:10:25,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,621 | INFO | Music 0.887 0.000 0.488 ✓ +2026-06-25 18:10:25,621 | INFO | Musical instrument 0.725 0.000 0.399 ✓ +2026-06-25 18:10:25,621 | INFO | Carnatic music 0.552 0.000 0.304 ✓ +2026-06-25 18:10:25,621 | INFO | Plucked string instrument 0.473 0.000 0.260 ✓ +2026-06-25 18:10:25,621 | INFO | Sitar 0.287 0.000 0.158 ✓ +2026-06-25 18:10:25,621 | INFO | Classical music 0.280 0.000 0.154 ✓ +2026-06-25 18:10:25,621 | INFO | → WINNER: Music (combined=0.488) +2026-06-25 18:10:25,653 | INFO | +[238.00s] AMBIENT | scene='' +2026-06-25 18:10:25,653 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,654 | INFO | Music 0.826 0.000 0.454 ✓ +2026-06-25 18:10:25,654 | INFO | Musical instrument 0.602 0.000 0.331 ✓ +2026-06-25 18:10:25,654 | INFO | Tabla 0.380 0.000 0.209 ✓ +2026-06-25 18:10:25,654 | INFO | Carnatic music 0.377 0.000 0.207 ✓ +2026-06-25 18:10:25,654 | INFO | Classical music 0.258 0.000 0.142 ✓ +2026-06-25 18:10:25,655 | INFO | Sitar 0.198 0.000 0.109 ✗ +2026-06-25 18:10:25,655 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:25,684 | INFO | +[238.20s] AMBIENT | scene='' +2026-06-25 18:10:25,684 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,684 | INFO | Music 0.835 0.000 0.459 ✓ +2026-06-25 18:10:25,685 | INFO | Musical instrument 0.411 0.000 0.226 ✓ +2026-06-25 18:10:25,685 | INFO | Tabla 0.310 0.000 0.171 ✓ +2026-06-25 18:10:25,685 | INFO | Carnatic music 0.188 0.000 0.103 ✗ +2026-06-25 18:10:25,686 | INFO | Classical music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:25,686 | INFO | Percussion 0.112 0.000 0.061 ✗ +2026-06-25 18:10:25,686 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:25,713 | INFO | +[238.40s] AMBIENT | scene='' +2026-06-25 18:10:25,713 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,713 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:10:25,713 | INFO | Musical instrument 0.410 0.000 0.225 ✓ +2026-06-25 18:10:25,713 | INFO | Tabla 0.383 0.000 0.210 ✓ +2026-06-25 18:10:25,713 | INFO | Carnatic music 0.171 0.000 0.094 ✗ +2026-06-25 18:10:25,713 | INFO | Plucked string instrument 0.163 0.000 0.090 ✗ +2026-06-25 18:10:25,713 | INFO | Percussion 0.158 0.000 0.087 ✗ +2026-06-25 18:10:25,713 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:25,748 | INFO | +[238.60s] AMBIENT | scene='' +2026-06-25 18:10:25,748 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,748 | INFO | Music 0.711 0.000 0.391 ✓ +2026-06-25 18:10:25,748 | INFO | Tabla 0.707 0.000 0.389 ✓ +2026-06-25 18:10:25,750 | INFO | Musical instrument 0.320 0.000 0.176 ✓ +2026-06-25 18:10:25,750 | INFO | Percussion 0.303 0.000 0.167 ✓ +2026-06-25 18:10:25,750 | INFO | Drum 0.223 0.000 0.122 ✓ +2026-06-25 18:10:25,750 | INFO | Carnatic music 0.152 0.000 0.084 ✗ +2026-06-25 18:10:25,750 | INFO | → WINNER: Music (combined=0.391) +2026-06-25 18:10:25,780 | INFO | +[238.80s] AMBIENT | scene='' +2026-06-25 18:10:25,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,780 | INFO | Music 0.749 0.000 0.412 ✓ +2026-06-25 18:10:25,780 | INFO | Tabla 0.470 0.000 0.259 ✓ +2026-06-25 18:10:25,780 | INFO | Musical instrument 0.317 0.000 0.174 ✓ +2026-06-25 18:10:25,780 | INFO | Sitar 0.195 0.000 0.107 ✗ +2026-06-25 18:10:25,780 | INFO | Percussion 0.191 0.000 0.105 ✗ +2026-06-25 18:10:25,780 | INFO | Plucked string instrument 0.137 0.000 0.075 ✗ +2026-06-25 18:10:25,780 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:10:25,813 | INFO | +[239.00s] AMBIENT | scene='' +2026-06-25 18:10:25,813 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,813 | INFO | Music 0.693 0.000 0.381 ✓ +2026-06-25 18:10:25,813 | INFO | Tabla 0.664 0.000 0.365 ✓ +2026-06-25 18:10:25,813 | INFO | Musical instrument 0.351 0.000 0.193 ✓ +2026-06-25 18:10:25,813 | INFO | Percussion 0.325 0.000 0.178 ✓ +2026-06-25 18:10:25,813 | INFO | Drum 0.210 0.000 0.115 ✗ +2026-06-25 18:10:25,813 | INFO | Sitar 0.141 0.000 0.077 ✗ +2026-06-25 18:10:25,813 | INFO | → WINNER: Music (combined=0.381) +2026-06-25 18:10:25,840 | INFO | +[239.20s] AMBIENT | scene='' +2026-06-25 18:10:25,840 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,844 | INFO | Music 0.722 0.000 0.397 ✓ +2026-06-25 18:10:25,844 | INFO | Tabla 0.406 0.000 0.223 ✓ +2026-06-25 18:10:25,844 | INFO | Percussion 0.198 0.000 0.109 ✗ +2026-06-25 18:10:25,844 | INFO | Musical instrument 0.188 0.000 0.103 ✗ +2026-06-25 18:10:25,845 | INFO | Drum 0.159 0.000 0.087 ✗ +2026-06-25 18:10:25,845 | INFO | Middle Eastern music 0.096 0.000 0.053 ✗ +2026-06-25 18:10:25,845 | INFO | → WINNER: Music (combined=0.397) +2026-06-25 18:10:25,876 | INFO | +[239.40s] AMBIENT | scene='' +2026-06-25 18:10:25,876 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,876 | INFO | Music 0.678 0.000 0.373 ✓ +2026-06-25 18:10:25,876 | INFO | Tabla 0.452 0.000 0.248 ✓ +2026-06-25 18:10:25,877 | INFO | Percussion 0.212 0.000 0.117 ✗ +2026-06-25 18:10:25,877 | INFO | Musical instrument 0.200 0.000 0.110 ✗ +2026-06-25 18:10:25,877 | INFO | Drum 0.173 0.000 0.095 ✗ +2026-06-25 18:10:25,877 | INFO | Carnatic music 0.109 0.000 0.060 ✗ +2026-06-25 18:10:25,878 | INFO | → WINNER: Music (combined=0.373) +2026-06-25 18:10:25,905 | INFO | +[239.60s] AMBIENT | scene='' +2026-06-25 18:10:25,905 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,905 | INFO | Tabla 0.693 0.000 0.381 ✓ +2026-06-25 18:10:25,909 | INFO | Music 0.637 0.000 0.350 ✓ +2026-06-25 18:10:25,909 | INFO | Musical instrument 0.390 0.000 0.214 ✓ +2026-06-25 18:10:25,909 | INFO | Percussion 0.312 0.000 0.172 ✓ +2026-06-25 18:10:25,909 | INFO | Drum 0.269 0.000 0.148 ✓ +2026-06-25 18:10:25,909 | INFO | Carnatic music 0.215 0.000 0.118 ✗ +2026-06-25 18:10:25,909 | INFO | → WINNER: Tabla (combined=0.381) +2026-06-25 18:10:25,940 | INFO | +[239.80s] AMBIENT | scene='' +2026-06-25 18:10:25,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,940 | INFO | Music 0.647 0.000 0.356 ✓ +2026-06-25 18:10:25,940 | INFO | Tabla 0.412 0.000 0.227 ✓ +2026-06-25 18:10:25,940 | INFO | Carnatic music 0.376 0.000 0.206 ✓ +2026-06-25 18:10:25,940 | INFO | Musical instrument 0.300 0.000 0.165 ✓ +2026-06-25 18:10:25,940 | INFO | Classical music 0.185 0.000 0.102 ✗ +2026-06-25 18:10:25,940 | INFO | Sitar 0.135 0.000 0.074 ✗ +2026-06-25 18:10:25,940 | INFO | → WINNER: Music (combined=0.356) +2026-06-25 18:10:25,971 | INFO | +[240.00s] AMBIENT | scene='' +2026-06-25 18:10:25,972 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:25,972 | INFO | Music 0.765 0.000 0.421 ✓ +2026-06-25 18:10:25,972 | INFO | Musical instrument 0.623 0.000 0.343 ✓ +2026-06-25 18:10:25,972 | INFO | Tabla 0.556 0.000 0.306 ✓ +2026-06-25 18:10:25,972 | INFO | Carnatic music 0.408 0.000 0.224 ✓ +2026-06-25 18:10:25,972 | INFO | Plucked string instrument 0.331 0.000 0.182 ✓ +2026-06-25 18:10:25,972 | INFO | Classical music 0.296 0.000 0.163 ✓ +2026-06-25 18:10:25,972 | INFO | → WINNER: Music (combined=0.421) +2026-06-25 18:10:26,003 | INFO | +[240.20s] AMBIENT | scene='' +2026-06-25 18:10:26,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,004 | INFO | Music 0.799 0.000 0.439 ✓ +2026-06-25 18:10:26,005 | INFO | Musical instrument 0.579 0.000 0.319 ✓ +2026-06-25 18:10:26,005 | INFO | Plucked string instrument 0.435 0.000 0.239 ✓ +2026-06-25 18:10:26,005 | INFO | Tabla 0.365 0.000 0.201 ✓ +2026-06-25 18:10:26,005 | INFO | Sitar 0.281 0.000 0.155 ✓ +2026-06-25 18:10:26,005 | INFO | Carnatic music 0.200 0.000 0.110 ✗ +2026-06-25 18:10:26,006 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:26,035 | INFO | +[240.40s] AMBIENT | scene='' +2026-06-25 18:10:26,035 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,035 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:10:26,036 | INFO | Musical instrument 0.568 0.000 0.312 ✓ +2026-06-25 18:10:26,036 | INFO | Plucked string instrument 0.512 0.000 0.281 ✓ +2026-06-25 18:10:26,036 | INFO | Guitar 0.444 0.000 0.244 ✓ +2026-06-25 18:10:26,037 | INFO | Acoustic guitar 0.136 0.000 0.075 ✗ +2026-06-25 18:10:26,038 | INFO | Strum 0.128 0.000 0.070 ✗ +2026-06-25 18:10:26,038 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:26,065 | INFO | +[240.60s] AMBIENT | scene='' +2026-06-25 18:10:26,065 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,065 | INFO | Music 0.828 0.000 0.455 ✓ +2026-06-25 18:10:26,065 | INFO | Musical instrument 0.502 0.000 0.276 ✓ +2026-06-25 18:10:26,065 | INFO | Plucked string instrument 0.412 0.000 0.226 ✓ +2026-06-25 18:10:26,065 | INFO | Guitar 0.229 0.000 0.126 ✓ +2026-06-25 18:10:26,069 | INFO | Mandolin 0.117 0.000 0.065 ✗ +2026-06-25 18:10:26,069 | INFO | Ukulele 0.100 0.000 0.055 ✗ +2026-06-25 18:10:26,069 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:26,102 | INFO | +[240.80s] AMBIENT | scene='' +2026-06-25 18:10:26,102 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,102 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:10:26,103 | INFO | Musical instrument 0.485 0.000 0.267 ✓ +2026-06-25 18:10:26,103 | INFO | Plucked string instrument 0.341 0.000 0.187 ✓ +2026-06-25 18:10:26,103 | INFO | Sitar 0.258 0.000 0.142 ✓ +2026-06-25 18:10:26,103 | INFO | Guitar 0.146 0.000 0.081 ✗ +2026-06-25 18:10:26,103 | INFO | Carnatic music 0.132 0.000 0.072 ✗ +2026-06-25 18:10:26,104 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:26,132 | INFO | +[241.00s] AMBIENT | scene='' +2026-06-25 18:10:26,132 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,132 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:26,132 | INFO | Musical instrument 0.372 0.000 0.204 ✓ +2026-06-25 18:10:26,132 | INFO | Plucked string instrument 0.244 0.000 0.134 ✓ +2026-06-25 18:10:26,132 | INFO | Middle Eastern music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:26,132 | INFO | Singing 0.138 0.000 0.076 ✗ +2026-06-25 18:10:26,132 | INFO | Carnatic music 0.127 0.000 0.070 ✗ +2026-06-25 18:10:26,132 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:26,166 | INFO | +[241.20s] AMBIENT | scene='' +2026-06-25 18:10:26,166 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,166 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:10:26,166 | INFO | Musical instrument 0.457 0.000 0.251 ✓ +2026-06-25 18:10:26,167 | INFO | Tabla 0.275 0.000 0.151 ✓ +2026-06-25 18:10:26,167 | INFO | Plucked string instrument 0.251 0.000 0.138 ✓ +2026-06-25 18:10:26,167 | INFO | Sitar 0.142 0.000 0.078 ✗ +2026-06-25 18:10:26,167 | INFO | Middle Eastern music 0.114 0.000 0.063 ✗ +2026-06-25 18:10:26,167 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:26,197 | INFO | +[241.40s] AMBIENT | scene='' +2026-06-25 18:10:26,197 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,198 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:26,198 | INFO | Musical instrument 0.302 0.000 0.166 ✓ +2026-06-25 18:10:26,198 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:10:26,198 | INFO | Tabla 0.113 0.000 0.062 ✗ +2026-06-25 18:10:26,198 | INFO | Percussion 0.103 0.000 0.057 ✗ +2026-06-25 18:10:26,198 | INFO | Middle Eastern music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:26,199 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:26,229 | INFO | +[241.60s] AMBIENT | scene='' +2026-06-25 18:10:26,230 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,230 | INFO | Music 0.766 0.000 0.421 ✓ +2026-06-25 18:10:26,230 | INFO | Tabla 0.337 0.000 0.185 ✓ +2026-06-25 18:10:26,231 | INFO | Musical instrument 0.269 0.000 0.148 ✓ +2026-06-25 18:10:26,231 | INFO | Percussion 0.163 0.000 0.090 ✗ +2026-06-25 18:10:26,232 | INFO | Drum 0.154 0.000 0.085 ✗ +2026-06-25 18:10:26,232 | INFO | Singing 0.100 0.000 0.055 ✗ +2026-06-25 18:10:26,232 | INFO | → WINNER: Music (combined=0.421) +2026-06-25 18:10:26,263 | INFO | +[241.80s] AMBIENT | scene='' +2026-06-25 18:10:26,263 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,264 | INFO | Music 0.706 0.000 0.388 ✓ +2026-06-25 18:10:26,264 | INFO | Tabla 0.395 0.000 0.217 ✓ +2026-06-25 18:10:26,264 | INFO | Musical instrument 0.319 0.000 0.175 ✓ +2026-06-25 18:10:26,264 | INFO | Carnatic music 0.226 0.000 0.124 ✓ +2026-06-25 18:10:26,265 | INFO | Singing 0.183 0.000 0.101 ✗ +2026-06-25 18:10:26,265 | INFO | Percussion 0.180 0.000 0.099 ✗ +2026-06-25 18:10:26,265 | INFO | → WINNER: Music (combined=0.388) +2026-06-25 18:10:26,295 | INFO | +[242.00s] AMBIENT | scene='' +2026-06-25 18:10:26,295 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,296 | INFO | Music 0.750 0.000 0.413 ✓ +2026-06-25 18:10:26,296 | INFO | Tabla 0.515 0.000 0.283 ✓ +2026-06-25 18:10:26,296 | INFO | Musical instrument 0.463 0.000 0.255 ✓ +2026-06-25 18:10:26,296 | INFO | Carnatic music 0.258 0.000 0.142 ✓ +2026-06-25 18:10:26,297 | INFO | Percussion 0.185 0.000 0.102 ✗ +2026-06-25 18:10:26,297 | INFO | Drum 0.175 0.000 0.096 ✗ +2026-06-25 18:10:26,297 | INFO | → WINNER: Music (combined=0.413) +2026-06-25 18:10:26,324 | INFO | +[242.20s] AMBIENT | scene='' +2026-06-25 18:10:26,328 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,328 | INFO | Music 0.837 0.000 0.461 ✓ +2026-06-25 18:10:26,328 | INFO | Musical instrument 0.415 0.000 0.228 ✓ +2026-06-25 18:10:26,329 | INFO | Tabla 0.299 0.000 0.165 ✓ +2026-06-25 18:10:26,329 | INFO | Plucked string instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:10:26,329 | INFO | Percussion 0.120 0.000 0.066 ✗ +2026-06-25 18:10:26,330 | INFO | Folk music 0.101 0.000 0.056 ✗ +2026-06-25 18:10:26,330 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:10:26,355 | INFO | +[242.40s] AMBIENT | scene='' +2026-06-25 18:10:26,360 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,360 | INFO | Music 0.896 0.000 0.493 ✓ +2026-06-25 18:10:26,360 | INFO | Musical instrument 0.420 0.000 0.231 ✓ +2026-06-25 18:10:26,360 | INFO | Plucked string instrument 0.224 0.000 0.123 ✓ +2026-06-25 18:10:26,362 | INFO | Rattle (instrument) 0.143 0.000 0.079 ✗ +2026-06-25 18:10:26,362 | INFO | Percussion 0.127 0.000 0.070 ✗ +2026-06-25 18:10:26,364 | INFO | Tabla 0.125 0.000 0.069 ✗ +2026-06-25 18:10:26,364 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:26,392 | INFO | +[242.60s] AMBIENT | scene='' +2026-06-25 18:10:26,392 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,396 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:26,396 | INFO | Musical instrument 0.336 0.000 0.185 ✓ +2026-06-25 18:10:26,396 | INFO | Tabla 0.298 0.000 0.164 ✓ +2026-06-25 18:10:26,396 | INFO | Percussion 0.236 0.000 0.130 ✓ +2026-06-25 18:10:26,396 | INFO | Wood block 0.159 0.000 0.087 ✗ +2026-06-25 18:10:26,396 | INFO | Drum 0.138 0.000 0.076 ✗ +2026-06-25 18:10:26,396 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:26,426 | INFO | +[242.80s] AMBIENT | scene='' +2026-06-25 18:10:26,428 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,429 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:10:26,429 | INFO | Tabla 0.373 0.000 0.205 ✓ +2026-06-25 18:10:26,429 | INFO | Musical instrument 0.344 0.000 0.189 ✓ +2026-06-25 18:10:26,429 | INFO | Percussion 0.229 0.000 0.126 ✓ +2026-06-25 18:10:26,430 | INFO | Drum 0.134 0.000 0.073 ✗ +2026-06-25 18:10:26,430 | INFO | Banjo 0.114 0.000 0.063 ✗ +2026-06-25 18:10:26,431 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:26,476 | INFO | +[243.00s] AMBIENT | scene='' +2026-06-25 18:10:26,477 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,478 | INFO | Music 0.687 0.000 0.378 ✓ +2026-06-25 18:10:26,478 | INFO | Tabla 0.602 0.000 0.331 ✓ +2026-06-25 18:10:26,478 | INFO | Percussion 0.437 0.000 0.240 ✓ +2026-06-25 18:10:26,478 | INFO | Musical instrument 0.311 0.000 0.171 ✓ +2026-06-25 18:10:26,478 | INFO | Drum 0.294 0.000 0.162 ✓ +2026-06-25 18:10:26,480 | INFO | Wood block 0.099 0.000 0.054 ✗ +2026-06-25 18:10:26,480 | INFO | → WINNER: Music (combined=0.378) +2026-06-25 18:10:26,523 | INFO | +[243.20s] AMBIENT | scene='' +2026-06-25 18:10:26,524 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,524 | INFO | Tabla 0.741 0.000 0.407 ✓ +2026-06-25 18:10:26,525 | INFO | Music 0.662 0.000 0.364 ✓ +2026-06-25 18:10:26,525 | INFO | Percussion 0.413 0.000 0.227 ✓ +2026-06-25 18:10:26,526 | INFO | Musical instrument 0.369 0.000 0.203 ✓ +2026-06-25 18:10:26,528 | INFO | Drum 0.271 0.000 0.149 ✓ +2026-06-25 18:10:26,528 | INFO | Plucked string instrument 0.088 0.000 0.048 ✗ +2026-06-25 18:10:26,546 | INFO | → WINNER: Tabla (combined=0.407) +2026-06-25 18:10:26,630 | INFO | +[243.40s] AMBIENT | scene='' +2026-06-25 18:10:26,640 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,640 | INFO | Tabla 0.782 0.000 0.430 ✓ +2026-06-25 18:10:26,645 | INFO | Music 0.579 0.000 0.318 ✓ +2026-06-25 18:10:26,645 | INFO | Percussion 0.434 0.000 0.238 ✓ +2026-06-25 18:10:26,647 | INFO | Musical instrument 0.330 0.000 0.181 ✓ +2026-06-25 18:10:26,648 | INFO | Drum 0.320 0.000 0.176 ✓ +2026-06-25 18:10:26,648 | INFO | Plucked string instrument 0.051 0.000 0.028 ✗ +2026-06-25 18:10:26,648 | INFO | → WINNER: Tabla (combined=0.430) +2026-06-25 18:10:26,730 | INFO | +[243.60s] AMBIENT | scene='' +2026-06-25 18:10:26,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,731 | INFO | Tabla 0.738 0.000 0.406 ✓ +2026-06-25 18:10:26,731 | INFO | Music 0.625 0.000 0.344 ✓ +2026-06-25 18:10:26,731 | INFO | Percussion 0.392 0.000 0.215 ✓ +2026-06-25 18:10:26,732 | INFO | Musical instrument 0.329 0.000 0.181 ✓ +2026-06-25 18:10:26,732 | INFO | Drum 0.313 0.000 0.172 ✓ +2026-06-25 18:10:26,733 | INFO | Classical music 0.111 0.000 0.061 ✗ +2026-06-25 18:10:26,733 | INFO | → WINNER: Tabla (combined=0.406) +2026-06-25 18:10:26,872 | INFO | +[243.80s] AMBIENT | scene='' +2026-06-25 18:10:26,872 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,872 | INFO | Music 0.594 0.000 0.327 ✓ +2026-06-25 18:10:26,873 | INFO | Tabla 0.518 0.000 0.285 ✓ +2026-06-25 18:10:26,873 | INFO | Percussion 0.267 0.000 0.147 ✓ +2026-06-25 18:10:26,873 | INFO | Musical instrument 0.255 0.000 0.140 ✓ +2026-06-25 18:10:26,874 | INFO | Carnatic music 0.216 0.000 0.119 ✗ +2026-06-25 18:10:26,874 | INFO | Drum 0.183 0.000 0.101 ✗ +2026-06-25 18:10:26,874 | INFO | → WINNER: Music (combined=0.327) +2026-06-25 18:10:26,923 | INFO | +[244.00s] AMBIENT | scene='' +2026-06-25 18:10:26,923 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,924 | INFO | Tabla 0.752 0.000 0.414 ✓ +2026-06-25 18:10:26,924 | INFO | Music 0.546 0.000 0.300 ✓ +2026-06-25 18:10:26,925 | INFO | Musical instrument 0.387 0.000 0.213 ✓ +2026-06-25 18:10:26,925 | INFO | Percussion 0.334 0.000 0.184 ✓ +2026-06-25 18:10:26,925 | INFO | Classical music 0.282 0.000 0.155 ✓ +2026-06-25 18:10:26,925 | INFO | Carnatic music 0.277 0.000 0.152 ✓ +2026-06-25 18:10:26,926 | INFO | → WINNER: Tabla (combined=0.414) +2026-06-25 18:10:26,954 | INFO | +[244.20s] AMBIENT | scene='' +2026-06-25 18:10:26,954 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,954 | INFO | Tabla 0.680 0.000 0.374 ✓ +2026-06-25 18:10:26,954 | INFO | Music 0.527 0.000 0.290 ✓ +2026-06-25 18:10:26,954 | INFO | Percussion 0.299 0.000 0.165 ✓ +2026-06-25 18:10:26,954 | INFO | Musical instrument 0.276 0.000 0.152 ✓ +2026-06-25 18:10:26,954 | INFO | Drum 0.224 0.000 0.123 ✓ +2026-06-25 18:10:26,954 | INFO | Carnatic music 0.205 0.000 0.113 ✗ +2026-06-25 18:10:26,954 | INFO | → WINNER: Tabla (combined=0.374) +2026-06-25 18:10:26,986 | INFO | +[244.40s] AMBIENT | scene='' +2026-06-25 18:10:26,986 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:26,987 | INFO | Tabla 0.726 0.000 0.399 ✓ +2026-06-25 18:10:26,987 | INFO | Music 0.501 0.000 0.275 ✓ +2026-06-25 18:10:26,987 | INFO | Percussion 0.359 0.000 0.198 ✓ +2026-06-25 18:10:26,987 | INFO | Musical instrument 0.289 0.000 0.159 ✓ +2026-06-25 18:10:26,988 | INFO | Drum 0.271 0.000 0.149 ✓ +2026-06-25 18:10:26,988 | INFO | Carnatic music 0.143 0.000 0.079 ✗ +2026-06-25 18:10:26,988 | INFO | → WINNER: Tabla (combined=0.399) +2026-06-25 18:10:27,013 | INFO | +[244.60s] AMBIENT | scene='' +2026-06-25 18:10:27,013 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,019 | INFO | Music 0.672 0.000 0.369 ✓ +2026-06-25 18:10:27,020 | INFO | Tabla 0.541 0.000 0.298 ✓ +2026-06-25 18:10:27,020 | INFO | Musical instrument 0.347 0.000 0.191 ✓ +2026-06-25 18:10:27,021 | INFO | Percussion 0.272 0.000 0.150 ✓ +2026-06-25 18:10:27,021 | INFO | Drum 0.236 0.000 0.130 ✓ +2026-06-25 18:10:27,021 | INFO | Wood block 0.079 0.000 0.043 ✗ +2026-06-25 18:10:27,021 | INFO | → WINNER: Music (combined=0.369) +2026-06-25 18:10:27,050 | INFO | +[244.80s] AMBIENT | scene='' +2026-06-25 18:10:27,051 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,051 | INFO | Music 0.786 0.000 0.432 ✓ +2026-06-25 18:10:27,051 | INFO | Tabla 0.647 0.000 0.356 ✓ +2026-06-25 18:10:27,051 | INFO | Musical instrument 0.435 0.000 0.239 ✓ +2026-06-25 18:10:27,051 | INFO | Percussion 0.318 0.000 0.175 ✓ +2026-06-25 18:10:27,052 | INFO | Drum 0.236 0.000 0.130 ✓ +2026-06-25 18:10:27,052 | INFO | Plucked string instrument 0.161 0.000 0.089 ✗ +2026-06-25 18:10:27,053 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:27,081 | INFO | +[245.00s] AMBIENT | scene='' +2026-06-25 18:10:27,081 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,081 | INFO | Music 0.828 0.000 0.456 ✓ +2026-06-25 18:10:27,081 | INFO | Musical instrument 0.380 0.000 0.209 ✓ +2026-06-25 18:10:27,081 | INFO | Tabla 0.300 0.000 0.165 ✓ +2026-06-25 18:10:27,081 | INFO | Plucked string instrument 0.187 0.000 0.103 ✗ +2026-06-25 18:10:27,084 | INFO | Percussion 0.181 0.000 0.100 ✗ +2026-06-25 18:10:27,084 | INFO | Drum 0.124 0.000 0.068 ✗ +2026-06-25 18:10:27,084 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:27,114 | INFO | +[245.20s] AMBIENT | scene='' +2026-06-25 18:10:27,114 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,115 | INFO | Music 0.740 0.000 0.407 ✓ +2026-06-25 18:10:27,115 | INFO | Musical instrument 0.330 0.000 0.181 ✓ +2026-06-25 18:10:27,115 | INFO | Animal 0.276 0.000 0.152 ✓ +2026-06-25 18:10:27,116 | INFO | Plucked string instrument 0.207 0.000 0.114 ✗ +2026-06-25 18:10:27,116 | INFO | Dog 0.181 0.000 0.100 ✗ +2026-06-25 18:10:27,116 | INFO | Domestic animals, pets 0.174 0.000 0.096 ✗ +2026-06-25 18:10:27,116 | INFO | → WINNER: Music (combined=0.407) +2026-06-25 18:10:27,146 | INFO | +[245.40s] AMBIENT | scene='' +2026-06-25 18:10:27,147 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,148 | INFO | Music 0.793 0.000 0.436 ✓ +2026-06-25 18:10:27,148 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:27,179 | INFO | +[249.60s] AMBIENT | scene='' +2026-06-25 18:10:27,180 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,180 | INFO | Music 0.391 0.000 0.215 ✓ +2026-06-25 18:10:27,180 | INFO | Crow 0.352 0.000 0.194 ✓ +2026-06-25 18:10:27,181 | INFO | Animal 0.254 0.000 0.140 ✓ +2026-06-25 18:10:27,181 | INFO | Caw 0.204 0.000 0.112 ✗ +2026-06-25 18:10:27,181 | INFO | Bird 0.141 0.000 0.078 ✗ +2026-06-25 18:10:27,181 | INFO | Domestic animals, pets 0.064 0.000 0.035 ✗ +2026-06-25 18:10:27,182 | INFO | → WINNER: Music (combined=0.215) +2026-06-25 18:10:27,211 | INFO | +[249.80s] AMBIENT | scene='' +2026-06-25 18:10:27,211 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,212 | INFO | Fowl 0.481 0.000 0.265 ✓ +2026-06-25 18:10:27,212 | INFO | Bird 0.237 0.000 0.131 ✓ +2026-06-25 18:10:27,212 | INFO | Chicken, rooster 0.228 0.000 0.125 ✓ +2026-06-25 18:10:27,212 | INFO | Goose 0.152 0.000 0.084 ✗ +2026-06-25 18:10:27,213 | INFO | Cluck 0.149 0.000 0.082 ✗ +2026-06-25 18:10:27,213 | INFO | Animal 0.126 0.000 0.070 ✗ +2026-06-25 18:10:27,213 | INFO | → WINNER: Fowl (combined=0.265) +2026-06-25 18:10:27,240 | INFO | +[250.00s] AMBIENT | scene='' +2026-06-25 18:10:27,240 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,240 | INFO | Fowl 0.454 0.000 0.250 ✓ +2026-06-25 18:10:27,240 | INFO | Goose 0.330 0.000 0.182 ✓ +2026-06-25 18:10:27,240 | INFO | Honk 0.281 0.000 0.154 ✓ +2026-06-25 18:10:27,240 | INFO | Animal 0.184 0.000 0.101 ✗ +2026-06-25 18:10:27,244 | INFO | Bird 0.175 0.000 0.096 ✗ +2026-06-25 18:10:27,244 | INFO | Crow 0.128 0.000 0.070 ✗ +2026-06-25 18:10:27,244 | INFO | → WINNER: Fowl (combined=0.250) +2026-06-25 18:10:27,275 | INFO | +[250.20s] AMBIENT | scene='' +2026-06-25 18:10:27,275 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,275 | INFO | Fowl 0.364 0.000 0.201 ✓ +2026-06-25 18:10:27,275 | INFO | Goose 0.336 0.000 0.185 ✓ +2026-06-25 18:10:27,276 | INFO | Honk 0.276 0.000 0.152 ✓ +2026-06-25 18:10:27,276 | INFO | Animal 0.213 0.000 0.117 ✗ +2026-06-25 18:10:27,276 | INFO | Bird 0.104 0.000 0.057 ✗ +2026-06-25 18:10:27,276 | INFO | Livestock, farm animals, working animals 0.085 0.000 0.047 ✗ +2026-06-25 18:10:27,276 | INFO | → WINNER: Fowl (combined=0.201) +2026-06-25 18:10:27,304 | INFO | +[250.40s] AMBIENT | scene='' +2026-06-25 18:10:27,304 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,304 | INFO | Goose 0.769 0.000 0.423 ✓ +2026-06-25 18:10:27,304 | INFO | Honk 0.686 0.000 0.377 ✓ +2026-06-25 18:10:27,304 | INFO | Fowl 0.658 0.000 0.362 ✓ +2026-06-25 18:10:27,304 | INFO | Duck 0.145 0.000 0.080 ✗ +2026-06-25 18:10:27,304 | INFO | Bird 0.130 0.000 0.071 ✗ +2026-06-25 18:10:27,304 | INFO | Animal 0.082 0.000 0.045 ✗ +2026-06-25 18:10:27,304 | INFO | → WINNER: Goose (combined=0.423) +2026-06-25 18:10:27,338 | INFO | +[250.60s] AMBIENT | scene='' +2026-06-25 18:10:27,338 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,340 | INFO | Goose 0.788 0.000 0.433 ✓ +2026-06-25 18:10:27,340 | INFO | Honk 0.732 0.000 0.403 ✓ +2026-06-25 18:10:27,340 | INFO | Fowl 0.651 0.000 0.358 ✓ +2026-06-25 18:10:27,340 | INFO | Duck 0.127 0.000 0.070 ✗ +2026-06-25 18:10:27,340 | INFO | Bird 0.113 0.000 0.062 ✗ +2026-06-25 18:10:27,340 | INFO | Animal 0.080 0.000 0.044 ✗ +2026-06-25 18:10:27,340 | INFO | → WINNER: Goose (combined=0.433) +2026-06-25 18:10:27,371 | INFO | +[250.80s] AMBIENT | scene='' +2026-06-25 18:10:27,371 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,371 | INFO | Goose 0.557 0.000 0.306 ✓ +2026-06-25 18:10:27,371 | INFO | Honk 0.507 0.000 0.279 ✓ +2026-06-25 18:10:27,371 | INFO | Fowl 0.407 0.000 0.224 ✓ +2026-06-25 18:10:27,371 | INFO | Duck 0.191 0.000 0.105 ✗ +2026-06-25 18:10:27,371 | INFO | Quack 0.104 0.000 0.057 ✗ +2026-06-25 18:10:27,371 | INFO | Animal 0.088 0.000 0.049 ✗ +2026-06-25 18:10:27,371 | INFO | → WINNER: Goose (combined=0.306) +2026-06-25 18:10:27,404 | INFO | +[251.00s] AMBIENT | scene='' +2026-06-25 18:10:27,404 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,404 | INFO | Goose 0.589 0.000 0.324 ✓ +2026-06-25 18:10:27,404 | INFO | Honk 0.578 0.000 0.318 ✓ +2026-06-25 18:10:27,404 | INFO | Fowl 0.399 0.000 0.219 ✓ +2026-06-25 18:10:27,404 | INFO | Duck 0.217 0.000 0.119 ✗ +2026-06-25 18:10:27,404 | INFO | Quack 0.140 0.000 0.077 ✗ +2026-06-25 18:10:27,404 | INFO | Animal 0.099 0.000 0.055 ✗ +2026-06-25 18:10:27,404 | INFO | → WINNER: Goose (combined=0.324) +2026-06-25 18:10:27,435 | INFO | +[251.20s] AMBIENT | scene='' +2026-06-25 18:10:27,436 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,436 | INFO | Fowl 0.103 0.000 0.057 ✗ +2026-06-25 18:10:27,436 | INFO | Animal 0.102 0.000 0.056 ✗ +2026-06-25 18:10:27,436 | INFO | Honk 0.082 0.000 0.045 ✗ +2026-06-25 18:10:27,438 | INFO | Goose 0.082 0.000 0.045 ✗ +2026-06-25 18:10:27,438 | INFO | Duck 0.057 0.000 0.031 ✗ +2026-06-25 18:10:27,438 | INFO | Bird 0.044 0.000 0.024 ✗ +2026-06-25 18:10:27,438 | INFO | → no winner +2026-06-25 18:10:27,463 | INFO | +[251.40s] AMBIENT | scene='' +2026-06-25 18:10:27,463 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,463 | INFO | Fowl 0.203 0.000 0.112 ✗ +2026-06-25 18:10:27,469 | INFO | Animal 0.117 0.000 0.064 ✗ +2026-06-25 18:10:27,469 | INFO | Music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:27,471 | INFO | Bird 0.097 0.000 0.053 ✗ +2026-06-25 18:10:27,471 | INFO | Chicken, rooster 0.081 0.000 0.045 ✗ +2026-06-25 18:10:27,472 | INFO | Goose 0.067 0.000 0.037 ✗ +2026-06-25 18:10:27,473 | INFO | → no winner +2026-06-25 18:10:27,506 | INFO | +[251.60s] AMBIENT | scene='' +2026-06-25 18:10:27,507 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,507 | INFO | Fowl 0.117 0.000 0.064 ✗ +2026-06-25 18:10:27,507 | INFO | Bird 0.112 0.000 0.061 ✗ +2026-06-25 18:10:27,507 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:10:27,507 | INFO | → no winner +2026-06-25 18:10:27,537 | INFO | +[251.80s] AMBIENT | scene='' +2026-06-25 18:10:27,540 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,540 | INFO | Animal 0.192 0.000 0.106 ✗ +2026-06-25 18:10:27,540 | INFO | Bird 0.085 0.000 0.047 ✗ +2026-06-25 18:10:27,540 | INFO | Domestic animals, pets 0.054 0.000 0.030 ✗ +2026-06-25 18:10:27,540 | INFO | Crow 0.035 0.000 0.019 ✗ +2026-06-25 18:10:27,540 | INFO | → no winner +2026-06-25 18:10:27,575 | INFO | +[252.00s] AMBIENT | scene='' +2026-06-25 18:10:27,575 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,575 | INFO | Animal 0.226 0.000 0.124 ✓ +2026-06-25 18:10:27,575 | INFO | Bird 0.084 0.000 0.046 ✗ +2026-06-25 18:10:27,576 | INFO | Domestic animals, pets 0.063 0.000 0.035 ✗ +2026-06-25 18:10:27,576 | INFO | Fowl 0.057 0.000 0.031 ✗ +2026-06-25 18:10:27,576 | INFO | → WINNER: Animal (combined=0.124) +2026-06-25 18:10:27,604 | INFO | +[252.20s] AMBIENT | scene='' +2026-06-25 18:10:27,604 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,604 | INFO | Inside, small room 0.058 0.000 0.032 ✗ +2026-06-25 18:10:27,604 | INFO | Animal 0.043 0.000 0.024 ✗ +2026-06-25 18:10:27,604 | INFO | → no winner +2026-06-25 18:10:27,637 | INFO | +[252.40s] AMBIENT | scene='' +2026-06-25 18:10:27,640 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,640 | INFO | Animal 0.345 0.000 0.190 ✓ +2026-06-25 18:10:27,640 | INFO | Domestic animals, pets 0.075 0.000 0.041 ✗ +2026-06-25 18:10:27,640 | INFO | Wild animals 0.074 0.000 0.041 ✗ +2026-06-25 18:10:27,640 | INFO | Bird 0.067 0.000 0.037 ✗ +2026-06-25 18:10:27,640 | INFO | Livestock, farm animals, working animals 0.048 0.000 0.026 ✗ +2026-06-25 18:10:27,640 | INFO | → WINNER: Animal (combined=0.190) +2026-06-25 18:10:27,671 | INFO | +[252.60s] AMBIENT | scene='' +2026-06-25 18:10:27,671 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,671 | INFO | Animal 0.337 0.000 0.185 ✓ +2026-06-25 18:10:27,671 | INFO | Bird 0.332 0.000 0.182 ✓ +2026-06-25 18:10:27,671 | INFO | Chirp, tweet 0.161 0.000 0.089 ✗ +2026-06-25 18:10:27,671 | INFO | Domestic animals, pets 0.153 0.000 0.084 ✗ +2026-06-25 18:10:27,671 | INFO | Bird vocalization, bird call, bird song 0.096 0.000 0.053 ✗ +2026-06-25 18:10:27,671 | INFO | Squawk 0.081 0.000 0.044 ✗ +2026-06-25 18:10:27,671 | INFO | → WINNER: Animal (combined=0.185) +2026-06-25 18:10:27,704 | INFO | +[252.80s] AMBIENT | scene='' +2026-06-25 18:10:27,704 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,704 | INFO | Bird 0.375 0.000 0.206 ✓ +2026-06-25 18:10:27,704 | INFO | Livestock, farm animals, working animals 0.358 0.000 0.197 ✓ +2026-06-25 18:10:27,704 | INFO | Animal 0.307 0.000 0.169 ✓ +2026-06-25 18:10:27,704 | INFO | Chirp, tweet 0.155 0.000 0.086 ✗ +2026-06-25 18:10:27,704 | INFO | Bird vocalization, bird call, bird song 0.111 0.000 0.061 ✗ +2026-06-25 18:10:27,704 | INFO | Cattle, bovinae 0.067 0.000 0.037 ✗ +2026-06-25 18:10:27,704 | INFO | → WINNER: Bird (combined=0.206) +2026-06-25 18:10:27,738 | INFO | +[253.00s] AMBIENT | scene='' +2026-06-25 18:10:27,738 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,738 | INFO | Animal 0.353 0.000 0.194 ✓ +2026-06-25 18:10:27,738 | INFO | Bird 0.265 0.000 0.146 ✓ +2026-06-25 18:10:27,740 | INFO | Chirp, tweet 0.140 0.000 0.077 ✗ +2026-06-25 18:10:27,740 | INFO | Domestic animals, pets 0.086 0.000 0.047 ✗ +2026-06-25 18:10:27,740 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.044 ✗ +2026-06-25 18:10:27,740 | INFO | Livestock, farm animals, working animals 0.060 0.000 0.033 ✗ +2026-06-25 18:10:27,740 | INFO | → WINNER: Animal (combined=0.194) +2026-06-25 18:10:27,770 | INFO | +[253.20s] AMBIENT | scene='' +2026-06-25 18:10:27,770 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,770 | INFO | Animal 0.423 0.000 0.233 ✓ +2026-06-25 18:10:27,770 | INFO | Bird 0.276 0.000 0.151 ✓ +2026-06-25 18:10:27,770 | INFO | Domestic animals, pets 0.196 0.000 0.108 ✗ +2026-06-25 18:10:27,770 | INFO | Chirp, tweet 0.117 0.000 0.065 ✗ +2026-06-25 18:10:27,770 | INFO | Dog 0.094 0.000 0.051 ✗ +2026-06-25 18:10:27,770 | INFO | Livestock, farm animals, working animals 0.076 0.000 0.042 ✗ +2026-06-25 18:10:27,770 | INFO | → WINNER: Animal (combined=0.233) +2026-06-25 18:10:27,800 | INFO | +[253.40s] AMBIENT | scene='' +2026-06-25 18:10:27,800 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,804 | INFO | Animal 0.882 0.000 0.485 ✓ +2026-06-25 18:10:27,804 | INFO | Domestic animals, pets 0.807 0.000 0.444 ✓ +2026-06-25 18:10:27,804 | INFO | Dog 0.803 0.000 0.442 ✓ +2026-06-25 18:10:27,804 | INFO | Canidae, dogs, wolves 0.335 0.000 0.184 ✓ +2026-06-25 18:10:27,804 | INFO | Whimper (dog) 0.181 0.000 0.100 ✗ +2026-06-25 18:10:27,804 | INFO | Yip 0.088 0.000 0.049 ✗ +2026-06-25 18:10:27,804 | INFO | → WINNER: Animal (combined=0.485) +2026-06-25 18:10:27,838 | INFO | +[253.60s] AMBIENT | scene='' +2026-06-25 18:10:27,838 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,838 | INFO | Animal 0.576 0.000 0.317 ✓ +2026-06-25 18:10:27,838 | INFO | Domestic animals, pets 0.437 0.000 0.240 ✓ +2026-06-25 18:10:27,840 | INFO | Dog 0.372 0.000 0.205 ✓ +2026-06-25 18:10:27,840 | INFO | Inside, small room 0.075 0.000 0.042 ✗ +2026-06-25 18:10:27,840 | INFO | Whimper (dog) 0.060 0.000 0.033 ✗ +2026-06-25 18:10:27,840 | INFO | Canidae, dogs, wolves 0.045 0.000 0.025 ✗ +2026-06-25 18:10:27,841 | INFO | → WINNER: Animal (combined=0.317) +2026-06-25 18:10:27,871 | INFO | +[255.40s] AMBIENT | scene='' +2026-06-25 18:10:27,871 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,871 | INFO | Animal 0.239 0.000 0.132 ✓ +2026-06-25 18:10:27,871 | INFO | Bird 0.224 0.000 0.123 ✓ +2026-06-25 18:10:27,871 | INFO | Chirp, tweet 0.136 0.000 0.075 ✗ +2026-06-25 18:10:27,871 | INFO | Bird vocalization, bird call, bird song 0.122 0.000 0.067 ✗ +2026-06-25 18:10:27,871 | INFO | Outside, rural or natural 0.095 0.000 0.052 ✗ +2026-06-25 18:10:27,871 | INFO | Environmental noise 0.078 0.000 0.043 ✗ +2026-06-25 18:10:27,871 | INFO | → WINNER: Animal (combined=0.132) +2026-06-25 18:10:27,900 | INFO | +[255.60s] AMBIENT | scene='' +2026-06-25 18:10:27,904 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,904 | INFO | Bird 0.383 0.000 0.211 ✓ +2026-06-25 18:10:27,904 | INFO | Animal 0.353 0.000 0.194 ✓ +2026-06-25 18:10:27,904 | INFO | Chirp, tweet 0.214 0.000 0.118 ✗ +2026-06-25 18:10:27,904 | INFO | Bird vocalization, bird call, bird song 0.181 0.000 0.100 ✗ +2026-06-25 18:10:27,904 | INFO | Outside, rural or natural 0.108 0.000 0.059 ✗ +2026-06-25 18:10:27,904 | INFO | Environmental noise 0.096 0.000 0.053 ✗ +2026-06-25 18:10:27,904 | INFO | → WINNER: Bird (combined=0.211) +2026-06-25 18:10:27,937 | INFO | +[255.80s] AMBIENT | scene='' +2026-06-25 18:10:27,937 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,937 | INFO | Bird 0.287 0.000 0.158 ✓ +2026-06-25 18:10:27,937 | INFO | Animal 0.277 0.000 0.152 ✓ +2026-06-25 18:10:27,937 | INFO | Duck 0.185 0.000 0.102 ✗ +2026-06-25 18:10:27,937 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.051 ✗ +2026-06-25 18:10:27,937 | INFO | Chirp, tweet 0.092 0.000 0.051 ✗ +2026-06-25 18:10:27,937 | INFO | Outside, rural or natural 0.081 0.000 0.044 ✗ +2026-06-25 18:10:27,937 | INFO | → WINNER: Bird (combined=0.158) +2026-06-25 18:10:27,964 | INFO | +[256.00s] AMBIENT | scene='' +2026-06-25 18:10:27,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:27,969 | INFO | Animal 0.218 0.000 0.120 ✓ +2026-06-25 18:10:27,969 | INFO | Bird 0.183 0.000 0.100 ✗ +2026-06-25 18:10:27,969 | INFO | Duck 0.140 0.000 0.077 ✗ +2026-06-25 18:10:27,969 | INFO | Quack 0.064 0.000 0.035 ✗ +2026-06-25 18:10:27,970 | INFO | Fowl 0.060 0.000 0.033 ✗ +2026-06-25 18:10:27,970 | INFO | Bird vocalization, bird call, bird song 0.052 0.000 0.029 ✗ +2026-06-25 18:10:27,971 | INFO | → WINNER: Animal (combined=0.120) +2026-06-25 18:10:28,000 | INFO | +[256.20s] AMBIENT | scene='' +2026-06-25 18:10:28,000 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,004 | INFO | Bird 0.338 0.000 0.186 ✓ +2026-06-25 18:10:28,004 | INFO | Duck 0.266 0.000 0.146 ✓ +2026-06-25 18:10:28,004 | INFO | Animal 0.254 0.000 0.139 ✓ +2026-06-25 18:10:28,005 | INFO | Crow 0.119 0.000 0.066 ✗ +2026-06-25 18:10:28,005 | INFO | Squawk 0.101 0.000 0.055 ✗ +2026-06-25 18:10:28,005 | INFO | Quack 0.084 0.000 0.046 ✗ +2026-06-25 18:10:28,005 | INFO | → WINNER: Bird (combined=0.186) +2026-06-25 18:10:28,036 | INFO | +[256.40s] AMBIENT | scene='' +2026-06-25 18:10:28,036 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,036 | INFO | Crow 0.402 0.000 0.221 ✓ +2026-06-25 18:10:28,037 | INFO | Animal 0.349 0.000 0.192 ✓ +2026-06-25 18:10:28,037 | INFO | Bird 0.265 0.000 0.146 ✓ +2026-06-25 18:10:28,037 | INFO | Caw 0.185 0.000 0.102 ✗ +2026-06-25 18:10:28,038 | INFO | Duck 0.150 0.000 0.083 ✗ +2026-06-25 18:10:28,038 | INFO | Quack 0.081 0.000 0.044 ✗ +2026-06-25 18:10:28,038 | INFO | → WINNER: Crow (combined=0.221) +2026-06-25 18:10:28,062 | INFO | +[256.60s] AMBIENT | scene='' +2026-06-25 18:10:28,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,062 | INFO | Bird 0.341 0.000 0.187 ✓ +2026-06-25 18:10:28,062 | INFO | Duck 0.209 0.000 0.115 ✗ +2026-06-25 18:10:28,062 | INFO | Animal 0.198 0.000 0.109 ✗ +2026-06-25 18:10:28,062 | INFO | Fowl 0.146 0.000 0.080 ✗ +2026-06-25 18:10:28,062 | INFO | Crow 0.140 0.000 0.077 ✗ +2026-06-25 18:10:28,069 | INFO | Goose 0.107 0.000 0.059 ✗ +2026-06-25 18:10:28,069 | INFO | → WINNER: Bird (combined=0.187) +2026-06-25 18:10:28,096 | INFO | +[256.80s] AMBIENT | scene='' +2026-06-25 18:10:28,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,100 | INFO | Goose 0.516 0.000 0.284 ✓ +2026-06-25 18:10:28,100 | INFO | Fowl 0.483 0.000 0.266 ✓ +2026-06-25 18:10:28,100 | INFO | Honk 0.431 0.000 0.237 ✓ +2026-06-25 18:10:28,100 | INFO | Bird 0.379 0.000 0.208 ✓ +2026-06-25 18:10:28,100 | INFO | Duck 0.324 0.000 0.178 ✓ +2026-06-25 18:10:28,100 | INFO | Animal 0.167 0.000 0.092 ✗ +2026-06-25 18:10:28,100 | INFO | → WINNER: Goose (combined=0.284) +2026-06-25 18:10:28,131 | INFO | +[257.00s] AMBIENT | scene='' +2026-06-25 18:10:28,131 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,131 | INFO | Goose 0.353 0.000 0.194 ✓ +2026-06-25 18:10:28,131 | INFO | Bird 0.317 0.000 0.174 ✓ +2026-06-25 18:10:28,132 | INFO | Fowl 0.310 0.000 0.171 ✓ +2026-06-25 18:10:28,132 | INFO | Duck 0.302 0.000 0.166 ✓ +2026-06-25 18:10:28,132 | INFO | Honk 0.282 0.000 0.155 ✓ +2026-06-25 18:10:28,132 | INFO | Animal 0.199 0.000 0.109 ✗ +2026-06-25 18:10:28,132 | INFO | → WINNER: Goose (combined=0.194) +2026-06-25 18:10:28,162 | INFO | +[257.20s] AMBIENT | scene='' +2026-06-25 18:10:28,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,162 | INFO | Bird 0.344 0.000 0.189 ✓ +2026-06-25 18:10:28,163 | INFO | Animal 0.320 0.000 0.176 ✓ +2026-06-25 18:10:28,163 | INFO | Crow 0.226 0.000 0.124 ✓ +2026-06-25 18:10:28,163 | INFO | Domestic animals, pets 0.104 0.000 0.057 ✗ +2026-06-25 18:10:28,163 | INFO | Fowl 0.099 0.000 0.055 ✗ +2026-06-25 18:10:28,164 | INFO | Chicken, rooster 0.096 0.000 0.053 ✗ +2026-06-25 18:10:28,164 | INFO | → WINNER: Bird (combined=0.189) +2026-06-25 18:10:28,190 | INFO | +[257.40s] AMBIENT | scene='' +2026-06-25 18:10:28,190 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,194 | INFO | Animal 0.408 0.000 0.224 ✓ +2026-06-25 18:10:28,194 | INFO | Wild animals 0.292 0.000 0.161 ✓ +2026-06-25 18:10:28,194 | INFO | Roaring cats (lions, tigers) 0.167 0.000 0.092 ✗ +2026-06-25 18:10:28,194 | INFO | Bird 0.082 0.000 0.045 ✗ +2026-06-25 18:10:28,194 | INFO | Outside, rural or natural 0.074 0.000 0.041 ✗ +2026-06-25 18:10:28,196 | INFO | Roar 0.071 0.000 0.039 ✗ +2026-06-25 18:10:28,196 | INFO | → WINNER: Animal (combined=0.224) +2026-06-25 18:10:28,221 | INFO | +[257.60s] AMBIENT | scene='' +2026-06-25 18:10:28,221 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,221 | INFO | Animal 0.055 0.000 0.030 ✗ +2026-06-25 18:10:28,221 | INFO | → no winner +2026-06-25 18:10:28,255 | INFO | +[257.80s] AMBIENT | scene='' +2026-06-25 18:10:28,255 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,255 | INFO | Animal 0.121 0.000 0.067 ✗ +2026-06-25 18:10:28,255 | INFO | Crow 0.073 0.000 0.040 ✗ +2026-06-25 18:10:28,255 | INFO | Caw 0.058 0.000 0.032 ✗ +2026-06-25 18:10:28,255 | INFO | Bird 0.037 0.000 0.021 ✗ +2026-06-25 18:10:28,255 | INFO | → no winner +2026-06-25 18:10:28,289 | INFO | +[258.00s] AMBIENT | scene='' +2026-06-25 18:10:28,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,290 | INFO | Crow 0.178 0.000 0.098 ✗ +2026-06-25 18:10:28,290 | INFO | Animal 0.171 0.000 0.094 ✗ +2026-06-25 18:10:28,290 | INFO | Caw 0.117 0.000 0.064 ✗ +2026-06-25 18:10:28,290 | INFO | Bird 0.090 0.000 0.050 ✗ +2026-06-25 18:10:28,290 | INFO | Fowl 0.070 0.000 0.038 ✗ +2026-06-25 18:10:28,290 | INFO | Domestic animals, pets 0.041 0.000 0.023 ✗ +2026-06-25 18:10:28,290 | INFO | → no winner +2026-06-25 18:10:28,320 | INFO | +[258.20s] AMBIENT | scene='' +2026-06-25 18:10:28,321 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,321 | INFO | Crow 0.726 0.000 0.399 ✓ +2026-06-25 18:10:28,321 | INFO | Caw 0.528 0.000 0.290 ✓ +2026-06-25 18:10:28,322 | INFO | Bird 0.280 0.000 0.154 ✓ +2026-06-25 18:10:28,322 | INFO | Animal 0.225 0.000 0.124 ✓ +2026-06-25 18:10:28,322 | INFO | → WINNER: Crow (combined=0.399) +2026-06-25 18:10:28,350 | INFO | +[258.40s] AMBIENT | scene='' +2026-06-25 18:10:28,350 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,353 | INFO | Crow 0.835 0.000 0.459 ✓ +2026-06-25 18:10:28,353 | INFO | Caw 0.643 0.000 0.354 ✓ +2026-06-25 18:10:28,354 | INFO | Bird 0.281 0.000 0.155 ✓ +2026-06-25 18:10:28,354 | INFO | Animal 0.203 0.000 0.112 ✗ +2026-06-25 18:10:28,354 | INFO | → WINNER: Crow (combined=0.459) +2026-06-25 18:10:28,380 | INFO | +[258.60s] AMBIENT | scene='' +2026-06-25 18:10:28,380 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,385 | INFO | Goose 0.611 0.000 0.336 ✓ +2026-06-25 18:10:28,385 | INFO | Honk 0.565 0.000 0.311 ✓ +2026-06-25 18:10:28,385 | INFO | Fowl 0.476 0.000 0.262 ✓ +2026-06-25 18:10:28,385 | INFO | Duck 0.309 0.000 0.170 ✓ +2026-06-25 18:10:28,386 | INFO | Bird 0.299 0.000 0.164 ✓ +2026-06-25 18:10:28,386 | INFO | Animal 0.141 0.000 0.077 ✗ +2026-06-25 18:10:28,386 | INFO | → WINNER: Goose (combined=0.336) +2026-06-25 18:10:28,412 | INFO | +[258.80s] AMBIENT | scene='' +2026-06-25 18:10:28,412 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,412 | INFO | Fowl 0.518 0.000 0.285 ✓ +2026-06-25 18:10:28,412 | INFO | Goose 0.466 0.000 0.257 ✓ +2026-06-25 18:10:28,412 | INFO | Honk 0.409 0.000 0.225 ✓ +2026-06-25 18:10:28,412 | INFO | Bird 0.283 0.000 0.156 ✓ +2026-06-25 18:10:28,412 | INFO | Duck 0.178 0.000 0.098 ✗ +2026-06-25 18:10:28,412 | INFO | Animal 0.126 0.000 0.069 ✗ +2026-06-25 18:10:28,412 | INFO | → WINNER: Fowl (combined=0.285) +2026-06-25 18:10:28,446 | INFO | +[259.00s] AMBIENT | scene='' +2026-06-25 18:10:28,446 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,446 | INFO | Fowl 0.516 0.000 0.284 ✓ +2026-06-25 18:10:28,446 | INFO | Goose 0.466 0.000 0.256 ✓ +2026-06-25 18:10:28,446 | INFO | Honk 0.389 0.000 0.214 ✓ +2026-06-25 18:10:28,446 | INFO | Bird 0.211 0.000 0.116 ✗ +2026-06-25 18:10:28,446 | INFO | Duck 0.171 0.000 0.094 ✗ +2026-06-25 18:10:28,446 | INFO | Animal 0.156 0.000 0.086 ✗ +2026-06-25 18:10:28,446 | INFO | → WINNER: Fowl (combined=0.284) +2026-06-25 18:10:28,479 | INFO | +[259.20s] AMBIENT | scene='' +2026-06-25 18:10:28,480 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,480 | INFO | Goose 0.540 0.000 0.297 ✓ +2026-06-25 18:10:28,480 | INFO | Duck 0.479 0.000 0.264 ✓ +2026-06-25 18:10:28,480 | INFO | Honk 0.427 0.000 0.235 ✓ +2026-06-25 18:10:28,480 | INFO | Fowl 0.388 0.000 0.213 ✓ +2026-06-25 18:10:28,480 | INFO | Bird 0.357 0.000 0.196 ✓ +2026-06-25 18:10:28,480 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:28,480 | INFO | → WINNER: Goose (combined=0.297) +2026-06-25 18:10:28,510 | INFO | +[259.40s] AMBIENT | scene='' +2026-06-25 18:10:28,510 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,511 | INFO | Goose 0.571 0.000 0.314 ✓ +2026-06-25 18:10:28,511 | INFO | Fowl 0.536 0.000 0.295 ✓ +2026-06-25 18:10:28,511 | INFO | Honk 0.485 0.000 0.267 ✓ +2026-06-25 18:10:28,512 | INFO | Bird 0.178 0.000 0.098 ✗ +2026-06-25 18:10:28,512 | INFO | Duck 0.174 0.000 0.096 ✗ +2026-06-25 18:10:28,512 | INFO | Animal 0.121 0.000 0.067 ✗ +2026-06-25 18:10:28,512 | INFO | → WINNER: Goose (combined=0.314) +2026-06-25 18:10:28,539 | INFO | +[259.60s] AMBIENT | scene='' +2026-06-25 18:10:28,539 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,539 | INFO | Duck 0.382 0.000 0.210 ✓ +2026-06-25 18:10:28,539 | INFO | Goose 0.326 0.000 0.179 ✓ +2026-06-25 18:10:28,539 | INFO | Fowl 0.316 0.000 0.174 ✓ +2026-06-25 18:10:28,539 | INFO | Honk 0.271 0.000 0.149 ✓ +2026-06-25 18:10:28,539 | INFO | Quack 0.196 0.000 0.108 ✗ +2026-06-25 18:10:28,539 | INFO | Animal 0.169 0.000 0.093 ✗ +2026-06-25 18:10:28,539 | INFO | → WINNER: Duck (combined=0.210) +2026-06-25 18:10:28,571 | INFO | +[259.80s] AMBIENT | scene='' +2026-06-25 18:10:28,571 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,571 | INFO | Duck 0.425 0.000 0.234 ✓ +2026-06-25 18:10:28,571 | INFO | Goose 0.395 0.000 0.217 ✓ +2026-06-25 18:10:28,575 | INFO | Honk 0.311 0.000 0.171 ✓ +2026-06-25 18:10:28,575 | INFO | Fowl 0.306 0.000 0.168 ✓ +2026-06-25 18:10:28,575 | INFO | Bird 0.255 0.000 0.140 ✓ +2026-06-25 18:10:28,575 | INFO | Animal 0.235 0.000 0.129 ✓ +2026-06-25 18:10:28,575 | INFO | → WINNER: Duck (combined=0.234) +2026-06-25 18:10:28,604 | INFO | +[260.00s] AMBIENT | scene='' +2026-06-25 18:10:28,604 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,604 | INFO | Goose 0.330 0.000 0.182 ✓ +2026-06-25 18:10:28,604 | INFO | Fowl 0.322 0.000 0.177 ✓ +2026-06-25 18:10:28,604 | INFO | Duck 0.318 0.000 0.175 ✓ +2026-06-25 18:10:28,604 | INFO | Honk 0.294 0.000 0.162 ✓ +2026-06-25 18:10:28,604 | INFO | Animal 0.159 0.000 0.088 ✗ +2026-06-25 18:10:28,604 | INFO | Quack 0.153 0.000 0.084 ✗ +2026-06-25 18:10:28,604 | INFO | → WINNER: Goose (combined=0.182) +2026-06-25 18:10:28,631 | INFO | +[260.20s] AMBIENT | scene='' +2026-06-25 18:10:28,636 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,636 | INFO | Duck 0.484 0.000 0.266 ✓ +2026-06-25 18:10:28,636 | INFO | Animal 0.278 0.000 0.153 ✓ +2026-06-25 18:10:28,637 | INFO | Quack 0.274 0.000 0.151 ✓ +2026-06-25 18:10:28,637 | INFO | Fowl 0.190 0.000 0.104 ✗ +2026-06-25 18:10:28,637 | INFO | Goose 0.182 0.000 0.100 ✗ +2026-06-25 18:10:28,637 | INFO | Honk 0.158 0.000 0.087 ✗ +2026-06-25 18:10:28,637 | INFO | → WINNER: Duck (combined=0.266) +2026-06-25 18:10:28,665 | INFO | +[260.40s] AMBIENT | scene='' +2026-06-25 18:10:28,670 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,672 | INFO | Animal 0.443 0.000 0.244 ✓ +2026-06-25 18:10:28,672 | INFO | Dog 0.294 0.000 0.162 ✓ +2026-06-25 18:10:28,672 | INFO | Domestic animals, pets 0.285 0.000 0.157 ✓ +2026-06-25 18:10:28,672 | INFO | Duck 0.217 0.000 0.119 ✗ +2026-06-25 18:10:28,672 | INFO | Goose 0.185 0.000 0.102 ✗ +2026-06-25 18:10:28,672 | INFO | Honk 0.156 0.000 0.086 ✗ +2026-06-25 18:10:28,672 | INFO | → WINNER: Animal (combined=0.244) +2026-06-25 18:10:28,704 | INFO | +[260.60s] AMBIENT | scene='' +2026-06-25 18:10:28,705 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,705 | INFO | Animal 0.340 0.000 0.187 ✓ +2026-06-25 18:10:28,705 | INFO | Bird 0.204 0.000 0.112 ✗ +2026-06-25 18:10:28,705 | INFO | Fowl 0.166 0.000 0.091 ✗ +2026-06-25 18:10:28,706 | INFO | Domestic animals, pets 0.134 0.000 0.074 ✗ +2026-06-25 18:10:28,706 | INFO | Duck 0.109 0.000 0.060 ✗ +2026-06-25 18:10:28,706 | INFO | Dog 0.096 0.000 0.053 ✗ +2026-06-25 18:10:28,706 | INFO | → WINNER: Animal (combined=0.187) +2026-06-25 18:10:28,736 | INFO | +[260.80s] AMBIENT | scene='' +2026-06-25 18:10:28,740 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,740 | INFO | Fowl 0.340 0.000 0.187 ✓ +2026-06-25 18:10:28,740 | INFO | Bird 0.290 0.000 0.160 ✓ +2026-06-25 18:10:28,740 | INFO | Goose 0.242 0.000 0.133 ✓ +2026-06-25 18:10:28,740 | INFO | Animal 0.202 0.000 0.111 ✗ +2026-06-25 18:10:28,740 | INFO | Honk 0.184 0.000 0.101 ✗ +2026-06-25 18:10:28,740 | INFO | Duck 0.175 0.000 0.097 ✗ +2026-06-25 18:10:28,740 | INFO | → WINNER: Fowl (combined=0.187) +2026-06-25 18:10:28,771 | INFO | +[261.00s] AMBIENT | scene='' +2026-06-25 18:10:28,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,771 | INFO | Bird 0.393 0.000 0.216 ✓ +2026-06-25 18:10:28,771 | INFO | Crow 0.388 0.000 0.213 ✓ +2026-06-25 18:10:28,771 | INFO | Animal 0.211 0.000 0.116 ✗ +2026-06-25 18:10:28,771 | INFO | Caw 0.194 0.000 0.106 ✗ +2026-06-25 18:10:28,771 | INFO | Fowl 0.141 0.000 0.077 ✗ +2026-06-25 18:10:28,771 | INFO | Bird vocalization, bird call, bird song 0.111 0.000 0.061 ✗ +2026-06-25 18:10:28,771 | INFO | → WINNER: Bird (combined=0.216) +2026-06-25 18:10:28,804 | INFO | +[261.20s] AMBIENT | scene='' +2026-06-25 18:10:28,804 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,804 | INFO | Crow 0.691 0.000 0.380 ✓ +2026-06-25 18:10:28,804 | INFO | Caw 0.469 0.000 0.258 ✓ +2026-06-25 18:10:28,804 | INFO | Bird 0.419 0.000 0.231 ✓ +2026-06-25 18:10:28,804 | INFO | Animal 0.231 0.000 0.127 ✓ +2026-06-25 18:10:28,804 | INFO | Outside, rural or natural 0.068 0.000 0.037 ✗ +2026-06-25 18:10:28,804 | INFO | Bird vocalization, bird call, bird song 0.062 0.000 0.034 ✗ +2026-06-25 18:10:28,804 | INFO | → WINNER: Crow (combined=0.380) +2026-06-25 18:10:28,838 | INFO | +[261.40s] AMBIENT | scene='' +2026-06-25 18:10:28,839 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,839 | INFO | Bird 0.329 0.000 0.181 ✓ +2026-06-25 18:10:28,839 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:28,839 | INFO | Crow 0.211 0.000 0.116 ✗ +2026-06-25 18:10:28,840 | INFO | Bird vocalization, bird call, bird song 0.158 0.000 0.087 ✗ +2026-06-25 18:10:28,840 | INFO | Chirp, tweet 0.152 0.000 0.084 ✗ +2026-06-25 18:10:28,840 | INFO | Caw 0.102 0.000 0.056 ✗ +2026-06-25 18:10:28,840 | INFO | → WINNER: Bird (combined=0.181) +2026-06-25 18:10:28,869 | INFO | +[261.60s] AMBIENT | scene='' +2026-06-25 18:10:28,871 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,872 | INFO | Crow 0.572 0.000 0.315 ✓ +2026-06-25 18:10:28,872 | INFO | Bird 0.383 0.000 0.211 ✓ +2026-06-25 18:10:28,872 | INFO | Caw 0.323 0.000 0.178 ✓ +2026-06-25 18:10:28,872 | INFO | Animal 0.279 0.000 0.153 ✓ +2026-06-25 18:10:28,872 | INFO | Outside, rural or natural 0.087 0.000 0.048 ✗ +2026-06-25 18:10:28,872 | INFO | Bird vocalization, bird call, bird song 0.071 0.000 0.039 ✗ +2026-06-25 18:10:28,872 | INFO | → WINNER: Crow (combined=0.315) +2026-06-25 18:10:28,905 | INFO | +[261.80s] AMBIENT | scene='' +2026-06-25 18:10:28,905 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,905 | INFO | Crow 0.439 0.000 0.241 ✓ +2026-06-25 18:10:28,905 | INFO | Animal 0.304 0.000 0.167 ✓ +2026-06-25 18:10:28,905 | INFO | Bird 0.302 0.000 0.166 ✓ +2026-06-25 18:10:28,905 | INFO | Caw 0.233 0.000 0.128 ✓ +2026-06-25 18:10:28,905 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.052 ✗ +2026-06-25 18:10:28,905 | INFO | Chirp, tweet 0.077 0.000 0.042 ✗ +2026-06-25 18:10:28,905 | INFO | → WINNER: Crow (combined=0.241) +2026-06-25 18:10:28,938 | INFO | +[262.00s] AMBIENT | scene='' +2026-06-25 18:10:28,938 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,940 | INFO | Animal 0.398 0.000 0.219 ✓ +2026-06-25 18:10:28,940 | INFO | Bird 0.210 0.000 0.116 ✗ +2026-06-25 18:10:28,940 | INFO | Wild animals 0.133 0.000 0.073 ✗ +2026-06-25 18:10:28,940 | INFO | Chirp, tweet 0.103 0.000 0.057 ✗ +2026-06-25 18:10:28,940 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.049 ✗ +2026-06-25 18:10:28,940 | INFO | Outside, rural or natural 0.085 0.000 0.046 ✗ +2026-06-25 18:10:28,940 | INFO | → WINNER: Animal (combined=0.219) +2026-06-25 18:10:28,974 | INFO | +[262.20s] AMBIENT | scene='' +2026-06-25 18:10:28,975 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:28,975 | INFO | Bird 0.414 0.000 0.228 ✓ +2026-06-25 18:10:28,975 | INFO | Crow 0.241 0.000 0.133 ✓ +2026-06-25 18:10:28,976 | INFO | Animal 0.203 0.000 0.112 ✗ +2026-06-25 18:10:28,976 | INFO | Bird vocalization, bird call, bird song 0.170 0.000 0.094 ✗ +2026-06-25 18:10:28,976 | INFO | Chirp, tweet 0.162 0.000 0.089 ✗ +2026-06-25 18:10:28,976 | INFO | Fowl 0.160 0.000 0.088 ✗ +2026-06-25 18:10:28,976 | INFO | → WINNER: Bird (combined=0.228) +2026-06-25 18:10:29,006 | INFO | +[262.40s] AMBIENT | scene='' +2026-06-25 18:10:29,006 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,007 | INFO | Bird 0.382 0.000 0.210 ✓ +2026-06-25 18:10:29,007 | INFO | Crow 0.267 0.000 0.147 ✓ +2026-06-25 18:10:29,007 | INFO | Fowl 0.214 0.000 0.118 ✗ +2026-06-25 18:10:29,007 | INFO | Animal 0.199 0.000 0.109 ✗ +2026-06-25 18:10:29,008 | INFO | Bird vocalization, bird call, bird song 0.137 0.000 0.075 ✗ +2026-06-25 18:10:29,008 | INFO | Goose 0.122 0.000 0.067 ✗ +2026-06-25 18:10:29,008 | INFO | → WINNER: Bird (combined=0.210) +2026-06-25 18:10:29,037 | INFO | +[262.60s] AMBIENT | scene='' +2026-06-25 18:10:29,037 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,040 | INFO | Crow 0.455 0.000 0.250 ✓ +2026-06-25 18:10:29,040 | INFO | Caw 0.257 0.000 0.141 ✓ +2026-06-25 18:10:29,040 | INFO | Bird 0.251 0.000 0.138 ✓ +2026-06-25 18:10:29,040 | INFO | Animal 0.203 0.000 0.111 ✗ +2026-06-25 18:10:29,040 | INFO | Fowl 0.140 0.000 0.077 ✗ +2026-06-25 18:10:29,040 | INFO | Goose 0.112 0.000 0.061 ✗ +2026-06-25 18:10:29,040 | INFO | → WINNER: Crow (combined=0.250) +2026-06-25 18:10:29,071 | INFO | +[262.80s] AMBIENT | scene='' +2026-06-25 18:10:29,072 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,072 | INFO | Crow 0.313 0.000 0.172 ✓ +2026-06-25 18:10:29,072 | INFO | Bird 0.208 0.000 0.114 ✗ +2026-06-25 18:10:29,073 | INFO | Fowl 0.166 0.000 0.091 ✗ +2026-06-25 18:10:29,073 | INFO | Animal 0.163 0.000 0.089 ✗ +2026-06-25 18:10:29,073 | INFO | Caw 0.162 0.000 0.089 ✗ +2026-06-25 18:10:29,073 | INFO | Goose 0.098 0.000 0.054 ✗ +2026-06-25 18:10:29,073 | INFO | → WINNER: Crow (combined=0.172) +2026-06-25 18:10:29,103 | INFO | +[263.00s] AMBIENT | scene='' +2026-06-25 18:10:29,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,104 | INFO | Animal 0.118 0.000 0.065 ✗ +2026-06-25 18:10:29,105 | INFO | Fowl 0.094 0.000 0.052 ✗ +2026-06-25 18:10:29,105 | INFO | Bird 0.081 0.000 0.044 ✗ +2026-06-25 18:10:29,105 | INFO | Duck 0.073 0.000 0.040 ✗ +2026-06-25 18:10:29,105 | INFO | Quack 0.055 0.000 0.030 ✗ +2026-06-25 18:10:29,106 | INFO | → no winner +2026-06-25 18:10:29,136 | INFO | +[263.20s] AMBIENT | scene='' +2026-06-25 18:10:29,136 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,137 | INFO | Frog 0.144 0.000 0.079 ✗ +2026-06-25 18:10:29,137 | INFO | Animal 0.109 0.000 0.060 ✗ +2026-06-25 18:10:29,137 | INFO | → no winner +2026-06-25 18:10:29,163 | INFO | +[263.40s] AMBIENT | scene='' +2026-06-25 18:10:29,163 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,163 | INFO | Frog 0.118 0.000 0.065 ✗ +2026-06-25 18:10:29,163 | INFO | Animal 0.072 0.000 0.039 ✗ +2026-06-25 18:10:29,163 | INFO | → no winner +2026-06-25 18:10:29,198 | INFO | +[263.60s] AMBIENT | scene='' +2026-06-25 18:10:29,198 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,199 | INFO | Frog 0.210 0.000 0.116 ✗ +2026-06-25 18:10:29,199 | INFO | Animal 0.171 0.000 0.094 ✗ +2026-06-25 18:10:29,199 | INFO | Bird 0.040 0.000 0.022 ✗ +2026-06-25 18:10:29,199 | INFO | → no winner +2026-06-25 18:10:29,229 | INFO | +[263.80s] AMBIENT | scene='' +2026-06-25 18:10:29,229 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,230 | INFO | Frog 0.241 0.000 0.132 ✓ +2026-06-25 18:10:29,230 | INFO | Animal 0.218 0.000 0.120 ✗ +2026-06-25 18:10:29,230 | INFO | Bird 0.157 0.000 0.086 ✗ +2026-06-25 18:10:29,230 | INFO | Chirp, tweet 0.107 0.000 0.059 ✗ +2026-06-25 18:10:29,230 | INFO | Duck 0.091 0.000 0.050 ✗ +2026-06-25 18:10:29,230 | INFO | Bird vocalization, bird call, bird song 0.074 0.000 0.041 ✗ +2026-06-25 18:10:29,230 | INFO | → WINNER: Frog (combined=0.132) +2026-06-25 18:10:29,260 | INFO | +[264.00s] AMBIENT | scene='' +2026-06-25 18:10:29,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,261 | INFO | Chirp, tweet 0.268 0.000 0.147 ✓ +2026-06-25 18:10:29,261 | INFO | Bird 0.258 0.000 0.142 ✓ +2026-06-25 18:10:29,262 | INFO | Animal 0.233 0.000 0.128 ✓ +2026-06-25 18:10:29,262 | INFO | Bird vocalization, bird call, bird song 0.184 0.000 0.101 ✗ +2026-06-25 18:10:29,262 | INFO | Outside, rural or natural 0.101 0.000 0.055 ✗ +2026-06-25 18:10:29,262 | INFO | Environmental noise 0.068 0.000 0.037 ✗ +2026-06-25 18:10:29,262 | INFO | → WINNER: Chirp, tweet (combined=0.147) +2026-06-25 18:10:29,290 | INFO | +[264.20s] AMBIENT | scene='' +2026-06-25 18:10:29,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,290 | INFO | Animal 0.269 0.000 0.148 ✓ +2026-06-25 18:10:29,290 | INFO | Bird 0.245 0.000 0.135 ✓ +2026-06-25 18:10:29,290 | INFO | Chirp, tweet 0.207 0.000 0.114 ✗ +2026-06-25 18:10:29,290 | INFO | Bird vocalization, bird call, bird song 0.172 0.000 0.095 ✗ +2026-06-25 18:10:29,290 | INFO | Environmental noise 0.163 0.000 0.090 ✗ +2026-06-25 18:10:29,295 | INFO | Outside, rural or natural 0.099 0.000 0.054 ✗ +2026-06-25 18:10:29,295 | INFO | → WINNER: Animal (combined=0.148) +2026-06-25 18:10:29,320 | INFO | +[264.40s] AMBIENT | scene='' +2026-06-25 18:10:29,320 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,320 | INFO | Chirp, tweet 0.406 0.000 0.223 ✓ +2026-06-25 18:10:29,320 | INFO | Bird 0.393 0.000 0.216 ✓ +2026-06-25 18:10:29,320 | INFO | Bird vocalization, bird call, bird song 0.296 0.000 0.163 ✓ +2026-06-25 18:10:29,320 | INFO | Animal 0.242 0.000 0.133 ✓ +2026-06-25 18:10:29,320 | INFO | Outside, rural or natural 0.104 0.000 0.057 ✗ +2026-06-25 18:10:29,320 | INFO | Environmental noise 0.080 0.000 0.044 ✗ +2026-06-25 18:10:29,320 | INFO | → WINNER: Chirp, tweet (combined=0.223) +2026-06-25 18:10:29,356 | INFO | +[264.60s] AMBIENT | scene='' +2026-06-25 18:10:29,356 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,357 | INFO | Chirp, tweet 0.415 0.000 0.228 ✓ +2026-06-25 18:10:29,357 | INFO | Bird 0.398 0.000 0.219 ✓ +2026-06-25 18:10:29,357 | INFO | Bird vocalization, bird call, bird song 0.302 0.000 0.166 ✓ +2026-06-25 18:10:29,357 | INFO | Animal 0.165 0.000 0.091 ✗ +2026-06-25 18:10:29,358 | INFO | Outside, rural or natural 0.090 0.000 0.050 ✗ +2026-06-25 18:10:29,358 | INFO | Environmental noise 0.063 0.000 0.035 ✗ +2026-06-25 18:10:29,358 | INFO | → WINNER: Chirp, tweet (combined=0.228) +2026-06-25 18:10:29,387 | INFO | +[264.80s] AMBIENT | scene='' +2026-06-25 18:10:29,389 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,390 | INFO | Bird 0.283 0.000 0.156 ✓ +2026-06-25 18:10:29,390 | INFO | Chirp, tweet 0.226 0.000 0.124 ✓ +2026-06-25 18:10:29,390 | INFO | Bird vocalization, bird call, bird song 0.189 0.000 0.104 ✗ +2026-06-25 18:10:29,390 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:10:29,390 | INFO | Environmental noise 0.082 0.000 0.045 ✗ +2026-06-25 18:10:29,390 | INFO | Outside, rural or natural 0.077 0.000 0.043 ✗ +2026-06-25 18:10:29,390 | INFO | → WINNER: Bird (combined=0.156) +2026-06-25 18:10:29,422 | INFO | +[265.00s] AMBIENT | scene='' +2026-06-25 18:10:29,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,422 | INFO | Bird 0.147 0.000 0.081 ✗ +2026-06-25 18:10:29,422 | INFO | Chirp, tweet 0.097 0.000 0.053 ✗ +2026-06-25 18:10:29,422 | INFO | Animal 0.077 0.000 0.042 ✗ +2026-06-25 18:10:29,422 | INFO | Bird vocalization, bird call, bird song 0.069 0.000 0.038 ✗ +2026-06-25 18:10:29,422 | INFO | Cricket 0.045 0.000 0.025 ✗ +2026-06-25 18:10:29,422 | INFO | → no winner +2026-06-25 18:10:29,454 | INFO | +[265.20s] AMBIENT | scene='' +2026-06-25 18:10:29,454 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,454 | INFO | Animal 0.129 0.000 0.071 ✗ +2026-06-25 18:10:29,454 | INFO | Bird 0.109 0.000 0.060 ✗ +2026-06-25 18:10:29,454 | INFO | Rodents, rats, mice 0.076 0.000 0.042 ✗ +2026-06-25 18:10:29,454 | INFO | Squeal 0.059 0.000 0.033 ✗ +2026-06-25 18:10:29,454 | INFO | Bird vocalization, bird call, bird song 0.045 0.000 0.025 ✗ +2026-06-25 18:10:29,454 | INFO | → no winner +2026-06-25 18:10:29,487 | INFO | +[265.40s] AMBIENT | scene='' +2026-06-25 18:10:29,488 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,488 | INFO | Animal 0.116 0.000 0.064 ✗ +2026-06-25 18:10:29,488 | INFO | Rodents, rats, mice 0.110 0.000 0.060 ✗ +2026-06-25 18:10:29,488 | INFO | Bird 0.085 0.000 0.047 ✗ +2026-06-25 18:10:29,488 | INFO | Bird vocalization, bird call, bird song 0.039 0.000 0.021 ✗ +2026-06-25 18:10:29,490 | INFO | → no winner +2026-06-25 18:10:29,520 | INFO | +[265.60s] AMBIENT | scene='' +2026-06-25 18:10:29,521 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,522 | INFO | Squeal 0.094 0.000 0.052 ✗ +2026-06-25 18:10:29,522 | INFO | Animal 0.092 0.000 0.050 ✗ +2026-06-25 18:10:29,522 | INFO | Bird 0.038 0.000 0.021 ✗ +2026-06-25 18:10:29,523 | INFO | → no winner +2026-06-25 18:10:29,554 | INFO | +[265.80s] AMBIENT | scene='' +2026-06-25 18:10:29,555 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,555 | INFO | Bird 0.190 0.000 0.104 ✗ +2026-06-25 18:10:29,556 | INFO | Outside, rural or natural 0.137 0.000 0.076 ✗ +2026-06-25 18:10:29,556 | INFO | Squawk 0.118 0.000 0.065 ✗ +2026-06-25 18:10:29,556 | INFO | Animal 0.074 0.000 0.041 ✗ +2026-06-25 18:10:29,557 | INFO | Rodents, rats, mice 0.059 0.000 0.033 ✗ +2026-06-25 18:10:29,557 | INFO | Bird vocalization, bird call, bird song 0.036 0.000 0.020 ✗ +2026-06-25 18:10:29,558 | INFO | → no winner +2026-06-25 18:10:29,589 | INFO | +[266.00s] AMBIENT | scene='' +2026-06-25 18:10:29,589 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,590 | INFO | Squawk 0.272 0.000 0.149 ✓ +2026-06-25 18:10:29,590 | INFO | Squeal 0.208 0.000 0.115 ✗ +2026-06-25 18:10:29,590 | INFO | Animal 0.165 0.000 0.091 ✗ +2026-06-25 18:10:29,590 | INFO | Outside, rural or natural 0.096 0.000 0.053 ✗ +2026-06-25 18:10:29,590 | INFO | Bird 0.086 0.000 0.048 ✗ +2026-06-25 18:10:29,591 | INFO | → WINNER: Squawk (combined=0.149) +2026-06-25 18:10:29,621 | INFO | +[266.20s] AMBIENT | scene='' +2026-06-25 18:10:29,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,621 | INFO | Animal 0.379 0.000 0.208 ✓ +2026-06-25 18:10:29,622 | INFO | Rodents, rats, mice 0.065 0.000 0.036 ✗ +2026-06-25 18:10:29,622 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:10:29,622 | INFO | Bird 0.061 0.000 0.033 ✗ +2026-06-25 18:10:29,623 | INFO | Wild animals 0.052 0.000 0.029 ✗ +2026-06-25 18:10:29,623 | INFO | → WINNER: Animal (combined=0.208) +2026-06-25 18:10:29,654 | INFO | +[266.40s] AMBIENT | scene='' +2026-06-25 18:10:29,654 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,654 | INFO | Bird 0.325 0.000 0.179 ✓ +2026-06-25 18:10:29,655 | INFO | Chirp, tweet 0.186 0.000 0.102 ✗ +2026-06-25 18:10:29,655 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.085 ✗ +2026-06-25 18:10:29,655 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:10:29,656 | INFO | → WINNER: Bird (combined=0.179) +2026-06-25 18:10:29,685 | INFO | +[266.60s] AMBIENT | scene='' +2026-06-25 18:10:29,685 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,686 | INFO | Bird 0.357 0.000 0.197 ✓ +2026-06-25 18:10:29,686 | INFO | Chirp, tweet 0.237 0.000 0.130 ✓ +2026-06-25 18:10:29,687 | INFO | Bird vocalization, bird call, bird song 0.216 0.000 0.119 ✗ +2026-06-25 18:10:29,687 | INFO | Fowl 0.149 0.000 0.082 ✗ +2026-06-25 18:10:29,687 | INFO | Animal 0.145 0.000 0.080 ✗ +2026-06-25 18:10:29,688 | INFO | Environmental noise 0.119 0.000 0.066 ✗ +2026-06-25 18:10:29,688 | INFO | → WINNER: Bird (combined=0.197) +2026-06-25 18:10:29,712 | INFO | +[266.80s] AMBIENT | scene='' +2026-06-25 18:10:29,712 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,712 | INFO | Bird 0.329 0.000 0.181 ✓ +2026-06-25 18:10:29,719 | INFO | Chicken, rooster 0.270 0.000 0.149 ✓ +2026-06-25 18:10:29,719 | INFO | Fowl 0.241 0.000 0.133 ✓ +2026-06-25 18:10:29,719 | INFO | Cluck 0.180 0.000 0.099 ✗ +2026-06-25 18:10:29,721 | INFO | Chirp, tweet 0.151 0.000 0.083 ✗ +2026-06-25 18:10:29,721 | INFO | Bird vocalization, bird call, bird song 0.143 0.000 0.079 ✗ +2026-06-25 18:10:29,722 | INFO | → WINNER: Bird (combined=0.181) +2026-06-25 18:10:29,750 | INFO | +[267.00s] AMBIENT | scene='' +2026-06-25 18:10:29,750 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,750 | INFO | Bird 0.339 0.000 0.187 ✓ +2026-06-25 18:10:29,750 | INFO | Bird vocalization, bird call, bird song 0.226 0.000 0.124 ✓ +2026-06-25 18:10:29,753 | INFO | Chirp, tweet 0.225 0.000 0.124 ✓ +2026-06-25 18:10:29,753 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:29,753 | INFO | Environmental noise 0.158 0.000 0.087 ✗ +2026-06-25 18:10:29,754 | INFO | Fowl 0.115 0.000 0.063 ✗ +2026-06-25 18:10:29,754 | INFO | → WINNER: Bird (combined=0.187) +2026-06-25 18:10:29,780 | INFO | +[267.20s] AMBIENT | scene='' +2026-06-25 18:10:29,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,780 | INFO | Bird 0.343 0.000 0.189 ✓ +2026-06-25 18:10:29,780 | INFO | Chirp, tweet 0.320 0.000 0.176 ✓ +2026-06-25 18:10:29,785 | INFO | Bird vocalization, bird call, bird song 0.306 0.000 0.168 ✓ +2026-06-25 18:10:29,785 | INFO | Environmental noise 0.225 0.000 0.124 ✓ +2026-06-25 18:10:29,785 | INFO | Animal 0.114 0.000 0.062 ✗ +2026-06-25 18:10:29,785 | INFO | Outside, rural or natural 0.065 0.000 0.036 ✗ +2026-06-25 18:10:29,785 | INFO | → WINNER: Bird (combined=0.189) +2026-06-25 18:10:29,813 | INFO | +[267.40s] AMBIENT | scene='' +2026-06-25 18:10:29,813 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,813 | INFO | Bird 0.355 0.000 0.195 ✓ +2026-06-25 18:10:29,813 | INFO | Chirp, tweet 0.324 0.000 0.178 ✓ +2026-06-25 18:10:29,813 | INFO | Bird vocalization, bird call, bird song 0.260 0.000 0.143 ✓ +2026-06-25 18:10:29,813 | INFO | Animal 0.125 0.000 0.069 ✗ +2026-06-25 18:10:29,813 | INFO | Environmental noise 0.106 0.000 0.058 ✗ +2026-06-25 18:10:29,813 | INFO | Outside, rural or natural 0.079 0.000 0.043 ✗ +2026-06-25 18:10:29,813 | INFO | → WINNER: Bird (combined=0.195) +2026-06-25 18:10:29,845 | INFO | +[267.60s] AMBIENT | scene='' +2026-06-25 18:10:29,845 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,845 | INFO | Bird 0.228 0.000 0.125 ✓ +2026-06-25 18:10:29,845 | INFO | Chirp, tweet 0.199 0.000 0.109 ✗ +2026-06-25 18:10:29,845 | INFO | Insect 0.148 0.000 0.082 ✗ +2026-06-25 18:10:29,845 | INFO | Bird vocalization, bird call, bird song 0.147 0.000 0.081 ✗ +2026-06-25 18:10:29,845 | INFO | Cricket 0.143 0.000 0.079 ✗ +2026-06-25 18:10:29,845 | INFO | Animal 0.085 0.000 0.047 ✗ +2026-06-25 18:10:29,845 | INFO | → WINNER: Bird (combined=0.125) +2026-06-25 18:10:29,879 | INFO | +[267.80s] AMBIENT | scene='' +2026-06-25 18:10:29,879 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,880 | INFO | Cricket 0.383 0.000 0.211 ✓ +2026-06-25 18:10:29,880 | INFO | Insect 0.306 0.000 0.169 ✓ +2026-06-25 18:10:29,880 | INFO | Bird 0.161 0.000 0.089 ✗ +2026-06-25 18:10:29,880 | INFO | Chirp, tweet 0.120 0.000 0.066 ✗ +2026-06-25 18:10:29,880 | INFO | Bird vocalization, bird call, bird song 0.099 0.000 0.054 ✗ +2026-06-25 18:10:29,880 | INFO | Animal 0.069 0.000 0.038 ✗ +2026-06-25 18:10:29,880 | INFO | → WINNER: Cricket (combined=0.211) +2026-06-25 18:10:29,910 | INFO | +[268.00s] AMBIENT | scene='' +2026-06-25 18:10:29,910 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,911 | INFO | Bird 0.242 0.000 0.133 ✓ +2026-06-25 18:10:29,911 | INFO | Animal 0.238 0.000 0.131 ✓ +2026-06-25 18:10:29,912 | INFO | Chirp, tweet 0.123 0.000 0.068 ✗ +2026-06-25 18:10:29,912 | INFO | Mouse 0.112 0.000 0.062 ✗ +2026-06-25 18:10:29,912 | INFO | Rodents, rats, mice 0.110 0.000 0.060 ✗ +2026-06-25 18:10:29,912 | INFO | Bird vocalization, bird call, bird song 0.103 0.000 0.057 ✗ +2026-06-25 18:10:29,912 | INFO | → WINNER: Bird (combined=0.133) +2026-06-25 18:10:29,940 | INFO | +[268.20s] AMBIENT | scene='' +2026-06-25 18:10:29,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,940 | INFO | Rodents, rats, mice 0.238 0.000 0.131 ✓ +2026-06-25 18:10:29,940 | INFO | Bird 0.208 0.000 0.115 ✗ +2026-06-25 18:10:29,940 | INFO | Chirp, tweet 0.144 0.000 0.079 ✗ +2026-06-25 18:10:29,944 | INFO | Patter 0.115 0.000 0.063 ✗ +2026-06-25 18:10:29,944 | INFO | Bird vocalization, bird call, bird song 0.114 0.000 0.063 ✗ +2026-06-25 18:10:29,944 | INFO | Animal 0.090 0.000 0.050 ✗ +2026-06-25 18:10:29,945 | INFO | → WINNER: Rodents, rats, mice (combined=0.131) +2026-06-25 18:10:29,973 | INFO | +[268.40s] AMBIENT | scene='' +2026-06-25 18:10:29,973 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:29,973 | INFO | Bird 0.334 0.000 0.184 ✓ +2026-06-25 18:10:29,973 | INFO | Chirp, tweet 0.286 0.000 0.157 ✓ +2026-06-25 18:10:29,973 | INFO | Animal 0.223 0.000 0.122 ✓ +2026-06-25 18:10:29,973 | INFO | Bird vocalization, bird call, bird song 0.221 0.000 0.121 ✓ +2026-06-25 18:10:29,973 | INFO | Outside, rural or natural 0.192 0.000 0.105 ✗ +2026-06-25 18:10:29,973 | INFO | Rodents, rats, mice 0.072 0.000 0.040 ✗ +2026-06-25 18:10:29,973 | INFO | → WINNER: Bird (combined=0.184) +2026-06-25 18:10:30,010 | INFO | +[268.60s] AMBIENT | scene='' +2026-06-25 18:10:30,010 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,010 | INFO | Bird 0.273 0.000 0.150 ✓ +2026-06-25 18:10:30,010 | INFO | Animal 0.182 0.000 0.100 ✗ +2026-06-25 18:10:30,010 | INFO | Outside, rural or natural 0.161 0.000 0.088 ✗ +2026-06-25 18:10:30,011 | INFO | Chirp, tweet 0.143 0.000 0.079 ✗ +2026-06-25 18:10:30,011 | INFO | Squawk 0.123 0.000 0.068 ✗ +2026-06-25 18:10:30,012 | INFO | Bird vocalization, bird call, bird song 0.098 0.000 0.054 ✗ +2026-06-25 18:10:30,012 | INFO | → WINNER: Bird (combined=0.150) +2026-06-25 18:10:30,040 | INFO | +[268.80s] AMBIENT | scene='' +2026-06-25 18:10:30,040 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,040 | INFO | Bird 0.358 0.000 0.197 ✓ +2026-06-25 18:10:30,040 | INFO | Chirp, tweet 0.219 0.000 0.120 ✓ +2026-06-25 18:10:30,040 | INFO | Bird vocalization, bird call, bird song 0.154 0.000 0.085 ✗ +2026-06-25 18:10:30,045 | INFO | Animal 0.148 0.000 0.082 ✗ +2026-06-25 18:10:30,045 | INFO | Outside, rural or natural 0.141 0.000 0.077 ✗ +2026-06-25 18:10:30,045 | INFO | Squawk 0.103 0.000 0.056 ✗ +2026-06-25 18:10:30,045 | INFO | → WINNER: Bird (combined=0.197) +2026-06-25 18:10:30,076 | INFO | +[269.00s] AMBIENT | scene='' +2026-06-25 18:10:30,077 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,077 | INFO | Bird 0.466 0.000 0.256 ✓ +2026-06-25 18:10:30,077 | INFO | Chirp, tweet 0.381 0.000 0.210 ✓ +2026-06-25 18:10:30,077 | INFO | Bird vocalization, bird call, bird song 0.311 0.000 0.171 ✓ +2026-06-25 18:10:30,077 | INFO | Animal 0.165 0.000 0.091 ✗ +2026-06-25 18:10:30,077 | INFO | Outside, rural or natural 0.142 0.000 0.078 ✗ +2026-06-25 18:10:30,077 | INFO | Environmental noise 0.063 0.000 0.035 ✗ +2026-06-25 18:10:30,079 | INFO | → WINNER: Bird (combined=0.256) +2026-06-25 18:10:30,105 | INFO | +[269.20s] AMBIENT | scene='' +2026-06-25 18:10:30,105 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,105 | INFO | Bird 0.299 0.000 0.164 ✓ +2026-06-25 18:10:30,105 | INFO | Animal 0.232 0.000 0.127 ✓ +2026-06-25 18:10:30,110 | INFO | Chirp, tweet 0.221 0.000 0.122 ✓ +2026-06-25 18:10:30,110 | INFO | Bird vocalization, bird call, bird song 0.178 0.000 0.098 ✗ +2026-06-25 18:10:30,110 | INFO | Outside, rural or natural 0.119 0.000 0.066 ✗ +2026-06-25 18:10:30,110 | INFO | Environmental noise 0.092 0.000 0.051 ✗ +2026-06-25 18:10:30,111 | INFO | → WINNER: Bird (combined=0.164) +2026-06-25 18:10:30,140 | INFO | +[269.40s] AMBIENT | scene='' +2026-06-25 18:10:30,140 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,140 | INFO | Animal 0.332 0.000 0.182 ✓ +2026-06-25 18:10:30,140 | INFO | Bird 0.179 0.000 0.098 ✗ +2026-06-25 18:10:30,140 | INFO | Chirp, tweet 0.076 0.000 0.042 ✗ +2026-06-25 18:10:30,140 | INFO | Frog 0.076 0.000 0.042 ✗ +2026-06-25 18:10:30,140 | INFO | Bird vocalization, bird call, bird song 0.071 0.000 0.039 ✗ +2026-06-25 18:10:30,140 | INFO | Outside, rural or natural 0.071 0.000 0.039 ✗ +2026-06-25 18:10:30,140 | INFO | → WINNER: Animal (combined=0.182) +2026-06-25 18:10:30,171 | INFO | +[269.60s] AMBIENT | scene='' +2026-06-25 18:10:30,171 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,171 | INFO | Animal 0.282 0.000 0.155 ✓ +2026-06-25 18:10:30,175 | INFO | Bird 0.118 0.000 0.065 ✗ +2026-06-25 18:10:30,175 | INFO | Environmental noise 0.074 0.000 0.041 ✗ +2026-06-25 18:10:30,175 | INFO | Bird vocalization, bird call, bird song 0.058 0.000 0.032 ✗ +2026-06-25 18:10:30,175 | INFO | Domestic animals, pets 0.054 0.000 0.030 ✗ +2026-06-25 18:10:30,175 | INFO | Dog 0.041 0.000 0.023 ✗ +2026-06-25 18:10:30,175 | INFO | → WINNER: Animal (combined=0.155) +2026-06-25 18:10:30,204 | INFO | +[269.80s] AMBIENT | scene='' +2026-06-25 18:10:30,204 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,204 | INFO | Bird 0.256 0.000 0.141 ✓ +2026-06-25 18:10:30,204 | INFO | Chirp, tweet 0.167 0.000 0.092 ✗ +2026-06-25 18:10:30,204 | INFO | Bird vocalization, bird call, bird song 0.166 0.000 0.091 ✗ +2026-06-25 18:10:30,204 | INFO | Animal 0.134 0.000 0.073 ✗ +2026-06-25 18:10:30,204 | INFO | Fowl 0.109 0.000 0.060 ✗ +2026-06-25 18:10:30,204 | INFO | Environmental noise 0.077 0.000 0.042 ✗ +2026-06-25 18:10:30,204 | INFO | → WINNER: Bird (combined=0.141) +2026-06-25 18:10:30,238 | INFO | +[270.00s] AMBIENT | scene='' +2026-06-25 18:10:30,238 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,238 | INFO | Alarm 0.274 0.000 0.151 ✓ +2026-06-25 18:10:30,238 | INFO | Bird 0.071 0.000 0.039 ✗ +2026-06-25 18:10:30,239 | INFO | Animal 0.040 0.000 0.022 ✗ +2026-06-25 18:10:30,239 | INFO | Bird vocalization, bird call, bird song 0.029 0.000 0.016 ✗ +2026-06-25 18:10:30,239 | INFO | → WINNER: Alarm (combined=0.151) +2026-06-25 18:10:30,263 | INFO | +[270.20s] AMBIENT | scene='' +2026-06-25 18:10:30,263 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,269 | INFO | Alarm 0.304 0.000 0.167 ✓ +2026-06-25 18:10:30,269 | INFO | Fire alarm 0.040 0.000 0.022 ✗ +2026-06-25 18:10:30,269 | INFO | Bird 0.035 0.000 0.019 ✗ +2026-06-25 18:10:30,271 | INFO | → WINNER: Alarm (combined=0.167) +2026-06-25 18:10:30,300 | INFO | +[270.40s] AMBIENT | scene='' +2026-06-25 18:10:30,301 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,301 | INFO | Alarm 0.130 0.000 0.071 ✗ +2026-06-25 18:10:30,302 | INFO | Animal 0.064 0.000 0.035 ✗ +2026-06-25 18:10:30,302 | INFO | Bird 0.046 0.000 0.025 ✗ +2026-06-25 18:10:30,302 | INFO | → no winner +2026-06-25 18:10:30,333 | INFO | +[270.60s] AMBIENT | scene='' +2026-06-25 18:10:30,333 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,333 | INFO | Bird 0.143 0.000 0.079 ✗ +2026-06-25 18:10:30,334 | INFO | Alarm 0.129 0.000 0.071 ✗ +2026-06-25 18:10:30,334 | INFO | Animal 0.117 0.000 0.065 ✗ +2026-06-25 18:10:30,334 | INFO | Chirp, tweet 0.065 0.000 0.036 ✗ +2026-06-25 18:10:30,334 | INFO | Bird vocalization, bird call, bird song 0.051 0.000 0.028 ✗ +2026-06-25 18:10:30,335 | INFO | → no winner +2026-06-25 18:10:30,362 | INFO | +[270.80s] AMBIENT | scene='' +2026-06-25 18:10:30,362 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,362 | INFO | Bird 0.311 0.000 0.171 ✓ +2026-06-25 18:10:30,362 | INFO | Chirp, tweet 0.157 0.000 0.086 ✗ +2026-06-25 18:10:30,362 | INFO | Bird vocalization, bird call, bird song 0.131 0.000 0.072 ✗ +2026-06-25 18:10:30,362 | INFO | Animal 0.107 0.000 0.059 ✗ +2026-06-25 18:10:30,362 | INFO | → WINNER: Bird (combined=0.171) +2026-06-25 18:10:30,395 | INFO | +[271.00s] AMBIENT | scene='' +2026-06-25 18:10:30,395 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,395 | INFO | Bird 0.263 0.000 0.144 ✓ +2026-06-25 18:10:30,395 | INFO | Animal 0.206 0.000 0.114 ✗ +2026-06-25 18:10:30,395 | INFO | Duck 0.165 0.000 0.091 ✗ +2026-06-25 18:10:30,395 | INFO | Fowl 0.136 0.000 0.075 ✗ +2026-06-25 18:10:30,395 | INFO | Chirp, tweet 0.122 0.000 0.067 ✗ +2026-06-25 18:10:30,400 | INFO | Bird vocalization, bird call, bird song 0.106 0.000 0.058 ✗ +2026-06-25 18:10:30,400 | INFO | → WINNER: Bird (combined=0.144) +2026-06-25 18:10:30,430 | INFO | +[271.20s] AMBIENT | scene='' +2026-06-25 18:10:30,430 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,431 | INFO | Animal 0.287 0.000 0.158 ✓ +2026-06-25 18:10:30,431 | INFO | Bird 0.264 0.000 0.145 ✓ +2026-06-25 18:10:30,431 | INFO | Duck 0.240 0.000 0.132 ✓ +2026-06-25 18:10:30,431 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.049 ✗ +2026-06-25 18:10:30,432 | INFO | Quack 0.087 0.000 0.048 ✗ +2026-06-25 18:10:30,432 | INFO | Frog 0.079 0.000 0.044 ✗ +2026-06-25 18:10:30,432 | INFO | → WINNER: Animal (combined=0.158) +2026-06-25 18:10:30,462 | INFO | +[271.40s] AMBIENT | scene='' +2026-06-25 18:10:30,463 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,463 | INFO | Animal 0.728 0.000 0.400 ✓ +2026-06-25 18:10:30,463 | INFO | Dog 0.503 0.000 0.277 ✓ +2026-06-25 18:10:30,464 | INFO | Domestic animals, pets 0.453 0.000 0.249 ✓ +2026-06-25 18:10:30,464 | INFO | Bird 0.217 0.000 0.119 ✗ +2026-06-25 18:10:30,464 | INFO | Bow-wow 0.213 0.000 0.117 ✗ +2026-06-25 18:10:30,464 | INFO | Bark 0.182 0.000 0.100 ✗ +2026-06-25 18:10:30,465 | INFO | → WINNER: Animal (combined=0.400) +2026-06-25 18:10:30,497 | INFO | +[273.60s] AMBIENT | scene='' +2026-06-25 18:10:30,497 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,497 | INFO | Animal 0.331 0.000 0.182 ✓ +2026-06-25 18:10:30,498 | INFO | Bird 0.224 0.000 0.123 ✓ +2026-06-25 18:10:30,498 | INFO | Domestic animals, pets 0.114 0.000 0.063 ✗ +2026-06-25 18:10:30,498 | INFO | Owl 0.061 0.000 0.034 ✗ +2026-06-25 18:10:30,498 | INFO | Bird vocalization, bird call, bird song 0.039 0.000 0.021 ✗ +2026-06-25 18:10:30,498 | INFO | → WINNER: Animal (combined=0.182) +2026-06-25 18:10:30,528 | INFO | +[273.80s] AMBIENT | scene='' +2026-06-25 18:10:30,529 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,529 | INFO | Bird 0.329 0.000 0.181 ✓ +2026-06-25 18:10:30,530 | INFO | Chirp, tweet 0.194 0.000 0.107 ✗ +2026-06-25 18:10:30,530 | INFO | Animal 0.177 0.000 0.097 ✗ +2026-06-25 18:10:30,530 | INFO | Bird vocalization, bird call, bird song 0.164 0.000 0.090 ✗ +2026-06-25 18:10:30,530 | INFO | Frog 0.065 0.000 0.036 ✗ +2026-06-25 18:10:30,531 | INFO | Outside, rural or natural 0.058 0.000 0.032 ✗ +2026-06-25 18:10:30,531 | INFO | → WINNER: Bird (combined=0.181) +2026-06-25 18:10:30,560 | INFO | +[274.00s] AMBIENT | scene='' +2026-06-25 18:10:30,561 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,561 | INFO | Frog 0.211 0.000 0.116 ✗ +2026-06-25 18:10:30,561 | INFO | Bird 0.162 0.000 0.089 ✗ +2026-06-25 18:10:30,562 | INFO | Animal 0.160 0.000 0.088 ✗ +2026-06-25 18:10:30,562 | INFO | Fowl 0.075 0.000 0.041 ✗ +2026-06-25 18:10:30,562 | INFO | Duck 0.066 0.000 0.036 ✗ +2026-06-25 18:10:30,562 | INFO | Goose 0.058 0.000 0.032 ✗ +2026-06-25 18:10:30,563 | INFO | → no winner +2026-06-25 18:10:30,589 | INFO | +[274.20s] AMBIENT | scene='' +2026-06-25 18:10:30,589 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,589 | INFO | Frog 0.215 0.000 0.118 ✗ +2026-06-25 18:10:30,589 | INFO | Animal 0.146 0.000 0.081 ✗ +2026-06-25 18:10:30,589 | INFO | Bird 0.125 0.000 0.069 ✗ +2026-06-25 18:10:30,589 | INFO | Fowl 0.072 0.000 0.039 ✗ +2026-06-25 18:10:30,589 | INFO | Bird vocalization, bird call, bird song 0.035 0.000 0.019 ✗ +2026-06-25 18:10:30,594 | INFO | → no winner +2026-06-25 18:10:30,621 | INFO | +[274.40s] AMBIENT | scene='' +2026-06-25 18:10:30,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,625 | INFO | Fowl 0.429 0.000 0.236 ✓ +2026-06-25 18:10:30,625 | INFO | Bird 0.192 0.000 0.106 ✗ +2026-06-25 18:10:30,625 | INFO | Goose 0.177 0.000 0.098 ✗ +2026-06-25 18:10:30,625 | INFO | Honk 0.174 0.000 0.096 ✗ +2026-06-25 18:10:30,625 | INFO | Turkey 0.155 0.000 0.085 ✗ +2026-06-25 18:10:30,625 | INFO | Animal 0.116 0.000 0.064 ✗ +2026-06-25 18:10:30,625 | INFO | → WINNER: Fowl (combined=0.236) +2026-06-25 18:10:30,655 | INFO | +[274.60s] AMBIENT | scene='' +2026-06-25 18:10:30,656 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,656 | INFO | Animal 0.445 0.000 0.245 ✓ +2026-06-25 18:10:30,656 | INFO | Dog 0.273 0.000 0.150 ✓ +2026-06-25 18:10:30,657 | INFO | Domestic animals, pets 0.252 0.000 0.139 ✓ +2026-06-25 18:10:30,657 | INFO | Bow-wow 0.139 0.000 0.076 ✗ +2026-06-25 18:10:30,657 | INFO | Yip 0.057 0.000 0.032 ✗ +2026-06-25 18:10:30,657 | INFO | Whimper (dog) 0.046 0.000 0.025 ✗ +2026-06-25 18:10:30,658 | INFO | → WINNER: Animal (combined=0.245) +2026-06-25 18:10:30,688 | INFO | +[274.80s] AMBIENT | scene='' +2026-06-25 18:10:30,688 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,688 | INFO | Laughter 0.241 0.000 0.133 ✓ +2026-06-25 18:10:30,690 | INFO | Chuckle, chortle 0.202 0.000 0.111 ✗ +2026-06-25 18:10:30,690 | INFO | Snicker 0.179 0.000 0.099 ✗ +2026-06-25 18:10:30,690 | INFO | Animal 0.122 0.000 0.067 ✗ +2026-06-25 18:10:30,690 | INFO | Domestic animals, pets 0.096 0.000 0.053 ✗ +2026-06-25 18:10:30,690 | INFO | Giggle 0.087 0.000 0.048 ✗ +2026-06-25 18:10:30,690 | INFO | → WINNER: Laughter (combined=0.133) +2026-06-25 18:10:30,721 | INFO | +[275.00s] AMBIENT | scene='' +2026-06-25 18:10:30,722 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,722 | INFO | Animal 0.470 0.000 0.259 ✓ +2026-06-25 18:10:30,723 | INFO | Domestic animals, pets 0.275 0.000 0.151 ✓ +2026-06-25 18:10:30,723 | INFO | Dog 0.195 0.000 0.107 ✗ +2026-06-25 18:10:30,723 | INFO | Bird 0.083 0.000 0.046 ✗ +2026-06-25 18:10:30,723 | INFO | Bow-wow 0.063 0.000 0.035 ✗ +2026-06-25 18:10:30,724 | INFO | Chuckle, chortle 0.043 0.000 0.024 ✗ +2026-06-25 18:10:30,724 | INFO | → WINNER: Animal (combined=0.259) +2026-06-25 18:10:30,753 | INFO | +[275.20s] AMBIENT | scene='' +2026-06-25 18:10:30,754 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,755 | INFO | Animal 0.359 0.000 0.197 ✓ +2026-06-25 18:10:30,755 | INFO | Domestic animals, pets 0.181 0.000 0.099 ✗ +2026-06-25 18:10:30,756 | INFO | Bird 0.139 0.000 0.076 ✗ +2026-06-25 18:10:30,756 | INFO | Dog 0.066 0.000 0.036 ✗ +2026-06-25 18:10:30,756 | INFO | Cat 0.051 0.000 0.028 ✗ +2026-06-25 18:10:30,757 | INFO | Chuckle, chortle 0.037 0.000 0.020 ✗ +2026-06-25 18:10:30,757 | INFO | → WINNER: Animal (combined=0.197) +2026-06-25 18:10:30,790 | INFO | +[275.40s] AMBIENT | scene='' +2026-06-25 18:10:30,790 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,790 | INFO | Animal 0.263 0.000 0.145 ✓ +2026-06-25 18:10:30,791 | INFO | Bird 0.159 0.000 0.087 ✗ +2026-06-25 18:10:30,791 | INFO | Domestic animals, pets 0.094 0.000 0.051 ✗ +2026-06-25 18:10:30,791 | INFO | → WINNER: Animal (combined=0.145) +2026-06-25 18:10:30,819 | INFO | +[275.60s] AMBIENT | scene='' +2026-06-25 18:10:30,819 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,819 | INFO | Animal 0.368 0.000 0.203 ✓ +2026-06-25 18:10:30,819 | INFO | Bird 0.344 0.000 0.189 ✓ +2026-06-25 18:10:30,819 | INFO | Duck 0.146 0.000 0.080 ✗ +2026-06-25 18:10:30,819 | INFO | Domestic animals, pets 0.121 0.000 0.067 ✗ +2026-06-25 18:10:30,819 | INFO | Fowl 0.086 0.000 0.047 ✗ +2026-06-25 18:10:30,819 | INFO | Bird vocalization, bird call, bird song 0.079 0.000 0.043 ✗ +2026-06-25 18:10:30,819 | INFO | → WINNER: Animal (combined=0.203) +2026-06-25 18:10:30,868 | INFO | +[275.80s] AMBIENT | scene='' +2026-06-25 18:10:30,868 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,869 | INFO | Bird 0.369 0.000 0.203 ✓ +2026-06-25 18:10:30,869 | INFO | Animal 0.295 0.000 0.162 ✓ +2026-06-25 18:10:30,869 | INFO | Duck 0.167 0.000 0.092 ✗ +2026-06-25 18:10:30,869 | INFO | Domestic animals, pets 0.102 0.000 0.056 ✗ +2026-06-25 18:10:30,870 | INFO | Bird vocalization, bird call, bird song 0.090 0.000 0.050 ✗ +2026-06-25 18:10:30,870 | INFO | Fowl 0.087 0.000 0.048 ✗ +2026-06-25 18:10:30,870 | INFO | → WINNER: Bird (combined=0.203) +2026-06-25 18:10:30,900 | INFO | +[276.00s] AMBIENT | scene='' +2026-06-25 18:10:30,900 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,900 | INFO | Animal 0.394 0.000 0.217 ✓ +2026-06-25 18:10:30,901 | INFO | Bird 0.304 0.000 0.167 ✓ +2026-06-25 18:10:30,901 | INFO | Bird vocalization, bird call, bird song 0.119 0.000 0.066 ✗ +2026-06-25 18:10:30,901 | INFO | Chirp, tweet 0.114 0.000 0.063 ✗ +2026-06-25 18:10:30,901 | INFO | Domestic animals, pets 0.105 0.000 0.058 ✗ +2026-06-25 18:10:30,902 | INFO | Duck 0.101 0.000 0.056 ✗ +2026-06-25 18:10:30,902 | INFO | → WINNER: Animal (combined=0.217) +2026-06-25 18:10:30,931 | INFO | +[276.20s] AMBIENT | scene='' +2026-06-25 18:10:30,931 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,932 | INFO | Animal 0.718 0.000 0.395 ✓ +2026-06-25 18:10:30,932 | INFO | Dog 0.573 0.000 0.315 ✓ +2026-06-25 18:10:30,933 | INFO | Domestic animals, pets 0.572 0.000 0.315 ✓ +2026-06-25 18:10:30,933 | INFO | Bow-wow 0.374 0.000 0.206 ✓ +2026-06-25 18:10:30,933 | INFO | Whimper (dog) 0.205 0.000 0.113 ✗ +2026-06-25 18:10:30,933 | INFO | Yip 0.174 0.000 0.096 ✗ +2026-06-25 18:10:30,933 | INFO | → WINNER: Animal (combined=0.395) +2026-06-25 18:10:30,962 | INFO | +[276.40s] AMBIENT | scene='' +2026-06-25 18:10:30,962 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,962 | INFO | Animal 0.327 0.000 0.180 ✓ +2026-06-25 18:10:30,962 | INFO | Sneeze 0.246 0.000 0.136 ✓ +2026-06-25 18:10:30,962 | INFO | Dog 0.100 0.000 0.055 ✗ +2026-06-25 18:10:30,962 | INFO | Domestic animals, pets 0.098 0.000 0.054 ✗ +2026-06-25 18:10:30,962 | INFO | Gasp 0.084 0.000 0.046 ✗ +2026-06-25 18:10:30,962 | INFO | Breathing 0.059 0.000 0.032 ✗ +2026-06-25 18:10:30,962 | INFO | → WINNER: Animal (combined=0.180) +2026-06-25 18:10:30,995 | INFO | +[278.20s] AMBIENT | scene='' +2026-06-25 18:10:30,995 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:30,995 | INFO | Animal 0.303 0.000 0.167 ✓ +2026-06-25 18:10:30,995 | INFO | Bird 0.117 0.000 0.065 ✗ +2026-06-25 18:10:30,995 | INFO | Fowl 0.099 0.000 0.054 ✗ +2026-06-25 18:10:31,000 | INFO | Horse 0.091 0.000 0.050 ✗ +2026-06-25 18:10:31,000 | INFO | Turkey 0.058 0.000 0.032 ✗ +2026-06-25 18:10:31,000 | INFO | Wild animals 0.056 0.000 0.031 ✗ +2026-06-25 18:10:31,000 | INFO | → WINNER: Animal (combined=0.167) +2026-06-25 18:10:31,030 | INFO | +[278.40s] AMBIENT | scene='' +2026-06-25 18:10:31,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,030 | INFO | Animal 0.557 0.000 0.306 ✓ +2026-06-25 18:10:31,030 | INFO | Wild animals 0.187 0.000 0.103 ✗ +2026-06-25 18:10:31,030 | INFO | Roaring cats (lions, tigers) 0.109 0.000 0.060 ✗ +2026-06-25 18:10:31,030 | INFO | Bird 0.093 0.000 0.051 ✗ +2026-06-25 18:10:31,030 | INFO | Horse 0.081 0.000 0.044 ✗ +2026-06-25 18:10:31,030 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:31,030 | INFO | → WINNER: Animal (combined=0.306) +2026-06-25 18:10:31,062 | INFO | +[278.60s] AMBIENT | scene='' +2026-06-25 18:10:31,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,062 | INFO | Animal 0.743 0.000 0.409 ✓ +2026-06-25 18:10:31,062 | INFO | Wild animals 0.628 0.000 0.345 ✓ +2026-06-25 18:10:31,062 | INFO | Roaring cats (lions, tigers) 0.579 0.000 0.318 ✓ +2026-06-25 18:10:31,062 | INFO | Roar 0.223 0.000 0.122 ✓ +2026-06-25 18:10:31,062 | INFO | Outside, rural or natural 0.154 0.000 0.085 ✗ +2026-06-25 18:10:31,062 | INFO | Horse 0.073 0.000 0.040 ✗ +2026-06-25 18:10:31,062 | INFO | → WINNER: Animal (combined=0.409) +2026-06-25 18:10:31,095 | INFO | +[278.80s] AMBIENT | scene='' +2026-06-25 18:10:31,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,096 | INFO | Animal 0.770 0.000 0.424 ✓ +2026-06-25 18:10:31,096 | INFO | Wild animals 0.524 0.000 0.288 ✓ +2026-06-25 18:10:31,096 | INFO | Roaring cats (lions, tigers) 0.465 0.000 0.256 ✓ +2026-06-25 18:10:31,096 | INFO | Roar 0.133 0.000 0.073 ✗ +2026-06-25 18:10:31,097 | INFO | Outside, rural or natural 0.112 0.000 0.061 ✗ +2026-06-25 18:10:31,097 | INFO | Domestic animals, pets 0.088 0.000 0.048 ✗ +2026-06-25 18:10:31,097 | INFO | → WINNER: Animal (combined=0.424) +2026-06-25 18:10:31,127 | INFO | +[281.00s] AMBIENT | scene='' +2026-06-25 18:10:31,128 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,128 | INFO | Bird 0.234 0.000 0.129 ✓ +2026-06-25 18:10:31,129 | INFO | Animal 0.221 0.000 0.122 ✓ +2026-06-25 18:10:31,129 | INFO | Bird vocalization, bird call, bird song 0.163 0.000 0.090 ✗ +2026-06-25 18:10:31,130 | INFO | Chirp, tweet 0.122 0.000 0.067 ✗ +2026-06-25 18:10:31,130 | INFO | Water 0.101 0.000 0.056 ✗ +2026-06-25 18:10:31,130 | INFO | Liquid 0.070 0.000 0.038 ✗ +2026-06-25 18:10:31,130 | INFO | → WINNER: Bird (combined=0.129) +2026-06-25 18:10:31,159 | INFO | +[281.20s] AMBIENT | scene='' +2026-06-25 18:10:31,161 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,161 | INFO | Animal 0.394 0.000 0.216 ✓ +2026-06-25 18:10:31,161 | INFO | Bird 0.206 0.000 0.114 ✗ +2026-06-25 18:10:31,162 | INFO | Bird vocalization, bird call, bird song 0.106 0.000 0.058 ✗ +2026-06-25 18:10:31,162 | INFO | Wild animals 0.092 0.000 0.051 ✗ +2026-06-25 18:10:31,163 | INFO | Domestic animals, pets 0.090 0.000 0.049 ✗ +2026-06-25 18:10:31,163 | INFO | Chirp, tweet 0.084 0.000 0.046 ✗ +2026-06-25 18:10:31,163 | INFO | → WINNER: Animal (combined=0.216) +2026-06-25 18:10:31,194 | INFO | +[281.40s] AMBIENT | scene='' +2026-06-25 18:10:31,194 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,194 | INFO | Animal 0.332 0.000 0.183 ✓ +2026-06-25 18:10:31,195 | INFO | Wild animals 0.168 0.000 0.092 ✗ +2026-06-25 18:10:31,195 | INFO | Roaring cats (lions, tigers) 0.070 0.000 0.039 ✗ +2026-06-25 18:10:31,195 | INFO | Bird 0.056 0.000 0.031 ✗ +2026-06-25 18:10:31,196 | INFO | → WINNER: Animal (combined=0.183) +2026-06-25 18:10:31,225 | INFO | +[281.60s] AMBIENT | scene='' +2026-06-25 18:10:31,225 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,225 | INFO | Wild animals 0.815 0.000 0.448 ✓ +2026-06-25 18:10:31,225 | INFO | Animal 0.762 0.000 0.419 ✓ +2026-06-25 18:10:31,225 | INFO | Roaring cats (lions, tigers) 0.718 0.000 0.395 ✓ +2026-06-25 18:10:31,225 | INFO | Roar 0.153 0.000 0.084 ✗ +2026-06-25 18:10:31,225 | INFO | Outside, rural or natural 0.141 0.000 0.078 ✗ +2026-06-25 18:10:31,225 | INFO | → WINNER: Wild animals (combined=0.448) +2026-06-25 18:10:31,254 | INFO | +[286.80s] AMBIENT | scene='' +2026-06-25 18:10:31,254 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,254 | INFO | Animal 0.108 0.000 0.059 ✗ +2026-06-25 18:10:31,260 | INFO | Giggle 0.080 0.000 0.044 ✗ +2026-06-25 18:10:31,260 | INFO | Laughter 0.069 0.000 0.038 ✗ +2026-06-25 18:10:31,260 | INFO | Snicker 0.066 0.000 0.036 ✗ +2026-06-25 18:10:31,260 | INFO | Chuckle, chortle 0.064 0.000 0.035 ✗ +2026-06-25 18:10:31,260 | INFO | Domestic animals, pets 0.052 0.000 0.028 ✗ +2026-06-25 18:10:31,261 | INFO | → no winner +2026-06-25 18:10:31,290 | INFO | +[287.00s] AMBIENT | scene='' +2026-06-25 18:10:31,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,290 | INFO | Animal 0.163 0.000 0.090 ✗ +2026-06-25 18:10:31,290 | INFO | Domestic animals, pets 0.079 0.000 0.043 ✗ +2026-06-25 18:10:31,290 | INFO | Laughter 0.069 0.000 0.038 ✗ +2026-06-25 18:10:31,290 | INFO | Giggle 0.068 0.000 0.037 ✗ +2026-06-25 18:10:31,290 | INFO | Bird 0.047 0.000 0.026 ✗ +2026-06-25 18:10:31,290 | INFO | Chuckle, chortle 0.044 0.000 0.024 ✗ +2026-06-25 18:10:31,290 | INFO | → no winner +2026-06-25 18:10:31,321 | INFO | +[287.20s] AMBIENT | scene='' +2026-06-25 18:10:31,321 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,321 | INFO | Animal 0.410 0.000 0.226 ✓ +2026-06-25 18:10:31,321 | INFO | Owl 0.245 0.000 0.135 ✓ +2026-06-25 18:10:31,321 | INFO | Bird 0.184 0.000 0.101 ✗ +2026-06-25 18:10:31,321 | INFO | Goat 0.161 0.000 0.088 ✗ +2026-06-25 18:10:31,325 | INFO | Domestic animals, pets 0.123 0.000 0.068 ✗ +2026-06-25 18:10:31,325 | INFO | Livestock, farm animals, working animals 0.079 0.000 0.043 ✗ +2026-06-25 18:10:31,325 | INFO | → WINNER: Animal (combined=0.226) +2026-06-25 18:10:31,354 | INFO | +[287.40s] AMBIENT | scene='' +2026-06-25 18:10:31,354 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,354 | INFO | Owl 0.532 0.000 0.293 ✓ +2026-06-25 18:10:31,354 | INFO | Bird 0.282 0.000 0.155 ✓ +2026-06-25 18:10:31,354 | INFO | Animal 0.212 0.000 0.117 ✗ +2026-06-25 18:10:31,354 | INFO | Bird vocalization, bird call, bird song 0.212 0.000 0.117 ✗ +2026-06-25 18:10:31,354 | INFO | Chirp, tweet 0.140 0.000 0.077 ✗ +2026-06-25 18:10:31,354 | INFO | Hoot 0.105 0.000 0.058 ✗ +2026-06-25 18:10:31,354 | INFO | → WINNER: Owl (combined=0.293) +2026-06-25 18:10:31,388 | INFO | +[287.60s] AMBIENT | scene='' +2026-06-25 18:10:31,388 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,388 | INFO | Animal 0.332 0.000 0.182 ✓ +2026-06-25 18:10:31,388 | INFO | Bird 0.326 0.000 0.179 ✓ +2026-06-25 18:10:31,388 | INFO | Bird vocalization, bird call, bird song 0.219 0.000 0.121 ✓ +2026-06-25 18:10:31,390 | INFO | Chirp, tweet 0.202 0.000 0.111 ✗ +2026-06-25 18:10:31,390 | INFO | Owl 0.118 0.000 0.065 ✗ +2026-06-25 18:10:31,390 | INFO | Environmental noise 0.093 0.000 0.051 ✗ +2026-06-25 18:10:31,390 | INFO | → WINNER: Animal (combined=0.182) +2026-06-25 18:10:31,421 | INFO | +[292.80s] AMBIENT | scene='' +2026-06-25 18:10:31,421 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,421 | INFO | Animal 0.330 0.000 0.182 ✓ +2026-06-25 18:10:31,421 | INFO | Bird 0.216 0.000 0.119 ✗ +2026-06-25 18:10:31,421 | INFO | Chirp, tweet 0.100 0.000 0.055 ✗ +2026-06-25 18:10:31,421 | INFO | Domestic animals, pets 0.092 0.000 0.050 ✗ +2026-06-25 18:10:31,421 | INFO | Bird vocalization, bird call, bird song 0.073 0.000 0.040 ✗ +2026-06-25 18:10:31,421 | INFO | Outside, rural or natural 0.054 0.000 0.029 ✗ +2026-06-25 18:10:31,421 | INFO | → WINNER: Animal (combined=0.182) +2026-06-25 18:10:31,456 | INFO | +[293.00s] AMBIENT | scene='' +2026-06-25 18:10:31,457 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,457 | INFO | Animal 0.250 0.000 0.138 ✓ +2026-06-25 18:10:31,457 | INFO | Bird 0.139 0.000 0.076 ✗ +2026-06-25 18:10:31,457 | INFO | Duck 0.091 0.000 0.050 ✗ +2026-06-25 18:10:31,458 | INFO | Chirp, tweet 0.054 0.000 0.030 ✗ +2026-06-25 18:10:31,458 | INFO | Domestic animals, pets 0.043 0.000 0.024 ✗ +2026-06-25 18:10:31,458 | INFO | Bird vocalization, bird call, bird song 0.040 0.000 0.022 ✗ +2026-06-25 18:10:31,458 | INFO | → WINNER: Animal (combined=0.138) +2026-06-25 18:10:31,487 | INFO | +[293.20s] AMBIENT | scene='' +2026-06-25 18:10:31,490 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,490 | INFO | Animal 0.601 0.000 0.331 ✓ +2026-06-25 18:10:31,490 | INFO | Duck 0.311 0.000 0.171 ✓ +2026-06-25 18:10:31,490 | INFO | Bird 0.224 0.000 0.123 ✓ +2026-06-25 18:10:31,490 | INFO | Domestic animals, pets 0.166 0.000 0.091 ✗ +2026-06-25 18:10:31,490 | INFO | Quack 0.145 0.000 0.080 ✗ +2026-06-25 18:10:31,490 | INFO | Gargling 0.111 0.000 0.061 ✗ +2026-06-25 18:10:31,490 | INFO | → WINNER: Animal (combined=0.331) +2026-06-25 18:10:31,521 | INFO | +[293.40s] AMBIENT | scene='' +2026-06-25 18:10:31,521 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,522 | INFO | Bird 0.402 0.000 0.221 ✓ +2026-06-25 18:10:31,522 | INFO | Duck 0.387 0.000 0.213 ✓ +2026-06-25 18:10:31,522 | INFO | Animal 0.338 0.000 0.186 ✓ +2026-06-25 18:10:31,523 | INFO | Chirp, tweet 0.170 0.000 0.093 ✗ +2026-06-25 18:10:31,523 | INFO | Bird vocalization, bird call, bird song 0.152 0.000 0.084 ✗ +2026-06-25 18:10:31,523 | INFO | Quack 0.150 0.000 0.083 ✗ +2026-06-25 18:10:31,523 | INFO | → WINNER: Bird (combined=0.221) +2026-06-25 18:10:31,554 | INFO | +[293.60s] AMBIENT | scene='' +2026-06-25 18:10:31,554 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,555 | INFO | Animal 0.412 0.000 0.227 ✓ +2026-06-25 18:10:31,555 | INFO | Bird 0.333 0.000 0.183 ✓ +2026-06-25 18:10:31,555 | INFO | Domestic animals, pets 0.248 0.000 0.136 ✓ +2026-06-25 18:10:31,556 | INFO | Dog 0.180 0.000 0.099 ✗ +2026-06-25 18:10:31,556 | INFO | Duck 0.169 0.000 0.093 ✗ +2026-06-25 18:10:31,556 | INFO | Fowl 0.123 0.000 0.068 ✗ +2026-06-25 18:10:31,556 | INFO | → WINNER: Animal (combined=0.227) +2026-06-25 18:10:31,587 | INFO | +[293.80s] AMBIENT | scene='' +2026-06-25 18:10:31,588 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,588 | INFO | Bird 0.421 0.000 0.232 ✓ +2026-06-25 18:10:31,588 | INFO | Animal 0.343 0.000 0.189 ✓ +2026-06-25 18:10:31,588 | INFO | Duck 0.292 0.000 0.161 ✓ +2026-06-25 18:10:31,588 | INFO | Bird vocalization, bird call, bird song 0.169 0.000 0.093 ✗ +2026-06-25 18:10:31,588 | INFO | Fowl 0.138 0.000 0.076 ✗ +2026-06-25 18:10:31,588 | INFO | Chirp, tweet 0.134 0.000 0.074 ✗ +2026-06-25 18:10:31,590 | INFO | → WINNER: Bird (combined=0.232) +2026-06-25 18:10:31,619 | INFO | +[294.00s] AMBIENT | scene='' +2026-06-25 18:10:31,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,622 | INFO | Crow 0.715 0.000 0.393 ✓ +2026-06-25 18:10:31,622 | INFO | Caw 0.468 0.000 0.258 ✓ +2026-06-25 18:10:31,622 | INFO | Bird 0.368 0.000 0.203 ✓ +2026-06-25 18:10:31,622 | INFO | Animal 0.327 0.000 0.180 ✓ +2026-06-25 18:10:31,623 | INFO | Domestic animals, pets 0.096 0.000 0.053 ✗ +2026-06-25 18:10:31,623 | INFO | Fowl 0.062 0.000 0.034 ✗ +2026-06-25 18:10:31,623 | INFO | → WINNER: Crow (combined=0.393) +2026-06-25 18:10:31,675 | INFO | +[351.20s] AMBIENT | scene='' +2026-06-25 18:10:31,675 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,678 | INFO | Music 0.145 0.000 0.080 ✗ +2026-06-25 18:10:31,678 | INFO | Gong 0.105 0.000 0.058 ✗ +2026-06-25 18:10:31,678 | INFO | Bell 0.061 0.000 0.034 ✗ +2026-06-25 18:10:31,678 | INFO | Train 0.046 0.000 0.025 ✗ +2026-06-25 18:10:31,680 | INFO | → no winner +2026-06-25 18:10:31,728 | INFO | +[351.40s] AMBIENT | scene='' +2026-06-25 18:10:31,728 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,728 | INFO | Music 0.341 0.000 0.187 ✓ +2026-06-25 18:10:31,728 | INFO | → WINNER: Music (combined=0.187) +2026-06-25 18:10:31,790 | INFO | +[351.60s] AMBIENT | scene='' +2026-06-25 18:10:31,790 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,790 | INFO | Music 0.309 0.000 0.170 ✓ +2026-06-25 18:10:31,790 | INFO | Train 0.040 0.000 0.022 ✗ +2026-06-25 18:10:31,790 | INFO | → WINNER: Music (combined=0.170) +2026-06-25 18:10:31,853 | INFO | +[351.80s] AMBIENT | scene='' +2026-06-25 18:10:31,853 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,853 | INFO | Music 0.272 0.000 0.149 ✓ +2026-06-25 18:10:31,853 | INFO | Train 0.047 0.000 0.026 ✗ +2026-06-25 18:10:31,853 | INFO | → WINNER: Music (combined=0.149) +2026-06-25 18:10:31,903 | INFO | +[352.00s] AMBIENT | scene='' +2026-06-25 18:10:31,903 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,903 | INFO | Music 0.285 0.000 0.157 ✓ +2026-06-25 18:10:31,903 | INFO | → WINNER: Music (combined=0.157) +2026-06-25 18:10:31,938 | INFO | +[352.20s] AMBIENT | scene='' +2026-06-25 18:10:31,938 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,938 | INFO | Music 0.475 0.000 0.261 ✓ +2026-06-25 18:10:31,940 | INFO | Musical instrument 0.069 0.000 0.038 ✗ +2026-06-25 18:10:31,940 | INFO | → WINNER: Music (combined=0.261) +2026-06-25 18:10:31,969 | INFO | +[352.40s] AMBIENT | scene='' +2026-06-25 18:10:31,970 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:31,970 | INFO | Music 0.356 0.000 0.196 ✓ +2026-06-25 18:10:31,970 | INFO | Vehicle 0.060 0.000 0.033 ✗ +2026-06-25 18:10:31,971 | INFO | → WINNER: Music (combined=0.196) +2026-06-25 18:10:32,000 | INFO | +[352.60s] AMBIENT | scene='' +2026-06-25 18:10:32,000 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,000 | INFO | Music 0.386 0.000 0.212 ✓ +2026-06-25 18:10:32,000 | INFO | Musical instrument 0.062 0.000 0.034 ✗ +2026-06-25 18:10:32,000 | INFO | → WINNER: Music (combined=0.212) +2026-06-25 18:10:32,030 | INFO | +[352.80s] AMBIENT | scene='' +2026-06-25 18:10:32,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,030 | INFO | Music 0.490 0.000 0.270 ✓ +2026-06-25 18:10:32,030 | INFO | Musical instrument 0.101 0.000 0.056 ✗ +2026-06-25 18:10:32,030 | INFO | → WINNER: Music (combined=0.270) +2026-06-25 18:10:32,062 | INFO | +[353.00s] AMBIENT | scene='' +2026-06-25 18:10:32,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,062 | INFO | Music 0.554 0.000 0.305 ✓ +2026-06-25 18:10:32,062 | INFO | Musical instrument 0.143 0.000 0.079 ✗ +2026-06-25 18:10:32,062 | INFO | Wind instrument, woodwind instrument 0.038 0.000 0.021 ✗ +2026-06-25 18:10:32,062 | INFO | → WINNER: Music (combined=0.305) +2026-06-25 18:10:32,096 | INFO | +[353.20s] AMBIENT | scene='' +2026-06-25 18:10:32,097 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,098 | INFO | Music 0.643 0.000 0.354 ✓ +2026-06-25 18:10:32,098 | INFO | Wind instrument, woodwind instrument 0.224 0.000 0.123 ✓ +2026-06-25 18:10:32,098 | INFO | Musical instrument 0.209 0.000 0.115 ✗ +2026-06-25 18:10:32,098 | INFO | Traditional music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:32,098 | INFO | Shofar 0.084 0.000 0.046 ✗ +2026-06-25 18:10:32,098 | INFO | Violin, fiddle 0.079 0.000 0.044 ✗ +2026-06-25 18:10:32,100 | INFO | → WINNER: Music (combined=0.354) +2026-06-25 18:10:32,130 | INFO | +[353.40s] AMBIENT | scene='' +2026-06-25 18:10:32,131 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,131 | INFO | Music 0.629 0.000 0.346 ✓ +2026-06-25 18:10:32,131 | INFO | Wind instrument, woodwind instrument 0.232 0.000 0.128 ✓ +2026-06-25 18:10:32,132 | INFO | Musical instrument 0.190 0.000 0.105 ✗ +2026-06-25 18:10:32,132 | INFO | Shofar 0.070 0.000 0.038 ✗ +2026-06-25 18:10:32,132 | INFO | Flute 0.059 0.000 0.033 ✗ +2026-06-25 18:10:32,132 | INFO | Music of Bollywood 0.046 0.000 0.026 ✗ +2026-06-25 18:10:32,132 | INFO | → WINNER: Music (combined=0.346) +2026-06-25 18:10:32,162 | INFO | +[353.60s] AMBIENT | scene='' +2026-06-25 18:10:32,163 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,163 | INFO | Music 0.762 0.000 0.419 ✓ +2026-06-25 18:10:32,163 | INFO | Musical instrument 0.241 0.000 0.133 ✓ +2026-06-25 18:10:32,163 | INFO | Wind instrument, woodwind instrument 0.162 0.000 0.089 ✗ +2026-06-25 18:10:32,163 | INFO | Music of Bollywood 0.073 0.000 0.040 ✗ +2026-06-25 18:10:32,163 | INFO | Flute 0.054 0.000 0.030 ✗ +2026-06-25 18:10:32,165 | INFO | → WINNER: Music (combined=0.419) +2026-06-25 18:10:32,194 | INFO | +[353.80s] AMBIENT | scene='' +2026-06-25 18:10:32,194 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,195 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:32,195 | INFO | Musical instrument 0.430 0.000 0.237 ✓ +2026-06-25 18:10:32,197 | INFO | Plucked string instrument 0.145 0.000 0.080 ✗ +2026-06-25 18:10:32,197 | INFO | Traditional music 0.125 0.000 0.069 ✗ +2026-06-25 18:10:32,197 | INFO | Sitar 0.092 0.000 0.051 ✗ +2026-06-25 18:10:32,198 | INFO | Flute 0.078 0.000 0.043 ✗ +2026-06-25 18:10:32,198 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:32,229 | INFO | +[354.00s] AMBIENT | scene='' +2026-06-25 18:10:32,229 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,229 | INFO | Music 0.629 0.000 0.346 ✓ +2026-06-25 18:10:32,230 | INFO | Howl 0.438 0.000 0.241 ✓ +2026-06-25 18:10:32,230 | INFO | Animal 0.411 0.000 0.226 ✓ +2026-06-25 18:10:32,230 | INFO | Dog 0.379 0.000 0.208 ✓ +2026-06-25 18:10:32,230 | INFO | Domestic animals, pets 0.344 0.000 0.189 ✓ +2026-06-25 18:10:32,231 | INFO | Musical instrument 0.276 0.000 0.152 ✓ +2026-06-25 18:10:32,231 | INFO | → WINNER: Music (combined=0.346) +2026-06-25 18:10:32,261 | INFO | +[354.20s] AMBIENT | scene='' +2026-06-25 18:10:32,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,261 | INFO | Howl 0.597 0.000 0.328 ✓ +2026-06-25 18:10:32,261 | INFO | Animal 0.523 0.000 0.288 ✓ +2026-06-25 18:10:32,262 | INFO | Domestic animals, pets 0.463 0.000 0.255 ✓ +2026-06-25 18:10:32,262 | INFO | Dog 0.448 0.000 0.246 ✓ +2026-06-25 18:10:32,262 | INFO | Music 0.282 0.000 0.155 ✓ +2026-06-25 18:10:32,262 | INFO | Canidae, dogs, wolves 0.181 0.000 0.100 ✗ +2026-06-25 18:10:32,263 | INFO | → WINNER: Howl (combined=0.328) +2026-06-25 18:10:32,290 | INFO | +[354.40s] AMBIENT | scene='' +2026-06-25 18:10:32,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,290 | INFO | Howl 0.724 0.000 0.398 ✓ +2026-06-25 18:10:32,290 | INFO | Animal 0.592 0.000 0.326 ✓ +2026-06-25 18:10:32,290 | INFO | Dog 0.526 0.000 0.289 ✓ +2026-06-25 18:10:32,294 | INFO | Domestic animals, pets 0.511 0.000 0.281 ✓ +2026-06-25 18:10:32,294 | INFO | Canidae, dogs, wolves 0.342 0.000 0.188 ✓ +2026-06-25 18:10:32,294 | INFO | Yip 0.077 0.000 0.042 ✗ +2026-06-25 18:10:32,294 | INFO | → WINNER: Howl (combined=0.398) +2026-06-25 18:10:32,322 | INFO | +[354.60s] AMBIENT | scene='' +2026-06-25 18:10:32,322 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,322 | INFO | Howl 0.761 0.000 0.418 ✓ +2026-06-25 18:10:32,322 | INFO | Animal 0.674 0.000 0.370 ✓ +2026-06-25 18:10:32,322 | INFO | Dog 0.614 0.000 0.338 ✓ +2026-06-25 18:10:32,322 | INFO | Domestic animals, pets 0.552 0.000 0.304 ✓ +2026-06-25 18:10:32,322 | INFO | Canidae, dogs, wolves 0.420 0.000 0.231 ✓ +2026-06-25 18:10:32,322 | INFO | Yip 0.097 0.000 0.053 ✗ +2026-06-25 18:10:32,322 | INFO | → WINNER: Howl (combined=0.418) +2026-06-25 18:10:32,356 | INFO | +[354.80s] AMBIENT | scene='' +2026-06-25 18:10:32,357 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,357 | INFO | Howl 0.720 0.000 0.396 ✓ +2026-06-25 18:10:32,357 | INFO | Animal 0.557 0.000 0.306 ✓ +2026-06-25 18:10:32,357 | INFO | Dog 0.520 0.000 0.286 ✓ +2026-06-25 18:10:32,357 | INFO | Domestic animals, pets 0.464 0.000 0.255 ✓ +2026-06-25 18:10:32,357 | INFO | Canidae, dogs, wolves 0.363 0.000 0.200 ✓ +2026-06-25 18:10:32,357 | INFO | Whimper (dog) 0.080 0.000 0.044 ✗ +2026-06-25 18:10:32,357 | INFO | → WINNER: Howl (combined=0.396) +2026-06-25 18:10:32,389 | INFO | +[355.00s] AMBIENT | scene='' +2026-06-25 18:10:32,389 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,390 | INFO | Howl 0.754 0.000 0.415 ✓ +2026-06-25 18:10:32,390 | INFO | Animal 0.672 0.000 0.370 ✓ +2026-06-25 18:10:32,390 | INFO | Dog 0.580 0.000 0.319 ✓ +2026-06-25 18:10:32,390 | INFO | Domestic animals, pets 0.527 0.000 0.290 ✓ +2026-06-25 18:10:32,390 | INFO | Canidae, dogs, wolves 0.461 0.000 0.253 ✓ +2026-06-25 18:10:32,390 | INFO | Whimper (dog) 0.086 0.000 0.048 ✗ +2026-06-25 18:10:32,390 | INFO | → WINNER: Howl (combined=0.415) +2026-06-25 18:10:32,421 | INFO | +[355.20s] AMBIENT | scene='' +2026-06-25 18:10:32,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,422 | INFO | Howl 0.830 0.000 0.457 ✓ +2026-06-25 18:10:32,422 | INFO | Animal 0.753 0.000 0.414 ✓ +2026-06-25 18:10:32,422 | INFO | Dog 0.654 0.000 0.360 ✓ +2026-06-25 18:10:32,422 | INFO | Domestic animals, pets 0.614 0.000 0.338 ✓ +2026-06-25 18:10:32,423 | INFO | Canidae, dogs, wolves 0.546 0.000 0.300 ✓ +2026-06-25 18:10:32,423 | INFO | Whimper (dog) 0.086 0.000 0.047 ✗ +2026-06-25 18:10:32,423 | INFO | → WINNER: Howl (combined=0.457) +2026-06-25 18:10:32,453 | INFO | +[355.40s] AMBIENT | scene='' +2026-06-25 18:10:32,455 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,456 | INFO | Howl 0.766 0.000 0.421 ✓ +2026-06-25 18:10:32,456 | INFO | Animal 0.664 0.000 0.365 ✓ +2026-06-25 18:10:32,456 | INFO | Dog 0.560 0.000 0.308 ✓ +2026-06-25 18:10:32,457 | INFO | Domestic animals, pets 0.521 0.000 0.287 ✓ +2026-06-25 18:10:32,457 | INFO | Canidae, dogs, wolves 0.442 0.000 0.243 ✓ +2026-06-25 18:10:32,457 | INFO | Whimper (dog) 0.073 0.000 0.040 ✗ +2026-06-25 18:10:32,458 | INFO | → WINNER: Howl (combined=0.421) +2026-06-25 18:10:32,489 | INFO | +[355.60s] AMBIENT | scene='' +2026-06-25 18:10:32,490 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,490 | INFO | Animal 0.436 0.000 0.240 ✓ +2026-06-25 18:10:32,491 | INFO | Howl 0.409 0.000 0.225 ✓ +2026-06-25 18:10:32,491 | INFO | Domestic animals, pets 0.328 0.000 0.180 ✓ +2026-06-25 18:10:32,491 | INFO | Dog 0.168 0.000 0.092 ✗ +2026-06-25 18:10:32,491 | INFO | Canidae, dogs, wolves 0.146 0.000 0.080 ✗ +2026-06-25 18:10:32,493 | INFO | Cat 0.066 0.000 0.036 ✗ +2026-06-25 18:10:32,493 | INFO | → WINNER: Animal (combined=0.240) +2026-06-25 18:10:32,523 | INFO | +[355.80s] AMBIENT | scene='' +2026-06-25 18:10:32,524 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,524 | INFO | Animal 0.726 0.000 0.399 ✓ +2026-06-25 18:10:32,524 | INFO | Howl 0.566 0.000 0.311 ✓ +2026-06-25 18:10:32,524 | INFO | Domestic animals, pets 0.553 0.000 0.304 ✓ +2026-06-25 18:10:32,525 | INFO | Dog 0.470 0.000 0.258 ✓ +2026-06-25 18:10:32,525 | INFO | Canidae, dogs, wolves 0.375 0.000 0.206 ✓ +2026-06-25 18:10:32,525 | INFO | Whimper (dog) 0.075 0.000 0.041 ✗ +2026-06-25 18:10:32,525 | INFO | → WINNER: Animal (combined=0.399) +2026-06-25 18:10:32,555 | INFO | +[356.00s] AMBIENT | scene='' +2026-06-25 18:10:32,555 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,555 | INFO | Animal 0.683 0.000 0.376 ✓ +2026-06-25 18:10:32,555 | INFO | Howl 0.661 0.000 0.363 ✓ +2026-06-25 18:10:32,555 | INFO | Dog 0.571 0.000 0.314 ✓ +2026-06-25 18:10:32,555 | INFO | Domestic animals, pets 0.520 0.000 0.286 ✓ +2026-06-25 18:10:32,555 | INFO | Canidae, dogs, wolves 0.444 0.000 0.244 ✓ +2026-06-25 18:10:32,555 | INFO | Whimper (dog) 0.087 0.000 0.048 ✗ +2026-06-25 18:10:32,555 | INFO | → WINNER: Animal (combined=0.376) +2026-06-25 18:10:32,587 | INFO | +[356.20s] AMBIENT | scene='' +2026-06-25 18:10:32,588 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,588 | INFO | Howl 0.498 0.000 0.274 ✓ +2026-06-25 18:10:32,588 | INFO | Animal 0.490 0.000 0.269 ✓ +2026-06-25 18:10:32,589 | INFO | Domestic animals, pets 0.407 0.000 0.224 ✓ +2026-06-25 18:10:32,589 | INFO | Dog 0.407 0.000 0.224 ✓ +2026-06-25 18:10:32,589 | INFO | Canidae, dogs, wolves 0.254 0.000 0.140 ✓ +2026-06-25 18:10:32,589 | INFO | Whimper (dog) 0.082 0.000 0.045 ✗ +2026-06-25 18:10:32,589 | INFO | → WINNER: Howl (combined=0.274) +2026-06-25 18:10:32,616 | INFO | +[356.40s] AMBIENT | scene='' +2026-06-25 18:10:32,619 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,620 | INFO | Howl 0.515 0.000 0.283 ✓ +2026-06-25 18:10:32,620 | INFO | Animal 0.486 0.000 0.267 ✓ +2026-06-25 18:10:32,621 | INFO | Dog 0.369 0.000 0.203 ✓ +2026-06-25 18:10:32,621 | INFO | Domestic animals, pets 0.366 0.000 0.201 ✓ +2026-06-25 18:10:32,621 | INFO | Canidae, dogs, wolves 0.198 0.000 0.109 ✗ +2026-06-25 18:10:32,621 | INFO | Wind instrument, woodwind instrument 0.082 0.000 0.045 ✗ +2026-06-25 18:10:32,622 | INFO | → WINNER: Howl (combined=0.283) +2026-06-25 18:10:32,650 | INFO | +[356.60s] AMBIENT | scene='' +2026-06-25 18:10:32,650 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,650 | INFO | Howl 0.793 0.000 0.436 ✓ +2026-06-25 18:10:32,650 | INFO | Animal 0.665 0.000 0.366 ✓ +2026-06-25 18:10:32,653 | INFO | Dog 0.597 0.000 0.328 ✓ +2026-06-25 18:10:32,653 | INFO | Domestic animals, pets 0.569 0.000 0.313 ✓ +2026-06-25 18:10:32,654 | INFO | Canidae, dogs, wolves 0.403 0.000 0.222 ✓ +2026-06-25 18:10:32,654 | INFO | Whimper (dog) 0.142 0.000 0.078 ✗ +2026-06-25 18:10:32,654 | INFO | → WINNER: Howl (combined=0.436) +2026-06-25 18:10:32,681 | INFO | +[356.80s] AMBIENT | scene='' +2026-06-25 18:10:32,681 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,681 | INFO | Howl 0.874 0.000 0.480 ✓ +2026-06-25 18:10:32,681 | INFO | Animal 0.718 0.000 0.395 ✓ +2026-06-25 18:10:32,681 | INFO | Dog 0.647 0.000 0.356 ✓ +2026-06-25 18:10:32,681 | INFO | Domestic animals, pets 0.546 0.000 0.300 ✓ +2026-06-25 18:10:32,681 | INFO | Canidae, dogs, wolves 0.492 0.000 0.271 ✓ +2026-06-25 18:10:32,681 | INFO | Music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:32,681 | INFO | → WINNER: Howl (combined=0.480) +2026-06-25 18:10:32,714 | INFO | +[357.00s] AMBIENT | scene='' +2026-06-25 18:10:32,715 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,715 | INFO | Howl 0.875 0.000 0.481 ✓ +2026-06-25 18:10:32,715 | INFO | Animal 0.683 0.000 0.376 ✓ +2026-06-25 18:10:32,715 | INFO | Dog 0.570 0.000 0.314 ✓ +2026-06-25 18:10:32,716 | INFO | Canidae, dogs, wolves 0.565 0.000 0.311 ✓ +2026-06-25 18:10:32,716 | INFO | Domestic animals, pets 0.519 0.000 0.286 ✓ +2026-06-25 18:10:32,716 | INFO | Yip 0.074 0.000 0.041 ✗ +2026-06-25 18:10:32,716 | INFO | → WINNER: Howl (combined=0.481) +2026-06-25 18:10:32,804 | INFO | +[357.20s] AMBIENT | scene='' +2026-06-25 18:10:32,816 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,817 | INFO | Howl 0.889 0.000 0.489 ✓ +2026-06-25 18:10:32,817 | INFO | Animal 0.808 0.000 0.444 ✓ +2026-06-25 18:10:32,819 | INFO | Dog 0.683 0.000 0.376 ✓ +2026-06-25 18:10:32,821 | INFO | Canidae, dogs, wolves 0.607 0.000 0.334 ✓ +2026-06-25 18:10:32,821 | INFO | Domestic animals, pets 0.594 0.000 0.327 ✓ +2026-06-25 18:10:32,821 | INFO | Yip 0.056 0.000 0.031 ✗ +2026-06-25 18:10:32,821 | INFO | → WINNER: Howl (combined=0.489) +2026-06-25 18:10:32,876 | INFO | +[357.40s] AMBIENT | scene='' +2026-06-25 18:10:32,876 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,876 | INFO | Howl 0.874 0.000 0.481 ✓ +2026-06-25 18:10:32,876 | INFO | Animal 0.755 0.000 0.415 ✓ +2026-06-25 18:10:32,877 | INFO | Canidae, dogs, wolves 0.707 0.000 0.389 ✓ +2026-06-25 18:10:32,877 | INFO | Dog 0.656 0.000 0.361 ✓ +2026-06-25 18:10:32,877 | INFO | Domestic animals, pets 0.525 0.000 0.289 ✓ +2026-06-25 18:10:32,877 | INFO | → WINNER: Howl (combined=0.481) +2026-06-25 18:10:32,936 | INFO | +[357.60s] AMBIENT | scene='' +2026-06-25 18:10:32,936 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:32,936 | INFO | Howl 0.749 0.000 0.412 ✓ +2026-06-25 18:10:32,936 | INFO | Animal 0.566 0.000 0.311 ✓ +2026-06-25 18:10:32,939 | INFO | Canidae, dogs, wolves 0.536 0.000 0.295 ✓ +2026-06-25 18:10:32,939 | INFO | Dog 0.466 0.000 0.256 ✓ +2026-06-25 18:10:32,939 | INFO | Domestic animals, pets 0.403 0.000 0.221 ✓ +2026-06-25 18:10:32,939 | INFO | → WINNER: Howl (combined=0.412) +2026-06-25 18:10:33,037 | INFO | +[357.80s] AMBIENT | scene='' +2026-06-25 18:10:33,037 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,037 | INFO | Howl 0.796 0.000 0.438 ✓ +2026-06-25 18:10:33,037 | INFO | Animal 0.639 0.000 0.351 ✓ +2026-06-25 18:10:33,037 | INFO | Canidae, dogs, wolves 0.543 0.000 0.299 ✓ +2026-06-25 18:10:33,037 | INFO | Dog 0.459 0.000 0.252 ✓ +2026-06-25 18:10:33,037 | INFO | Domestic animals, pets 0.399 0.000 0.219 ✓ +2026-06-25 18:10:33,037 | INFO | Whimper (dog) 0.049 0.000 0.027 ✗ +2026-06-25 18:10:33,040 | INFO | → WINNER: Howl (combined=0.438) +2026-06-25 18:10:33,110 | INFO | +[358.00s] AMBIENT | scene='' +2026-06-25 18:10:33,110 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,110 | INFO | Howl 0.521 0.000 0.286 ✓ +2026-06-25 18:10:33,110 | INFO | Animal 0.393 0.000 0.216 ✓ +2026-06-25 18:10:33,111 | INFO | Canidae, dogs, wolves 0.328 0.000 0.180 ✓ +2026-06-25 18:10:33,112 | INFO | Dog 0.283 0.000 0.156 ✓ +2026-06-25 18:10:33,112 | INFO | Domestic animals, pets 0.222 0.000 0.122 ✓ +2026-06-25 18:10:33,112 | INFO | Music 0.142 0.000 0.078 ✗ +2026-06-25 18:10:33,112 | INFO | → WINNER: Howl (combined=0.286) +2026-06-25 18:10:33,143 | INFO | +[358.20s] AMBIENT | scene='' +2026-06-25 18:10:33,143 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,144 | INFO | Music 0.364 0.000 0.201 ✓ +2026-06-25 18:10:33,144 | INFO | Animal 0.104 0.000 0.057 ✗ +2026-06-25 18:10:33,145 | INFO | Howl 0.067 0.000 0.037 ✗ +2026-06-25 18:10:33,145 | INFO | Dog 0.041 0.000 0.022 ✗ +2026-06-25 18:10:33,145 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:10:33,146 | INFO | → WINNER: Music (combined=0.201) +2026-06-25 18:10:33,175 | INFO | +[358.40s] AMBIENT | scene='' +2026-06-25 18:10:33,175 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,175 | INFO | Music 0.669 0.000 0.368 ✓ +2026-06-25 18:10:33,175 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:10:33,178 | INFO | Animal 0.064 0.000 0.035 ✗ +2026-06-25 18:10:33,180 | INFO | → WINNER: Music (combined=0.368) +2026-06-25 18:10:33,210 | INFO | +[358.60s] AMBIENT | scene='' +2026-06-25 18:10:33,211 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,211 | INFO | Music 0.782 0.000 0.430 ✓ +2026-06-25 18:10:33,212 | INFO | Music of Bollywood 0.068 0.000 0.037 ✗ +2026-06-25 18:10:33,212 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:10:33,248 | INFO | +[375.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,249 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,249 | INFO | Animal 0.040 0.000 0.022 ✗ +2026-06-25 18:10:33,250 | INFO | → no winner +2026-06-25 18:10:33,280 | INFO | +[375.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,280 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,280 | INFO | Civil defense siren 0.174 0.000 0.096 ✗ +2026-06-25 18:10:33,282 | INFO | Siren 0.108 0.000 0.059 ✗ +2026-06-25 18:10:33,282 | INFO | Singing bowl 0.089 0.000 0.049 ✗ +2026-06-25 18:10:33,282 | INFO | Wind instrument, woodwind instrument 0.043 0.000 0.024 ✗ +2026-06-25 18:10:33,282 | INFO | → no winner +2026-06-25 18:10:33,312 | INFO | +[375.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,312 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,313 | INFO | Civil defense siren 0.127 0.000 0.070 ✗ +2026-06-25 18:10:33,313 | INFO | Siren 0.092 0.000 0.051 ✗ +2026-06-25 18:10:33,314 | INFO | Singing bowl 0.088 0.000 0.048 ✗ +2026-06-25 18:10:33,314 | INFO | Wind instrument, woodwind instrument 0.048 0.000 0.026 ✗ +2026-06-25 18:10:33,314 | INFO | → no winner +2026-06-25 18:10:33,340 | INFO | +[375.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,344 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,344 | INFO | Civil defense siren 0.089 0.000 0.049 ✗ +2026-06-25 18:10:33,344 | INFO | Siren 0.061 0.000 0.034 ✗ +2026-06-25 18:10:33,344 | INFO | → no winner +2026-06-25 18:10:33,372 | INFO | +[378.60s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,372 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,372 | INFO | Animal 0.300 0.000 0.165 ✓ +2026-06-25 18:10:33,372 | INFO | Howl 0.162 0.000 0.089 ✗ +2026-06-25 18:10:33,372 | INFO | Domestic animals, pets 0.106 0.000 0.058 ✗ +2026-06-25 18:10:33,372 | INFO | Whale vocalization 0.081 0.000 0.044 ✗ +2026-06-25 18:10:33,372 | INFO | Dog 0.069 0.000 0.038 ✗ +2026-06-25 18:10:33,372 | INFO | Canidae, dogs, wolves 0.052 0.000 0.029 ✗ +2026-06-25 18:10:33,378 | INFO | → WINNER: Animal (combined=0.165) +2026-06-25 18:10:33,404 | INFO | +[378.80s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,404 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,404 | INFO | Animal 0.181 0.000 0.100 ✗ +2026-06-25 18:10:33,404 | INFO | Howl 0.123 0.000 0.068 ✗ +2026-06-25 18:10:33,404 | INFO | Domestic animals, pets 0.057 0.000 0.031 ✗ +2026-06-25 18:10:33,404 | INFO | Shofar 0.053 0.000 0.029 ✗ +2026-06-25 18:10:33,404 | INFO | Canidae, dogs, wolves 0.039 0.000 0.022 ✗ +2026-06-25 18:10:33,404 | INFO | → no winner +2026-06-25 18:10:33,437 | INFO | +[379.00s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,437 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,437 | INFO | Animal 0.167 0.000 0.092 ✗ +2026-06-25 18:10:33,440 | INFO | Music 0.127 0.000 0.070 ✗ +2026-06-25 18:10:33,440 | INFO | Howl 0.123 0.000 0.068 ✗ +2026-06-25 18:10:33,440 | INFO | Shofar 0.119 0.000 0.066 ✗ +2026-06-25 18:10:33,440 | INFO | Wind instrument, woodwind instrument 0.108 0.000 0.060 ✗ +2026-06-25 18:10:33,440 | INFO | Domestic animals, pets 0.066 0.000 0.036 ✗ +2026-06-25 18:10:33,440 | INFO | → no winner +2026-06-25 18:10:33,471 | INFO | +[379.20s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,471 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,471 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:10:33,471 | INFO | Music 0.146 0.000 0.080 ✗ +2026-06-25 18:10:33,471 | INFO | Domestic animals, pets 0.066 0.000 0.036 ✗ +2026-06-25 18:10:33,471 | INFO | Howl 0.062 0.000 0.034 ✗ +2026-06-25 18:10:33,471 | INFO | → no winner +2026-06-25 18:10:33,503 | INFO | +[379.40s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,504 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,504 | INFO | Humming 0.192 0.314 0.246 ✓ +2026-06-25 18:10:33,505 | INFO | Music 0.273 0.000 0.150 ✓ +2026-06-25 18:10:33,505 | INFO | → WINNER: Humming (combined=0.246) +2026-06-25 18:10:33,535 | INFO | +[379.60s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,535 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,535 | INFO | Music 0.344 0.000 0.189 ✓ +2026-06-25 18:10:33,536 | INFO | Humming 0.074 0.314 0.182 ✓ +2026-06-25 18:10:33,536 | INFO | Animal 0.125 0.000 0.069 ✗ +2026-06-25 18:10:33,536 | INFO | Cat 0.097 0.000 0.053 ✗ +2026-06-25 18:10:33,536 | INFO | Domestic animals, pets 0.082 0.000 0.045 ✗ +2026-06-25 18:10:33,537 | INFO | → WINNER: Music (combined=0.189) +2026-06-25 18:10:33,565 | INFO | +[379.80s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,565 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,565 | INFO | Animal 0.348 0.000 0.191 ✓ +2026-06-25 18:10:33,565 | INFO | Domestic animals, pets 0.126 0.000 0.069 ✗ +2026-06-25 18:10:33,565 | INFO | Music 0.112 0.000 0.061 ✗ +2026-06-25 18:10:33,565 | INFO | Cat 0.090 0.000 0.050 ✗ +2026-06-25 18:10:33,565 | INFO | → WINNER: Animal (combined=0.191) +2026-06-25 18:10:33,600 | INFO | +[380.00s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,600 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,600 | INFO | Animal 0.428 0.000 0.235 ✓ +2026-06-25 18:10:33,600 | INFO | Domestic animals, pets 0.150 0.000 0.083 ✗ +2026-06-25 18:10:33,600 | INFO | Howl 0.140 0.000 0.077 ✗ +2026-06-25 18:10:33,600 | INFO | Civil defense siren 0.097 0.000 0.053 ✗ +2026-06-25 18:10:33,600 | INFO | Siren 0.083 0.000 0.046 ✗ +2026-06-25 18:10:33,600 | INFO | Cat 0.062 0.000 0.034 ✗ +2026-06-25 18:10:33,600 | INFO | → WINNER: Animal (combined=0.235) +2026-06-25 18:10:33,630 | INFO | +[380.20s] AMBIENT | scene='The image shows three people sitting on a woven mat under a tree. The ' +2026-06-25 18:10:33,630 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,630 | INFO | Bird 0.051 0.343 0.182 ✓ +2026-06-25 18:10:33,630 | INFO | Animal 0.214 0.000 0.118 ✗ +2026-06-25 18:10:33,630 | INFO | Civil defense siren 0.138 0.000 0.076 ✗ +2026-06-25 18:10:33,630 | INFO | Siren 0.132 0.000 0.073 ✗ +2026-06-25 18:10:33,630 | INFO | Domestic animals, pets 0.050 0.000 0.028 ✗ +2026-06-25 18:10:33,630 | INFO | → WINNER: Bird (combined=0.182) +2026-06-25 18:10:33,663 | INFO | +[385.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,663 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,663 | INFO | Whale vocalization 0.498 0.000 0.274 ✓ +2026-06-25 18:10:33,663 | INFO | Animal 0.466 0.000 0.256 ✓ +2026-06-25 18:10:33,663 | INFO | Howl 0.193 0.297 0.240 ✓ +2026-06-25 18:10:33,663 | INFO | Bird 0.036 0.305 0.158 ✓ +2026-06-25 18:10:33,663 | INFO | Domestic animals, pets 0.159 0.000 0.087 ✗ +2026-06-25 18:10:33,669 | INFO | Cat 0.152 0.000 0.083 ✗ +2026-06-25 18:10:33,670 | INFO | → WINNER: Whale vocalization (combined=0.274) +2026-06-25 18:10:33,700 | INFO | +[386.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,700 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,701 | INFO | Music 0.557 0.000 0.306 ✓ +2026-06-25 18:10:33,701 | INFO | Bird 0.137 0.305 0.213 ✓ +2026-06-25 18:10:33,701 | INFO | Bird vocalization, bird call, bird song 0.081 0.317 0.187 ✓ +2026-06-25 18:10:33,701 | INFO | Theremin 0.248 0.000 0.136 ✓ +2026-06-25 18:10:33,701 | INFO | Whale vocalization 0.247 0.000 0.136 ✓ +2026-06-25 18:10:33,701 | INFO | Musical instrument 0.208 0.000 0.115 ✗ +2026-06-25 18:10:33,702 | INFO | → WINNER: Music (combined=0.306) +2026-06-25 18:10:33,730 | INFO | +[386.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,730 | INFO | Bird 0.195 0.305 0.244 ✓ +2026-06-25 18:10:33,730 | INFO | Bird vocalization, bird call, bird song 0.104 0.317 0.200 ✓ +2026-06-25 18:10:33,730 | INFO | Owl 0.088 0.320 0.193 ✓ +2026-06-25 18:10:33,730 | INFO | Music 0.321 0.000 0.177 ✓ +2026-06-25 18:10:33,730 | INFO | Chirp, tweet 0.104 0.000 0.057 ✗ +2026-06-25 18:10:33,730 | INFO | Animal 0.071 0.000 0.039 ✗ +2026-06-25 18:10:33,735 | INFO | → WINNER: Bird (combined=0.244) +2026-06-25 18:10:33,763 | INFO | +[386.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,763 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,763 | INFO | Insect 0.099 0.364 0.219 ✓ +2026-06-25 18:10:33,763 | INFO | Wind instrument, woodwind instrument 0.110 0.311 0.201 ✓ +2026-06-25 18:10:33,763 | INFO | Whale vocalization 0.313 0.000 0.172 ✓ +2026-06-25 18:10:33,763 | INFO | Cricket 0.033 0.325 0.164 ✓ +2026-06-25 18:10:33,769 | INFO | Music 0.228 0.000 0.126 ✓ +2026-06-25 18:10:33,770 | INFO | Theremin 0.181 0.000 0.100 ✗ +2026-06-25 18:10:33,770 | INFO | → WINNER: Insect (combined=0.219) +2026-06-25 18:10:33,800 | INFO | +[386.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,800 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,800 | INFO | Wind instrument, woodwind instrument 0.341 0.311 0.328 ✓ +2026-06-25 18:10:33,800 | INFO | Music 0.526 0.000 0.289 ✓ +2026-06-25 18:10:33,800 | INFO | Flute 0.376 0.000 0.207 ✓ +2026-06-25 18:10:33,800 | INFO | Musical instrument 0.170 0.000 0.094 ✗ +2026-06-25 18:10:33,800 | INFO | Shofar 0.069 0.000 0.038 ✗ +2026-06-25 18:10:33,803 | INFO | → WINNER: Wind instrument, woodwind instrument (combined=0.328) +2026-06-25 18:10:33,831 | INFO | +[386.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,831 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,831 | INFO | Music 0.429 0.000 0.236 ✓ +2026-06-25 18:10:33,831 | INFO | Wind instrument, woodwind instrument 0.167 0.311 0.232 ✓ +2026-06-25 18:10:33,831 | INFO | Flute 0.402 0.000 0.221 ✓ +2026-06-25 18:10:33,831 | INFO | Insect 0.053 0.364 0.193 ✓ +2026-06-25 18:10:33,831 | INFO | Musical instrument 0.087 0.000 0.048 ✗ +2026-06-25 18:10:33,831 | INFO | → WINNER: Music (combined=0.236) +2026-06-25 18:10:33,866 | INFO | +[387.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,868 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,868 | INFO | Music 0.187 0.000 0.103 ✗ +2026-06-25 18:10:33,868 | INFO | Animal 0.147 0.000 0.081 ✗ +2026-06-25 18:10:33,868 | INFO | Domestic animals, pets 0.059 0.000 0.033 ✗ +2026-06-25 18:10:33,868 | INFO | → no winner +2026-06-25 18:10:33,900 | INFO | +[387.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,900 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,900 | INFO | Howl 0.137 0.297 0.209 ✓ +2026-06-25 18:10:33,900 | INFO | Animal 0.349 0.000 0.192 ✓ +2026-06-25 18:10:33,900 | INFO | Bird 0.068 0.305 0.175 ✓ +2026-06-25 18:10:33,902 | INFO | Domestic animals, pets 0.134 0.000 0.073 ✗ +2026-06-25 18:10:33,902 | INFO | Music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:33,902 | INFO | Dog 0.078 0.000 0.043 ✗ +2026-06-25 18:10:33,903 | INFO | → WINNER: Howl (combined=0.209) +2026-06-25 18:10:33,932 | INFO | +[387.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,932 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,932 | INFO | Howl 0.152 0.297 0.218 ✓ +2026-06-25 18:10:33,932 | INFO | Bird 0.069 0.305 0.175 ✓ +2026-06-25 18:10:33,932 | INFO | Animal 0.288 0.000 0.158 ✓ +2026-06-25 18:10:33,932 | INFO | Domestic animals, pets 0.083 0.000 0.045 ✗ +2026-06-25 18:10:33,932 | INFO | Whale vocalization 0.068 0.000 0.037 ✗ +2026-06-25 18:10:33,932 | INFO | Dog 0.045 0.000 0.025 ✗ +2026-06-25 18:10:33,932 | INFO | → WINNER: Howl (combined=0.218) +2026-06-25 18:10:33,964 | INFO | +[387.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,964 | INFO | Howl 0.212 0.297 0.250 ✓ +2026-06-25 18:10:33,965 | INFO | Animal 0.406 0.000 0.224 ✓ +2026-06-25 18:10:33,965 | INFO | Bird 0.071 0.305 0.177 ✓ +2026-06-25 18:10:33,965 | INFO | Bird vocalization, bird call, bird song 0.030 0.317 0.159 ✓ +2026-06-25 18:10:33,965 | INFO | Domestic animals, pets 0.138 0.000 0.076 ✗ +2026-06-25 18:10:33,965 | INFO | Whale vocalization 0.130 0.000 0.071 ✗ +2026-06-25 18:10:33,965 | INFO | → WINNER: Howl (combined=0.250) +2026-06-25 18:10:33,994 | INFO | +[387.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:33,994 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:33,996 | INFO | Bird 0.159 0.305 0.225 ✓ +2026-06-25 18:10:33,996 | INFO | Bird vocalization, bird call, bird song 0.073 0.317 0.183 ✓ +2026-06-25 18:10:33,996 | INFO | Animal 0.242 0.000 0.133 ✓ +2026-06-25 18:10:33,996 | INFO | Music 0.131 0.000 0.072 ✗ +2026-06-25 18:10:33,996 | INFO | Whale vocalization 0.076 0.000 0.042 ✗ +2026-06-25 18:10:33,996 | INFO | Domestic animals, pets 0.075 0.000 0.042 ✗ +2026-06-25 18:10:33,996 | INFO | → WINNER: Bird (combined=0.225) +2026-06-25 18:10:34,023 | INFO | +[391.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,023 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,023 | INFO | Animal 0.844 0.000 0.464 ✓ +2026-06-25 18:10:34,028 | INFO | Cat 0.753 0.000 0.414 ✓ +2026-06-25 18:10:34,028 | INFO | Domestic animals, pets 0.656 0.000 0.361 ✓ +2026-06-25 18:10:34,029 | INFO | Meow 0.385 0.000 0.212 ✓ +2026-06-25 18:10:34,029 | INFO | Caterwaul 0.339 0.000 0.186 ✓ +2026-06-25 18:10:34,029 | INFO | → WINNER: Animal (combined=0.464) +2026-06-25 18:10:34,058 | INFO | +[391.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,059 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,059 | INFO | Bird 0.161 0.305 0.226 ✓ +2026-06-25 18:10:34,059 | INFO | Animal 0.406 0.000 0.224 ✓ +2026-06-25 18:10:34,059 | INFO | Howl 0.143 0.297 0.213 ✓ +2026-06-25 18:10:34,060 | INFO | Bird vocalization, bird call, bird song 0.050 0.317 0.170 ✓ +2026-06-25 18:10:34,060 | INFO | Domestic animals, pets 0.164 0.000 0.090 ✗ +2026-06-25 18:10:34,060 | INFO | Cat 0.117 0.000 0.064 ✗ +2026-06-25 18:10:34,060 | INFO | → WINNER: Bird (combined=0.226) +2026-06-25 18:10:34,090 | INFO | +[391.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,090 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,090 | INFO | Bird 0.170 0.305 0.231 ✓ +2026-06-25 18:10:34,090 | INFO | Bird vocalization, bird call, bird song 0.044 0.317 0.167 ✓ +2026-06-25 18:10:34,090 | INFO | Chicken, rooster 0.239 0.000 0.132 ✓ +2026-06-25 18:10:34,090 | INFO | Animal 0.165 0.000 0.090 ✗ +2026-06-25 18:10:34,090 | INFO | Fowl 0.142 0.000 0.078 ✗ +2026-06-25 18:10:34,090 | INFO | Cluck 0.140 0.000 0.077 ✗ +2026-06-25 18:10:34,090 | INFO | → WINNER: Bird (combined=0.231) +2026-06-25 18:10:34,122 | INFO | +[391.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,122 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,122 | INFO | Bird 0.215 0.305 0.256 ✓ +2026-06-25 18:10:34,123 | INFO | Wind instrument, woodwind instrument 0.072 0.311 0.179 ✓ +2026-06-25 18:10:34,123 | INFO | Chicken, rooster 0.314 0.000 0.172 ✓ +2026-06-25 18:10:34,123 | INFO | Bird vocalization, bird call, bird song 0.048 0.317 0.169 ✓ +2026-06-25 18:10:34,123 | INFO | Fowl 0.285 0.000 0.157 ✓ +2026-06-25 18:10:34,123 | INFO | Music 0.223 0.000 0.123 ✓ +2026-06-25 18:10:34,123 | INFO | → WINNER: Bird (combined=0.256) +2026-06-25 18:10:34,153 | INFO | +[391.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,154 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,155 | INFO | Music 0.595 0.000 0.327 ✓ +2026-06-25 18:10:34,155 | INFO | Wind instrument, woodwind instrument 0.108 0.311 0.200 ✓ +2026-06-25 18:10:34,155 | INFO | Bird 0.061 0.305 0.171 ✓ +2026-06-25 18:10:34,155 | INFO | Flute 0.247 0.000 0.136 ✓ +2026-06-25 18:10:34,155 | INFO | Musical instrument 0.155 0.000 0.085 ✗ +2026-06-25 18:10:34,157 | INFO | Animal 0.086 0.000 0.048 ✗ +2026-06-25 18:10:34,157 | INFO | → WINNER: Music (combined=0.327) +2026-06-25 18:10:34,187 | INFO | +[392.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,188 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,188 | INFO | Music 0.696 0.000 0.383 ✓ +2026-06-25 18:10:34,188 | INFO | Wind instrument, woodwind instrument 0.143 0.311 0.219 ✓ +2026-06-25 18:10:34,188 | INFO | Flute 0.393 0.000 0.216 ✓ +2026-06-25 18:10:34,190 | INFO | Bird 0.044 0.305 0.162 ✓ +2026-06-25 18:10:34,190 | INFO | Musical instrument 0.215 0.000 0.118 ✗ +2026-06-25 18:10:34,190 | INFO | Animal 0.071 0.000 0.039 ✗ +2026-06-25 18:10:34,191 | INFO | → WINNER: Music (combined=0.383) +2026-06-25 18:10:34,222 | INFO | +[392.20s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,222 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,223 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:10:34,223 | INFO | Flute 0.368 0.000 0.203 ✓ +2026-06-25 18:10:34,223 | INFO | Wind instrument, woodwind instrument 0.093 0.311 0.191 ✓ +2026-06-25 18:10:34,223 | INFO | Musical instrument 0.328 0.000 0.180 ✓ +2026-06-25 18:10:34,224 | INFO | Classical music 0.114 0.000 0.063 ✗ +2026-06-25 18:10:34,224 | INFO | Orchestra 0.083 0.000 0.045 ✗ +2026-06-25 18:10:34,224 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:10:34,254 | INFO | +[392.40s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,255 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,255 | INFO | Music 0.735 0.000 0.404 ✓ +2026-06-25 18:10:34,255 | INFO | Musical instrument 0.174 0.000 0.096 ✗ +2026-06-25 18:10:34,255 | INFO | Flute 0.082 0.000 0.045 ✗ +2026-06-25 18:10:34,255 | INFO | → WINNER: Music (combined=0.404) +2026-06-25 18:10:34,283 | INFO | +[392.60s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,283 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,290 | INFO | Music 0.474 0.000 0.261 ✓ +2026-06-25 18:10:34,290 | INFO | → WINNER: Music (combined=0.261) +2026-06-25 18:10:34,322 | INFO | +[392.80s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,322 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,324 | INFO | Music 0.452 0.000 0.249 ✓ +2026-06-25 18:10:34,324 | INFO | Singing bowl 0.080 0.000 0.044 ✗ +2026-06-25 18:10:34,325 | INFO | Musical instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:10:34,325 | INFO | → WINNER: Music (combined=0.249) +2026-06-25 18:10:34,355 | INFO | +[393.00s] AMBIENT | scene='The image shows three people sitting on a woven mat in a forest. He is' +2026-06-25 18:10:34,355 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,355 | INFO | Music 0.481 0.000 0.265 ✓ +2026-06-25 18:10:34,355 | INFO | Musical instrument 0.143 0.000 0.079 ✗ +2026-06-25 18:10:34,355 | INFO | Plucked string instrument 0.054 0.000 0.029 ✗ +2026-06-25 18:10:34,355 | INFO | Animal 0.046 0.000 0.025 ✗ +2026-06-25 18:10:34,357 | INFO | → WINNER: Music (combined=0.265) +2026-06-25 18:10:34,386 | INFO | +[393.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,386 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,386 | INFO | Music 0.839 0.000 0.461 ✓ +2026-06-25 18:10:34,387 | INFO | Musical instrument 0.513 0.000 0.282 ✓ +2026-06-25 18:10:34,388 | INFO | Plucked string instrument 0.332 0.000 0.182 ✓ +2026-06-25 18:10:34,388 | INFO | Guitar 0.293 0.000 0.161 ✓ +2026-06-25 18:10:34,388 | INFO | Acoustic guitar 0.065 0.000 0.035 ✗ +2026-06-25 18:10:34,388 | INFO | Strum 0.058 0.000 0.032 ✗ +2026-06-25 18:10:34,389 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:10:34,419 | INFO | +[393.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,421 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,421 | INFO | Music 0.807 0.000 0.444 ✓ +2026-06-25 18:10:34,421 | INFO | Musical instrument 0.317 0.000 0.174 ✓ +2026-06-25 18:10:34,422 | INFO | Plucked string instrument 0.069 0.000 0.038 ✗ +2026-06-25 18:10:34,422 | INFO | Guitar 0.060 0.000 0.033 ✗ +2026-06-25 18:10:34,422 | INFO | Piano 0.055 0.000 0.030 ✗ +2026-06-25 18:10:34,423 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:34,454 | INFO | +[393.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,454 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,455 | INFO | Music 0.703 0.000 0.387 ✓ +2026-06-25 18:10:34,455 | INFO | Musical instrument 0.260 0.000 0.143 ✓ +2026-06-25 18:10:34,456 | INFO | Organ 0.065 0.000 0.036 ✗ +2026-06-25 18:10:34,456 | INFO | → WINNER: Music (combined=0.387) +2026-06-25 18:10:34,481 | INFO | +[393.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,486 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,487 | INFO | Music 0.793 0.000 0.436 ✓ +2026-06-25 18:10:34,487 | INFO | Sitar 0.696 0.000 0.383 ✓ +2026-06-25 18:10:34,488 | INFO | Carnatic music 0.436 0.000 0.240 ✓ +2026-06-25 18:10:34,488 | INFO | Musical instrument 0.321 0.000 0.176 ✓ +2026-06-25 18:10:34,488 | INFO | Plucked string instrument 0.198 0.000 0.109 ✗ +2026-06-25 18:10:34,488 | INFO | Classical music 0.149 0.000 0.082 ✗ +2026-06-25 18:10:34,488 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:34,514 | INFO | +[394.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,524 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,525 | INFO | Music 0.767 0.000 0.422 ✓ +2026-06-25 18:10:34,526 | INFO | Sitar 0.593 0.000 0.326 ✓ +2026-06-25 18:10:34,526 | INFO | Carnatic music 0.452 0.000 0.249 ✓ +2026-06-25 18:10:34,527 | INFO | Musical instrument 0.356 0.000 0.196 ✓ +2026-06-25 18:10:34,532 | INFO | Classical music 0.171 0.000 0.094 ✗ +2026-06-25 18:10:34,532 | INFO | Plucked string instrument 0.137 0.000 0.075 ✗ +2026-06-25 18:10:34,533 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:10:34,563 | INFO | +[394.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,563 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,566 | INFO | Music 0.491 0.000 0.270 ✓ +2026-06-25 18:10:34,567 | INFO | Musical instrument 0.285 0.000 0.157 ✓ +2026-06-25 18:10:34,567 | INFO | Carnatic music 0.148 0.000 0.082 ✗ +2026-06-25 18:10:34,569 | INFO | Sitar 0.132 0.000 0.073 ✗ +2026-06-25 18:10:34,572 | INFO | Plucked string instrument 0.124 0.000 0.068 ✗ +2026-06-25 18:10:34,573 | INFO | Guitar 0.058 0.000 0.032 ✗ +2026-06-25 18:10:34,574 | INFO | → WINNER: Music (combined=0.270) +2026-06-25 18:10:34,611 | INFO | +[394.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,612 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,612 | INFO | Music 0.875 0.000 0.481 ✓ +2026-06-25 18:10:34,613 | INFO | Musical instrument 0.662 0.000 0.364 ✓ +2026-06-25 18:10:34,613 | INFO | Plucked string instrument 0.571 0.000 0.314 ✓ +2026-06-25 18:10:34,613 | INFO | Guitar 0.430 0.000 0.236 ✓ +2026-06-25 18:10:34,613 | INFO | Acoustic guitar 0.142 0.000 0.078 ✗ +2026-06-25 18:10:34,613 | INFO | Strum 0.130 0.000 0.071 ✗ +2026-06-25 18:10:34,614 | INFO | → WINNER: Music (combined=0.481) +2026-06-25 18:10:34,644 | INFO | +[399.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,644 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,645 | INFO | Music 0.795 0.000 0.437 ✓ +2026-06-25 18:10:34,645 | INFO | Sitar 0.545 0.000 0.300 ✓ +2026-06-25 18:10:34,645 | INFO | Musical instrument 0.454 0.000 0.250 ✓ +2026-06-25 18:10:34,645 | INFO | Plucked string instrument 0.294 0.000 0.162 ✓ +2026-06-25 18:10:34,646 | INFO | Carnatic music 0.205 0.000 0.113 ✗ +2026-06-25 18:10:34,646 | INFO | Tabla 0.171 0.000 0.094 ✗ +2026-06-25 18:10:34,646 | INFO | → WINNER: Music (combined=0.437) +2026-06-25 18:10:34,676 | INFO | +[399.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,677 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,680 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:10:34,681 | INFO | Carnatic music 0.517 0.000 0.284 ✓ +2026-06-25 18:10:34,681 | INFO | Sitar 0.495 0.000 0.272 ✓ +2026-06-25 18:10:34,682 | INFO | Musical instrument 0.346 0.000 0.190 ✓ +2026-06-25 18:10:34,683 | INFO | Tabla 0.229 0.000 0.126 ✓ +2026-06-25 18:10:34,683 | INFO | Classical music 0.215 0.000 0.118 ✗ +2026-06-25 18:10:34,683 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:34,758 | INFO | +[399.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,763 | INFO | Music 0.789 0.000 0.434 ✓ +2026-06-25 18:10:34,765 | INFO | Sitar 0.705 0.000 0.388 ✓ +2026-06-25 18:10:34,766 | INFO | Musical instrument 0.433 0.000 0.238 ✓ +2026-06-25 18:10:34,767 | INFO | Plucked string instrument 0.270 0.000 0.148 ✓ +2026-06-25 18:10:34,767 | INFO | Carnatic music 0.257 0.000 0.141 ✓ +2026-06-25 18:10:34,768 | INFO | Classical music 0.173 0.000 0.095 ✗ +2026-06-25 18:10:34,768 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:10:34,831 | INFO | +[399.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,831 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,831 | INFO | Music 0.819 0.000 0.451 ✓ +2026-06-25 18:10:34,831 | INFO | Sitar 0.679 0.000 0.373 ✓ +2026-06-25 18:10:34,831 | INFO | Musical instrument 0.558 0.000 0.307 ✓ +2026-06-25 18:10:34,831 | INFO | Plucked string instrument 0.402 0.000 0.221 ✓ +2026-06-25 18:10:34,831 | INFO | Carnatic music 0.270 0.000 0.148 ✓ +2026-06-25 18:10:34,836 | INFO | Classical music 0.169 0.000 0.093 ✗ +2026-06-25 18:10:34,837 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:34,898 | INFO | +[399.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,898 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,900 | INFO | Music 0.842 0.000 0.463 ✓ +2026-06-25 18:10:34,900 | INFO | Sitar 0.654 0.000 0.360 ✓ +2026-06-25 18:10:34,900 | INFO | Musical instrument 0.593 0.000 0.326 ✓ +2026-06-25 18:10:34,900 | INFO | Plucked string instrument 0.438 0.000 0.241 ✓ +2026-06-25 18:10:34,900 | INFO | Carnatic music 0.201 0.000 0.110 ✗ +2026-06-25 18:10:34,900 | INFO | Classical music 0.146 0.000 0.081 ✗ +2026-06-25 18:10:34,902 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:34,932 | INFO | +[400.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,933 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,934 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:34,934 | INFO | Sitar 0.573 0.000 0.315 ✓ +2026-06-25 18:10:34,934 | INFO | Musical instrument 0.458 0.000 0.252 ✓ +2026-06-25 18:10:34,934 | INFO | Plucked string instrument 0.373 0.000 0.205 ✓ +2026-06-25 18:10:34,935 | INFO | Carnatic music 0.167 0.000 0.092 ✗ +2026-06-25 18:10:34,935 | INFO | Guitar 0.119 0.000 0.065 ✗ +2026-06-25 18:10:34,935 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:34,965 | INFO | +[400.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,965 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,965 | INFO | Music 0.776 0.000 0.427 ✓ +2026-06-25 18:10:34,965 | INFO | Sitar 0.615 0.000 0.338 ✓ +2026-06-25 18:10:34,965 | INFO | Musical instrument 0.362 0.000 0.199 ✓ +2026-06-25 18:10:34,965 | INFO | Plucked string instrument 0.296 0.000 0.163 ✓ +2026-06-25 18:10:34,965 | INFO | Carnatic music 0.202 0.000 0.111 ✗ +2026-06-25 18:10:34,965 | INFO | Tabla 0.071 0.000 0.039 ✗ +2026-06-25 18:10:34,965 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:10:34,996 | INFO | +[400.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:34,997 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:34,997 | INFO | Music 0.779 0.000 0.428 ✓ +2026-06-25 18:10:34,997 | INFO | Musical instrument 0.400 0.000 0.220 ✓ +2026-06-25 18:10:34,997 | INFO | Sitar 0.342 0.000 0.188 ✓ +2026-06-25 18:10:34,999 | INFO | Plucked string instrument 0.321 0.000 0.176 ✓ +2026-06-25 18:10:35,000 | INFO | Guitar 0.152 0.000 0.084 ✗ +2026-06-25 18:10:35,000 | INFO | Carnatic music 0.107 0.000 0.059 ✗ +2026-06-25 18:10:35,000 | INFO | → WINNER: Music (combined=0.428) +2026-06-25 18:10:35,063 | INFO | +[400.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,066 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,066 | INFO | Music 0.806 0.000 0.444 ✓ +2026-06-25 18:10:35,067 | INFO | Musical instrument 0.436 0.000 0.240 ✓ +2026-06-25 18:10:35,067 | INFO | Plucked string instrument 0.303 0.000 0.167 ✓ +2026-06-25 18:10:35,067 | INFO | Sitar 0.273 0.000 0.150 ✓ +2026-06-25 18:10:35,067 | INFO | Guitar 0.180 0.000 0.099 ✗ +2026-06-25 18:10:35,068 | INFO | Strum 0.054 0.000 0.030 ✗ +2026-06-25 18:10:35,068 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:35,108 | INFO | +[400.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,110 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,110 | INFO | Music 0.765 0.000 0.421 ✓ +2026-06-25 18:10:35,110 | INFO | Musical instrument 0.484 0.000 0.266 ✓ +2026-06-25 18:10:35,111 | INFO | Plucked string instrument 0.184 0.000 0.101 ✗ +2026-06-25 18:10:35,111 | INFO | Brass instrument 0.159 0.000 0.087 ✗ +2026-06-25 18:10:35,112 | INFO | Traditional music 0.152 0.000 0.084 ✗ +2026-06-25 18:10:35,112 | INFO | Saxophone 0.137 0.000 0.076 ✗ +2026-06-25 18:10:35,112 | INFO | → WINNER: Music (combined=0.421) +2026-06-25 18:10:35,182 | INFO | +[401.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,182 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,182 | INFO | Music 0.784 0.000 0.431 ✓ +2026-06-25 18:10:35,185 | INFO | Musical instrument 0.515 0.000 0.283 ✓ +2026-06-25 18:10:35,187 | INFO | Plucked string instrument 0.194 0.000 0.107 ✗ +2026-06-25 18:10:35,190 | INFO | Guitar 0.187 0.000 0.103 ✗ +2026-06-25 18:10:35,190 | INFO | Clarinet 0.066 0.000 0.036 ✗ +2026-06-25 18:10:35,191 | INFO | Wind instrument, woodwind instrument 0.062 0.000 0.034 ✗ +2026-06-25 18:10:35,222 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:10:35,290 | INFO | +[401.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,295 | INFO | Music 0.711 0.000 0.391 ✓ +2026-06-25 18:10:35,302 | INFO | Musical instrument 0.493 0.000 0.271 ✓ +2026-06-25 18:10:35,309 | INFO | Plucked string instrument 0.202 0.000 0.111 ✗ +2026-06-25 18:10:35,310 | INFO | Guitar 0.187 0.000 0.103 ✗ +2026-06-25 18:10:35,311 | INFO | Organ 0.088 0.000 0.048 ✗ +2026-06-25 18:10:35,312 | INFO | Electronic organ 0.064 0.000 0.035 ✗ +2026-06-25 18:10:35,312 | INFO | → WINNER: Music (combined=0.391) +2026-06-25 18:10:35,450 | INFO | +[401.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,453 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,453 | INFO | Music 0.830 0.000 0.456 ✓ +2026-06-25 18:10:35,453 | INFO | Musical instrument 0.510 0.000 0.281 ✓ +2026-06-25 18:10:35,453 | INFO | Traditional music 0.216 0.000 0.119 ✗ +2026-06-25 18:10:35,453 | INFO | Plucked string instrument 0.214 0.000 0.118 ✗ +2026-06-25 18:10:35,453 | INFO | Guitar 0.127 0.000 0.070 ✗ +2026-06-25 18:10:35,453 | INFO | Sitar 0.109 0.000 0.060 ✗ +2026-06-25 18:10:35,453 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:35,517 | INFO | +[401.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,517 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,519 | INFO | Music 0.830 0.000 0.456 ✓ +2026-06-25 18:10:35,519 | INFO | Musical instrument 0.461 0.000 0.254 ✓ +2026-06-25 18:10:35,519 | INFO | Sitar 0.382 0.000 0.210 ✓ +2026-06-25 18:10:35,519 | INFO | Plucked string instrument 0.328 0.000 0.180 ✓ +2026-06-25 18:10:35,519 | INFO | Traditional music 0.136 0.000 0.075 ✗ +2026-06-25 18:10:35,519 | INFO | Guitar 0.123 0.000 0.068 ✗ +2026-06-25 18:10:35,520 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:35,550 | INFO | +[401.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,551 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,551 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:35,551 | INFO | Musical instrument 0.584 0.000 0.321 ✓ +2026-06-25 18:10:35,551 | INFO | Plucked string instrument 0.473 0.000 0.260 ✓ +2026-06-25 18:10:35,552 | INFO | Guitar 0.314 0.000 0.173 ✓ +2026-06-25 18:10:35,552 | INFO | Sitar 0.257 0.000 0.141 ✓ +2026-06-25 18:10:35,552 | INFO | Acoustic guitar 0.163 0.000 0.090 ✗ +2026-06-25 18:10:35,553 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:35,582 | INFO | +[402.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,582 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,582 | INFO | Music 0.782 0.000 0.430 ✓ +2026-06-25 18:10:35,582 | INFO | Sitar 0.634 0.000 0.349 ✓ +2026-06-25 18:10:35,582 | INFO | Musical instrument 0.427 0.000 0.235 ✓ +2026-06-25 18:10:35,582 | INFO | Plucked string instrument 0.300 0.000 0.165 ✓ +2026-06-25 18:10:35,582 | INFO | Tabla 0.297 0.000 0.163 ✓ +2026-06-25 18:10:35,582 | INFO | Carnatic music 0.294 0.000 0.162 ✓ +2026-06-25 18:10:35,582 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:10:35,614 | INFO | +[402.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,614 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,614 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:10:35,614 | INFO | Musical instrument 0.588 0.000 0.324 ✓ +2026-06-25 18:10:35,615 | INFO | Plucked string instrument 0.455 0.000 0.250 ✓ +2026-06-25 18:10:35,615 | INFO | Guitar 0.344 0.000 0.189 ✓ +2026-06-25 18:10:35,615 | INFO | Strum 0.121 0.000 0.066 ✗ +2026-06-25 18:10:35,615 | INFO | Acoustic guitar 0.111 0.000 0.061 ✗ +2026-06-25 18:10:35,615 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:35,645 | INFO | +[402.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,647 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,647 | INFO | Music 0.821 0.000 0.452 ✓ +2026-06-25 18:10:35,647 | INFO | Musical instrument 0.505 0.000 0.278 ✓ +2026-06-25 18:10:35,647 | INFO | Plucked string instrument 0.417 0.000 0.230 ✓ +2026-06-25 18:10:35,648 | INFO | Guitar 0.222 0.000 0.122 ✓ +2026-06-25 18:10:35,648 | INFO | Sitar 0.162 0.000 0.089 ✗ +2026-06-25 18:10:35,648 | INFO | Carnatic music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:35,648 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:35,672 | INFO | +[402.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,678 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,678 | INFO | Music 0.835 0.000 0.459 ✓ +2026-06-25 18:10:35,678 | INFO | Musical instrument 0.508 0.000 0.280 ✓ +2026-06-25 18:10:35,679 | INFO | Plucked string instrument 0.429 0.000 0.236 ✓ +2026-06-25 18:10:35,679 | INFO | Sitar 0.407 0.000 0.224 ✓ +2026-06-25 18:10:35,679 | INFO | Carnatic music 0.180 0.000 0.099 ✗ +2026-06-25 18:10:35,679 | INFO | Guitar 0.135 0.000 0.074 ✗ +2026-06-25 18:10:35,679 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:35,707 | INFO | +[402.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,707 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,710 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:35,710 | INFO | Musical instrument 0.554 0.000 0.305 ✓ +2026-06-25 18:10:35,711 | INFO | Plucked string instrument 0.459 0.000 0.253 ✓ +2026-06-25 18:10:35,712 | INFO | Sitar 0.291 0.000 0.160 ✓ +2026-06-25 18:10:35,712 | INFO | Guitar 0.241 0.000 0.133 ✓ +2026-06-25 18:10:35,712 | INFO | Banjo 0.169 0.000 0.093 ✗ +2026-06-25 18:10:35,713 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:35,742 | INFO | +[403.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,742 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,742 | INFO | Music 0.822 0.000 0.452 ✓ +2026-06-25 18:10:35,742 | INFO | Musical instrument 0.387 0.000 0.213 ✓ +2026-06-25 18:10:35,742 | INFO | Plucked string instrument 0.320 0.000 0.176 ✓ +2026-06-25 18:10:35,742 | INFO | Sitar 0.223 0.000 0.122 ✓ +2026-06-25 18:10:35,746 | INFO | Guitar 0.172 0.000 0.095 ✗ +2026-06-25 18:10:35,746 | INFO | Banjo 0.158 0.000 0.087 ✗ +2026-06-25 18:10:35,746 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:35,773 | INFO | +[403.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,773 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,778 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:10:35,778 | INFO | Musical instrument 0.486 0.000 0.268 ✓ +2026-06-25 18:10:35,778 | INFO | Sitar 0.388 0.000 0.213 ✓ +2026-06-25 18:10:35,778 | INFO | Plucked string instrument 0.319 0.000 0.175 ✓ +2026-06-25 18:10:35,779 | INFO | Guitar 0.142 0.000 0.078 ✗ +2026-06-25 18:10:35,779 | INFO | Mandolin 0.086 0.000 0.047 ✗ +2026-06-25 18:10:35,780 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:35,805 | INFO | +[403.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,805 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,810 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:10:35,810 | INFO | Musical instrument 0.589 0.000 0.324 ✓ +2026-06-25 18:10:35,810 | INFO | Plucked string instrument 0.514 0.000 0.283 ✓ +2026-06-25 18:10:35,810 | INFO | Guitar 0.412 0.000 0.227 ✓ +2026-06-25 18:10:35,811 | INFO | Acoustic guitar 0.149 0.000 0.082 ✗ +2026-06-25 18:10:35,812 | INFO | Strum 0.137 0.000 0.075 ✗ +2026-06-25 18:10:35,813 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:35,842 | INFO | +[403.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,842 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,845 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:35,846 | INFO | Musical instrument 0.554 0.000 0.305 ✓ +2026-06-25 18:10:35,846 | INFO | Plucked string instrument 0.419 0.000 0.230 ✓ +2026-06-25 18:10:35,847 | INFO | Guitar 0.298 0.000 0.164 ✓ +2026-06-25 18:10:35,847 | INFO | Zither 0.209 0.000 0.115 ✗ +2026-06-25 18:10:35,847 | INFO | Mandolin 0.164 0.000 0.090 ✗ +2026-06-25 18:10:35,847 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:35,872 | INFO | +[403.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,879 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,880 | INFO | Music 0.883 0.000 0.486 ✓ +2026-06-25 18:10:35,880 | INFO | Musical instrument 0.687 0.000 0.378 ✓ +2026-06-25 18:10:35,880 | INFO | Plucked string instrument 0.630 0.000 0.346 ✓ +2026-06-25 18:10:35,880 | INFO | Guitar 0.600 0.000 0.330 ✓ +2026-06-25 18:10:35,881 | INFO | Acoustic guitar 0.280 0.000 0.154 ✓ +2026-06-25 18:10:35,882 | INFO | Strum 0.267 0.000 0.147 ✓ +2026-06-25 18:10:35,882 | INFO | → WINNER: Music (combined=0.486) +2026-06-25 18:10:35,911 | INFO | +[404.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,912 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,912 | INFO | Music 0.844 0.000 0.464 ✓ +2026-06-25 18:10:35,912 | INFO | Musical instrument 0.701 0.000 0.385 ✓ +2026-06-25 18:10:35,912 | INFO | Plucked string instrument 0.633 0.000 0.348 ✓ +2026-06-25 18:10:35,912 | INFO | Guitar 0.534 0.000 0.294 ✓ +2026-06-25 18:10:35,913 | INFO | Acoustic guitar 0.240 0.000 0.132 ✓ +2026-06-25 18:10:35,913 | INFO | Strum 0.202 0.000 0.111 ✗ +2026-06-25 18:10:35,913 | INFO | → WINNER: Music (combined=0.464) +2026-06-25 18:10:35,940 | INFO | +[404.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,940 | INFO | Music 0.878 0.000 0.483 ✓ +2026-06-25 18:10:35,940 | INFO | Musical instrument 0.799 0.000 0.439 ✓ +2026-06-25 18:10:35,940 | INFO | Plucked string instrument 0.757 0.000 0.416 ✓ +2026-06-25 18:10:35,940 | INFO | Guitar 0.616 0.000 0.339 ✓ +2026-06-25 18:10:35,944 | INFO | Acoustic guitar 0.217 0.000 0.120 ✗ +2026-06-25 18:10:35,944 | INFO | Banjo 0.208 0.000 0.114 ✗ +2026-06-25 18:10:35,944 | INFO | → WINNER: Music (combined=0.483) +2026-06-25 18:10:35,973 | INFO | +[404.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:35,973 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:35,973 | INFO | Music 0.822 0.000 0.452 ✓ +2026-06-25 18:10:35,973 | INFO | Musical instrument 0.563 0.000 0.310 ✓ +2026-06-25 18:10:35,973 | INFO | Plucked string instrument 0.463 0.000 0.255 ✓ +2026-06-25 18:10:35,973 | INFO | Sitar 0.350 0.000 0.193 ✓ +2026-06-25 18:10:35,973 | INFO | Guitar 0.162 0.000 0.089 ✗ +2026-06-25 18:10:35,973 | INFO | Banjo 0.126 0.000 0.069 ✗ +2026-06-25 18:10:35,973 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:36,006 | INFO | +[404.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,006 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,006 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:36,006 | INFO | Musical instrument 0.597 0.000 0.328 ✓ +2026-06-25 18:10:36,006 | INFO | Sitar 0.552 0.000 0.304 ✓ +2026-06-25 18:10:36,006 | INFO | Plucked string instrument 0.420 0.000 0.231 ✓ +2026-06-25 18:10:36,006 | INFO | Tabla 0.156 0.000 0.086 ✗ +2026-06-25 18:10:36,006 | INFO | Bowed string instrument 0.145 0.000 0.080 ✗ +2026-06-25 18:10:36,006 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:36,039 | INFO | +[404.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,039 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,039 | INFO | Music 0.799 0.000 0.440 ✓ +2026-06-25 18:10:36,040 | INFO | Musical instrument 0.445 0.000 0.245 ✓ +2026-06-25 18:10:36,041 | INFO | Sitar 0.437 0.000 0.240 ✓ +2026-06-25 18:10:36,041 | INFO | Plucked string instrument 0.310 0.000 0.170 ✓ +2026-06-25 18:10:36,041 | INFO | Traditional music 0.102 0.000 0.056 ✗ +2026-06-25 18:10:36,041 | INFO | Mandolin 0.098 0.000 0.054 ✗ +2026-06-25 18:10:36,041 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:36,074 | INFO | +[405.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,075 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:36,075 | INFO | Musical instrument 0.502 0.000 0.276 ✓ +2026-06-25 18:10:36,075 | INFO | Sitar 0.482 0.000 0.265 ✓ +2026-06-25 18:10:36,075 | INFO | Plucked string instrument 0.362 0.000 0.199 ✓ +2026-06-25 18:10:36,076 | INFO | Guitar 0.107 0.000 0.059 ✗ +2026-06-25 18:10:36,076 | INFO | Carnatic music 0.106 0.000 0.058 ✗ +2026-06-25 18:10:36,077 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:36,106 | INFO | +[405.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,107 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,107 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:10:36,107 | INFO | Musical instrument 0.393 0.000 0.216 ✓ +2026-06-25 18:10:36,107 | INFO | Plucked string instrument 0.266 0.000 0.146 ✓ +2026-06-25 18:10:36,108 | INFO | Sitar 0.159 0.000 0.087 ✗ +2026-06-25 18:10:36,108 | INFO | Guitar 0.153 0.000 0.084 ✗ +2026-06-25 18:10:36,108 | INFO | Carnatic music 0.106 0.000 0.058 ✗ +2026-06-25 18:10:36,108 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:36,140 | INFO | +[405.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,140 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,140 | INFO | Music 0.857 0.000 0.472 ✓ +2026-06-25 18:10:36,141 | INFO | Musical instrument 0.359 0.000 0.198 ✓ +2026-06-25 18:10:36,141 | INFO | Plucked string instrument 0.256 0.000 0.141 ✓ +2026-06-25 18:10:36,142 | INFO | Guitar 0.152 0.000 0.083 ✗ +2026-06-25 18:10:36,142 | INFO | Sitar 0.094 0.000 0.051 ✗ +2026-06-25 18:10:36,142 | INFO | Mandolin 0.056 0.000 0.031 ✗ +2026-06-25 18:10:36,142 | INFO | → WINNER: Music (combined=0.472) +2026-06-25 18:10:36,171 | INFO | +[405.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,172 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,172 | INFO | Music 0.858 0.000 0.472 ✓ +2026-06-25 18:10:36,172 | INFO | Musical instrument 0.273 0.000 0.150 ✓ +2026-06-25 18:10:36,172 | INFO | Plucked string instrument 0.198 0.000 0.109 ✗ +2026-06-25 18:10:36,172 | INFO | Guitar 0.116 0.000 0.064 ✗ +2026-06-25 18:10:36,172 | INFO | Banjo 0.067 0.000 0.037 ✗ +2026-06-25 18:10:36,172 | INFO | Sitar 0.060 0.000 0.033 ✗ +2026-06-25 18:10:36,172 | INFO | → WINNER: Music (combined=0.472) +2026-06-25 18:10:36,202 | INFO | +[405.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,203 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,203 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:36,203 | INFO | Musical instrument 0.198 0.000 0.109 ✗ +2026-06-25 18:10:36,203 | INFO | Middle Eastern music 0.143 0.000 0.079 ✗ +2026-06-25 18:10:36,204 | INFO | Folk music 0.112 0.000 0.061 ✗ +2026-06-25 18:10:36,204 | INFO | Plucked string instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:10:36,204 | INFO | Singing 0.079 0.000 0.043 ✗ +2026-06-25 18:10:36,204 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:36,232 | INFO | +[406.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,233 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,233 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:10:36,233 | INFO | Musical instrument 0.254 0.000 0.140 ✓ +2026-06-25 18:10:36,234 | INFO | Middle Eastern music 0.157 0.000 0.086 ✗ +2026-06-25 18:10:36,234 | INFO | Sitar 0.119 0.000 0.066 ✗ +2026-06-25 18:10:36,234 | INFO | Folk music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:36,234 | INFO | Plucked string instrument 0.090 0.000 0.050 ✗ +2026-06-25 18:10:36,234 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:36,263 | INFO | +[406.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,265 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,265 | INFO | Music 0.886 0.000 0.487 ✓ +2026-06-25 18:10:36,265 | INFO | Musical instrument 0.280 0.000 0.154 ✓ +2026-06-25 18:10:36,265 | INFO | Plucked string instrument 0.141 0.000 0.077 ✗ +2026-06-25 18:10:36,266 | INFO | Guitar 0.109 0.000 0.060 ✗ +2026-06-25 18:10:36,266 | INFO | → WINNER: Music (combined=0.487) +2026-06-25 18:10:36,294 | INFO | +[406.40s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,294 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,295 | INFO | Music 0.848 0.000 0.466 ✓ +2026-06-25 18:10:36,295 | INFO | Musical instrument 0.369 0.000 0.203 ✓ +2026-06-25 18:10:36,295 | INFO | Plucked string instrument 0.224 0.000 0.123 ✓ +2026-06-25 18:10:36,295 | INFO | Guitar 0.198 0.000 0.109 ✗ +2026-06-25 18:10:36,295 | INFO | Strum 0.069 0.000 0.038 ✗ +2026-06-25 18:10:36,297 | INFO | Acoustic guitar 0.059 0.000 0.032 ✗ +2026-06-25 18:10:36,297 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:36,326 | INFO | +[406.60s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,326 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,326 | INFO | Music 0.853 0.000 0.469 ✓ +2026-06-25 18:10:36,326 | INFO | Musical instrument 0.197 0.000 0.108 ✗ +2026-06-25 18:10:36,328 | INFO | Plucked string instrument 0.091 0.000 0.050 ✗ +2026-06-25 18:10:36,328 | INFO | Guitar 0.079 0.000 0.043 ✗ +2026-06-25 18:10:36,328 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:36,357 | INFO | +[406.80s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,357 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,357 | INFO | Music 0.752 0.000 0.414 ✓ +2026-06-25 18:10:36,357 | INFO | Musical instrument 0.196 0.000 0.108 ✗ +2026-06-25 18:10:36,359 | INFO | Plucked string instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:10:36,359 | INFO | Guitar 0.083 0.000 0.046 ✗ +2026-06-25 18:10:36,359 | INFO | → WINNER: Music (combined=0.414) +2026-06-25 18:10:36,389 | INFO | +[407.00s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,389 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,390 | INFO | Music 0.309 0.000 0.170 ✓ +2026-06-25 18:10:36,390 | INFO | → WINNER: Music (combined=0.170) +2026-06-25 18:10:36,421 | INFO | +[407.20s] AMBIENT | scene='The image shows two people walking on a dirt path in a forested area. ' +2026-06-25 18:10:36,421 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,421 | INFO | Music 0.837 0.000 0.460 ✓ +2026-06-25 18:10:36,421 | INFO | Musical instrument 0.364 0.000 0.200 ✓ +2026-06-25 18:10:36,421 | INFO | Plucked string instrument 0.257 0.000 0.141 ✓ +2026-06-25 18:10:36,423 | INFO | Guitar 0.230 0.000 0.126 ✓ +2026-06-25 18:10:36,423 | INFO | Singing 0.113 0.000 0.062 ✗ +2026-06-25 18:10:36,423 | INFO | Acoustic guitar 0.064 0.000 0.035 ✗ +2026-06-25 18:10:36,423 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:36,459 | INFO | +[420.20s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-06-25 18:10:36,459 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,460 | INFO | Music 0.276 0.000 0.152 ✓ +2026-06-25 18:10:36,460 | INFO | Musical instrument 0.163 0.000 0.089 ✗ +2026-06-25 18:10:36,461 | INFO | → WINNER: Music (combined=0.152) +2026-06-25 18:10:36,493 | INFO | +[420.40s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-06-25 18:10:36,493 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,494 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:36,494 | INFO | Musical instrument 0.207 0.000 0.114 ✗ +2026-06-25 18:10:36,495 | INFO | Plucked string instrument 0.099 0.000 0.054 ✗ +2026-06-25 18:10:36,495 | INFO | Guitar 0.073 0.000 0.040 ✗ +2026-06-25 18:10:36,495 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:36,523 | INFO | +[420.60s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-06-25 18:10:36,523 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,523 | INFO | Music 0.797 0.000 0.439 ✓ +2026-06-25 18:10:36,523 | INFO | Wild animals 0.041 0.283 0.150 ✓ +2026-06-25 18:10:36,523 | INFO | Animal 0.097 0.000 0.053 ✗ +2026-06-25 18:10:36,523 | INFO | Sitar 0.068 0.000 0.037 ✗ +2026-06-25 18:10:36,523 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:36,555 | INFO | +[420.80s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-06-25 18:10:36,555 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,555 | INFO | Music 0.650 0.000 0.358 ✓ +2026-06-25 18:10:36,555 | INFO | Bird 0.043 0.368 0.189 ✓ +2026-06-25 18:10:36,555 | INFO | Wild animals 0.040 0.283 0.149 ✓ +2026-06-25 18:10:36,555 | INFO | Animal 0.091 0.000 0.050 ✗ +2026-06-25 18:10:36,560 | INFO | → WINNER: Music (combined=0.358) +2026-06-25 18:10:36,590 | INFO | +[421.00s] AMBIENT | scene='The image shows three people standing in a field with tall grass and t' +2026-06-25 18:10:36,590 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,590 | INFO | Music 0.629 0.000 0.346 ✓ +2026-06-25 18:10:36,590 | INFO | Animal 0.056 0.000 0.031 ✗ +2026-06-25 18:10:36,590 | INFO | → WINNER: Music (combined=0.346) +2026-06-25 18:10:36,632 | INFO | +[458.00s] AMBIENT | scene='The image shows a group of four people standing in a field with tall g' +2026-06-25 18:10:36,632 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,632 | INFO | Music 0.787 0.000 0.433 ✓ +2026-06-25 18:10:36,632 | INFO | Musical instrument 0.512 0.000 0.281 ✓ +2026-06-25 18:10:36,633 | INFO | Keyboard (musical) 0.125 0.000 0.069 ✗ +2026-06-25 18:10:36,634 | INFO | Piano 0.117 0.000 0.064 ✗ +2026-06-25 18:10:36,634 | INFO | Plucked string instrument 0.112 0.000 0.061 ✗ +2026-06-25 18:10:36,634 | INFO | Wind instrument, woodwind instrument 0.102 0.000 0.056 ✗ +2026-06-25 18:10:36,634 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:10:36,664 | INFO | +[458.20s] AMBIENT | scene='The image shows a group of four people standing in a field with tall g' +2026-06-25 18:10:36,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,665 | INFO | Music 0.802 0.000 0.441 ✓ +2026-06-25 18:10:36,665 | INFO | Musical instrument 0.293 0.000 0.161 ✓ +2026-06-25 18:10:36,666 | INFO | Plucked string instrument 0.107 0.000 0.059 ✗ +2026-06-25 18:10:36,666 | INFO | Traditional music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:36,666 | INFO | Guitar 0.072 0.000 0.039 ✗ +2026-06-25 18:10:36,667 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:10:36,773 | INFO | +[587.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-06-25 18:10:36,773 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,774 | INFO | Music 0.821 0.000 0.452 ✓ +2026-06-25 18:10:36,774 | INFO | Musical instrument 0.491 0.000 0.270 ✓ +2026-06-25 18:10:36,774 | INFO | Plucked string instrument 0.408 0.000 0.224 ✓ +2026-06-25 18:10:36,774 | INFO | Guitar 0.305 0.000 0.168 ✓ +2026-06-25 18:10:36,774 | INFO | Zither 0.128 0.000 0.070 ✗ +2026-06-25 18:10:36,774 | INFO | Acoustic guitar 0.110 0.000 0.061 ✗ +2026-06-25 18:10:36,774 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:36,840 | INFO | +[588.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-06-25 18:10:36,840 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,840 | INFO | Music 0.841 0.000 0.463 ✓ +2026-06-25 18:10:36,840 | INFO | Musical instrument 0.482 0.000 0.265 ✓ +2026-06-25 18:10:36,840 | INFO | Plucked string instrument 0.413 0.000 0.227 ✓ +2026-06-25 18:10:36,843 | INFO | Guitar 0.345 0.000 0.190 ✓ +2026-06-25 18:10:36,843 | INFO | Acoustic guitar 0.133 0.000 0.073 ✗ +2026-06-25 18:10:36,843 | INFO | Strum 0.108 0.000 0.059 ✗ +2026-06-25 18:10:36,843 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:36,900 | INFO | +[588.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-06-25 18:10:36,900 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,900 | INFO | Music 0.848 0.000 0.466 ✓ +2026-06-25 18:10:36,902 | INFO | Musical instrument 0.285 0.000 0.157 ✓ +2026-06-25 18:10:36,902 | INFO | Plucked string instrument 0.150 0.000 0.082 ✗ +2026-06-25 18:10:36,903 | INFO | Guitar 0.128 0.000 0.070 ✗ +2026-06-25 18:10:36,903 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:36,933 | INFO | +[588.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-06-25 18:10:36,933 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,933 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:36,933 | INFO | Musical instrument 0.243 0.000 0.134 ✓ +2026-06-25 18:10:36,933 | INFO | Drum 0.067 0.000 0.037 ✗ +2026-06-25 18:10:36,934 | INFO | Plucked string instrument 0.056 0.000 0.031 ✗ +2026-06-25 18:10:36,934 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:36,962 | INFO | +[588.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows two characters,' +2026-06-25 18:10:36,962 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,962 | INFO | Music 0.896 0.000 0.493 ✓ +2026-06-25 18:10:36,962 | INFO | Musical instrument 0.376 0.000 0.207 ✓ +2026-06-25 18:10:36,962 | INFO | Plucked string instrument 0.150 0.000 0.083 ✗ +2026-06-25 18:10:36,962 | INFO | Guitar 0.114 0.000 0.063 ✗ +2026-06-25 18:10:36,962 | INFO | Drum 0.078 0.000 0.043 ✗ +2026-06-25 18:10:36,962 | INFO | Percussion 0.072 0.000 0.040 ✗ +2026-06-25 18:10:36,962 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:36,994 | INFO | +[588.80s] AMBIENT | scene='' +2026-06-25 18:10:36,995 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:36,995 | INFO | Music 0.855 0.000 0.470 ✓ +2026-06-25 18:10:36,995 | INFO | Musical instrument 0.190 0.000 0.105 ✗ +2026-06-25 18:10:36,995 | INFO | Drum 0.080 0.000 0.044 ✗ +2026-06-25 18:10:36,995 | INFO | Percussion 0.064 0.000 0.035 ✗ +2026-06-25 18:10:36,996 | INFO | Wood block 0.043 0.000 0.024 ✗ +2026-06-25 18:10:36,996 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:37,021 | INFO | +[589.00s] AMBIENT | scene='' +2026-06-25 18:10:37,021 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,021 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:10:37,021 | INFO | Musical instrument 0.397 0.000 0.218 ✓ +2026-06-25 18:10:37,021 | INFO | Plucked string instrument 0.210 0.000 0.115 ✗ +2026-06-25 18:10:37,021 | INFO | Guitar 0.153 0.000 0.084 ✗ +2026-06-25 18:10:37,028 | INFO | Percussion 0.061 0.000 0.034 ✗ +2026-06-25 18:10:37,028 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:37,058 | INFO | +[589.20s] AMBIENT | scene='' +2026-06-25 18:10:37,058 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,058 | INFO | Music 0.843 0.000 0.464 ✓ +2026-06-25 18:10:37,058 | INFO | Musical instrument 0.354 0.000 0.195 ✓ +2026-06-25 18:10:37,058 | INFO | Plucked string instrument 0.167 0.000 0.092 ✗ +2026-06-25 18:10:37,059 | INFO | Guitar 0.122 0.000 0.067 ✗ +2026-06-25 18:10:37,059 | INFO | → WINNER: Music (combined=0.464) +2026-06-25 18:10:37,105 | INFO | +[589.40s] AMBIENT | scene='' +2026-06-25 18:10:37,105 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,106 | INFO | Music 0.825 0.000 0.454 ✓ +2026-06-25 18:10:37,106 | INFO | Musical instrument 0.485 0.000 0.267 ✓ +2026-06-25 18:10:37,106 | INFO | Plucked string instrument 0.288 0.000 0.158 ✓ +2026-06-25 18:10:37,106 | INFO | Guitar 0.194 0.000 0.107 ✗ +2026-06-25 18:10:37,106 | INFO | Percussion 0.059 0.000 0.033 ✗ +2026-06-25 18:10:37,107 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:37,137 | INFO | +[589.60s] AMBIENT | scene='' +2026-06-25 18:10:37,137 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,138 | INFO | Music 0.903 0.000 0.497 ✓ +2026-06-25 18:10:37,138 | INFO | Musical instrument 0.748 0.000 0.411 ✓ +2026-06-25 18:10:37,138 | INFO | Plucked string instrument 0.690 0.000 0.380 ✓ +2026-06-25 18:10:37,140 | INFO | Guitar 0.515 0.000 0.284 ✓ +2026-06-25 18:10:37,140 | INFO | Acoustic guitar 0.149 0.000 0.082 ✗ +2026-06-25 18:10:37,141 | INFO | Mandolin 0.135 0.000 0.074 ✗ +2026-06-25 18:10:37,141 | INFO | → WINNER: Music (combined=0.497) +2026-06-25 18:10:37,171 | INFO | +[589.80s] AMBIENT | scene='' +2026-06-25 18:10:37,171 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,172 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:37,172 | INFO | Musical instrument 0.539 0.000 0.296 ✓ +2026-06-25 18:10:37,172 | INFO | Plucked string instrument 0.458 0.000 0.252 ✓ +2026-06-25 18:10:37,172 | INFO | Guitar 0.314 0.000 0.173 ✓ +2026-06-25 18:10:37,172 | INFO | Acoustic guitar 0.098 0.000 0.054 ✗ +2026-06-25 18:10:37,173 | INFO | Mandolin 0.094 0.000 0.052 ✗ +2026-06-25 18:10:37,173 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:37,204 | INFO | +[590.00s] AMBIENT | scene='' +2026-06-25 18:10:37,205 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,205 | INFO | Music 0.882 0.000 0.485 ✓ +2026-06-25 18:10:37,206 | INFO | Musical instrument 0.601 0.000 0.331 ✓ +2026-06-25 18:10:37,206 | INFO | Plucked string instrument 0.459 0.000 0.253 ✓ +2026-06-25 18:10:37,207 | INFO | Guitar 0.338 0.000 0.186 ✓ +2026-06-25 18:10:37,207 | INFO | Acoustic guitar 0.084 0.000 0.046 ✗ +2026-06-25 18:10:37,207 | INFO | Strum 0.075 0.000 0.042 ✗ +2026-06-25 18:10:37,207 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:10:37,240 | INFO | +[590.20s] AMBIENT | scene='' +2026-06-25 18:10:37,240 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,240 | INFO | Music 0.880 0.000 0.484 ✓ +2026-06-25 18:10:37,241 | INFO | Musical instrument 0.397 0.000 0.219 ✓ +2026-06-25 18:10:37,241 | INFO | Plucked string instrument 0.202 0.000 0.111 ✗ +2026-06-25 18:10:37,241 | INFO | Guitar 0.171 0.000 0.094 ✗ +2026-06-25 18:10:37,241 | INFO | → WINNER: Music (combined=0.484) +2026-06-25 18:10:37,273 | INFO | +[590.40s] AMBIENT | scene='' +2026-06-25 18:10:37,273 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,273 | INFO | Music 0.884 0.000 0.486 ✓ +2026-06-25 18:10:37,273 | INFO | Musical instrument 0.195 0.000 0.107 ✗ +2026-06-25 18:10:37,273 | INFO | Middle Eastern music 0.121 0.000 0.067 ✗ +2026-06-25 18:10:37,273 | INFO | Plucked string instrument 0.049 0.000 0.027 ✗ +2026-06-25 18:10:37,273 | INFO | → WINNER: Music (combined=0.486) +2026-06-25 18:10:37,319 | INFO | +[590.60s] AMBIENT | scene='' +2026-06-25 18:10:37,320 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,321 | INFO | Music 0.867 0.000 0.477 ✓ +2026-06-25 18:10:37,321 | INFO | Musical instrument 0.197 0.000 0.108 ✗ +2026-06-25 18:10:37,322 | INFO | Middle Eastern music 0.162 0.000 0.089 ✗ +2026-06-25 18:10:37,323 | INFO | Folk music 0.135 0.000 0.074 ✗ +2026-06-25 18:10:37,323 | INFO | Salsa music 0.095 0.000 0.052 ✗ +2026-06-25 18:10:37,323 | INFO | Singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:37,323 | INFO | → WINNER: Music (combined=0.477) +2026-06-25 18:10:37,384 | INFO | +[590.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,384 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,385 | INFO | Music 0.872 0.000 0.479 ✓ +2026-06-25 18:10:37,388 | INFO | Musical instrument 0.175 0.000 0.096 ✗ +2026-06-25 18:10:37,389 | INFO | Plucked string instrument 0.059 0.000 0.032 ✗ +2026-06-25 18:10:37,390 | INFO | Guitar 0.053 0.000 0.029 ✗ +2026-06-25 18:10:37,391 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:37,463 | INFO | +[591.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,464 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,464 | INFO | Music 0.862 0.000 0.474 ✓ +2026-06-25 18:10:37,464 | INFO | Musical instrument 0.250 0.000 0.138 ✓ +2026-06-25 18:10:37,464 | INFO | Guitar 0.119 0.000 0.066 ✗ +2026-06-25 18:10:37,464 | INFO | Plucked string instrument 0.119 0.000 0.065 ✗ +2026-06-25 18:10:37,464 | INFO | → WINNER: Music (combined=0.474) +2026-06-25 18:10:37,508 | INFO | +[591.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,509 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:10:37,509 | INFO | Musical instrument 0.164 0.000 0.090 ✗ +2026-06-25 18:10:37,509 | INFO | Guitar 0.081 0.000 0.045 ✗ +2026-06-25 18:10:37,509 | INFO | Plucked string instrument 0.081 0.000 0.044 ✗ +2026-06-25 18:10:37,509 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:10:37,540 | INFO | +[591.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,541 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,541 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:10:37,542 | INFO | Musical instrument 0.315 0.000 0.173 ✓ +2026-06-25 18:10:37,542 | INFO | Guitar 0.195 0.000 0.107 ✗ +2026-06-25 18:10:37,542 | INFO | Plucked string instrument 0.186 0.000 0.102 ✗ +2026-06-25 18:10:37,542 | INFO | Strum 0.072 0.000 0.040 ✗ +2026-06-25 18:10:37,542 | INFO | Acoustic guitar 0.059 0.000 0.032 ✗ +2026-06-25 18:10:37,542 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:37,572 | INFO | +[591.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,573 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,573 | INFO | Music 0.819 0.000 0.450 ✓ +2026-06-25 18:10:37,573 | INFO | Musical instrument 0.213 0.000 0.117 ✗ +2026-06-25 18:10:37,573 | INFO | Guitar 0.109 0.000 0.060 ✗ +2026-06-25 18:10:37,573 | INFO | Plucked string instrument 0.104 0.000 0.057 ✗ +2026-06-25 18:10:37,574 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:37,603 | INFO | +[591.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,604 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,604 | INFO | Music 0.549 0.000 0.302 ✓ +2026-06-25 18:10:37,604 | INFO | Musical instrument 0.088 0.000 0.048 ✗ +2026-06-25 18:10:37,604 | INFO | → WINNER: Music (combined=0.302) +2026-06-25 18:10:37,634 | INFO | +[592.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,634 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,634 | INFO | Music 0.885 0.000 0.487 ✓ +2026-06-25 18:10:37,634 | INFO | Musical instrument 0.403 0.000 0.222 ✓ +2026-06-25 18:10:37,634 | INFO | Plucked string instrument 0.294 0.000 0.162 ✓ +2026-06-25 18:10:37,634 | INFO | Guitar 0.258 0.000 0.142 ✓ +2026-06-25 18:10:37,636 | INFO | Strum 0.085 0.000 0.046 ✗ +2026-06-25 18:10:37,636 | INFO | Acoustic guitar 0.077 0.000 0.042 ✗ +2026-06-25 18:10:37,637 | INFO | → WINNER: Music (combined=0.487) +2026-06-25 18:10:37,664 | INFO | +[592.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,664 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,664 | INFO | Music 0.854 0.000 0.470 ✓ +2026-06-25 18:10:37,664 | INFO | Musical instrument 0.330 0.000 0.181 ✓ +2026-06-25 18:10:37,664 | INFO | Plucked string instrument 0.188 0.000 0.103 ✗ +2026-06-25 18:10:37,664 | INFO | Guitar 0.131 0.000 0.072 ✗ +2026-06-25 18:10:37,664 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:37,697 | INFO | +[592.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,697 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,697 | INFO | Music 0.852 0.000 0.469 ✓ +2026-06-25 18:10:37,697 | INFO | Musical instrument 0.322 0.000 0.177 ✓ +2026-06-25 18:10:37,697 | INFO | Guitar 0.199 0.000 0.110 ✗ +2026-06-25 18:10:37,697 | INFO | Plucked string instrument 0.198 0.000 0.109 ✗ +2026-06-25 18:10:37,697 | INFO | Strum 0.061 0.000 0.034 ✗ +2026-06-25 18:10:37,700 | INFO | Acoustic guitar 0.055 0.000 0.030 ✗ +2026-06-25 18:10:37,700 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:37,730 | INFO | +[592.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,731 | INFO | Music 0.862 0.000 0.474 ✓ +2026-06-25 18:10:37,732 | INFO | Musical instrument 0.252 0.000 0.138 ✓ +2026-06-25 18:10:37,732 | INFO | Plucked string instrument 0.126 0.000 0.069 ✗ +2026-06-25 18:10:37,732 | INFO | Guitar 0.102 0.000 0.056 ✗ +2026-06-25 18:10:37,732 | INFO | → WINNER: Music (combined=0.474) +2026-06-25 18:10:37,765 | INFO | +[592.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,765 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,765 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:37,765 | INFO | Musical instrument 0.193 0.000 0.106 ✗ +2026-06-25 18:10:37,765 | INFO | Plucked string instrument 0.067 0.000 0.037 ✗ +2026-06-25 18:10:37,765 | INFO | Guitar 0.059 0.000 0.032 ✗ +2026-06-25 18:10:37,766 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:37,795 | INFO | +[593.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,796 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,796 | INFO | Music 0.867 0.000 0.477 ✓ +2026-06-25 18:10:37,796 | INFO | Musical instrument 0.198 0.000 0.109 ✗ +2026-06-25 18:10:37,796 | INFO | Plucked string instrument 0.067 0.000 0.037 ✗ +2026-06-25 18:10:37,797 | INFO | Guitar 0.065 0.000 0.035 ✗ +2026-06-25 18:10:37,797 | INFO | → WINNER: Music (combined=0.477) +2026-06-25 18:10:37,824 | INFO | +[593.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,824 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,824 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:37,824 | INFO | Musical instrument 0.371 0.000 0.204 ✓ +2026-06-25 18:10:37,824 | INFO | Plucked string instrument 0.152 0.000 0.084 ✗ +2026-06-25 18:10:37,828 | INFO | Guitar 0.133 0.000 0.073 ✗ +2026-06-25 18:10:37,828 | INFO | Drum 0.057 0.000 0.031 ✗ +2026-06-25 18:10:37,828 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:37,857 | INFO | +[593.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,857 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,857 | INFO | Music 0.899 0.000 0.494 ✓ +2026-06-25 18:10:37,857 | INFO | Musical instrument 0.625 0.000 0.344 ✓ +2026-06-25 18:10:37,857 | INFO | Plucked string instrument 0.417 0.000 0.229 ✓ +2026-06-25 18:10:37,860 | INFO | Guitar 0.399 0.000 0.219 ✓ +2026-06-25 18:10:37,860 | INFO | Strum 0.109 0.000 0.060 ✗ +2026-06-25 18:10:37,860 | INFO | Acoustic guitar 0.093 0.000 0.051 ✗ +2026-06-25 18:10:37,860 | INFO | → WINNER: Music (combined=0.494) +2026-06-25 18:10:37,890 | INFO | +[593.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,890 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,890 | INFO | Music 0.898 0.000 0.494 ✓ +2026-06-25 18:10:37,890 | INFO | Musical instrument 0.695 0.000 0.382 ✓ +2026-06-25 18:10:37,890 | INFO | Guitar 0.619 0.000 0.340 ✓ +2026-06-25 18:10:37,890 | INFO | Plucked string instrument 0.592 0.000 0.325 ✓ +2026-06-25 18:10:37,890 | INFO | Acoustic guitar 0.205 0.000 0.113 ✗ +2026-06-25 18:10:37,890 | INFO | Strum 0.173 0.000 0.095 ✗ +2026-06-25 18:10:37,890 | INFO | → WINNER: Music (combined=0.494) +2026-06-25 18:10:37,922 | INFO | +[593.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,922 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,922 | INFO | Music 0.878 0.000 0.483 ✓ +2026-06-25 18:10:37,922 | INFO | Musical instrument 0.566 0.000 0.311 ✓ +2026-06-25 18:10:37,922 | INFO | Plucked string instrument 0.271 0.000 0.149 ✓ +2026-06-25 18:10:37,922 | INFO | Guitar 0.251 0.000 0.138 ✓ +2026-06-25 18:10:37,922 | INFO | Drum 0.114 0.000 0.062 ✗ +2026-06-25 18:10:37,922 | INFO | Percussion 0.096 0.000 0.053 ✗ +2026-06-25 18:10:37,922 | INFO | → WINNER: Music (combined=0.483) +2026-06-25 18:10:37,956 | INFO | +[594.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,956 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,956 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:37,957 | INFO | Musical instrument 0.488 0.000 0.268 ✓ +2026-06-25 18:10:37,957 | INFO | Guitar 0.223 0.000 0.122 ✓ +2026-06-25 18:10:37,957 | INFO | Plucked string instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:10:37,957 | INFO | Drum 0.060 0.000 0.033 ✗ +2026-06-25 18:10:37,958 | INFO | Percussion 0.058 0.000 0.032 ✗ +2026-06-25 18:10:37,958 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:37,990 | INFO | +[594.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:37,993 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:37,993 | INFO | Music 0.881 0.000 0.484 ✓ +2026-06-25 18:10:37,993 | INFO | Musical instrument 0.487 0.000 0.268 ✓ +2026-06-25 18:10:37,994 | INFO | Plucked string instrument 0.313 0.000 0.172 ✓ +2026-06-25 18:10:38,000 | INFO | Guitar 0.292 0.000 0.161 ✓ +2026-06-25 18:10:38,002 | INFO | Acoustic guitar 0.086 0.000 0.047 ✗ +2026-06-25 18:10:38,002 | INFO | Strum 0.077 0.000 0.043 ✗ +2026-06-25 18:10:38,003 | INFO | → WINNER: Music (combined=0.484) +2026-06-25 18:10:38,039 | INFO | +[594.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,040 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,040 | INFO | Music 0.891 0.000 0.490 ✓ +2026-06-25 18:10:38,041 | INFO | Musical instrument 0.468 0.000 0.258 ✓ +2026-06-25 18:10:38,041 | INFO | Plucked string instrument 0.202 0.000 0.111 ✗ +2026-06-25 18:10:38,041 | INFO | Guitar 0.198 0.000 0.109 ✗ +2026-06-25 18:10:38,041 | INFO | Drum 0.103 0.000 0.057 ✗ +2026-06-25 18:10:38,043 | INFO | Percussion 0.087 0.000 0.048 ✗ +2026-06-25 18:10:38,043 | INFO | → WINNER: Music (combined=0.490) +2026-06-25 18:10:38,073 | INFO | +[594.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,073 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,073 | INFO | Music 0.900 0.000 0.495 ✓ +2026-06-25 18:10:38,074 | INFO | Musical instrument 0.366 0.000 0.202 ✓ +2026-06-25 18:10:38,074 | INFO | Plucked string instrument 0.153 0.000 0.084 ✗ +2026-06-25 18:10:38,074 | INFO | Guitar 0.152 0.000 0.084 ✗ +2026-06-25 18:10:38,074 | INFO | → WINNER: Music (combined=0.495) +2026-06-25 18:10:38,116 | INFO | +[594.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,116 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,116 | INFO | Music 0.891 0.000 0.490 ✓ +2026-06-25 18:10:38,116 | INFO | Musical instrument 0.288 0.000 0.158 ✓ +2026-06-25 18:10:38,117 | INFO | Guitar 0.092 0.000 0.051 ✗ +2026-06-25 18:10:38,117 | INFO | Plucked string instrument 0.092 0.000 0.051 ✗ +2026-06-25 18:10:38,117 | INFO | Wood block 0.037 0.000 0.020 ✗ +2026-06-25 18:10:38,117 | INFO | → WINNER: Music (combined=0.490) +2026-06-25 18:10:38,178 | INFO | +[595.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,178 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,178 | INFO | Music 0.913 0.000 0.502 ✓ +2026-06-25 18:10:38,178 | INFO | Musical instrument 0.400 0.000 0.220 ✓ +2026-06-25 18:10:38,180 | INFO | Guitar 0.104 0.000 0.057 ✗ +2026-06-25 18:10:38,180 | INFO | Plucked string instrument 0.094 0.000 0.052 ✗ +2026-06-25 18:10:38,180 | INFO | → WINNER: Music (combined=0.502) +2026-06-25 18:10:38,240 | INFO | +[595.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,240 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,240 | INFO | Music 0.896 0.000 0.493 ✓ +2026-06-25 18:10:38,240 | INFO | Musical instrument 0.379 0.000 0.208 ✓ +2026-06-25 18:10:38,240 | INFO | Drum 0.073 0.000 0.040 ✗ +2026-06-25 18:10:38,240 | INFO | Guitar 0.068 0.000 0.038 ✗ +2026-06-25 18:10:38,240 | INFO | Plucked string instrument 0.059 0.000 0.032 ✗ +2026-06-25 18:10:38,240 | INFO | Percussion 0.053 0.000 0.029 ✗ +2026-06-25 18:10:38,240 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:38,294 | INFO | +[595.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,294 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,294 | INFO | Music 0.895 0.000 0.492 ✓ +2026-06-25 18:10:38,294 | INFO | Musical instrument 0.266 0.000 0.146 ✓ +2026-06-25 18:10:38,294 | INFO | Plucked string instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:10:38,294 | INFO | Guitar 0.060 0.000 0.033 ✗ +2026-06-25 18:10:38,294 | INFO | Drum 0.054 0.000 0.030 ✗ +2026-06-25 18:10:38,294 | INFO | Wood block 0.047 0.000 0.026 ✗ +2026-06-25 18:10:38,294 | INFO | → WINNER: Music (combined=0.492) +2026-06-25 18:10:38,328 | INFO | +[595.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,328 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,328 | INFO | Music 0.899 0.000 0.494 ✓ +2026-06-25 18:10:38,328 | INFO | Musical instrument 0.308 0.000 0.170 ✓ +2026-06-25 18:10:38,330 | INFO | Guitar 0.105 0.000 0.058 ✗ +2026-06-25 18:10:38,330 | INFO | Plucked string instrument 0.099 0.000 0.054 ✗ +2026-06-25 18:10:38,330 | INFO | Percussion 0.062 0.000 0.034 ✗ +2026-06-25 18:10:38,330 | INFO | Wood block 0.062 0.000 0.034 ✗ +2026-06-25 18:10:38,330 | INFO | → WINNER: Music (combined=0.494) +2026-06-25 18:10:38,359 | INFO | +[595.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,359 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,360 | INFO | Music 0.896 0.000 0.493 ✓ +2026-06-25 18:10:38,360 | INFO | Musical instrument 0.272 0.000 0.150 ✓ +2026-06-25 18:10:38,360 | INFO | Plucked string instrument 0.093 0.000 0.051 ✗ +2026-06-25 18:10:38,360 | INFO | Guitar 0.090 0.000 0.050 ✗ +2026-06-25 18:10:38,360 | INFO | Drum 0.063 0.000 0.035 ✗ +2026-06-25 18:10:38,360 | INFO | Percussion 0.062 0.000 0.034 ✗ +2026-06-25 18:10:38,361 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:38,391 | INFO | +[596.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,391 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,391 | INFO | Music 0.872 0.000 0.479 ✓ +2026-06-25 18:10:38,391 | INFO | Musical instrument 0.302 0.000 0.166 ✓ +2026-06-25 18:10:38,392 | INFO | Plucked string instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:10:38,392 | INFO | Guitar 0.112 0.000 0.061 ✗ +2026-06-25 18:10:38,392 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:38,421 | INFO | +[596.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,422 | INFO | Music 0.900 0.000 0.495 ✓ +2026-06-25 18:10:38,422 | INFO | Musical instrument 0.375 0.000 0.206 ✓ +2026-06-25 18:10:38,422 | INFO | Plucked string instrument 0.189 0.000 0.104 ✗ +2026-06-25 18:10:38,422 | INFO | Guitar 0.164 0.000 0.090 ✗ +2026-06-25 18:10:38,422 | INFO | Strum 0.055 0.000 0.030 ✗ +2026-06-25 18:10:38,422 | INFO | → WINNER: Music (combined=0.495) +2026-06-25 18:10:38,454 | INFO | +[596.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,455 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,455 | INFO | Music 0.904 0.000 0.497 ✓ +2026-06-25 18:10:38,455 | INFO | Musical instrument 0.427 0.000 0.235 ✓ +2026-06-25 18:10:38,455 | INFO | Plucked string instrument 0.238 0.000 0.131 ✓ +2026-06-25 18:10:38,456 | INFO | Guitar 0.220 0.000 0.121 ✓ +2026-06-25 18:10:38,456 | INFO | Acoustic guitar 0.064 0.000 0.035 ✗ +2026-06-25 18:10:38,456 | INFO | Strum 0.061 0.000 0.034 ✗ +2026-06-25 18:10:38,456 | INFO | → WINNER: Music (combined=0.497) +2026-06-25 18:10:38,486 | INFO | +[596.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,486 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,486 | INFO | Music 0.898 0.000 0.494 ✓ +2026-06-25 18:10:38,487 | INFO | Musical instrument 0.394 0.000 0.217 ✓ +2026-06-25 18:10:38,487 | INFO | Plucked string instrument 0.211 0.000 0.116 ✗ +2026-06-25 18:10:38,487 | INFO | Guitar 0.173 0.000 0.095 ✗ +2026-06-25 18:10:38,487 | INFO | Strum 0.061 0.000 0.034 ✗ +2026-06-25 18:10:38,488 | INFO | → WINNER: Music (combined=0.494) +2026-06-25 18:10:38,512 | INFO | +[596.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,512 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,512 | INFO | Music 0.896 0.000 0.493 ✓ +2026-06-25 18:10:38,512 | INFO | Musical instrument 0.400 0.000 0.220 ✓ +2026-06-25 18:10:38,512 | INFO | Guitar 0.290 0.000 0.160 ✓ +2026-06-25 18:10:38,512 | INFO | Plucked string instrument 0.275 0.000 0.151 ✓ +2026-06-25 18:10:38,519 | INFO | Acoustic guitar 0.090 0.000 0.050 ✗ +2026-06-25 18:10:38,520 | INFO | Strum 0.085 0.000 0.047 ✗ +2026-06-25 18:10:38,521 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:38,550 | INFO | +[597.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,550 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,550 | INFO | Music 0.908 0.000 0.499 ✓ +2026-06-25 18:10:38,553 | INFO | Musical instrument 0.399 0.000 0.219 ✓ +2026-06-25 18:10:38,553 | INFO | Plucked string instrument 0.234 0.000 0.129 ✓ +2026-06-25 18:10:38,553 | INFO | Guitar 0.229 0.000 0.126 ✓ +2026-06-25 18:10:38,553 | INFO | Acoustic guitar 0.068 0.000 0.037 ✗ +2026-06-25 18:10:38,554 | INFO | Strum 0.060 0.000 0.033 ✗ +2026-06-25 18:10:38,554 | INFO | → WINNER: Music (combined=0.499) +2026-06-25 18:10:38,580 | INFO | +[597.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,580 | INFO | Music 0.918 0.000 0.505 ✓ +2026-06-25 18:10:38,580 | INFO | Musical instrument 0.233 0.000 0.128 ✓ +2026-06-25 18:10:38,580 | INFO | Guitar 0.097 0.000 0.053 ✗ +2026-06-25 18:10:38,585 | INFO | Plucked string instrument 0.088 0.000 0.049 ✗ +2026-06-25 18:10:38,585 | INFO | → WINNER: Music (combined=0.505) +2026-06-25 18:10:38,613 | INFO | +[597.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,613 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,613 | INFO | Music 0.888 0.000 0.488 ✓ +2026-06-25 18:10:38,613 | INFO | Musical instrument 0.517 0.000 0.284 ✓ +2026-06-25 18:10:38,613 | INFO | Plucked string instrument 0.374 0.000 0.205 ✓ +2026-06-25 18:10:38,613 | INFO | Guitar 0.343 0.000 0.189 ✓ +2026-06-25 18:10:38,613 | INFO | Acoustic guitar 0.075 0.000 0.041 ✗ +2026-06-25 18:10:38,613 | INFO | Strum 0.074 0.000 0.041 ✗ +2026-06-25 18:10:38,613 | INFO | → WINNER: Music (combined=0.488) +2026-06-25 18:10:38,647 | INFO | +[597.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,647 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,648 | INFO | Music 0.886 0.000 0.487 ✓ +2026-06-25 18:10:38,648 | INFO | Musical instrument 0.325 0.000 0.178 ✓ +2026-06-25 18:10:38,648 | INFO | Plucked string instrument 0.113 0.000 0.062 ✗ +2026-06-25 18:10:38,648 | INFO | Guitar 0.108 0.000 0.060 ✗ +2026-06-25 18:10:38,648 | INFO | → WINNER: Music (combined=0.487) +2026-06-25 18:10:38,680 | INFO | +[597.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,681 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,682 | INFO | Music 0.876 0.000 0.482 ✓ +2026-06-25 18:10:38,682 | INFO | Musical instrument 0.411 0.000 0.226 ✓ +2026-06-25 18:10:38,683 | INFO | Plucked string instrument 0.279 0.000 0.153 ✓ +2026-06-25 18:10:38,683 | INFO | Guitar 0.215 0.000 0.118 ✗ +2026-06-25 18:10:38,683 | INFO | Acoustic guitar 0.058 0.000 0.032 ✗ +2026-06-25 18:10:38,684 | INFO | Strum 0.057 0.000 0.031 ✗ +2026-06-25 18:10:38,684 | INFO | → WINNER: Music (combined=0.482) +2026-06-25 18:10:38,713 | INFO | +[598.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,713 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,713 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:38,713 | INFO | Musical instrument 0.331 0.000 0.182 ✓ +2026-06-25 18:10:38,713 | INFO | Plucked string instrument 0.220 0.000 0.121 ✓ +2026-06-25 18:10:38,713 | INFO | Guitar 0.177 0.000 0.098 ✗ +2026-06-25 18:10:38,720 | INFO | Strum 0.052 0.000 0.029 ✗ +2026-06-25 18:10:38,721 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:38,750 | INFO | +[598.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,753 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,754 | INFO | Music 0.809 0.000 0.445 ✓ +2026-06-25 18:10:38,754 | INFO | Musical instrument 0.252 0.000 0.138 ✓ +2026-06-25 18:10:38,754 | INFO | Plucked string instrument 0.144 0.000 0.079 ✗ +2026-06-25 18:10:38,754 | INFO | Guitar 0.114 0.000 0.062 ✗ +2026-06-25 18:10:38,755 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:38,785 | INFO | +[598.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,785 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,787 | INFO | Music 0.794 0.000 0.437 ✓ +2026-06-25 18:10:38,788 | INFO | Musical instrument 0.296 0.000 0.163 ✓ +2026-06-25 18:10:38,788 | INFO | Plucked string instrument 0.176 0.000 0.097 ✗ +2026-06-25 18:10:38,788 | INFO | Guitar 0.145 0.000 0.080 ✗ +2026-06-25 18:10:38,788 | INFO | → WINNER: Music (combined=0.437) +2026-06-25 18:10:38,818 | INFO | +[598.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,819 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,821 | INFO | Music 0.829 0.000 0.456 ✓ +2026-06-25 18:10:38,821 | INFO | Musical instrument 0.437 0.000 0.240 ✓ +2026-06-25 18:10:38,821 | INFO | Plucked string instrument 0.333 0.000 0.183 ✓ +2026-06-25 18:10:38,821 | INFO | Guitar 0.258 0.000 0.142 ✓ +2026-06-25 18:10:38,822 | INFO | Banjo 0.105 0.000 0.058 ✗ +2026-06-25 18:10:38,822 | INFO | Acoustic guitar 0.097 0.000 0.053 ✗ +2026-06-25 18:10:38,822 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:38,850 | INFO | +[598.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,853 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,854 | INFO | Music 0.862 0.000 0.474 ✓ +2026-06-25 18:10:38,854 | INFO | Musical instrument 0.464 0.000 0.255 ✓ +2026-06-25 18:10:38,854 | INFO | Plucked string instrument 0.347 0.000 0.191 ✓ +2026-06-25 18:10:38,854 | INFO | Guitar 0.313 0.000 0.172 ✓ +2026-06-25 18:10:38,854 | INFO | Strum 0.074 0.000 0.041 ✗ +2026-06-25 18:10:38,855 | INFO | Acoustic guitar 0.064 0.000 0.035 ✗ +2026-06-25 18:10:38,855 | INFO | → WINNER: Music (combined=0.474) +2026-06-25 18:10:38,883 | INFO | +[599.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,885 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,885 | INFO | Music 0.861 0.000 0.473 ✓ +2026-06-25 18:10:38,885 | INFO | Musical instrument 0.449 0.000 0.247 ✓ +2026-06-25 18:10:38,885 | INFO | Plucked string instrument 0.349 0.000 0.192 ✓ +2026-06-25 18:10:38,885 | INFO | Guitar 0.336 0.000 0.185 ✓ +2026-06-25 18:10:38,885 | INFO | Acoustic guitar 0.096 0.000 0.053 ✗ +2026-06-25 18:10:38,885 | INFO | Strum 0.088 0.000 0.049 ✗ +2026-06-25 18:10:38,886 | INFO | → WINNER: Music (combined=0.473) +2026-06-25 18:10:38,915 | INFO | +[599.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,916 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,916 | INFO | Music 0.796 0.000 0.438 ✓ +2026-06-25 18:10:38,916 | INFO | Musical instrument 0.622 0.000 0.342 ✓ +2026-06-25 18:10:38,916 | INFO | Plucked string instrument 0.561 0.000 0.308 ✓ +2026-06-25 18:10:38,916 | INFO | Guitar 0.555 0.000 0.305 ✓ +2026-06-25 18:10:38,916 | INFO | Acoustic guitar 0.148 0.000 0.081 ✗ +2026-06-25 18:10:38,916 | INFO | Strum 0.126 0.000 0.069 ✗ +2026-06-25 18:10:38,916 | INFO | → WINNER: Music (combined=0.438) +2026-06-25 18:10:38,947 | INFO | +[599.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,947 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,947 | INFO | Music 0.810 0.000 0.446 ✓ +2026-06-25 18:10:38,947 | INFO | Musical instrument 0.643 0.000 0.354 ✓ +2026-06-25 18:10:38,947 | INFO | Plucked string instrument 0.546 0.000 0.300 ✓ +2026-06-25 18:10:38,947 | INFO | Guitar 0.413 0.000 0.227 ✓ +2026-06-25 18:10:38,947 | INFO | Sitar 0.186 0.000 0.102 ✗ +2026-06-25 18:10:38,947 | INFO | Electric guitar 0.133 0.000 0.073 ✗ +2026-06-25 18:10:38,948 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:38,976 | INFO | +[599.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:38,978 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:38,978 | INFO | Music 0.747 0.000 0.411 ✓ +2026-06-25 18:10:38,978 | INFO | Musical instrument 0.514 0.000 0.283 ✓ +2026-06-25 18:10:38,979 | INFO | Plucked string instrument 0.389 0.000 0.214 ✓ +2026-06-25 18:10:38,979 | INFO | Sitar 0.339 0.000 0.186 ✓ +2026-06-25 18:10:38,979 | INFO | Carnatic music 0.181 0.000 0.100 ✗ +2026-06-25 18:10:38,979 | INFO | Guitar 0.171 0.000 0.094 ✗ +2026-06-25 18:10:38,979 | INFO | → WINNER: Music (combined=0.411) +2026-06-25 18:10:39,007 | INFO | +[599.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,009 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,009 | INFO | Music 0.650 0.000 0.358 ✓ +2026-06-25 18:10:39,009 | INFO | Musical instrument 0.462 0.000 0.254 ✓ +2026-06-25 18:10:39,009 | INFO | Plucked string instrument 0.391 0.000 0.215 ✓ +2026-06-25 18:10:39,010 | INFO | Guitar 0.260 0.000 0.143 ✓ +2026-06-25 18:10:39,011 | INFO | Carnatic music 0.102 0.000 0.056 ✗ +2026-06-25 18:10:39,011 | INFO | Sitar 0.095 0.000 0.052 ✗ +2026-06-25 18:10:39,012 | INFO | → WINNER: Music (combined=0.358) +2026-06-25 18:10:39,042 | INFO | +[600.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,042 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,042 | INFO | Music 0.897 0.000 0.493 ✓ +2026-06-25 18:10:39,042 | INFO | Musical instrument 0.787 0.000 0.433 ✓ +2026-06-25 18:10:39,042 | INFO | Plucked string instrument 0.685 0.000 0.377 ✓ +2026-06-25 18:10:39,042 | INFO | Guitar 0.494 0.000 0.272 ✓ +2026-06-25 18:10:39,042 | INFO | Sitar 0.258 0.000 0.142 ✓ +2026-06-25 18:10:39,042 | INFO | Carnatic music 0.176 0.000 0.097 ✗ +2026-06-25 18:10:39,042 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:39,071 | INFO | +[600.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,071 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,071 | INFO | Music 0.886 0.000 0.487 ✓ +2026-06-25 18:10:39,071 | INFO | Musical instrument 0.739 0.000 0.406 ✓ +2026-06-25 18:10:39,071 | INFO | Plucked string instrument 0.634 0.000 0.349 ✓ +2026-06-25 18:10:39,071 | INFO | Guitar 0.516 0.000 0.284 ✓ +2026-06-25 18:10:39,071 | INFO | Sitar 0.219 0.000 0.120 ✓ +2026-06-25 18:10:39,071 | INFO | Acoustic guitar 0.206 0.000 0.113 ✗ +2026-06-25 18:10:39,071 | INFO | → WINNER: Music (combined=0.487) +2026-06-25 18:10:39,104 | INFO | +[600.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,104 | INFO | Music 0.926 0.000 0.509 ✓ +2026-06-25 18:10:39,104 | INFO | Sitar 0.793 0.000 0.436 ✓ +2026-06-25 18:10:39,104 | INFO | Musical instrument 0.741 0.000 0.407 ✓ +2026-06-25 18:10:39,104 | INFO | Plucked string instrument 0.637 0.000 0.350 ✓ +2026-06-25 18:10:39,104 | INFO | Carnatic music 0.481 0.000 0.264 ✓ +2026-06-25 18:10:39,104 | INFO | Classical music 0.312 0.000 0.172 ✓ +2026-06-25 18:10:39,104 | INFO | → WINNER: Music (combined=0.509) +2026-06-25 18:10:39,136 | INFO | +[602.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,136 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,136 | INFO | Music 0.889 0.000 0.489 ✓ +2026-06-25 18:10:39,136 | INFO | Musical instrument 0.612 0.000 0.337 ✓ +2026-06-25 18:10:39,137 | INFO | Traditional music 0.388 0.000 0.213 ✓ +2026-06-25 18:10:39,137 | INFO | Plucked string instrument 0.241 0.000 0.133 ✓ +2026-06-25 18:10:39,137 | INFO | Folk music 0.197 0.000 0.108 ✗ +2026-06-25 18:10:39,137 | INFO | Guitar 0.128 0.000 0.070 ✗ +2026-06-25 18:10:39,137 | INFO | → WINNER: Music (combined=0.489) +2026-06-25 18:10:39,176 | INFO | +[602.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,177 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,177 | INFO | Music 0.870 0.000 0.479 ✓ +2026-06-25 18:10:39,177 | INFO | Musical instrument 0.482 0.000 0.265 ✓ +2026-06-25 18:10:39,178 | INFO | Traditional music 0.157 0.000 0.086 ✗ +2026-06-25 18:10:39,178 | INFO | Plucked string instrument 0.153 0.000 0.084 ✗ +2026-06-25 18:10:39,178 | INFO | Carnatic music 0.153 0.000 0.084 ✗ +2026-06-25 18:10:39,178 | INFO | Folk music 0.125 0.000 0.069 ✗ +2026-06-25 18:10:39,179 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:39,209 | INFO | +[602.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,209 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,210 | INFO | Music 0.840 0.000 0.462 ✓ +2026-06-25 18:10:39,210 | INFO | Musical instrument 0.439 0.000 0.241 ✓ +2026-06-25 18:10:39,210 | INFO | Plucked string instrument 0.182 0.000 0.100 ✗ +2026-06-25 18:10:39,210 | INFO | Guitar 0.118 0.000 0.065 ✗ +2026-06-25 18:10:39,210 | INFO | Traditional music 0.109 0.000 0.060 ✗ +2026-06-25 18:10:39,211 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:10:39,240 | INFO | +[603.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,240 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,240 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:10:39,240 | INFO | Musical instrument 0.366 0.000 0.201 ✓ +2026-06-25 18:10:39,240 | INFO | Sitar 0.285 0.000 0.157 ✓ +2026-06-25 18:10:39,240 | INFO | Carnatic music 0.179 0.000 0.099 ✗ +2026-06-25 18:10:39,240 | INFO | Plucked string instrument 0.177 0.000 0.097 ✗ +2026-06-25 18:10:39,240 | INFO | Tabla 0.089 0.000 0.049 ✗ +2026-06-25 18:10:39,240 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:39,271 | INFO | +[603.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,271 | INFO | Music 0.850 0.000 0.467 ✓ +2026-06-25 18:10:39,271 | INFO | Sitar 0.640 0.000 0.352 ✓ +2026-06-25 18:10:39,271 | INFO | Musical instrument 0.443 0.000 0.243 ✓ +2026-06-25 18:10:39,271 | INFO | Plucked string instrument 0.290 0.000 0.160 ✓ +2026-06-25 18:10:39,271 | INFO | Carnatic music 0.245 0.000 0.135 ✓ +2026-06-25 18:10:39,271 | INFO | Tabla 0.161 0.000 0.089 ✗ +2026-06-25 18:10:39,271 | INFO | → WINNER: Music (combined=0.467) +2026-06-25 18:10:39,305 | INFO | +[603.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,305 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,307 | INFO | Music 0.741 0.000 0.407 ✓ +2026-06-25 18:10:39,308 | INFO | Musical instrument 0.333 0.000 0.183 ✓ +2026-06-25 18:10:39,308 | INFO | Plucked string instrument 0.220 0.000 0.121 ✓ +2026-06-25 18:10:39,308 | INFO | Guitar 0.149 0.000 0.082 ✗ +2026-06-25 18:10:39,309 | INFO | Sitar 0.068 0.000 0.037 ✗ +2026-06-25 18:10:39,309 | INFO | Wind instrument, woodwind instrument 0.033 0.000 0.018 ✗ +2026-06-25 18:10:39,311 | INFO | → WINNER: Music (combined=0.407) +2026-06-25 18:10:39,340 | INFO | +[603.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,340 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,340 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:10:39,340 | INFO | Sitar 0.630 0.000 0.347 ✓ +2026-06-25 18:10:39,340 | INFO | Musical instrument 0.540 0.000 0.297 ✓ +2026-06-25 18:10:39,346 | INFO | Plucked string instrument 0.378 0.000 0.208 ✓ +2026-06-25 18:10:39,346 | INFO | Carnatic music 0.134 0.000 0.074 ✗ +2026-06-25 18:10:39,346 | INFO | Bowed string instrument 0.090 0.000 0.050 ✗ +2026-06-25 18:10:39,346 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:39,372 | INFO | +[603.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,372 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,372 | INFO | Music 0.878 0.000 0.483 ✓ +2026-06-25 18:10:39,372 | INFO | Musical instrument 0.637 0.000 0.350 ✓ +2026-06-25 18:10:39,378 | INFO | Plucked string instrument 0.484 0.000 0.266 ✓ +2026-06-25 18:10:39,379 | INFO | Guitar 0.350 0.000 0.193 ✓ +2026-06-25 18:10:39,379 | INFO | Sitar 0.150 0.000 0.083 ✗ +2026-06-25 18:10:39,379 | INFO | Acoustic guitar 0.085 0.000 0.046 ✗ +2026-06-25 18:10:39,379 | INFO | → WINNER: Music (combined=0.483) +2026-06-25 18:10:39,407 | INFO | +[604.00s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,407 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,410 | INFO | Music 0.882 0.000 0.485 ✓ +2026-06-25 18:10:39,410 | INFO | Musical instrument 0.571 0.000 0.314 ✓ +2026-06-25 18:10:39,410 | INFO | Plucked string instrument 0.360 0.000 0.198 ✓ +2026-06-25 18:10:39,411 | INFO | Guitar 0.355 0.000 0.195 ✓ +2026-06-25 18:10:39,412 | INFO | Acoustic guitar 0.093 0.000 0.051 ✗ +2026-06-25 18:10:39,412 | INFO | Strum 0.071 0.000 0.039 ✗ +2026-06-25 18:10:39,412 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:10:39,442 | INFO | +[604.20s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,443 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,443 | INFO | Music 0.901 0.000 0.496 ✓ +2026-06-25 18:10:39,443 | INFO | Musical instrument 0.627 0.000 0.345 ✓ +2026-06-25 18:10:39,444 | INFO | Plucked string instrument 0.456 0.000 0.251 ✓ +2026-06-25 18:10:39,445 | INFO | Guitar 0.420 0.000 0.231 ✓ +2026-06-25 18:10:39,445 | INFO | Acoustic guitar 0.122 0.000 0.067 ✗ +2026-06-25 18:10:39,445 | INFO | Strum 0.101 0.000 0.056 ✗ +2026-06-25 18:10:39,446 | INFO | → WINNER: Music (combined=0.496) +2026-06-25 18:10:39,472 | INFO | +[604.40s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,476 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,476 | INFO | Music 0.873 0.000 0.480 ✓ +2026-06-25 18:10:39,476 | INFO | Musical instrument 0.646 0.000 0.356 ✓ +2026-06-25 18:10:39,476 | INFO | Plucked string instrument 0.543 0.000 0.298 ✓ +2026-06-25 18:10:39,476 | INFO | Guitar 0.533 0.000 0.293 ✓ +2026-06-25 18:10:39,477 | INFO | Strum 0.150 0.000 0.082 ✗ +2026-06-25 18:10:39,477 | INFO | Acoustic guitar 0.147 0.000 0.081 ✗ +2026-06-25 18:10:39,477 | INFO | → WINNER: Music (combined=0.480) +2026-06-25 18:10:39,507 | INFO | +[604.60s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,508 | INFO | Music 0.829 0.000 0.456 ✓ +2026-06-25 18:10:39,508 | INFO | Musical instrument 0.335 0.000 0.184 ✓ +2026-06-25 18:10:39,508 | INFO | Plucked string instrument 0.194 0.000 0.107 ✗ +2026-06-25 18:10:39,509 | INFO | Guitar 0.179 0.000 0.099 ✗ +2026-06-25 18:10:39,509 | INFO | Strum 0.055 0.000 0.030 ✗ +2026-06-25 18:10:39,509 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:39,538 | INFO | +[604.80s] AMBIENT | scene='The image shows a person walking through a field of tall grass. The pe' +2026-06-25 18:10:39,538 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,540 | INFO | Music 0.842 0.000 0.463 ✓ +2026-06-25 18:10:39,540 | INFO | Musical instrument 0.465 0.000 0.256 ✓ +2026-06-25 18:10:39,540 | INFO | Plucked string instrument 0.352 0.000 0.194 ✓ +2026-06-25 18:10:39,540 | INFO | Guitar 0.306 0.000 0.168 ✓ +2026-06-25 18:10:39,540 | INFO | Strum 0.108 0.000 0.059 ✗ +2026-06-25 18:10:39,541 | INFO | Acoustic guitar 0.104 0.000 0.057 ✗ +2026-06-25 18:10:39,541 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:39,570 | INFO | +[605.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,571 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,571 | INFO | Music 0.709 0.000 0.390 ✓ +2026-06-25 18:10:39,571 | INFO | Musical instrument 0.336 0.000 0.185 ✓ +2026-06-25 18:10:39,571 | INFO | Chopping (food) 0.180 0.000 0.099 ✗ +2026-06-25 18:10:39,572 | INFO | Tabla 0.156 0.000 0.086 ✗ +2026-06-25 18:10:39,572 | INFO | Plucked string instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:10:39,572 | INFO | Carnatic music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:39,572 | INFO | → WINNER: Music (combined=0.390) +2026-06-25 18:10:39,599 | INFO | +[605.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,599 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,603 | INFO | Music 0.749 0.000 0.412 ✓ +2026-06-25 18:10:39,604 | INFO | Musical instrument 0.439 0.000 0.241 ✓ +2026-06-25 18:10:39,604 | INFO | Carnatic music 0.381 0.000 0.210 ✓ +2026-06-25 18:10:39,604 | INFO | Tabla 0.330 0.000 0.181 ✓ +2026-06-25 18:10:39,604 | INFO | Sitar 0.207 0.000 0.114 ✗ +2026-06-25 18:10:39,604 | INFO | Classical music 0.196 0.000 0.108 ✗ +2026-06-25 18:10:39,604 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:10:39,635 | INFO | +[605.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,635 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,636 | INFO | Music 0.817 0.000 0.450 ✓ +2026-06-25 18:10:39,637 | INFO | Sitar 0.720 0.000 0.396 ✓ +2026-06-25 18:10:39,637 | INFO | Musical instrument 0.655 0.000 0.360 ✓ +2026-06-25 18:10:39,637 | INFO | Classical music 0.531 0.000 0.292 ✓ +2026-06-25 18:10:39,638 | INFO | Carnatic music 0.508 0.000 0.280 ✓ +2026-06-25 18:10:39,638 | INFO | Plucked string instrument 0.386 0.000 0.212 ✓ +2026-06-25 18:10:39,639 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:39,670 | INFO | +[605.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,671 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,671 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:10:39,671 | INFO | Sitar 0.793 0.000 0.436 ✓ +2026-06-25 18:10:39,671 | INFO | Musical instrument 0.661 0.000 0.363 ✓ +2026-06-25 18:10:39,671 | INFO | Carnatic music 0.547 0.000 0.301 ✓ +2026-06-25 18:10:39,672 | INFO | Classical music 0.475 0.000 0.261 ✓ +2026-06-25 18:10:39,672 | INFO | Plucked string instrument 0.403 0.000 0.222 ✓ +2026-06-25 18:10:39,672 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:10:39,700 | INFO | +[605.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,700 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,700 | INFO | Music 0.816 0.000 0.449 ✓ +2026-06-25 18:10:39,703 | INFO | Sitar 0.791 0.000 0.435 ✓ +2026-06-25 18:10:39,703 | INFO | Musical instrument 0.611 0.000 0.336 ✓ +2026-06-25 18:10:39,704 | INFO | Carnatic music 0.482 0.000 0.265 ✓ +2026-06-25 18:10:39,704 | INFO | Classical music 0.459 0.000 0.253 ✓ +2026-06-25 18:10:39,704 | INFO | Plucked string instrument 0.391 0.000 0.215 ✓ +2026-06-25 18:10:39,704 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:10:39,732 | INFO | +[606.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,734 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,734 | INFO | Music 0.721 0.000 0.396 ✓ +2026-06-25 18:10:39,734 | INFO | Musical instrument 0.598 0.000 0.329 ✓ +2026-06-25 18:10:39,734 | INFO | Carnatic music 0.336 0.000 0.185 ✓ +2026-06-25 18:10:39,734 | INFO | Classical music 0.263 0.000 0.145 ✓ +2026-06-25 18:10:39,734 | INFO | Bowed string instrument 0.238 0.000 0.131 ✓ +2026-06-25 18:10:39,734 | INFO | Tabla 0.166 0.000 0.091 ✗ +2026-06-25 18:10:39,734 | INFO | → WINNER: Music (combined=0.396) +2026-06-25 18:10:39,766 | INFO | +[606.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,766 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,767 | INFO | Music 0.720 0.000 0.396 ✓ +2026-06-25 18:10:39,767 | INFO | Musical instrument 0.532 0.000 0.292 ✓ +2026-06-25 18:10:39,767 | INFO | Carnatic music 0.231 0.000 0.127 ✓ +2026-06-25 18:10:39,767 | INFO | Plucked string instrument 0.188 0.000 0.104 ✗ +2026-06-25 18:10:39,767 | INFO | Guitar 0.111 0.000 0.061 ✗ +2026-06-25 18:10:39,767 | INFO | Tabla 0.085 0.000 0.047 ✗ +2026-06-25 18:10:39,767 | INFO | → WINNER: Music (combined=0.396) +2026-06-25 18:10:39,795 | INFO | +[606.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,797 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,797 | INFO | Music 0.808 0.000 0.445 ✓ +2026-06-25 18:10:39,797 | INFO | Musical instrument 0.568 0.000 0.312 ✓ +2026-06-25 18:10:39,798 | INFO | Plucked string instrument 0.227 0.000 0.125 ✓ +2026-06-25 18:10:39,798 | INFO | Carnatic music 0.152 0.000 0.084 ✗ +2026-06-25 18:10:39,798 | INFO | Guitar 0.130 0.000 0.071 ✗ +2026-06-25 18:10:39,798 | INFO | Tabla 0.127 0.000 0.070 ✗ +2026-06-25 18:10:39,798 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:39,829 | INFO | +[606.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,830 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,830 | INFO | Music 0.876 0.000 0.482 ✓ +2026-06-25 18:10:39,831 | INFO | Musical instrument 0.680 0.000 0.374 ✓ +2026-06-25 18:10:39,831 | INFO | Plucked string instrument 0.513 0.000 0.282 ✓ +2026-06-25 18:10:39,831 | INFO | Guitar 0.354 0.000 0.195 ✓ +2026-06-25 18:10:39,831 | INFO | Sitar 0.159 0.000 0.087 ✗ +2026-06-25 18:10:39,831 | INFO | Tabla 0.147 0.000 0.081 ✗ +2026-06-25 18:10:39,831 | INFO | → WINNER: Music (combined=0.482) +2026-06-25 18:10:39,862 | INFO | +[606.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,867 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,872 | INFO | Music 0.835 0.000 0.459 ✓ +2026-06-25 18:10:39,872 | INFO | Sitar 0.624 0.000 0.343 ✓ +2026-06-25 18:10:39,873 | INFO | Musical instrument 0.567 0.000 0.312 ✓ +2026-06-25 18:10:39,873 | INFO | Plucked string instrument 0.454 0.000 0.250 ✓ +2026-06-25 18:10:39,873 | INFO | Tabla 0.197 0.000 0.108 ✗ +2026-06-25 18:10:39,874 | INFO | Carnatic music 0.192 0.000 0.106 ✗ +2026-06-25 18:10:39,874 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:39,907 | INFO | +[607.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,908 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,908 | INFO | Music 0.817 0.000 0.449 ✓ +2026-06-25 18:10:39,908 | INFO | Sitar 0.629 0.000 0.346 ✓ +2026-06-25 18:10:39,908 | INFO | Musical instrument 0.500 0.000 0.275 ✓ +2026-06-25 18:10:39,908 | INFO | Plucked string instrument 0.411 0.000 0.226 ✓ +2026-06-25 18:10:39,908 | INFO | Carnatic music 0.129 0.000 0.071 ✗ +2026-06-25 18:10:39,908 | INFO | Tabla 0.117 0.000 0.064 ✗ +2026-06-25 18:10:39,908 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:10:39,937 | INFO | +[607.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,937 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,940 | INFO | Music 0.866 0.000 0.476 ✓ +2026-06-25 18:10:39,940 | INFO | Musical instrument 0.531 0.000 0.292 ✓ +2026-06-25 18:10:39,941 | INFO | Plucked string instrument 0.429 0.000 0.236 ✓ +2026-06-25 18:10:39,941 | INFO | Ukulele 0.208 0.000 0.114 ✗ +2026-06-25 18:10:39,941 | INFO | Sitar 0.179 0.000 0.099 ✗ +2026-06-25 18:10:39,941 | INFO | Guitar 0.177 0.000 0.097 ✗ +2026-06-25 18:10:39,941 | INFO | → WINNER: Music (combined=0.476) +2026-06-25 18:10:39,988 | INFO | +[607.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:39,988 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:39,988 | INFO | Music 0.873 0.000 0.480 ✓ +2026-06-25 18:10:39,988 | INFO | Musical instrument 0.538 0.000 0.296 ✓ +2026-06-25 18:10:39,988 | INFO | Plucked string instrument 0.430 0.000 0.237 ✓ +2026-06-25 18:10:39,990 | INFO | Sitar 0.217 0.000 0.120 ✗ +2026-06-25 18:10:39,990 | INFO | Guitar 0.181 0.000 0.100 ✗ +2026-06-25 18:10:39,990 | INFO | Ukulele 0.120 0.000 0.066 ✗ +2026-06-25 18:10:39,991 | INFO | → WINNER: Music (combined=0.480) +2026-06-25 18:10:40,035 | INFO | +[607.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,036 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,037 | INFO | Music 0.872 0.000 0.479 ✓ +2026-06-25 18:10:40,037 | INFO | Musical instrument 0.514 0.000 0.283 ✓ +2026-06-25 18:10:40,037 | INFO | Plucked string instrument 0.389 0.000 0.214 ✓ +2026-06-25 18:10:40,038 | INFO | Ukulele 0.265 0.000 0.145 ✓ +2026-06-25 18:10:40,038 | INFO | Guitar 0.198 0.000 0.109 ✗ +2026-06-25 18:10:40,038 | INFO | Banjo 0.109 0.000 0.060 ✗ +2026-06-25 18:10:40,038 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:40,067 | INFO | +[607.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,068 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,068 | INFO | Music 0.889 0.000 0.489 ✓ +2026-06-25 18:10:40,071 | INFO | Musical instrument 0.593 0.000 0.326 ✓ +2026-06-25 18:10:40,072 | INFO | Plucked string instrument 0.507 0.000 0.279 ✓ +2026-06-25 18:10:40,072 | INFO | Guitar 0.305 0.000 0.168 ✓ +2026-06-25 18:10:40,072 | INFO | Ukulele 0.192 0.000 0.105 ✗ +2026-06-25 18:10:40,072 | INFO | Acoustic guitar 0.106 0.000 0.058 ✗ +2026-06-25 18:10:40,072 | INFO | → WINNER: Music (combined=0.489) +2026-06-25 18:10:40,114 | INFO | +[608.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,114 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,114 | INFO | Music 0.867 0.000 0.477 ✓ +2026-06-25 18:10:40,115 | INFO | Musical instrument 0.701 0.000 0.385 ✓ +2026-06-25 18:10:40,115 | INFO | Plucked string instrument 0.520 0.000 0.286 ✓ +2026-06-25 18:10:40,115 | INFO | Carnatic music 0.471 0.000 0.259 ✓ +2026-06-25 18:10:40,115 | INFO | Sitar 0.456 0.000 0.251 ✓ +2026-06-25 18:10:40,115 | INFO | Classical music 0.277 0.000 0.152 ✓ +2026-06-25 18:10:40,115 | INFO | → WINNER: Music (combined=0.477) +2026-06-25 18:10:40,179 | INFO | +[608.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,179 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,180 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:10:40,180 | INFO | Musical instrument 0.627 0.000 0.345 ✓ +2026-06-25 18:10:40,180 | INFO | Carnatic music 0.496 0.000 0.273 ✓ +2026-06-25 18:10:40,180 | INFO | Sitar 0.404 0.000 0.222 ✓ +2026-06-25 18:10:40,180 | INFO | Classical music 0.362 0.000 0.199 ✓ +2026-06-25 18:10:40,180 | INFO | Plucked string instrument 0.307 0.000 0.169 ✓ +2026-06-25 18:10:40,181 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:40,245 | INFO | +[608.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,245 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,245 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:40,246 | INFO | Musical instrument 0.664 0.000 0.365 ✓ +2026-06-25 18:10:40,246 | INFO | Plucked string instrument 0.379 0.000 0.208 ✓ +2026-06-25 18:10:40,247 | INFO | Carnatic music 0.333 0.000 0.183 ✓ +2026-06-25 18:10:40,247 | INFO | Guitar 0.207 0.000 0.114 ✗ +2026-06-25 18:10:40,247 | INFO | Classical music 0.169 0.000 0.093 ✗ +2026-06-25 18:10:40,247 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:40,302 | INFO | +[608.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,302 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,302 | INFO | Music 0.903 0.000 0.496 ✓ +2026-06-25 18:10:40,302 | INFO | Musical instrument 0.677 0.000 0.372 ✓ +2026-06-25 18:10:40,303 | INFO | Plucked string instrument 0.397 0.000 0.218 ✓ +2026-06-25 18:10:40,303 | INFO | Guitar 0.298 0.000 0.164 ✓ +2026-06-25 18:10:40,303 | INFO | Strum 0.070 0.000 0.039 ✗ +2026-06-25 18:10:40,303 | INFO | Acoustic guitar 0.063 0.000 0.035 ✗ +2026-06-25 18:10:40,303 | INFO | → WINNER: Music (combined=0.496) +2026-06-25 18:10:40,332 | INFO | +[608.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,333 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,333 | INFO | Music 0.897 0.000 0.493 ✓ +2026-06-25 18:10:40,333 | INFO | Musical instrument 0.807 0.000 0.444 ✓ +2026-06-25 18:10:40,333 | INFO | Guitar 0.773 0.000 0.425 ✓ +2026-06-25 18:10:40,334 | INFO | Plucked string instrument 0.768 0.000 0.422 ✓ +2026-06-25 18:10:40,334 | INFO | Acoustic guitar 0.277 0.000 0.152 ✓ +2026-06-25 18:10:40,334 | INFO | Strum 0.246 0.000 0.135 ✓ +2026-06-25 18:10:40,334 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:40,363 | INFO | +[609.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,363 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,364 | INFO | Music 0.897 0.000 0.494 ✓ +2026-06-25 18:10:40,364 | INFO | Musical instrument 0.751 0.000 0.413 ✓ +2026-06-25 18:10:40,364 | INFO | Plucked string instrument 0.691 0.000 0.380 ✓ +2026-06-25 18:10:40,364 | INFO | Guitar 0.686 0.000 0.377 ✓ +2026-06-25 18:10:40,364 | INFO | Electric guitar 0.275 0.000 0.151 ✓ +2026-06-25 18:10:40,364 | INFO | Strum 0.179 0.000 0.098 ✗ +2026-06-25 18:10:40,365 | INFO | → WINNER: Music (combined=0.494) +2026-06-25 18:10:40,394 | INFO | +[609.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,396 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,396 | INFO | Music 0.808 0.000 0.445 ✓ +2026-06-25 18:10:40,396 | INFO | Musical instrument 0.464 0.000 0.255 ✓ +2026-06-25 18:10:40,396 | INFO | Sitar 0.423 0.000 0.233 ✓ +2026-06-25 18:10:40,396 | INFO | Plucked string instrument 0.325 0.000 0.179 ✓ +2026-06-25 18:10:40,396 | INFO | Carnatic music 0.164 0.000 0.090 ✗ +2026-06-25 18:10:40,396 | INFO | Guitar 0.140 0.000 0.077 ✗ +2026-06-25 18:10:40,396 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:40,425 | INFO | +[609.40s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,425 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,425 | INFO | Music 0.810 0.000 0.446 ✓ +2026-06-25 18:10:40,425 | INFO | Musical instrument 0.526 0.000 0.290 ✓ +2026-06-25 18:10:40,425 | INFO | Plucked string instrument 0.371 0.000 0.204 ✓ +2026-06-25 18:10:40,428 | INFO | Sitar 0.244 0.000 0.134 ✓ +2026-06-25 18:10:40,428 | INFO | Guitar 0.206 0.000 0.113 ✗ +2026-06-25 18:10:40,428 | INFO | Carnatic music 0.116 0.000 0.064 ✗ +2026-06-25 18:10:40,428 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:40,454 | INFO | +[609.60s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,454 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,454 | INFO | Music 0.828 0.000 0.455 ✓ +2026-06-25 18:10:40,454 | INFO | Musical instrument 0.549 0.000 0.302 ✓ +2026-06-25 18:10:40,454 | INFO | Sitar 0.459 0.000 0.253 ✓ +2026-06-25 18:10:40,454 | INFO | Plucked string instrument 0.435 0.000 0.239 ✓ +2026-06-25 18:10:40,454 | INFO | Guitar 0.124 0.000 0.068 ✗ +2026-06-25 18:10:40,454 | INFO | Mandolin 0.110 0.000 0.060 ✗ +2026-06-25 18:10:40,454 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:40,488 | INFO | +[609.80s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,488 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,488 | INFO | Music 0.829 0.000 0.456 ✓ +2026-06-25 18:10:40,488 | INFO | Musical instrument 0.655 0.000 0.360 ✓ +2026-06-25 18:10:40,490 | INFO | Plucked string instrument 0.553 0.000 0.304 ✓ +2026-06-25 18:10:40,490 | INFO | Sitar 0.522 0.000 0.287 ✓ +2026-06-25 18:10:40,490 | INFO | Guitar 0.194 0.000 0.106 ✗ +2026-06-25 18:10:40,491 | INFO | Carnatic music 0.177 0.000 0.097 ✗ +2026-06-25 18:10:40,491 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:40,521 | INFO | +[610.00s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,521 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,522 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:10:40,522 | INFO | Musical instrument 0.580 0.000 0.319 ✓ +2026-06-25 18:10:40,522 | INFO | Plucked string instrument 0.468 0.000 0.257 ✓ +2026-06-25 18:10:40,522 | INFO | Sitar 0.348 0.000 0.192 ✓ +2026-06-25 18:10:40,523 | INFO | Guitar 0.220 0.000 0.121 ✓ +2026-06-25 18:10:40,523 | INFO | Banjo 0.150 0.000 0.082 ✗ +2026-06-25 18:10:40,523 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:40,553 | INFO | +[610.20s] AMBIENT | scene='The image shows a group of three people standing in a field of tall gr' +2026-06-25 18:10:40,553 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,553 | INFO | Music 0.887 0.000 0.488 ✓ +2026-06-25 18:10:40,553 | INFO | Musical instrument 0.712 0.000 0.392 ✓ +2026-06-25 18:10:40,553 | INFO | Plucked string instrument 0.629 0.000 0.346 ✓ +2026-06-25 18:10:40,553 | INFO | Guitar 0.449 0.000 0.247 ✓ +2026-06-25 18:10:40,554 | INFO | Banjo 0.232 0.000 0.128 ✓ +2026-06-25 18:10:40,554 | INFO | Sitar 0.194 0.000 0.106 ✗ +2026-06-25 18:10:40,554 | INFO | → WINNER: Music (combined=0.488) +2026-06-25 18:10:40,584 | INFO | +[615.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,584 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,584 | INFO | Music 0.814 0.000 0.448 ✓ +2026-06-25 18:10:40,584 | INFO | Musical instrument 0.343 0.000 0.189 ✓ +2026-06-25 18:10:40,584 | INFO | Plucked string instrument 0.210 0.000 0.115 ✗ +2026-06-25 18:10:40,586 | INFO | Zither 0.165 0.000 0.091 ✗ +2026-06-25 18:10:40,587 | INFO | Middle Eastern music 0.144 0.000 0.079 ✗ +2026-06-25 18:10:40,587 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:10:40,587 | INFO | → WINNER: Music (combined=0.448) +2026-06-25 18:10:40,612 | INFO | +[615.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,612 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,612 | INFO | Music 0.735 0.000 0.404 ✓ +2026-06-25 18:10:40,612 | INFO | Musical instrument 0.388 0.000 0.214 ✓ +2026-06-25 18:10:40,612 | INFO | Sitar 0.337 0.000 0.185 ✓ +2026-06-25 18:10:40,612 | INFO | Plucked string instrument 0.208 0.000 0.114 ✗ +2026-06-25 18:10:40,612 | INFO | Traditional music 0.133 0.000 0.073 ✗ +2026-06-25 18:10:40,612 | INFO | Zither 0.116 0.000 0.064 ✗ +2026-06-25 18:10:40,620 | INFO | → WINNER: Music (combined=0.404) +2026-06-25 18:10:40,650 | INFO | +[615.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,650 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,651 | INFO | Music 0.764 0.000 0.420 ✓ +2026-06-25 18:10:40,651 | INFO | Sitar 0.443 0.000 0.244 ✓ +2026-06-25 18:10:40,651 | INFO | Musical instrument 0.364 0.000 0.200 ✓ +2026-06-25 18:10:40,651 | INFO | Plucked string instrument 0.226 0.000 0.124 ✓ +2026-06-25 18:10:40,651 | INFO | Traditional music 0.136 0.000 0.075 ✗ +2026-06-25 18:10:40,651 | INFO | Zither 0.128 0.000 0.070 ✗ +2026-06-25 18:10:40,651 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:10:40,682 | INFO | +[616.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,682 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,682 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:40,682 | INFO | Musical instrument 0.555 0.000 0.305 ✓ +2026-06-25 18:10:40,682 | INFO | Sitar 0.393 0.000 0.216 ✓ +2026-06-25 18:10:40,683 | INFO | Plucked string instrument 0.356 0.000 0.196 ✓ +2026-06-25 18:10:40,683 | INFO | Guitar 0.177 0.000 0.097 ✗ +2026-06-25 18:10:40,683 | INFO | Carnatic music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:40,683 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:40,714 | INFO | +[616.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,714 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,714 | INFO | Music 0.823 0.000 0.453 ✓ +2026-06-25 18:10:40,714 | INFO | Musical instrument 0.661 0.000 0.364 ✓ +2026-06-25 18:10:40,716 | INFO | Plucked string instrument 0.577 0.000 0.318 ✓ +2026-06-25 18:10:40,716 | INFO | Guitar 0.443 0.000 0.243 ✓ +2026-06-25 18:10:40,716 | INFO | Strum 0.111 0.000 0.061 ✗ +2026-06-25 18:10:40,717 | INFO | Sitar 0.107 0.000 0.059 ✗ +2026-06-25 18:10:40,717 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:40,746 | INFO | +[616.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,749 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,749 | INFO | Music 0.871 0.000 0.479 ✓ +2026-06-25 18:10:40,749 | INFO | Musical instrument 0.686 0.000 0.377 ✓ +2026-06-25 18:10:40,749 | INFO | Carnatic music 0.646 0.000 0.356 ✓ +2026-06-25 18:10:40,749 | INFO | Sitar 0.572 0.000 0.315 ✓ +2026-06-25 18:10:40,750 | INFO | Plucked string instrument 0.527 0.000 0.290 ✓ +2026-06-25 18:10:40,750 | INFO | Classical music 0.379 0.000 0.209 ✓ +2026-06-25 18:10:40,750 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:40,780 | INFO | +[616.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,780 | INFO | Music 0.786 0.000 0.432 ✓ +2026-06-25 18:10:40,780 | INFO | Carnatic music 0.683 0.000 0.376 ✓ +2026-06-25 18:10:40,780 | INFO | Musical instrument 0.517 0.000 0.285 ✓ +2026-06-25 18:10:40,780 | INFO | Sitar 0.384 0.000 0.211 ✓ +2026-06-25 18:10:40,780 | INFO | Classical music 0.367 0.000 0.202 ✓ +2026-06-25 18:10:40,780 | INFO | Plucked string instrument 0.250 0.000 0.138 ✓ +2026-06-25 18:10:40,780 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:40,810 | INFO | +[616.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,811 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,811 | INFO | Music 0.816 0.000 0.449 ✓ +2026-06-25 18:10:40,811 | INFO | Carnatic music 0.718 0.000 0.395 ✓ +2026-06-25 18:10:40,811 | INFO | Musical instrument 0.555 0.000 0.305 ✓ +2026-06-25 18:10:40,812 | INFO | Classical music 0.364 0.000 0.200 ✓ +2026-06-25 18:10:40,812 | INFO | Sitar 0.265 0.000 0.146 ✓ +2026-06-25 18:10:40,812 | INFO | Tabla 0.255 0.000 0.140 ✓ +2026-06-25 18:10:40,812 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:10:40,841 | INFO | +[617.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,841 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,842 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:40,842 | INFO | Musical instrument 0.739 0.000 0.406 ✓ +2026-06-25 18:10:40,842 | INFO | Sitar 0.731 0.000 0.402 ✓ +2026-06-25 18:10:40,842 | INFO | Carnatic music 0.547 0.000 0.301 ✓ +2026-06-25 18:10:40,843 | INFO | Plucked string instrument 0.522 0.000 0.287 ✓ +2026-06-25 18:10:40,843 | INFO | Classical music 0.368 0.000 0.202 ✓ +2026-06-25 18:10:40,843 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:40,871 | INFO | +[617.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,871 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,874 | INFO | Music 0.828 0.000 0.456 ✓ +2026-06-25 18:10:40,874 | INFO | Sitar 0.703 0.000 0.387 ✓ +2026-06-25 18:10:40,874 | INFO | Musical instrument 0.535 0.000 0.294 ✓ +2026-06-25 18:10:40,874 | INFO | Plucked string instrument 0.379 0.000 0.208 ✓ +2026-06-25 18:10:40,874 | INFO | Carnatic music 0.227 0.000 0.125 ✓ +2026-06-25 18:10:40,874 | INFO | Classical music 0.158 0.000 0.087 ✗ +2026-06-25 18:10:40,874 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:40,906 | INFO | +[617.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,906 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,907 | INFO | Music 0.875 0.000 0.481 ✓ +2026-06-25 18:10:40,907 | INFO | Musical instrument 0.656 0.000 0.361 ✓ +2026-06-25 18:10:40,907 | INFO | Sitar 0.622 0.000 0.342 ✓ +2026-06-25 18:10:40,907 | INFO | Plucked string instrument 0.569 0.000 0.313 ✓ +2026-06-25 18:10:40,908 | INFO | Carnatic music 0.225 0.000 0.124 ✓ +2026-06-25 18:10:40,908 | INFO | Guitar 0.171 0.000 0.094 ✗ +2026-06-25 18:10:40,908 | INFO | → WINNER: Music (combined=0.481) +2026-06-25 18:10:40,938 | INFO | +[617.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,938 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,938 | INFO | Music 0.882 0.000 0.485 ✓ +2026-06-25 18:10:40,939 | INFO | Sitar 0.695 0.000 0.382 ✓ +2026-06-25 18:10:40,939 | INFO | Musical instrument 0.633 0.000 0.348 ✓ +2026-06-25 18:10:40,939 | INFO | Plucked string instrument 0.515 0.000 0.283 ✓ +2026-06-25 18:10:40,939 | INFO | Carnatic music 0.247 0.000 0.136 ✓ +2026-06-25 18:10:40,940 | INFO | Bowed string instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:10:40,940 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:10:40,968 | INFO | +[617.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:40,968 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:40,970 | INFO | Music 0.807 0.000 0.444 ✓ +2026-06-25 18:10:40,970 | INFO | Musical instrument 0.444 0.000 0.244 ✓ +2026-06-25 18:10:40,970 | INFO | Plucked string instrument 0.335 0.000 0.184 ✓ +2026-06-25 18:10:40,970 | INFO | Sitar 0.229 0.000 0.126 ✓ +2026-06-25 18:10:40,971 | INFO | Guitar 0.162 0.000 0.089 ✗ +2026-06-25 18:10:40,971 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:41,000 | INFO | +[618.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,000 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,000 | INFO | Music 0.893 0.000 0.491 ✓ +2026-06-25 18:10:41,000 | INFO | Musical instrument 0.712 0.000 0.392 ✓ +2026-06-25 18:10:41,001 | INFO | Plucked string instrument 0.620 0.000 0.341 ✓ +2026-06-25 18:10:41,001 | INFO | Guitar 0.349 0.000 0.192 ✓ +2026-06-25 18:10:41,001 | INFO | Banjo 0.164 0.000 0.090 ✗ +2026-06-25 18:10:41,001 | INFO | Ukulele 0.109 0.000 0.060 ✗ +2026-06-25 18:10:41,001 | INFO | → WINNER: Music (combined=0.491) +2026-06-25 18:10:41,030 | INFO | +[618.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,030 | INFO | Music 0.889 0.000 0.489 ✓ +2026-06-25 18:10:41,030 | INFO | Musical instrument 0.748 0.000 0.411 ✓ +2026-06-25 18:10:41,030 | INFO | Plucked string instrument 0.650 0.000 0.358 ✓ +2026-06-25 18:10:41,030 | INFO | Guitar 0.574 0.000 0.316 ✓ +2026-06-25 18:10:41,030 | INFO | Acoustic guitar 0.160 0.000 0.088 ✗ +2026-06-25 18:10:41,030 | INFO | Strum 0.132 0.000 0.072 ✗ +2026-06-25 18:10:41,030 | INFO | → WINNER: Music (combined=0.489) +2026-06-25 18:10:41,062 | INFO | +[618.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,062 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:10:41,062 | INFO | Musical instrument 0.772 0.000 0.424 ✓ +2026-06-25 18:10:41,062 | INFO | Plucked string instrument 0.547 0.000 0.301 ✓ +2026-06-25 18:10:41,062 | INFO | Guitar 0.542 0.000 0.298 ✓ +2026-06-25 18:10:41,062 | INFO | Keyboard (musical) 0.219 0.000 0.120 ✓ +2026-06-25 18:10:41,062 | INFO | Piano 0.176 0.000 0.097 ✗ +2026-06-25 18:10:41,062 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:41,094 | INFO | +[618.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,094 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,095 | INFO | Music 0.810 0.000 0.446 ✓ +2026-06-25 18:10:41,095 | INFO | Musical instrument 0.660 0.000 0.363 ✓ +2026-06-25 18:10:41,095 | INFO | Plucked string instrument 0.414 0.000 0.228 ✓ +2026-06-25 18:10:41,095 | INFO | Guitar 0.371 0.000 0.204 ✓ +2026-06-25 18:10:41,096 | INFO | Keyboard (musical) 0.164 0.000 0.090 ✗ +2026-06-25 18:10:41,096 | INFO | Acoustic guitar 0.134 0.000 0.073 ✗ +2026-06-25 18:10:41,096 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:41,125 | INFO | +[618.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,125 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,126 | INFO | Music 0.897 0.000 0.493 ✓ +2026-06-25 18:10:41,126 | INFO | Musical instrument 0.801 0.000 0.441 ✓ +2026-06-25 18:10:41,126 | INFO | Plucked string instrument 0.755 0.000 0.415 ✓ +2026-06-25 18:10:41,126 | INFO | Guitar 0.740 0.000 0.407 ✓ +2026-06-25 18:10:41,127 | INFO | Acoustic guitar 0.367 0.000 0.202 ✓ +2026-06-25 18:10:41,128 | INFO | Strum 0.321 0.000 0.177 ✓ +2026-06-25 18:10:41,128 | INFO | → WINNER: Music (combined=0.493) +2026-06-25 18:10:41,157 | INFO | +[619.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,157 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,158 | INFO | Music 0.893 0.000 0.491 ✓ +2026-06-25 18:10:41,158 | INFO | Musical instrument 0.659 0.000 0.363 ✓ +2026-06-25 18:10:41,158 | INFO | Plucked string instrument 0.353 0.000 0.194 ✓ +2026-06-25 18:10:41,158 | INFO | Guitar 0.201 0.000 0.110 ✗ +2026-06-25 18:10:41,158 | INFO | Carnatic music 0.134 0.000 0.073 ✗ +2026-06-25 18:10:41,159 | INFO | Classical music 0.120 0.000 0.066 ✗ +2026-06-25 18:10:41,159 | INFO | → WINNER: Music (combined=0.491) +2026-06-25 18:10:41,189 | INFO | +[619.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,189 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,189 | INFO | Music 0.889 0.000 0.489 ✓ +2026-06-25 18:10:41,189 | INFO | Musical instrument 0.724 0.000 0.398 ✓ +2026-06-25 18:10:41,190 | INFO | Plucked string instrument 0.467 0.000 0.257 ✓ +2026-06-25 18:10:41,190 | INFO | Guitar 0.351 0.000 0.193 ✓ +2026-06-25 18:10:41,190 | INFO | Classical music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:41,190 | INFO | Traditional music 0.106 0.000 0.058 ✗ +2026-06-25 18:10:41,190 | INFO | → WINNER: Music (combined=0.489) +2026-06-25 18:10:41,220 | INFO | +[619.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,220 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,221 | INFO | Music 0.900 0.000 0.495 ✓ +2026-06-25 18:10:41,221 | INFO | Musical instrument 0.490 0.000 0.269 ✓ +2026-06-25 18:10:41,221 | INFO | Sitar 0.296 0.000 0.163 ✓ +2026-06-25 18:10:41,221 | INFO | Carnatic music 0.267 0.000 0.147 ✓ +2026-06-25 18:10:41,222 | INFO | Plucked string instrument 0.247 0.000 0.136 ✓ +2026-06-25 18:10:41,222 | INFO | Classical music 0.119 0.000 0.066 ✗ +2026-06-25 18:10:41,222 | INFO | → WINNER: Music (combined=0.495) +2026-06-25 18:10:41,252 | INFO | +[619.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,252 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,253 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:10:41,253 | INFO | Musical instrument 0.356 0.000 0.196 ✓ +2026-06-25 18:10:41,253 | INFO | Sitar 0.228 0.000 0.125 ✓ +2026-06-25 18:10:41,253 | INFO | Plucked string instrument 0.179 0.000 0.098 ✗ +2026-06-25 18:10:41,254 | INFO | Carnatic music 0.158 0.000 0.087 ✗ +2026-06-25 18:10:41,254 | INFO | Middle Eastern music 0.144 0.000 0.079 ✗ +2026-06-25 18:10:41,254 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:41,284 | INFO | +[619.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,284 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,285 | INFO | Music 0.782 0.000 0.430 ✓ +2026-06-25 18:10:41,285 | INFO | Carnatic music 0.252 0.000 0.138 ✓ +2026-06-25 18:10:41,285 | INFO | Sitar 0.212 0.000 0.117 ✗ +2026-06-25 18:10:41,285 | INFO | Musical instrument 0.200 0.000 0.110 ✗ +2026-06-25 18:10:41,285 | INFO | Middle Eastern music 0.164 0.000 0.090 ✗ +2026-06-25 18:10:41,286 | INFO | Tabla 0.107 0.000 0.059 ✗ +2026-06-25 18:10:41,286 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:10:41,315 | INFO | +[620.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,315 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,315 | INFO | Music 0.778 0.000 0.428 ✓ +2026-06-25 18:10:41,316 | INFO | Sitar 0.569 0.000 0.313 ✓ +2026-06-25 18:10:41,316 | INFO | Tabla 0.381 0.000 0.209 ✓ +2026-06-25 18:10:41,316 | INFO | Carnatic music 0.328 0.000 0.180 ✓ +2026-06-25 18:10:41,316 | INFO | Musical instrument 0.249 0.000 0.137 ✓ +2026-06-25 18:10:41,316 | INFO | Middle Eastern music 0.128 0.000 0.070 ✗ +2026-06-25 18:10:41,317 | INFO | → WINNER: Music (combined=0.428) +2026-06-25 18:10:41,347 | INFO | +[620.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,347 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,347 | INFO | Music 0.742 0.000 0.408 ✓ +2026-06-25 18:10:41,347 | INFO | Sitar 0.282 0.000 0.155 ✓ +2026-06-25 18:10:41,347 | INFO | Tabla 0.276 0.000 0.152 ✓ +2026-06-25 18:10:41,347 | INFO | Carnatic music 0.227 0.000 0.125 ✓ +2026-06-25 18:10:41,349 | INFO | Musical instrument 0.159 0.000 0.087 ✗ +2026-06-25 18:10:41,349 | INFO | Drum 0.071 0.000 0.039 ✗ +2026-06-25 18:10:41,349 | INFO | → WINNER: Music (combined=0.408) +2026-06-25 18:10:41,381 | INFO | +[620.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,381 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,382 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:10:41,382 | INFO | Musical instrument 0.467 0.000 0.257 ✓ +2026-06-25 18:10:41,382 | INFO | Plucked string instrument 0.184 0.000 0.102 ✗ +2026-06-25 18:10:41,382 | INFO | Sitar 0.147 0.000 0.081 ✗ +2026-06-25 18:10:41,382 | INFO | Tabla 0.146 0.000 0.081 ✗ +2026-06-25 18:10:41,382 | INFO | Guitar 0.117 0.000 0.064 ✗ +2026-06-25 18:10:41,383 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:10:41,412 | INFO | +[620.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,412 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,413 | INFO | Music 0.781 0.000 0.429 ✓ +2026-06-25 18:10:41,413 | INFO | Musical instrument 0.553 0.000 0.304 ✓ +2026-06-25 18:10:41,413 | INFO | Plucked string instrument 0.236 0.000 0.130 ✓ +2026-06-25 18:10:41,413 | INFO | Tabla 0.222 0.000 0.122 ✓ +2026-06-25 18:10:41,413 | INFO | Sitar 0.196 0.000 0.108 ✗ +2026-06-25 18:10:41,414 | INFO | Carnatic music 0.130 0.000 0.071 ✗ +2026-06-25 18:10:41,414 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:10:41,444 | INFO | +[620.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,444 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,444 | INFO | Music 0.835 0.000 0.459 ✓ +2026-06-25 18:10:41,446 | INFO | Musical instrument 0.400 0.000 0.220 ✓ +2026-06-25 18:10:41,446 | INFO | Plucked string instrument 0.115 0.000 0.064 ✗ +2026-06-25 18:10:41,446 | INFO | Drum 0.092 0.000 0.051 ✗ +2026-06-25 18:10:41,446 | INFO | Guitar 0.086 0.000 0.048 ✗ +2026-06-25 18:10:41,446 | INFO | Percussion 0.077 0.000 0.042 ✗ +2026-06-25 18:10:41,446 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:41,476 | INFO | +[621.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,476 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,476 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:41,476 | INFO | Musical instrument 0.391 0.000 0.215 ✓ +2026-06-25 18:10:41,476 | INFO | Tabla 0.134 0.000 0.073 ✗ +2026-06-25 18:10:41,476 | INFO | Folk music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:41,476 | INFO | Percussion 0.103 0.000 0.057 ✗ +2026-06-25 18:10:41,478 | INFO | Drum 0.099 0.000 0.054 ✗ +2026-06-25 18:10:41,478 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:41,508 | INFO | +[621.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,508 | INFO | Music 0.786 0.000 0.432 ✓ +2026-06-25 18:10:41,508 | INFO | Tabla 0.598 0.000 0.329 ✓ +2026-06-25 18:10:41,508 | INFO | Musical instrument 0.546 0.000 0.300 ✓ +2026-06-25 18:10:41,508 | INFO | Sitar 0.443 0.000 0.244 ✓ +2026-06-25 18:10:41,508 | INFO | Plucked string instrument 0.237 0.000 0.131 ✓ +2026-06-25 18:10:41,508 | INFO | Carnatic music 0.194 0.000 0.107 ✗ +2026-06-25 18:10:41,508 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:41,539 | INFO | +[621.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,540 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,540 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:10:41,540 | INFO | Musical instrument 0.440 0.000 0.242 ✓ +2026-06-25 18:10:41,540 | INFO | Drum 0.172 0.000 0.095 ✗ +2026-06-25 18:10:41,541 | INFO | Tabla 0.163 0.000 0.089 ✗ +2026-06-25 18:10:41,541 | INFO | Percussion 0.119 0.000 0.065 ✗ +2026-06-25 18:10:41,541 | INFO | Plucked string instrument 0.104 0.000 0.057 ✗ +2026-06-25 18:10:41,541 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:41,570 | INFO | +[621.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,570 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,570 | INFO | Music 0.870 0.000 0.479 ✓ +2026-06-25 18:10:41,570 | INFO | Musical instrument 0.555 0.000 0.305 ✓ +2026-06-25 18:10:41,570 | INFO | Plucked string instrument 0.215 0.000 0.118 ✗ +2026-06-25 18:10:41,570 | INFO | Tabla 0.148 0.000 0.081 ✗ +2026-06-25 18:10:41,570 | INFO | Guitar 0.148 0.000 0.081 ✗ +2026-06-25 18:10:41,570 | INFO | Drum 0.125 0.000 0.069 ✗ +2026-06-25 18:10:41,570 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:41,602 | INFO | +[621.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,602 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,603 | INFO | Music 0.788 0.000 0.433 ✓ +2026-06-25 18:10:41,603 | INFO | Musical instrument 0.582 0.000 0.320 ✓ +2026-06-25 18:10:41,603 | INFO | Tabla 0.252 0.000 0.138 ✓ +2026-06-25 18:10:41,603 | INFO | Plucked string instrument 0.206 0.000 0.113 ✗ +2026-06-25 18:10:41,604 | INFO | Percussion 0.142 0.000 0.078 ✗ +2026-06-25 18:10:41,604 | INFO | Drum 0.120 0.000 0.066 ✗ +2026-06-25 18:10:41,604 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:10:41,634 | INFO | +[622.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,634 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,634 | INFO | Music 0.734 0.000 0.404 ✓ +2026-06-25 18:10:41,634 | INFO | Musical instrument 0.499 0.000 0.275 ✓ +2026-06-25 18:10:41,635 | INFO | Brass instrument 0.413 0.000 0.227 ✓ +2026-06-25 18:10:41,635 | INFO | French horn 0.172 0.000 0.094 ✗ +2026-06-25 18:10:41,635 | INFO | Trombone 0.117 0.000 0.064 ✗ +2026-06-25 18:10:41,635 | INFO | Saxophone 0.112 0.000 0.061 ✗ +2026-06-25 18:10:41,636 | INFO | → WINNER: Music (combined=0.404) +2026-06-25 18:10:41,664 | INFO | +[622.20s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,666 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,666 | INFO | Music 0.771 0.000 0.424 ✓ +2026-06-25 18:10:41,666 | INFO | Musical instrument 0.451 0.000 0.248 ✓ +2026-06-25 18:10:41,666 | INFO | Tabla 0.222 0.000 0.122 ✓ +2026-06-25 18:10:41,667 | INFO | Sitar 0.116 0.000 0.064 ✗ +2026-06-25 18:10:41,667 | INFO | Plucked string instrument 0.112 0.000 0.061 ✗ +2026-06-25 18:10:41,667 | INFO | Percussion 0.107 0.000 0.059 ✗ +2026-06-25 18:10:41,667 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:10:41,697 | INFO | +[622.40s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,699 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,699 | INFO | Music 0.805 0.000 0.443 ✓ +2026-06-25 18:10:41,699 | INFO | Musical instrument 0.485 0.000 0.267 ✓ +2026-06-25 18:10:41,699 | INFO | Plucked string instrument 0.161 0.000 0.089 ✗ +2026-06-25 18:10:41,700 | INFO | Guitar 0.115 0.000 0.063 ✗ +2026-06-25 18:10:41,700 | INFO | Piano 0.079 0.000 0.044 ✗ +2026-06-25 18:10:41,700 | INFO | Harmonic 0.059 0.000 0.033 ✗ +2026-06-25 18:10:41,700 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:41,730 | INFO | +[622.60s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,732 | INFO | Music 0.861 0.000 0.473 ✓ +2026-06-25 18:10:41,732 | INFO | Musical instrument 0.758 0.000 0.417 ✓ +2026-06-25 18:10:41,732 | INFO | Guitar 0.662 0.000 0.364 ✓ +2026-06-25 18:10:41,732 | INFO | Plucked string instrument 0.633 0.000 0.348 ✓ +2026-06-25 18:10:41,732 | INFO | Acoustic guitar 0.216 0.000 0.119 ✗ +2026-06-25 18:10:41,732 | INFO | Strum 0.130 0.000 0.071 ✗ +2026-06-25 18:10:41,733 | INFO | → WINNER: Music (combined=0.473) +2026-06-25 18:10:41,762 | INFO | +[622.80s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,762 | INFO | Music 0.805 0.000 0.443 ✓ +2026-06-25 18:10:41,763 | INFO | Musical instrument 0.576 0.000 0.317 ✓ +2026-06-25 18:10:41,763 | INFO | Guitar 0.501 0.000 0.276 ✓ +2026-06-25 18:10:41,763 | INFO | Plucked string instrument 0.473 0.000 0.260 ✓ +2026-06-25 18:10:41,763 | INFO | Acoustic guitar 0.202 0.000 0.111 ✗ +2026-06-25 18:10:41,763 | INFO | Strum 0.148 0.000 0.082 ✗ +2026-06-25 18:10:41,763 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:41,792 | INFO | +[623.00s] AMBIENT | scene='The image shows three women standing in a field of tall grass. They ap' +2026-06-25 18:10:41,792 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,792 | INFO | Music 0.823 0.000 0.453 ✓ +2026-06-25 18:10:41,792 | INFO | Musical instrument 0.441 0.000 0.242 ✓ +2026-06-25 18:10:41,794 | INFO | Plucked string instrument 0.418 0.000 0.230 ✓ +2026-06-25 18:10:41,794 | INFO | Guitar 0.385 0.000 0.211 ✓ +2026-06-25 18:10:41,796 | INFO | Animal 0.184 0.000 0.101 ✗ +2026-06-25 18:10:41,796 | INFO | Acoustic guitar 0.175 0.000 0.096 ✗ +2026-06-25 18:10:41,796 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:41,827 | INFO | +[623.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:41,829 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,830 | INFO | Music 0.133 0.000 0.073 ✗ +2026-06-25 18:10:41,830 | INFO | Animal 0.100 0.000 0.055 ✗ +2026-06-25 18:10:41,830 | INFO | Scrape 0.066 0.000 0.036 ✗ +2026-06-25 18:10:41,831 | INFO | Inside, small room 0.064 0.000 0.035 ✗ +2026-06-25 18:10:41,831 | INFO | Zipper (clothing) 0.053 0.000 0.029 ✗ +2026-06-25 18:10:41,831 | INFO | → no winner +2026-06-25 18:10:41,860 | INFO | +[623.40s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:41,862 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,862 | INFO | Mechanisms 0.586 0.000 0.322 ✓ +2026-06-25 18:10:41,862 | INFO | Ratchet, pawl 0.523 0.000 0.288 ✓ +2026-06-25 18:10:41,862 | INFO | Gears 0.494 0.000 0.272 ✓ +2026-06-25 18:10:41,864 | INFO | Animal 0.090 0.000 0.050 ✗ +2026-06-25 18:10:41,864 | INFO | → WINNER: Mechanisms (combined=0.322) +2026-06-25 18:10:41,890 | INFO | +[623.60s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:41,890 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,890 | INFO | Animal 0.141 0.000 0.078 ✗ +2026-06-25 18:10:41,890 | INFO | → no winner +2026-06-25 18:10:41,923 | INFO | +[623.80s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:41,923 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,924 | INFO | Animal 0.497 0.000 0.274 ✓ +2026-06-25 18:10:41,924 | INFO | Pant 0.285 0.000 0.157 ✓ +2026-06-25 18:10:41,924 | INFO | Horse 0.141 0.000 0.077 ✗ +2026-06-25 18:10:41,924 | INFO | Dog 0.122 0.000 0.067 ✗ +2026-06-25 18:10:41,925 | INFO | Domestic animals, pets 0.104 0.000 0.057 ✗ +2026-06-25 18:10:41,925 | INFO | Clip-clop 0.077 0.000 0.043 ✗ +2026-06-25 18:10:41,925 | INFO | → WINNER: Animal (combined=0.274) +2026-06-25 18:10:41,955 | INFO | +[624.00s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:41,959 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:41,965 | INFO | Animal 0.257 0.000 0.141 ✓ +2026-06-25 18:10:41,966 | INFO | Horse 0.098 0.000 0.054 ✗ +2026-06-25 18:10:41,966 | INFO | Clip-clop 0.083 0.000 0.045 ✗ +2026-06-25 18:10:41,966 | INFO | Outside, rural or natural 0.066 0.000 0.036 ✗ +2026-06-25 18:10:41,967 | INFO | → WINNER: Animal (combined=0.141) +2026-06-25 18:10:41,998 | INFO | +[624.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:41,998 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,000 | INFO | Animal 0.328 0.000 0.180 ✓ +2026-06-25 18:10:42,001 | INFO | Horse 0.265 0.000 0.146 ✓ +2026-06-25 18:10:42,001 | INFO | Clip-clop 0.229 0.000 0.126 ✓ +2026-06-25 18:10:42,002 | INFO | Outside, rural or natural 0.068 0.000 0.037 ✗ +2026-06-25 18:10:42,002 | INFO | → WINNER: Animal (combined=0.180) +2026-06-25 18:10:42,034 | INFO | +[624.40s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,034 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,035 | INFO | Animal 0.360 0.000 0.198 ✓ +2026-06-25 18:10:42,035 | INFO | Horse 0.196 0.000 0.107 ✗ +2026-06-25 18:10:42,035 | INFO | Clip-clop 0.171 0.000 0.094 ✗ +2026-06-25 18:10:42,036 | INFO | Vehicle 0.081 0.000 0.045 ✗ +2026-06-25 18:10:42,036 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:42,036 | INFO | Wild animals 0.054 0.000 0.030 ✗ +2026-06-25 18:10:42,037 | INFO | → WINNER: Animal (combined=0.198) +2026-06-25 18:10:42,062 | INFO | +[624.60s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,062 | INFO | Animal 0.391 0.000 0.215 ✓ +2026-06-25 18:10:42,062 | INFO | Horse 0.209 0.000 0.115 ✗ +2026-06-25 18:10:42,062 | INFO | Clip-clop 0.137 0.000 0.075 ✗ +2026-06-25 18:10:42,062 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:10:42,062 | INFO | Patter 0.058 0.000 0.032 ✗ +2026-06-25 18:10:42,062 | INFO | Wood 0.057 0.000 0.031 ✗ +2026-06-25 18:10:42,062 | INFO | → WINNER: Animal (combined=0.215) +2026-06-25 18:10:42,098 | INFO | +[624.80s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,098 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,098 | INFO | Animal 0.313 0.000 0.172 ✓ +2026-06-25 18:10:42,100 | INFO | Horse 0.127 0.000 0.070 ✗ +2026-06-25 18:10:42,100 | INFO | Clip-clop 0.096 0.000 0.052 ✗ +2026-06-25 18:10:42,100 | INFO | Patter 0.060 0.000 0.033 ✗ +2026-06-25 18:10:42,100 | INFO | Outside, rural or natural 0.054 0.000 0.030 ✗ +2026-06-25 18:10:42,101 | INFO | → WINNER: Animal (combined=0.172) +2026-06-25 18:10:42,132 | INFO | +[627.00s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,132 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,132 | INFO | Animal 0.426 0.000 0.234 ✓ +2026-06-25 18:10:42,133 | INFO | Bird 0.081 0.286 0.173 ✓ +2026-06-25 18:10:42,133 | INFO | Wild animals 0.153 0.000 0.084 ✗ +2026-06-25 18:10:42,134 | INFO | Outside, rural or natural 0.086 0.000 0.047 ✗ +2026-06-25 18:10:42,134 | INFO | Fowl 0.083 0.000 0.046 ✗ +2026-06-25 18:10:42,134 | INFO | Turkey 0.059 0.000 0.032 ✗ +2026-06-25 18:10:42,134 | INFO | → WINNER: Animal (combined=0.234) +2026-06-25 18:10:42,166 | INFO | +[627.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,167 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,167 | INFO | Bird 0.106 0.286 0.187 ✓ +2026-06-25 18:10:42,167 | INFO | Bird vocalization, bird call, bird song 0.042 0.310 0.163 ✓ +2026-06-25 18:10:42,168 | INFO | Animal 0.231 0.000 0.127 ✓ +2026-06-25 18:10:42,168 | INFO | Fowl 0.166 0.000 0.091 ✗ +2026-06-25 18:10:42,168 | INFO | Turkey 0.134 0.000 0.073 ✗ +2026-06-25 18:10:42,169 | INFO | Gobble 0.094 0.000 0.052 ✗ +2026-06-25 18:10:42,169 | INFO | → WINNER: Bird (combined=0.187) +2026-06-25 18:10:42,199 | INFO | +[627.40s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,199 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,199 | INFO | Bird 0.145 0.286 0.208 ✓ +2026-06-25 18:10:42,199 | INFO | Bird vocalization, bird call, bird song 0.111 0.310 0.201 ✓ +2026-06-25 18:10:42,200 | INFO | Environmental noise 0.179 0.000 0.099 ✗ +2026-06-25 18:10:42,200 | INFO | Animal 0.138 0.000 0.076 ✗ +2026-06-25 18:10:42,200 | INFO | Chirp, tweet 0.106 0.000 0.058 ✗ +2026-06-25 18:10:42,200 | INFO | Frog 0.070 0.000 0.038 ✗ +2026-06-25 18:10:42,200 | INFO | → WINNER: Bird (combined=0.208) +2026-06-25 18:10:42,231 | INFO | +[627.60s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,231 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,232 | INFO | Bird 0.140 0.286 0.206 ✓ +2026-06-25 18:10:42,232 | INFO | Bird vocalization, bird call, bird song 0.077 0.310 0.182 ✓ +2026-06-25 18:10:42,232 | INFO | Animal 0.119 0.000 0.066 ✗ +2026-06-25 18:10:42,232 | INFO | Chirp, tweet 0.069 0.000 0.038 ✗ +2026-06-25 18:10:42,232 | INFO | Environmental noise 0.060 0.000 0.033 ✗ +2026-06-25 18:10:42,232 | INFO | Fowl 0.054 0.000 0.030 ✗ +2026-06-25 18:10:42,233 | INFO | → WINNER: Bird (combined=0.206) +2026-06-25 18:10:42,262 | INFO | +[627.80s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,262 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,262 | INFO | Bird 0.130 0.286 0.200 ✓ +2026-06-25 18:10:42,262 | INFO | Bird vocalization, bird call, bird song 0.060 0.310 0.173 ✓ +2026-06-25 18:10:42,262 | INFO | Animal 0.133 0.000 0.073 ✗ +2026-06-25 18:10:42,262 | INFO | Chirp, tweet 0.060 0.000 0.033 ✗ +2026-06-25 18:10:42,264 | INFO | Cricket 0.034 0.000 0.019 ✗ +2026-06-25 18:10:42,264 | INFO | → WINNER: Bird (combined=0.200) +2026-06-25 18:10:42,293 | INFO | +[628.00s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,294 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,294 | INFO | Bird 0.203 0.286 0.240 ✓ +2026-06-25 18:10:42,294 | INFO | Bird vocalization, bird call, bird song 0.094 0.310 0.191 ✓ +2026-06-25 18:10:42,294 | INFO | Animal 0.163 0.000 0.089 ✗ +2026-06-25 18:10:42,295 | INFO | Chirp, tweet 0.095 0.000 0.052 ✗ +2026-06-25 18:10:42,295 | INFO | Outside, rural or natural 0.062 0.000 0.034 ✗ +2026-06-25 18:10:42,295 | INFO | Cricket 0.040 0.000 0.022 ✗ +2026-06-25 18:10:42,295 | INFO | → WINNER: Bird (combined=0.240) +2026-06-25 18:10:42,324 | INFO | +[628.20s] AMBIENT | scene='The image shows two men standing on a rocky shore near a body of water' +2026-06-25 18:10:42,325 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,325 | INFO | Animal 0.360 0.000 0.198 ✓ +2026-06-25 18:10:42,325 | INFO | Bird 0.113 0.286 0.191 ✓ +2026-06-25 18:10:42,325 | INFO | Bird vocalization, bird call, bird song 0.028 0.310 0.155 ✓ +2026-06-25 18:10:42,325 | INFO | Domestic animals, pets 0.094 0.000 0.052 ✗ +2026-06-25 18:10:42,326 | INFO | Duck 0.068 0.000 0.037 ✗ +2026-06-25 18:10:42,326 | INFO | Dog 0.043 0.000 0.024 ✗ +2026-06-25 18:10:42,326 | INFO | → WINNER: Animal (combined=0.198) +2026-06-25 18:10:42,362 | INFO | +[650.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,363 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,363 | INFO | Animal 0.389 0.000 0.214 ✓ +2026-06-25 18:10:42,363 | INFO | Bird 0.162 0.230 0.193 ✓ +2026-06-25 18:10:42,363 | INFO | Wild animals 0.111 0.238 0.168 ✓ +2026-06-25 18:10:42,364 | INFO | Domestic animals, pets 0.150 0.000 0.082 ✗ +2026-06-25 18:10:42,364 | INFO | Dog 0.137 0.000 0.075 ✗ +2026-06-25 18:10:42,364 | INFO | Environmental noise 0.116 0.000 0.064 ✗ +2026-06-25 18:10:42,364 | INFO | → WINNER: Animal (combined=0.214) +2026-06-25 18:10:42,394 | INFO | +[650.80s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,394 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,394 | INFO | Animal 0.550 0.000 0.302 ✓ +2026-06-25 18:10:42,394 | INFO | Bird 0.341 0.230 0.291 ✓ +2026-06-25 18:10:42,394 | INFO | Domestic animals, pets 0.310 0.000 0.170 ✓ +2026-06-25 18:10:42,395 | INFO | Dog 0.307 0.000 0.169 ✓ +2026-06-25 18:10:42,395 | INFO | Wild animals 0.045 0.238 0.132 ✓ +2026-06-25 18:10:42,395 | INFO | Chirp, tweet 0.161 0.000 0.088 ✗ +2026-06-25 18:10:42,395 | INFO | → WINNER: Animal (combined=0.302) +2026-06-25 18:10:42,423 | INFO | +[651.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,423 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,423 | INFO | Bird 0.375 0.230 0.310 ✓ +2026-06-25 18:10:42,423 | INFO | Animal 0.386 0.000 0.212 ✓ +2026-06-25 18:10:42,423 | INFO | Domestic animals, pets 0.150 0.000 0.082 ✗ +2026-06-25 18:10:42,423 | INFO | Bird vocalization, bird call, bird song 0.149 0.000 0.082 ✗ +2026-06-25 18:10:42,423 | INFO | Chirp, tweet 0.147 0.000 0.081 ✗ +2026-06-25 18:10:42,423 | INFO | Dog 0.092 0.000 0.051 ✗ +2026-06-25 18:10:42,423 | INFO | → WINNER: Bird (combined=0.310) +2026-06-25 18:10:42,459 | INFO | +[651.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,459 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,459 | INFO | Bird 0.348 0.230 0.294 ✓ +2026-06-25 18:10:42,460 | INFO | Animal 0.440 0.000 0.242 ✓ +2026-06-25 18:10:42,460 | INFO | Domestic animals, pets 0.172 0.000 0.095 ✗ +2026-06-25 18:10:42,460 | INFO | Bird vocalization, bird call, bird song 0.126 0.000 0.069 ✗ +2026-06-25 18:10:42,461 | INFO | Chirp, tweet 0.114 0.000 0.062 ✗ +2026-06-25 18:10:42,461 | INFO | Dog 0.113 0.000 0.062 ✗ +2026-06-25 18:10:42,462 | INFO | → WINNER: Bird (combined=0.294) +2026-06-25 18:10:42,492 | INFO | +[651.40s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,492 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,492 | INFO | Animal 0.431 0.000 0.237 ✓ +2026-06-25 18:10:42,493 | INFO | Bird 0.214 0.230 0.221 ✓ +2026-06-25 18:10:42,493 | INFO | Domestic animals, pets 0.136 0.000 0.075 ✗ +2026-06-25 18:10:42,493 | INFO | Dog 0.102 0.000 0.056 ✗ +2026-06-25 18:10:42,493 | INFO | Environmental noise 0.089 0.000 0.049 ✗ +2026-06-25 18:10:42,493 | INFO | Bird vocalization, bird call, bird song 0.082 0.000 0.045 ✗ +2026-06-25 18:10:42,494 | INFO | → WINNER: Animal (combined=0.237) +2026-06-25 18:10:42,523 | INFO | +[651.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,523 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,524 | INFO | Bird 0.260 0.230 0.246 ✓ +2026-06-25 18:10:42,524 | INFO | Animal 0.159 0.000 0.087 ✗ +2026-06-25 18:10:42,524 | INFO | Bird vocalization, bird call, bird song 0.142 0.000 0.078 ✗ +2026-06-25 18:10:42,524 | INFO | Chirp, tweet 0.132 0.000 0.072 ✗ +2026-06-25 18:10:42,525 | INFO | Fowl 0.082 0.000 0.045 ✗ +2026-06-25 18:10:42,525 | INFO | Environmental noise 0.076 0.000 0.042 ✗ +2026-06-25 18:10:42,525 | INFO | → WINNER: Bird (combined=0.246) +2026-06-25 18:10:42,554 | INFO | +[651.80s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,554 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,554 | INFO | Bird 0.220 0.230 0.224 ✓ +2026-06-25 18:10:42,555 | INFO | Animal 0.158 0.000 0.087 ✗ +2026-06-25 18:10:42,555 | INFO | Chirp, tweet 0.119 0.000 0.066 ✗ +2026-06-25 18:10:42,555 | INFO | Bird vocalization, bird call, bird song 0.115 0.000 0.063 ✗ +2026-06-25 18:10:42,555 | INFO | Environmental noise 0.098 0.000 0.054 ✗ +2026-06-25 18:10:42,556 | INFO | Outside, rural or natural 0.061 0.000 0.034 ✗ +2026-06-25 18:10:42,556 | INFO | → WINNER: Bird (combined=0.224) +2026-06-25 18:10:42,586 | INFO | +[652.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,586 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,587 | INFO | Bird 0.201 0.230 0.214 ✓ +2026-06-25 18:10:42,587 | INFO | Bird vocalization, bird call, bird song 0.102 0.000 0.056 ✗ +2026-06-25 18:10:42,587 | INFO | Animal 0.096 0.000 0.053 ✗ +2026-06-25 18:10:42,589 | INFO | Chirp, tweet 0.091 0.000 0.050 ✗ +2026-06-25 18:10:42,589 | INFO | → WINNER: Bird (combined=0.214) +2026-06-25 18:10:42,617 | INFO | +[652.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,617 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,620 | INFO | Bird 0.299 0.230 0.268 ✓ +2026-06-25 18:10:42,620 | INFO | Insect 0.050 0.270 0.149 ✓ +2026-06-25 18:10:42,620 | INFO | Animal 0.172 0.000 0.095 ✗ +2026-06-25 18:10:42,620 | INFO | Chirp, tweet 0.158 0.000 0.087 ✗ +2026-06-25 18:10:42,621 | INFO | Bird vocalization, bird call, bird song 0.157 0.000 0.086 ✗ +2026-06-25 18:10:42,621 | INFO | Outside, rural or natural 0.072 0.000 0.040 ✗ +2026-06-25 18:10:42,621 | INFO | → WINNER: Bird (combined=0.268) +2026-06-25 18:10:42,652 | INFO | +[652.40s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,660 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,662 | INFO | Bird 0.230 0.230 0.230 ✓ +2026-06-25 18:10:42,663 | INFO | Insect 0.060 0.270 0.154 ✓ +2026-06-25 18:10:42,663 | INFO | Animal 0.162 0.000 0.089 ✗ +2026-06-25 18:10:42,663 | INFO | Bird vocalization, bird call, bird song 0.094 0.000 0.052 ✗ +2026-06-25 18:10:42,664 | INFO | Chirp, tweet 0.079 0.000 0.043 ✗ +2026-06-25 18:10:42,664 | INFO | Environmental noise 0.076 0.000 0.042 ✗ +2026-06-25 18:10:42,664 | INFO | → WINNER: Bird (combined=0.230) +2026-06-25 18:10:42,698 | INFO | +[652.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,700 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,700 | INFO | Bird 0.173 0.230 0.198 ✓ +2026-06-25 18:10:42,700 | INFO | Animal 0.156 0.000 0.086 ✗ +2026-06-25 18:10:42,700 | INFO | Bird vocalization, bird call, bird song 0.070 0.000 0.038 ✗ +2026-06-25 18:10:42,700 | INFO | Chirp, tweet 0.056 0.000 0.031 ✗ +2026-06-25 18:10:42,701 | INFO | Cricket 0.050 0.000 0.028 ✗ +2026-06-25 18:10:42,701 | INFO | → WINNER: Bird (combined=0.198) +2026-06-25 18:10:42,730 | INFO | +[652.80s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,731 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,731 | INFO | Bird 0.095 0.230 0.156 ✓ +2026-06-25 18:10:42,732 | INFO | Animal 0.238 0.000 0.131 ✓ +2026-06-25 18:10:42,732 | INFO | Outside, rural or natural 0.056 0.000 0.031 ✗ +2026-06-25 18:10:42,732 | INFO | Bird vocalization, bird call, bird song 0.037 0.000 0.021 ✗ +2026-06-25 18:10:42,733 | INFO | Cricket 0.030 0.000 0.016 ✗ +2026-06-25 18:10:42,733 | INFO | → WINNER: Bird (combined=0.156) +2026-06-25 18:10:42,763 | INFO | +[653.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,763 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,764 | INFO | Bird 0.215 0.230 0.222 ✓ +2026-06-25 18:10:42,764 | INFO | Chicken, rooster 0.215 0.000 0.118 ✗ +2026-06-25 18:10:42,764 | INFO | Animal 0.211 0.000 0.116 ✗ +2026-06-25 18:10:42,765 | INFO | Fowl 0.176 0.000 0.097 ✗ +2026-06-25 18:10:42,765 | INFO | Cluck 0.133 0.000 0.073 ✗ +2026-06-25 18:10:42,765 | INFO | Bird vocalization, bird call, bird song 0.060 0.000 0.033 ✗ +2026-06-25 18:10:42,765 | INFO | → WINNER: Bird (combined=0.222) +2026-06-25 18:10:42,794 | INFO | +[653.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,796 | INFO | Bird 0.227 0.230 0.228 ✓ +2026-06-25 18:10:42,796 | INFO | Animal 0.206 0.000 0.114 ✗ +2026-06-25 18:10:42,796 | INFO | Chicken, rooster 0.099 0.000 0.054 ✗ +2026-06-25 18:10:42,796 | INFO | Bird vocalization, bird call, bird song 0.093 0.000 0.051 ✗ +2026-06-25 18:10:42,797 | INFO | Chirp, tweet 0.087 0.000 0.048 ✗ +2026-06-25 18:10:42,797 | INFO | Environmental noise 0.084 0.000 0.046 ✗ +2026-06-25 18:10:42,798 | INFO | → WINNER: Bird (combined=0.228) +2026-06-25 18:10:42,828 | INFO | +[653.40s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,828 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,829 | INFO | Bird 0.236 0.230 0.233 ✓ +2026-06-25 18:10:42,829 | INFO | Animal 0.242 0.000 0.133 ✓ +2026-06-25 18:10:42,829 | INFO | Environmental noise 0.120 0.000 0.066 ✗ +2026-06-25 18:10:42,830 | INFO | Outside, rural or natural 0.093 0.000 0.051 ✗ +2026-06-25 18:10:42,830 | INFO | Bird vocalization, bird call, bird song 0.084 0.000 0.046 ✗ +2026-06-25 18:10:42,830 | INFO | Chirp, tweet 0.074 0.000 0.041 ✗ +2026-06-25 18:10:42,830 | INFO | → WINNER: Bird (combined=0.233) +2026-06-25 18:10:42,860 | INFO | +[653.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,863 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,864 | INFO | Bird 0.236 0.230 0.233 ✓ +2026-06-25 18:10:42,864 | INFO | Animal 0.238 0.000 0.131 ✓ +2026-06-25 18:10:42,865 | INFO | Environmental noise 0.126 0.000 0.069 ✗ +2026-06-25 18:10:42,866 | INFO | Bird vocalization, bird call, bird song 0.089 0.000 0.049 ✗ +2026-06-25 18:10:42,866 | INFO | Outside, rural or natural 0.087 0.000 0.048 ✗ +2026-06-25 18:10:42,867 | INFO | Chirp, tweet 0.077 0.000 0.042 ✗ +2026-06-25 18:10:42,867 | INFO | → WINNER: Bird (combined=0.233) +2026-06-25 18:10:42,901 | INFO | +[655.60s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,901 | INFO | Wild animals 0.460 0.238 0.360 ✓ +2026-06-25 18:10:42,902 | INFO | Animal 0.648 0.000 0.356 ✓ +2026-06-25 18:10:42,902 | INFO | Bird 0.133 0.230 0.177 ✓ +2026-06-25 18:10:42,902 | INFO | Roaring cats (lions, tigers) 0.275 0.000 0.151 ✓ +2026-06-25 18:10:42,902 | INFO | Outside, rural or natural 0.114 0.000 0.063 ✗ +2026-06-25 18:10:42,902 | INFO | Chirp, tweet 0.056 0.000 0.031 ✗ +2026-06-25 18:10:42,902 | INFO | → WINNER: Wild animals (combined=0.360) +2026-06-25 18:10:42,930 | INFO | +[655.80s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,930 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,930 | INFO | Wild animals 0.481 0.238 0.372 ✓ +2026-06-25 18:10:42,930 | INFO | Animal 0.644 0.000 0.354 ✓ +2026-06-25 18:10:42,930 | INFO | Roaring cats (lions, tigers) 0.339 0.000 0.187 ✓ +2026-06-25 18:10:42,930 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:42,930 | INFO | Horse 0.062 0.000 0.034 ✗ +2026-06-25 18:10:42,930 | INFO | → WINNER: Wild animals (combined=0.372) +2026-06-25 18:10:42,962 | INFO | +[656.00s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,962 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,962 | INFO | Wild animals 0.489 0.238 0.376 ✓ +2026-06-25 18:10:42,963 | INFO | Animal 0.571 0.000 0.314 ✓ +2026-06-25 18:10:42,963 | INFO | Roaring cats (lions, tigers) 0.320 0.000 0.176 ✓ +2026-06-25 18:10:42,963 | INFO | Outside, rural or natural 0.057 0.000 0.031 ✗ +2026-06-25 18:10:42,963 | INFO | → WINNER: Wild animals (combined=0.376) +2026-06-25 18:10:42,992 | INFO | +[656.20s] AMBIENT | scene='The image shows two Indian women standing next to each other near a bo' +2026-06-25 18:10:42,993 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:42,993 | INFO | Wild animals 0.479 0.238 0.370 ✓ +2026-06-25 18:10:42,993 | INFO | Animal 0.561 0.000 0.309 ✓ +2026-06-25 18:10:42,993 | INFO | Roaring cats (lions, tigers) 0.327 0.000 0.180 ✓ +2026-06-25 18:10:42,993 | INFO | Bird 0.042 0.230 0.126 ✓ +2026-06-25 18:10:42,994 | INFO | Outside, rural or natural 0.063 0.000 0.034 ✗ +2026-06-25 18:10:42,994 | INFO | Rodents, rats, mice 0.056 0.000 0.031 ✗ +2026-06-25 18:10:42,994 | INFO | → WINNER: Wild animals (combined=0.370) +2026-06-25 18:10:43,023 | INFO | +[656.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,023 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,023 | INFO | Animal 0.360 0.000 0.198 ✓ +2026-06-25 18:10:43,023 | INFO | Bird 0.095 0.273 0.175 ✓ +2026-06-25 18:10:43,023 | INFO | Bird vocalization, bird call, bird song 0.037 0.273 0.143 ✓ +2026-06-25 18:10:43,023 | INFO | Wild animals 0.150 0.000 0.083 ✗ +2026-06-25 18:10:43,023 | INFO | Roaring cats (lions, tigers) 0.080 0.000 0.044 ✗ +2026-06-25 18:10:43,023 | INFO | Rodents, rats, mice 0.077 0.000 0.043 ✗ +2026-06-25 18:10:43,023 | INFO | → WINNER: Animal (combined=0.198) +2026-06-25 18:10:43,057 | INFO | +[656.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,076 | INFO | Bird 0.127 0.273 0.192 ✓ +2026-06-25 18:10:43,078 | INFO | Bird vocalization, bird call, bird song 0.032 0.273 0.140 ✓ +2026-06-25 18:10:43,078 | INFO | Animal 0.132 0.000 0.072 ✗ +2026-06-25 18:10:43,080 | INFO | Vehicle 0.073 0.000 0.040 ✗ +2026-06-25 18:10:43,081 | INFO | Rodents, rats, mice 0.060 0.000 0.033 ✗ +2026-06-25 18:10:43,082 | INFO | Cricket 0.029 0.000 0.016 ✗ +2026-06-25 18:10:43,084 | INFO | → WINNER: Bird (combined=0.192) +2026-06-25 18:10:43,145 | INFO | +[656.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,145 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,145 | INFO | Bird 0.118 0.273 0.187 ✓ +2026-06-25 18:10:43,145 | INFO | Bird vocalization, bird call, bird song 0.034 0.273 0.141 ✓ +2026-06-25 18:10:43,146 | INFO | Animal 0.155 0.000 0.085 ✗ +2026-06-25 18:10:43,146 | INFO | Vehicle 0.090 0.000 0.050 ✗ +2026-06-25 18:10:43,146 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:10:43,146 | INFO | Insect 0.056 0.000 0.031 ✗ +2026-06-25 18:10:43,146 | INFO | → WINNER: Bird (combined=0.187) +2026-06-25 18:10:43,207 | INFO | +[660.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,208 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,208 | INFO | Bird 0.134 0.273 0.196 ✓ +2026-06-25 18:10:43,208 | INFO | Animal 0.324 0.000 0.178 ✓ +2026-06-25 18:10:43,208 | INFO | Bird vocalization, bird call, bird song 0.047 0.273 0.148 ✓ +2026-06-25 18:10:43,208 | INFO | Outside, rural or natural 0.081 0.000 0.044 ✗ +2026-06-25 18:10:43,210 | INFO | Patter 0.075 0.000 0.041 ✗ +2026-06-25 18:10:43,210 | INFO | Domestic animals, pets 0.074 0.000 0.041 ✗ +2026-06-25 18:10:43,210 | INFO | → WINNER: Bird (combined=0.196) +2026-06-25 18:10:43,270 | INFO | +[660.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,271 | INFO | Animal 0.587 0.000 0.323 ✓ +2026-06-25 18:10:43,271 | INFO | Wild animals 0.270 0.000 0.148 ✓ +2026-06-25 18:10:43,271 | INFO | Bird 0.044 0.273 0.147 ✓ +2026-06-25 18:10:43,271 | INFO | Roaring cats (lions, tigers) 0.206 0.000 0.113 ✗ +2026-06-25 18:10:43,271 | INFO | Outside, rural or natural 0.124 0.000 0.068 ✗ +2026-06-25 18:10:43,271 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:10:43,271 | INFO | → WINNER: Animal (combined=0.323) +2026-06-25 18:10:43,311 | INFO | +[661.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,311 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,312 | INFO | Animal 0.386 0.000 0.212 ✓ +2026-06-25 18:10:43,312 | INFO | Bird 0.079 0.273 0.166 ✓ +2026-06-25 18:10:43,312 | INFO | Bird vocalization, bird call, bird song 0.035 0.273 0.142 ✓ +2026-06-25 18:10:43,312 | INFO | Cricket 0.137 0.000 0.075 ✗ +2026-06-25 18:10:43,312 | INFO | Insect 0.133 0.000 0.073 ✗ +2026-06-25 18:10:43,313 | INFO | Outside, rural or natural 0.121 0.000 0.067 ✗ +2026-06-25 18:10:43,313 | INFO | → WINNER: Animal (combined=0.212) +2026-06-25 18:10:43,342 | INFO | +[661.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,343 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,343 | INFO | Animal 0.333 0.000 0.183 ✓ +2026-06-25 18:10:43,343 | INFO | Bird 0.061 0.273 0.156 ✓ +2026-06-25 18:10:43,343 | INFO | Duck 0.088 0.000 0.049 ✗ +2026-06-25 18:10:43,344 | INFO | Outside, rural or natural 0.085 0.000 0.047 ✗ +2026-06-25 18:10:43,344 | INFO | Domestic animals, pets 0.049 0.000 0.027 ✗ +2026-06-25 18:10:43,344 | INFO | → WINNER: Animal (combined=0.183) +2026-06-25 18:10:43,370 | INFO | +[661.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,370 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,370 | INFO | Bird 0.038 0.273 0.143 ✓ +2026-06-25 18:10:43,370 | INFO | Animal 0.247 0.000 0.136 ✓ +2026-06-25 18:10:43,375 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:43,375 | INFO | Vehicle 0.073 0.000 0.040 ✗ +2026-06-25 18:10:43,375 | INFO | Horse 0.055 0.000 0.030 ✗ +2026-06-25 18:10:43,375 | INFO | Cricket 0.029 0.000 0.016 ✗ +2026-06-25 18:10:43,375 | INFO | → WINNER: Bird (combined=0.143) +2026-06-25 18:10:43,405 | INFO | +[661.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,407 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,407 | INFO | Bird 0.042 0.273 0.146 ✓ +2026-06-25 18:10:43,408 | INFO | Animal 0.161 0.000 0.089 ✗ +2026-06-25 18:10:43,408 | INFO | Outside, rural or natural 0.084 0.000 0.046 ✗ +2026-06-25 18:10:43,409 | INFO | Squeal 0.068 0.000 0.037 ✗ +2026-06-25 18:10:43,409 | INFO | Rodents, rats, mice 0.067 0.000 0.037 ✗ +2026-06-25 18:10:43,410 | INFO | Cricket 0.035 0.000 0.019 ✗ +2026-06-25 18:10:43,411 | INFO | → WINNER: Bird (combined=0.146) +2026-06-25 18:10:43,442 | INFO | +[661.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,443 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,443 | INFO | Bird 0.191 0.273 0.228 ✓ +2026-06-25 18:10:43,444 | INFO | Bird vocalization, bird call, bird song 0.072 0.273 0.163 ✓ +2026-06-25 18:10:43,444 | INFO | Rodents, rats, mice 0.145 0.000 0.080 ✗ +2026-06-25 18:10:43,444 | INFO | Chirp, tweet 0.120 0.000 0.066 ✗ +2026-06-25 18:10:43,444 | INFO | Animal 0.118 0.000 0.065 ✗ +2026-06-25 18:10:43,444 | INFO | Outside, rural or natural 0.066 0.000 0.036 ✗ +2026-06-25 18:10:43,446 | INFO | → WINNER: Bird (combined=0.228) +2026-06-25 18:10:43,475 | INFO | +[662.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,475 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,476 | INFO | Bird 0.125 0.273 0.191 ✓ +2026-06-25 18:10:43,476 | INFO | Bird vocalization, bird call, bird song 0.037 0.273 0.143 ✓ +2026-06-25 18:10:43,476 | INFO | Animal 0.218 0.000 0.120 ✗ +2026-06-25 18:10:43,476 | INFO | Rodents, rats, mice 0.104 0.000 0.057 ✗ +2026-06-25 18:10:43,476 | INFO | → WINNER: Bird (combined=0.191) +2026-06-25 18:10:43,504 | INFO | +[662.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,504 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,504 | INFO | Bird 0.278 0.273 0.275 ✓ +2026-06-25 18:10:43,504 | INFO | Bird vocalization, bird call, bird song 0.094 0.273 0.174 ✓ +2026-06-25 18:10:43,504 | INFO | Animal 0.232 0.000 0.128 ✓ +2026-06-25 18:10:43,504 | INFO | Chirp, tweet 0.121 0.000 0.066 ✗ +2026-06-25 18:10:43,504 | INFO | Rodents, rats, mice 0.060 0.000 0.033 ✗ +2026-06-25 18:10:43,504 | INFO | Domestic animals, pets 0.043 0.000 0.024 ✗ +2026-06-25 18:10:43,504 | INFO | → WINNER: Bird (combined=0.275) +2026-06-25 18:10:43,538 | INFO | +[662.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,538 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,538 | INFO | Bird 0.315 0.273 0.296 ✓ +2026-06-25 18:10:43,540 | INFO | Animal 0.329 0.000 0.181 ✓ +2026-06-25 18:10:43,540 | INFO | Duck 0.326 0.000 0.179 ✓ +2026-06-25 18:10:43,540 | INFO | Bird vocalization, bird call, bird song 0.071 0.273 0.162 ✓ +2026-06-25 18:10:43,540 | INFO | Quack 0.116 0.000 0.064 ✗ +2026-06-25 18:10:43,540 | INFO | Chicken, rooster 0.112 0.000 0.062 ✗ +2026-06-25 18:10:43,540 | INFO | → WINNER: Bird (combined=0.296) +2026-06-25 18:10:43,570 | INFO | +[662.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,570 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,570 | INFO | Bird 0.142 0.273 0.201 ✓ +2026-06-25 18:10:43,571 | INFO | Animal 0.355 0.000 0.195 ✓ +2026-06-25 18:10:43,571 | INFO | Bird vocalization, bird call, bird song 0.035 0.273 0.142 ✓ +2026-06-25 18:10:43,571 | INFO | Duck 0.176 0.000 0.097 ✗ +2026-06-25 18:10:43,571 | INFO | Fowl 0.109 0.000 0.060 ✗ +2026-06-25 18:10:43,571 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:43,572 | INFO | → WINNER: Bird (combined=0.201) +2026-06-25 18:10:43,601 | INFO | +[662.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,602 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,602 | INFO | Bird 0.250 0.273 0.260 ✓ +2026-06-25 18:10:43,602 | INFO | Duck 0.380 0.000 0.209 ✓ +2026-06-25 18:10:43,603 | INFO | Animal 0.380 0.000 0.209 ✓ +2026-06-25 18:10:43,603 | INFO | Bird vocalization, bird call, bird song 0.057 0.273 0.154 ✓ +2026-06-25 18:10:43,603 | INFO | Chicken, rooster 0.151 0.000 0.083 ✗ +2026-06-25 18:10:43,603 | INFO | Fowl 0.140 0.000 0.077 ✗ +2026-06-25 18:10:43,603 | INFO | → WINNER: Bird (combined=0.260) +2026-06-25 18:10:43,633 | INFO | +[663.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,633 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,633 | INFO | Bird 0.281 0.273 0.278 ✓ +2026-06-25 18:10:43,634 | INFO | Bird vocalization, bird call, bird song 0.135 0.273 0.197 ✓ +2026-06-25 18:10:43,634 | INFO | Animal 0.303 0.000 0.167 ✓ +2026-06-25 18:10:43,634 | INFO | Duck 0.227 0.000 0.125 ✓ +2026-06-25 18:10:43,634 | INFO | Chirp, tweet 0.181 0.000 0.100 ✗ +2026-06-25 18:10:43,634 | INFO | Domestic animals, pets 0.093 0.000 0.051 ✗ +2026-06-25 18:10:43,634 | INFO | → WINNER: Bird (combined=0.278) +2026-06-25 18:10:43,665 | INFO | +[663.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,667 | INFO | Bird 0.222 0.273 0.245 ✓ +2026-06-25 18:10:43,667 | INFO | Bird vocalization, bird call, bird song 0.153 0.273 0.207 ✓ +2026-06-25 18:10:43,667 | INFO | Chirp, tweet 0.231 0.000 0.127 ✓ +2026-06-25 18:10:43,667 | INFO | Animal 0.222 0.000 0.122 ✓ +2026-06-25 18:10:43,667 | INFO | Outside, rural or natural 0.080 0.000 0.044 ✗ +2026-06-25 18:10:43,667 | INFO | Duck 0.062 0.000 0.034 ✗ +2026-06-25 18:10:43,667 | INFO | → WINNER: Bird (combined=0.245) +2026-06-25 18:10:43,695 | INFO | +[663.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,695 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,695 | INFO | Bird 0.295 0.273 0.285 ✓ +2026-06-25 18:10:43,695 | INFO | Bird vocalization, bird call, bird song 0.180 0.273 0.222 ✓ +2026-06-25 18:10:43,695 | INFO | Chirp, tweet 0.258 0.000 0.142 ✓ +2026-06-25 18:10:43,695 | INFO | Animal 0.199 0.000 0.109 ✗ +2026-06-25 18:10:43,695 | INFO | Duck 0.077 0.000 0.043 ✗ +2026-06-25 18:10:43,695 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:10:43,695 | INFO | → WINNER: Bird (combined=0.285) +2026-06-25 18:10:43,729 | INFO | +[663.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,729 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,730 | INFO | Bird 0.385 0.273 0.334 ✓ +2026-06-25 18:10:43,730 | INFO | Bird vocalization, bird call, bird song 0.231 0.273 0.250 ✓ +2026-06-25 18:10:43,730 | INFO | Chirp, tweet 0.328 0.000 0.180 ✓ +2026-06-25 18:10:43,730 | INFO | Animal 0.188 0.000 0.103 ✗ +2026-06-25 18:10:43,730 | INFO | Outside, rural or natural 0.082 0.000 0.045 ✗ +2026-06-25 18:10:43,730 | INFO | Domestic animals, pets 0.054 0.000 0.030 ✗ +2026-06-25 18:10:43,731 | INFO | → WINNER: Bird (combined=0.334) +2026-06-25 18:10:43,761 | INFO | +[663.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,761 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,761 | INFO | Bird 0.231 0.273 0.249 ✓ +2026-06-25 18:10:43,762 | INFO | Animal 0.363 0.000 0.200 ✓ +2026-06-25 18:10:43,762 | INFO | Bird vocalization, bird call, bird song 0.084 0.273 0.169 ✓ +2026-06-25 18:10:43,762 | INFO | Chirp, tweet 0.117 0.000 0.064 ✗ +2026-06-25 18:10:43,762 | INFO | Rodents, rats, mice 0.116 0.000 0.064 ✗ +2026-06-25 18:10:43,763 | INFO | Outside, rural or natural 0.082 0.000 0.045 ✗ +2026-06-25 18:10:43,763 | INFO | → WINNER: Bird (combined=0.249) +2026-06-25 18:10:43,792 | INFO | +[664.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,792 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,792 | INFO | Bird 0.188 0.273 0.226 ✓ +2026-06-25 18:10:43,792 | INFO | Bird vocalization, bird call, bird song 0.058 0.273 0.155 ✓ +2026-06-25 18:10:43,792 | INFO | Squawk 0.249 0.000 0.137 ✓ +2026-06-25 18:10:43,792 | INFO | Animal 0.192 0.000 0.106 ✗ +2026-06-25 18:10:43,792 | INFO | Outside, rural or natural 0.109 0.000 0.060 ✗ +2026-06-25 18:10:43,792 | INFO | Rodents, rats, mice 0.094 0.000 0.052 ✗ +2026-06-25 18:10:43,794 | INFO | → WINNER: Bird (combined=0.226) +2026-06-25 18:10:43,823 | INFO | +[664.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,823 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,823 | INFO | Squawk 0.427 0.000 0.235 ✓ +2026-06-25 18:10:43,823 | INFO | Bird 0.111 0.273 0.183 ✓ +2026-06-25 18:10:43,823 | INFO | Bird vocalization, bird call, bird song 0.029 0.273 0.139 ✓ +2026-06-25 18:10:43,823 | INFO | Outside, rural or natural 0.215 0.000 0.118 ✗ +2026-06-25 18:10:43,823 | INFO | Rodents, rats, mice 0.109 0.000 0.060 ✗ +2026-06-25 18:10:43,823 | INFO | Patter 0.095 0.000 0.052 ✗ +2026-06-25 18:10:43,823 | INFO | → WINNER: Squawk (combined=0.235) +2026-06-25 18:10:43,856 | INFO | +[664.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,856 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,856 | INFO | Bird 0.217 0.273 0.242 ✓ +2026-06-25 18:10:43,856 | INFO | Bird vocalization, bird call, bird song 0.106 0.273 0.181 ✓ +2026-06-25 18:10:43,856 | INFO | Outside, rural or natural 0.210 0.000 0.116 ✗ +2026-06-25 18:10:43,856 | INFO | Animal 0.207 0.000 0.114 ✗ +2026-06-25 18:10:43,856 | INFO | Chirp, tweet 0.129 0.000 0.071 ✗ +2026-06-25 18:10:43,856 | INFO | Rodents, rats, mice 0.084 0.000 0.046 ✗ +2026-06-25 18:10:43,856 | INFO | → WINNER: Bird (combined=0.242) +2026-06-25 18:10:43,888 | INFO | +[664.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,888 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,889 | INFO | Bird 0.234 0.273 0.251 ✓ +2026-06-25 18:10:43,889 | INFO | Bird vocalization, bird call, bird song 0.078 0.273 0.166 ✓ +2026-06-25 18:10:43,889 | INFO | Outside, rural or natural 0.282 0.000 0.155 ✓ +2026-06-25 18:10:43,890 | INFO | Animal 0.248 0.000 0.137 ✓ +2026-06-25 18:10:43,890 | INFO | Squawk 0.157 0.000 0.086 ✗ +2026-06-25 18:10:43,890 | INFO | Chirp, tweet 0.087 0.000 0.048 ✗ +2026-06-25 18:10:43,891 | INFO | → WINNER: Bird (combined=0.251) +2026-06-25 18:10:43,921 | INFO | +[664.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,921 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,921 | INFO | Bird 0.275 0.273 0.274 ✓ +2026-06-25 18:10:43,922 | INFO | Bird vocalization, bird call, bird song 0.115 0.273 0.186 ✓ +2026-06-25 18:10:43,923 | INFO | Animal 0.167 0.000 0.092 ✗ +2026-06-25 18:10:43,923 | INFO | Chirp, tweet 0.162 0.000 0.089 ✗ +2026-06-25 18:10:43,923 | INFO | Outside, rural or natural 0.153 0.000 0.084 ✗ +2026-06-25 18:10:43,923 | INFO | Squawk 0.122 0.000 0.067 ✗ +2026-06-25 18:10:43,923 | INFO | → WINNER: Bird (combined=0.274) +2026-06-25 18:10:43,954 | INFO | +[665.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,954 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,954 | INFO | Bird 0.395 0.273 0.340 ✓ +2026-06-25 18:10:43,955 | INFO | Bird vocalization, bird call, bird song 0.248 0.273 0.259 ✓ +2026-06-25 18:10:43,955 | INFO | Chirp, tweet 0.311 0.000 0.171 ✓ +2026-06-25 18:10:43,955 | INFO | Animal 0.223 0.000 0.122 ✓ +2026-06-25 18:10:43,955 | INFO | Duck 0.113 0.000 0.062 ✗ +2026-06-25 18:10:43,955 | INFO | Outside, rural or natural 0.112 0.000 0.061 ✗ +2026-06-25 18:10:43,956 | INFO | → WINNER: Bird (combined=0.340) +2026-06-25 18:10:43,987 | INFO | +[665.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:43,987 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:43,987 | INFO | Bird 0.206 0.273 0.236 ✓ +2026-06-25 18:10:43,988 | INFO | Bird vocalization, bird call, bird song 0.105 0.273 0.180 ✓ +2026-06-25 18:10:43,988 | INFO | Animal 0.247 0.000 0.136 ✓ +2026-06-25 18:10:43,988 | INFO | Insect 0.130 0.000 0.072 ✗ +2026-06-25 18:10:43,988 | INFO | Chirp, tweet 0.117 0.000 0.065 ✗ +2026-06-25 18:10:43,988 | INFO | Outside, rural or natural 0.103 0.000 0.057 ✗ +2026-06-25 18:10:43,988 | INFO | → WINNER: Bird (combined=0.236) +2026-06-25 18:10:44,018 | INFO | +[665.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,018 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,018 | INFO | Bird 0.239 0.273 0.254 ✓ +2026-06-25 18:10:44,018 | INFO | Bird vocalization, bird call, bird song 0.130 0.273 0.194 ✓ +2026-06-25 18:10:44,019 | INFO | Animal 0.249 0.000 0.137 ✓ +2026-06-25 18:10:44,019 | INFO | Chirp, tweet 0.158 0.000 0.087 ✗ +2026-06-25 18:10:44,019 | INFO | Outside, rural or natural 0.122 0.000 0.067 ✗ +2026-06-25 18:10:44,019 | INFO | Cricket 0.070 0.000 0.039 ✗ +2026-06-25 18:10:44,019 | INFO | → WINNER: Bird (combined=0.254) +2026-06-25 18:10:44,049 | INFO | +[665.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,050 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,050 | INFO | Bird 0.193 0.273 0.229 ✓ +2026-06-25 18:10:44,050 | INFO | Bird vocalization, bird call, bird song 0.101 0.273 0.178 ✓ +2026-06-25 18:10:44,050 | INFO | Animal 0.212 0.000 0.117 ✗ +2026-06-25 18:10:44,051 | INFO | Rodents, rats, mice 0.116 0.000 0.064 ✗ +2026-06-25 18:10:44,051 | INFO | Outside, rural or natural 0.108 0.000 0.060 ✗ +2026-06-25 18:10:44,051 | INFO | Chirp, tweet 0.099 0.000 0.054 ✗ +2026-06-25 18:10:44,051 | INFO | → WINNER: Bird (combined=0.229) +2026-06-25 18:10:44,081 | INFO | +[665.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,081 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,082 | INFO | Animal 0.385 0.000 0.212 ✓ +2026-06-25 18:10:44,082 | INFO | Bird 0.092 0.273 0.173 ✓ +2026-06-25 18:10:44,082 | INFO | Bird vocalization, bird call, bird song 0.030 0.273 0.139 ✓ +2026-06-25 18:10:44,082 | INFO | Rodents, rats, mice 0.172 0.000 0.094 ✗ +2026-06-25 18:10:44,083 | INFO | Domestic animals, pets 0.097 0.000 0.053 ✗ +2026-06-25 18:10:44,083 | INFO | Outside, rural or natural 0.081 0.000 0.045 ✗ +2026-06-25 18:10:44,084 | INFO | → WINNER: Animal (combined=0.212) +2026-06-25 18:10:44,115 | INFO | +[666.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,116 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,116 | INFO | Bird 0.158 0.273 0.209 ✓ +2026-06-25 18:10:44,116 | INFO | Animal 0.204 0.000 0.112 ✗ +2026-06-25 18:10:44,116 | INFO | Squawk 0.119 0.000 0.066 ✗ +2026-06-25 18:10:44,116 | INFO | Outside, rural or natural 0.116 0.000 0.064 ✗ +2026-06-25 18:10:44,117 | INFO | Duck 0.103 0.000 0.057 ✗ +2026-06-25 18:10:44,117 | INFO | Rodents, rats, mice 0.087 0.000 0.048 ✗ +2026-06-25 18:10:44,117 | INFO | → WINNER: Bird (combined=0.209) +2026-06-25 18:10:44,146 | INFO | +[666.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,147 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,147 | INFO | Bird 0.152 0.273 0.206 ✓ +2026-06-25 18:10:44,147 | INFO | Bird vocalization, bird call, bird song 0.033 0.273 0.141 ✓ +2026-06-25 18:10:44,147 | INFO | Animal 0.174 0.000 0.096 ✗ +2026-06-25 18:10:44,147 | INFO | Squawk 0.148 0.000 0.082 ✗ +2026-06-25 18:10:44,148 | INFO | Alarm 0.097 0.000 0.053 ✗ +2026-06-25 18:10:44,148 | INFO | Outside, rural or natural 0.065 0.000 0.036 ✗ +2026-06-25 18:10:44,148 | INFO | → WINNER: Bird (combined=0.206) +2026-06-25 18:10:44,176 | INFO | +[666.40s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,178 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,178 | INFO | Bird 0.359 0.273 0.320 ✓ +2026-06-25 18:10:44,178 | INFO | Squawk 0.390 0.000 0.215 ✓ +2026-06-25 18:10:44,178 | INFO | Bird vocalization, bird call, bird song 0.070 0.273 0.161 ✓ +2026-06-25 18:10:44,178 | INFO | Animal 0.119 0.000 0.065 ✗ +2026-06-25 18:10:44,179 | INFO | Chirp, tweet 0.081 0.000 0.045 ✗ +2026-06-25 18:10:44,179 | INFO | Duck 0.075 0.000 0.041 ✗ +2026-06-25 18:10:44,179 | INFO | → WINNER: Bird (combined=0.320) +2026-06-25 18:10:44,209 | INFO | +[666.60s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,209 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,209 | INFO | Bird 0.348 0.273 0.314 ✓ +2026-06-25 18:10:44,209 | INFO | Bird vocalization, bird call, bird song 0.059 0.273 0.155 ✓ +2026-06-25 18:10:44,210 | INFO | Chicken, rooster 0.141 0.000 0.078 ✗ +2026-06-25 18:10:44,210 | INFO | Squawk 0.108 0.000 0.059 ✗ +2026-06-25 18:10:44,210 | INFO | Chirp, tweet 0.092 0.000 0.051 ✗ +2026-06-25 18:10:44,210 | INFO | Animal 0.092 0.000 0.050 ✗ +2026-06-25 18:10:44,210 | INFO | → WINNER: Bird (combined=0.314) +2026-06-25 18:10:44,240 | INFO | +[666.80s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,240 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,240 | INFO | Bird 0.464 0.273 0.378 ✓ +2026-06-25 18:10:44,241 | INFO | Bird vocalization, bird call, bird song 0.189 0.273 0.227 ✓ +2026-06-25 18:10:44,241 | INFO | Chirp, tweet 0.284 0.000 0.156 ✓ +2026-06-25 18:10:44,241 | INFO | Animal 0.131 0.000 0.072 ✗ +2026-06-25 18:10:44,241 | INFO | Bird flight, flapping wings 0.124 0.000 0.068 ✗ +2026-06-25 18:10:44,242 | INFO | Outside, rural or natural 0.054 0.000 0.030 ✗ +2026-06-25 18:10:44,242 | INFO | → WINNER: Bird (combined=0.378) +2026-06-25 18:10:44,271 | INFO | +[667.00s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,272 | INFO | Bird 0.401 0.273 0.343 ✓ +2026-06-25 18:10:44,272 | INFO | Bird vocalization, bird call, bird song 0.166 0.273 0.214 ✓ +2026-06-25 18:10:44,272 | INFO | Chicken, rooster 0.345 0.000 0.190 ✓ +2026-06-25 18:10:44,272 | INFO | Chirp, tweet 0.222 0.000 0.122 ✓ +2026-06-25 18:10:44,272 | INFO | Cluck 0.185 0.000 0.102 ✗ +2026-06-25 18:10:44,273 | INFO | Fowl 0.157 0.000 0.086 ✗ +2026-06-25 18:10:44,273 | INFO | → WINNER: Bird (combined=0.343) +2026-06-25 18:10:44,303 | INFO | +[667.20s] AMBIENT | scene='The image shows a woman in a white saree standing by a body of water. ' +2026-06-25 18:10:44,304 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,304 | INFO | Bird 0.316 0.273 0.296 ✓ +2026-06-25 18:10:44,304 | INFO | Bird vocalization, bird call, bird song 0.091 0.273 0.172 ✓ +2026-06-25 18:10:44,304 | INFO | Chicken, rooster 0.303 0.000 0.167 ✓ +2026-06-25 18:10:44,305 | INFO | Animal 0.190 0.000 0.105 ✗ +2026-06-25 18:10:44,305 | INFO | Cluck 0.170 0.000 0.093 ✗ +2026-06-25 18:10:44,305 | INFO | Fowl 0.133 0.000 0.073 ✗ +2026-06-25 18:10:44,305 | INFO | → WINNER: Bird (combined=0.296) +2026-06-25 18:10:44,333 | INFO | +[667.40s] AMBIENT | scene='' +2026-06-25 18:10:44,334 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,334 | INFO | Duck 0.383 0.000 0.211 ✓ +2026-06-25 18:10:44,334 | INFO | Bird 0.303 0.000 0.167 ✓ +2026-06-25 18:10:44,335 | INFO | Animal 0.253 0.000 0.139 ✓ +2026-06-25 18:10:44,335 | INFO | Quack 0.124 0.000 0.068 ✗ +2026-06-25 18:10:44,336 | INFO | Fowl 0.117 0.000 0.064 ✗ +2026-06-25 18:10:44,336 | INFO | Chirp, tweet 0.111 0.000 0.061 ✗ +2026-06-25 18:10:44,336 | INFO | → WINNER: Duck (combined=0.211) +2026-06-25 18:10:44,365 | INFO | +[667.60s] AMBIENT | scene='' +2026-06-25 18:10:44,366 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,366 | INFO | Animal 0.420 0.000 0.231 ✓ +2026-06-25 18:10:44,366 | INFO | Bird 0.250 0.000 0.137 ✓ +2026-06-25 18:10:44,367 | INFO | Chirp, tweet 0.151 0.000 0.083 ✗ +2026-06-25 18:10:44,367 | INFO | Wild animals 0.132 0.000 0.073 ✗ +2026-06-25 18:10:44,367 | INFO | Outside, rural or natural 0.121 0.000 0.067 ✗ +2026-06-25 18:10:44,367 | INFO | Bird vocalization, bird call, bird song 0.113 0.000 0.062 ✗ +2026-06-25 18:10:44,367 | INFO | → WINNER: Animal (combined=0.231) +2026-06-25 18:10:44,396 | INFO | +[667.80s] AMBIENT | scene='' +2026-06-25 18:10:44,397 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,397 | INFO | Animal 0.345 0.000 0.190 ✓ +2026-06-25 18:10:44,397 | INFO | Bird 0.334 0.000 0.184 ✓ +2026-06-25 18:10:44,397 | INFO | Duck 0.290 0.000 0.160 ✓ +2026-06-25 18:10:44,398 | INFO | Chirp, tweet 0.156 0.000 0.086 ✗ +2026-06-25 18:10:44,398 | INFO | Domestic animals, pets 0.118 0.000 0.065 ✗ +2026-06-25 18:10:44,398 | INFO | Bird vocalization, bird call, bird song 0.102 0.000 0.056 ✗ +2026-06-25 18:10:44,398 | INFO | → WINNER: Animal (combined=0.190) +2026-06-25 18:10:44,429 | INFO | +[668.00s] AMBIENT | scene='' +2026-06-25 18:10:44,430 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,430 | INFO | Bird 0.461 0.000 0.253 ✓ +2026-06-25 18:10:44,430 | INFO | Duck 0.370 0.000 0.203 ✓ +2026-06-25 18:10:44,430 | INFO | Animal 0.261 0.000 0.143 ✓ +2026-06-25 18:10:44,431 | INFO | Chirp, tweet 0.198 0.000 0.109 ✗ +2026-06-25 18:10:44,431 | INFO | Livestock, farm animals, working animals 0.165 0.000 0.091 ✗ +2026-06-25 18:10:44,431 | INFO | Bird vocalization, bird call, bird song 0.134 0.000 0.073 ✗ +2026-06-25 18:10:44,431 | INFO | → WINNER: Bird (combined=0.253) +2026-06-25 18:10:44,511 | INFO | +[668.20s] AMBIENT | scene='' +2026-06-25 18:10:44,512 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,512 | INFO | Bird 0.515 0.000 0.283 ✓ +2026-06-25 18:10:44,513 | INFO | Animal 0.288 0.000 0.158 ✓ +2026-06-25 18:10:44,513 | INFO | Chirp, tweet 0.257 0.000 0.141 ✓ +2026-06-25 18:10:44,513 | INFO | Duck 0.238 0.000 0.131 ✓ +2026-06-25 18:10:44,514 | INFO | Domestic animals, pets 0.201 0.000 0.111 ✗ +2026-06-25 18:10:44,514 | INFO | Bird vocalization, bird call, bird song 0.155 0.000 0.086 ✗ +2026-06-25 18:10:44,514 | INFO | → WINNER: Bird (combined=0.283) +2026-06-25 18:10:44,556 | INFO | +[668.40s] AMBIENT | scene='' +2026-06-25 18:10:44,557 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,557 | INFO | Bird 0.451 0.000 0.248 ✓ +2026-06-25 18:10:44,557 | INFO | Animal 0.395 0.000 0.217 ✓ +2026-06-25 18:10:44,557 | INFO | Domestic animals, pets 0.221 0.000 0.121 ✓ +2026-06-25 18:10:44,557 | INFO | Livestock, farm animals, working animals 0.174 0.000 0.096 ✗ +2026-06-25 18:10:44,557 | INFO | Chirp, tweet 0.171 0.000 0.094 ✗ +2026-06-25 18:10:44,557 | INFO | Duck 0.117 0.000 0.065 ✗ +2026-06-25 18:10:44,557 | INFO | → WINNER: Bird (combined=0.248) +2026-06-25 18:10:44,588 | INFO | +[668.60s] AMBIENT | scene='' +2026-06-25 18:10:44,588 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,588 | INFO | Bird 0.550 0.000 0.303 ✓ +2026-06-25 18:10:44,588 | INFO | Animal 0.319 0.000 0.176 ✓ +2026-06-25 18:10:44,588 | INFO | Chirp, tweet 0.293 0.000 0.161 ✓ +2026-06-25 18:10:44,588 | INFO | Bird vocalization, bird call, bird song 0.184 0.000 0.101 ✗ +2026-06-25 18:10:44,590 | INFO | Domestic animals, pets 0.166 0.000 0.091 ✗ +2026-06-25 18:10:44,590 | INFO | Duck 0.089 0.000 0.049 ✗ +2026-06-25 18:10:44,590 | INFO | → WINNER: Bird (combined=0.303) +2026-06-25 18:10:44,619 | INFO | +[668.80s] AMBIENT | scene='' +2026-06-25 18:10:44,619 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,619 | INFO | Bird 0.415 0.000 0.228 ✓ +2026-06-25 18:10:44,621 | INFO | Duck 0.326 0.000 0.179 ✓ +2026-06-25 18:10:44,621 | INFO | Animal 0.253 0.000 0.139 ✓ +2026-06-25 18:10:44,621 | INFO | Squawk 0.244 0.000 0.134 ✓ +2026-06-25 18:10:44,621 | INFO | Chirp, tweet 0.156 0.000 0.086 ✗ +2026-06-25 18:10:44,621 | INFO | Bird vocalization, bird call, bird song 0.123 0.000 0.068 ✗ +2026-06-25 18:10:44,621 | INFO | → WINNER: Bird (combined=0.228) +2026-06-25 18:10:44,650 | INFO | +[669.00s] AMBIENT | scene='' +2026-06-25 18:10:44,651 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,651 | INFO | Bird 0.400 0.000 0.220 ✓ +2026-06-25 18:10:44,651 | INFO | Chirp, tweet 0.239 0.000 0.131 ✓ +2026-06-25 18:10:44,651 | INFO | Music 0.202 0.000 0.111 ✗ +2026-06-25 18:10:44,651 | INFO | Squawk 0.175 0.000 0.096 ✗ +2026-06-25 18:10:44,653 | INFO | Bird vocalization, bird call, bird song 0.166 0.000 0.091 ✗ +2026-06-25 18:10:44,653 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:44,653 | INFO | → WINNER: Bird (combined=0.220) +2026-06-25 18:10:44,682 | INFO | +[669.20s] AMBIENT | scene='' +2026-06-25 18:10:44,683 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,683 | INFO | Bird 0.399 0.000 0.219 ✓ +2026-06-25 18:10:44,683 | INFO | Music 0.375 0.000 0.206 ✓ +2026-06-25 18:10:44,683 | INFO | Chirp, tweet 0.350 0.000 0.193 ✓ +2026-06-25 18:10:44,683 | INFO | Bird vocalization, bird call, bird song 0.257 0.000 0.141 ✓ +2026-06-25 18:10:44,684 | INFO | Animal 0.151 0.000 0.083 ✗ +2026-06-25 18:10:44,684 | INFO | Domestic animals, pets 0.040 0.000 0.022 ✗ +2026-06-25 18:10:44,684 | INFO | → WINNER: Bird (combined=0.219) +2026-06-25 18:10:44,742 | INFO | +[669.40s] AMBIENT | scene='' +2026-06-25 18:10:44,745 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,745 | INFO | Bird 0.355 0.000 0.195 ✓ +2026-06-25 18:10:44,745 | INFO | Chirp, tweet 0.252 0.000 0.139 ✓ +2026-06-25 18:10:44,745 | INFO | Bird vocalization, bird call, bird song 0.197 0.000 0.108 ✗ +2026-06-25 18:10:44,745 | INFO | Animal 0.142 0.000 0.078 ✗ +2026-06-25 18:10:44,745 | INFO | Music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:44,745 | INFO | → WINNER: Bird (combined=0.195) +2026-06-25 18:10:44,811 | INFO | +[669.60s] AMBIENT | scene='' +2026-06-25 18:10:44,811 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,811 | INFO | Bird 0.410 0.000 0.226 ✓ +2026-06-25 18:10:44,811 | INFO | Chirp, tweet 0.350 0.000 0.193 ✓ +2026-06-25 18:10:44,811 | INFO | Bird vocalization, bird call, bird song 0.250 0.000 0.137 ✓ +2026-06-25 18:10:44,811 | INFO | Animal 0.084 0.000 0.046 ✗ +2026-06-25 18:10:44,811 | INFO | Outside, rural or natural 0.083 0.000 0.046 ✗ +2026-06-25 18:10:44,811 | INFO | → WINNER: Bird (combined=0.226) +2026-06-25 18:10:44,882 | INFO | +[669.80s] AMBIENT | scene='' +2026-06-25 18:10:44,883 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,883 | INFO | Bird 0.273 0.000 0.150 ✓ +2026-06-25 18:10:44,884 | INFO | Chirp, tweet 0.217 0.000 0.120 ✗ +2026-06-25 18:10:44,884 | INFO | Bird vocalization, bird call, bird song 0.180 0.000 0.099 ✗ +2026-06-25 18:10:44,884 | INFO | Rodents, rats, mice 0.102 0.000 0.056 ✗ +2026-06-25 18:10:44,885 | INFO | Animal 0.088 0.000 0.048 ✗ +2026-06-25 18:10:44,885 | INFO | Vehicle 0.055 0.000 0.030 ✗ +2026-06-25 18:10:44,885 | INFO | → WINNER: Bird (combined=0.150) +2026-06-25 18:10:44,919 | INFO | +[670.00s] AMBIENT | scene='' +2026-06-25 18:10:44,919 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,921 | INFO | Bird 0.337 0.000 0.185 ✓ +2026-06-25 18:10:44,921 | INFO | Animal 0.187 0.000 0.103 ✗ +2026-06-25 18:10:44,921 | INFO | Chirp, tweet 0.187 0.000 0.103 ✗ +2026-06-25 18:10:44,921 | INFO | Bird vocalization, bird call, bird song 0.154 0.000 0.085 ✗ +2026-06-25 18:10:44,922 | INFO | Rodents, rats, mice 0.113 0.000 0.062 ✗ +2026-06-25 18:10:44,922 | INFO | Outside, rural or natural 0.097 0.000 0.053 ✗ +2026-06-25 18:10:44,923 | INFO | → WINNER: Bird (combined=0.185) +2026-06-25 18:10:44,951 | INFO | +[670.20s] AMBIENT | scene='' +2026-06-25 18:10:44,952 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,953 | INFO | Rodents, rats, mice 0.348 0.000 0.191 ✓ +2026-06-25 18:10:44,953 | INFO | Bird 0.329 0.000 0.181 ✓ +2026-06-25 18:10:44,954 | INFO | Animal 0.248 0.000 0.137 ✓ +2026-06-25 18:10:44,954 | INFO | Patter 0.125 0.000 0.069 ✗ +2026-06-25 18:10:44,954 | INFO | Bird vocalization, bird call, bird song 0.110 0.000 0.060 ✗ +2026-06-25 18:10:44,955 | INFO | Outside, rural or natural 0.096 0.000 0.052 ✗ +2026-06-25 18:10:44,955 | INFO | → WINNER: Rodents, rats, mice (combined=0.191) +2026-06-25 18:10:44,980 | INFO | +[670.40s] AMBIENT | scene='' +2026-06-25 18:10:44,985 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:44,985 | INFO | Rodents, rats, mice 0.273 0.000 0.150 ✓ +2026-06-25 18:10:44,985 | INFO | Animal 0.251 0.000 0.138 ✓ +2026-06-25 18:10:44,985 | INFO | Bird 0.195 0.000 0.107 ✗ +2026-06-25 18:10:44,985 | INFO | Mouse 0.146 0.000 0.080 ✗ +2026-06-25 18:10:44,985 | INFO | Patter 0.115 0.000 0.063 ✗ +2026-06-25 18:10:44,987 | INFO | Bird vocalization, bird call, bird song 0.080 0.000 0.044 ✗ +2026-06-25 18:10:44,987 | INFO | → WINNER: Rodents, rats, mice (combined=0.150) +2026-06-25 18:10:45,016 | INFO | +[670.60s] AMBIENT | scene='' +2026-06-25 18:10:45,017 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,017 | INFO | Bird 0.228 0.000 0.125 ✓ +2026-06-25 18:10:45,017 | INFO | Animal 0.225 0.000 0.124 ✓ +2026-06-25 18:10:45,017 | INFO | Mouse 0.183 0.000 0.101 ✗ +2026-06-25 18:10:45,018 | INFO | Rodents, rats, mice 0.138 0.000 0.076 ✗ +2026-06-25 18:10:45,018 | INFO | Bird vocalization, bird call, bird song 0.138 0.000 0.076 ✗ +2026-06-25 18:10:45,018 | INFO | Chirp, tweet 0.133 0.000 0.073 ✗ +2026-06-25 18:10:45,018 | INFO | → WINNER: Bird (combined=0.125) +2026-06-25 18:10:45,048 | INFO | +[670.80s] AMBIENT | scene='' +2026-06-25 18:10:45,048 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,050 | INFO | Bird 0.291 0.000 0.160 ✓ +2026-06-25 18:10:45,050 | INFO | Animal 0.287 0.000 0.158 ✓ +2026-06-25 18:10:45,051 | INFO | Chirp, tweet 0.188 0.000 0.103 ✗ +2026-06-25 18:10:45,051 | INFO | Bird vocalization, bird call, bird song 0.154 0.000 0.085 ✗ +2026-06-25 18:10:45,052 | INFO | Outside, rural or natural 0.124 0.000 0.068 ✗ +2026-06-25 18:10:45,052 | INFO | Duck 0.112 0.000 0.061 ✗ +2026-06-25 18:10:45,052 | INFO | → WINNER: Bird (combined=0.160) +2026-06-25 18:10:45,081 | INFO | +[671.00s] AMBIENT | scene='' +2026-06-25 18:10:45,082 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,082 | INFO | Duck 0.334 0.000 0.183 ✓ +2026-06-25 18:10:45,083 | INFO | Bird 0.281 0.000 0.154 ✓ +2026-06-25 18:10:45,083 | INFO | Animal 0.276 0.000 0.152 ✓ +2026-06-25 18:10:45,083 | INFO | Quack 0.102 0.000 0.056 ✗ +2026-06-25 18:10:45,083 | INFO | Chirp, tweet 0.100 0.000 0.055 ✗ +2026-06-25 18:10:45,084 | INFO | Bird vocalization, bird call, bird song 0.084 0.000 0.046 ✗ +2026-06-25 18:10:45,084 | INFO | → WINNER: Duck (combined=0.183) +2026-06-25 18:10:45,112 | INFO | +[671.20s] AMBIENT | scene='' +2026-06-25 18:10:45,113 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,113 | INFO | Duck 0.439 0.000 0.241 ✓ +2026-06-25 18:10:45,113 | INFO | Animal 0.398 0.000 0.219 ✓ +2026-06-25 18:10:45,113 | INFO | Bird 0.282 0.000 0.155 ✓ +2026-06-25 18:10:45,113 | INFO | Chicken, rooster 0.169 0.000 0.093 ✗ +2026-06-25 18:10:45,113 | INFO | Quack 0.136 0.000 0.075 ✗ +2026-06-25 18:10:45,113 | INFO | Livestock, farm animals, working animals 0.121 0.000 0.067 ✗ +2026-06-25 18:10:45,113 | INFO | → WINNER: Duck (combined=0.241) +2026-06-25 18:10:45,144 | INFO | +[671.40s] AMBIENT | scene='' +2026-06-25 18:10:45,144 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,144 | INFO | Duck 0.621 0.000 0.341 ✓ +2026-06-25 18:10:45,144 | INFO | Animal 0.454 0.000 0.250 ✓ +2026-06-25 18:10:45,145 | INFO | Quack 0.274 0.000 0.151 ✓ +2026-06-25 18:10:45,145 | INFO | Bird 0.268 0.000 0.147 ✓ +2026-06-25 18:10:45,145 | INFO | Livestock, farm animals, working animals 0.087 0.000 0.048 ✗ +2026-06-25 18:10:45,145 | INFO | Squawk 0.084 0.000 0.046 ✗ +2026-06-25 18:10:45,145 | INFO | → WINNER: Duck (combined=0.341) +2026-06-25 18:10:45,175 | INFO | +[671.60s] AMBIENT | scene='' +2026-06-25 18:10:45,175 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,176 | INFO | Animal 0.274 0.000 0.151 ✓ +2026-06-25 18:10:45,176 | INFO | Duck 0.239 0.000 0.132 ✓ +2026-06-25 18:10:45,176 | INFO | Bird 0.172 0.000 0.095 ✗ +2026-06-25 18:10:45,176 | INFO | Quack 0.117 0.000 0.064 ✗ +2026-06-25 18:10:45,177 | INFO | Chicken, rooster 0.067 0.000 0.037 ✗ +2026-06-25 18:10:45,177 | INFO | Fowl 0.057 0.000 0.031 ✗ +2026-06-25 18:10:45,177 | INFO | → WINNER: Animal (combined=0.151) +2026-06-25 18:10:45,205 | INFO | +[671.80s] AMBIENT | scene='' +2026-06-25 18:10:45,206 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,206 | INFO | Animal 0.234 0.000 0.129 ✓ +2026-06-25 18:10:45,206 | INFO | Duck 0.091 0.000 0.050 ✗ +2026-06-25 18:10:45,206 | INFO | Bird 0.082 0.000 0.045 ✗ +2026-06-25 18:10:45,207 | INFO | Rodents, rats, mice 0.074 0.000 0.041 ✗ +2026-06-25 18:10:45,207 | INFO | → WINNER: Animal (combined=0.129) +2026-06-25 18:10:45,236 | INFO | +[672.00s] AMBIENT | scene='' +2026-06-25 18:10:45,237 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,237 | INFO | Animal 0.295 0.000 0.162 ✓ +2026-06-25 18:10:45,238 | INFO | Bird 0.116 0.000 0.064 ✗ +2026-06-25 18:10:45,238 | INFO | Duck 0.079 0.000 0.043 ✗ +2026-06-25 18:10:45,238 | INFO | Outside, rural or natural 0.061 0.000 0.034 ✗ +2026-06-25 18:10:45,238 | INFO | Bird vocalization, bird call, bird song 0.034 0.000 0.019 ✗ +2026-06-25 18:10:45,238 | INFO | → WINNER: Animal (combined=0.162) +2026-06-25 18:10:45,268 | INFO | +[672.20s] AMBIENT | scene='' +2026-06-25 18:10:45,268 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,269 | INFO | Animal 0.249 0.000 0.137 ✓ +2026-06-25 18:10:45,269 | INFO | Bird 0.161 0.000 0.089 ✗ +2026-06-25 18:10:45,269 | INFO | Outside, rural or natural 0.057 0.000 0.031 ✗ +2026-06-25 18:10:45,270 | INFO | Rodents, rats, mice 0.056 0.000 0.031 ✗ +2026-06-25 18:10:45,270 | INFO | Bird vocalization, bird call, bird song 0.044 0.000 0.024 ✗ +2026-06-25 18:10:45,270 | INFO | → WINNER: Animal (combined=0.137) +2026-06-25 18:10:45,300 | INFO | +[672.40s] AMBIENT | scene='' +2026-06-25 18:10:45,300 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,301 | INFO | Animal 0.350 0.000 0.192 ✓ +2026-06-25 18:10:45,301 | INFO | Domestic animals, pets 0.076 0.000 0.042 ✗ +2026-06-25 18:10:45,301 | INFO | Rodents, rats, mice 0.074 0.000 0.041 ✗ +2026-06-25 18:10:45,301 | INFO | Patter 0.060 0.000 0.033 ✗ +2026-06-25 18:10:45,302 | INFO | Bird 0.055 0.000 0.030 ✗ +2026-06-25 18:10:45,302 | INFO | Dog 0.046 0.000 0.025 ✗ +2026-06-25 18:10:45,302 | INFO | → WINNER: Animal (combined=0.192) +2026-06-25 18:10:45,332 | INFO | +[672.60s] AMBIENT | scene='' +2026-06-25 18:10:45,332 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,332 | INFO | Animal 0.366 0.000 0.202 ✓ +2026-06-25 18:10:45,332 | INFO | Bird 0.117 0.000 0.065 ✗ +2026-06-25 18:10:45,332 | INFO | Horse 0.083 0.000 0.045 ✗ +2026-06-25 18:10:45,332 | INFO | Outside, rural or natural 0.073 0.000 0.040 ✗ +2026-06-25 18:10:45,332 | INFO | Clip-clop 0.069 0.000 0.038 ✗ +2026-06-25 18:10:45,332 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:10:45,332 | INFO | → WINNER: Animal (combined=0.202) +2026-06-25 18:10:45,363 | INFO | +[672.80s] AMBIENT | scene='' +2026-06-25 18:10:45,363 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,364 | INFO | Animal 0.327 0.000 0.180 ✓ +2026-06-25 18:10:45,364 | INFO | Clip-clop 0.087 0.000 0.048 ✗ +2026-06-25 18:10:45,365 | INFO | Horse 0.081 0.000 0.045 ✗ +2026-06-25 18:10:45,365 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:10:45,365 | INFO | Domestic animals, pets 0.051 0.000 0.028 ✗ +2026-06-25 18:10:45,365 | INFO | Bird 0.046 0.000 0.025 ✗ +2026-06-25 18:10:45,365 | INFO | → WINNER: Animal (combined=0.180) +2026-06-25 18:10:45,395 | INFO | +[673.00s] AMBIENT | scene='' +2026-06-25 18:10:45,396 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,396 | INFO | Scrape 0.241 0.000 0.132 ✓ +2026-06-25 18:10:45,396 | INFO | Biting 0.117 0.000 0.065 ✗ +2026-06-25 18:10:45,396 | INFO | Crunch 0.069 0.000 0.038 ✗ +2026-06-25 18:10:45,396 | INFO | Zipper (clothing) 0.063 0.000 0.034 ✗ +2026-06-25 18:10:45,397 | INFO | Chewing, mastication 0.057 0.000 0.031 ✗ +2026-06-25 18:10:45,397 | INFO | Animal 0.055 0.000 0.030 ✗ +2026-06-25 18:10:45,397 | INFO | → WINNER: Scrape (combined=0.132) +2026-06-25 18:10:45,422 | INFO | +[673.20s] AMBIENT | scene='' +2026-06-25 18:10:45,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,422 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:10:45,422 | INFO | Chewing, mastication 0.064 0.000 0.035 ✗ +2026-06-25 18:10:45,422 | INFO | Inside, small room 0.055 0.000 0.030 ✗ +2026-06-25 18:10:45,427 | INFO | Domestic animals, pets 0.050 0.000 0.027 ✗ +2026-06-25 18:10:45,428 | INFO | → no winner +2026-06-25 18:10:45,456 | INFO | +[673.40s] AMBIENT | scene='' +2026-06-25 18:10:45,456 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,456 | INFO | Water 0.141 0.000 0.078 ✗ +2026-06-25 18:10:45,456 | INFO | Liquid 0.083 0.000 0.046 ✗ +2026-06-25 18:10:45,456 | INFO | Drip 0.082 0.000 0.045 ✗ +2026-06-25 18:10:45,456 | INFO | Fill (with liquid) 0.068 0.000 0.038 ✗ +2026-06-25 18:10:45,456 | INFO | → no winner +2026-06-25 18:10:45,487 | INFO | +[673.60s] AMBIENT | scene='' +2026-06-25 18:10:45,487 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,487 | INFO | Squish 0.196 0.000 0.107 ✗ +2026-06-25 18:10:45,488 | INFO | Liquid 0.193 0.000 0.106 ✗ +2026-06-25 18:10:45,488 | INFO | Drip 0.157 0.000 0.086 ✗ +2026-06-25 18:10:45,488 | INFO | Water 0.109 0.000 0.060 ✗ +2026-06-25 18:10:45,488 | INFO | Fill (with liquid) 0.097 0.000 0.053 ✗ +2026-06-25 18:10:45,488 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:10:45,488 | INFO | → no winner +2026-06-25 18:10:45,518 | INFO | +[673.80s] AMBIENT | scene='' +2026-06-25 18:10:45,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,518 | INFO | Rowboat, canoe, kayak 0.367 0.000 0.202 ✓ +2026-06-25 18:10:45,518 | INFO | Boat, Water vehicle 0.362 0.000 0.199 ✓ +2026-06-25 18:10:45,518 | INFO | Vehicle 0.265 0.000 0.145 ✓ +2026-06-25 18:10:45,520 | INFO | Liquid 0.120 0.000 0.066 ✗ +2026-06-25 18:10:45,520 | INFO | Water 0.070 0.000 0.039 ✗ +2026-06-25 18:10:45,520 | INFO | Fill (with liquid) 0.062 0.000 0.034 ✗ +2026-06-25 18:10:45,520 | INFO | → WINNER: Rowboat, canoe, kayak (combined=0.202) +2026-06-25 18:10:45,551 | INFO | +[677.80s] AMBIENT | scene='' +2026-06-25 18:10:45,551 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,552 | INFO | Animal 0.173 0.000 0.095 ✗ +2026-06-25 18:10:45,553 | INFO | Bird 0.140 0.000 0.077 ✗ +2026-06-25 18:10:45,553 | INFO | Mouse 0.073 0.000 0.040 ✗ +2026-06-25 18:10:45,553 | INFO | Rodents, rats, mice 0.065 0.000 0.036 ✗ +2026-06-25 18:10:45,553 | INFO | Bird vocalization, bird call, bird song 0.052 0.000 0.029 ✗ +2026-06-25 18:10:45,554 | INFO | Cricket 0.051 0.000 0.028 ✗ +2026-06-25 18:10:45,554 | INFO | → no winner +2026-06-25 18:10:45,580 | INFO | +[678.00s] AMBIENT | scene='' +2026-06-25 18:10:45,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,580 | INFO | Animal 0.110 0.000 0.060 ✗ +2026-06-25 18:10:45,580 | INFO | Bird 0.090 0.000 0.050 ✗ +2026-06-25 18:10:45,586 | INFO | Cricket 0.046 0.000 0.025 ✗ +2026-06-25 18:10:45,586 | INFO | Bird vocalization, bird call, bird song 0.034 0.000 0.019 ✗ +2026-06-25 18:10:45,587 | INFO | → no winner +2026-06-25 18:10:45,615 | INFO | +[678.20s] AMBIENT | scene='' +2026-06-25 18:10:45,615 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,617 | INFO | Animal 0.104 0.000 0.057 ✗ +2026-06-25 18:10:45,617 | INFO | Rodents, rats, mice 0.053 0.000 0.029 ✗ +2026-06-25 18:10:45,617 | INFO | Bird 0.035 0.000 0.019 ✗ +2026-06-25 18:10:45,617 | INFO | → no winner +2026-06-25 18:10:45,648 | INFO | +[678.40s] AMBIENT | scene='' +2026-06-25 18:10:45,648 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,648 | INFO | Frog 0.302 0.000 0.166 ✓ +2026-06-25 18:10:45,648 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:10:45,648 | INFO | → WINNER: Frog (combined=0.166) +2026-06-25 18:10:45,678 | INFO | +[678.60s] AMBIENT | scene='' +2026-06-25 18:10:45,679 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,679 | INFO | Frog 0.389 0.000 0.214 ✓ +2026-06-25 18:10:45,679 | INFO | Animal 0.077 0.000 0.043 ✗ +2026-06-25 18:10:45,679 | INFO | Croak 0.064 0.000 0.035 ✗ +2026-06-25 18:10:45,679 | INFO | → WINNER: Frog (combined=0.214) +2026-06-25 18:10:45,708 | INFO | +[678.80s] AMBIENT | scene='' +2026-06-25 18:10:45,708 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,708 | INFO | Frog 0.440 0.000 0.242 ✓ +2026-06-25 18:10:45,708 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:45,708 | INFO | Duck 0.061 0.000 0.034 ✗ +2026-06-25 18:10:45,708 | INFO | Bird 0.057 0.000 0.031 ✗ +2026-06-25 18:10:45,710 | INFO | Croak 0.056 0.000 0.031 ✗ +2026-06-25 18:10:45,710 | INFO | → WINNER: Frog (combined=0.242) +2026-06-25 18:10:45,742 | INFO | +[690.60s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,742 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,742 | INFO | Bird 0.193 0.325 0.253 ✓ +2026-06-25 18:10:45,742 | INFO | Environmental noise 0.099 0.390 0.230 ✓ +2026-06-25 18:10:45,742 | INFO | Bird vocalization, bird call, bird song 0.102 0.337 0.208 ✓ +2026-06-25 18:10:45,742 | INFO | Insect 0.051 0.378 0.198 ✓ +2026-06-25 18:10:45,742 | INFO | Cricket 0.032 0.307 0.156 ✓ +2026-06-25 18:10:45,742 | INFO | Animal 0.162 0.000 0.089 ✗ +2026-06-25 18:10:45,742 | INFO | → WINNER: Bird (combined=0.253) +2026-06-25 18:10:45,774 | INFO | +[690.80s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,774 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,774 | INFO | Bird 0.208 0.325 0.261 ✓ +2026-06-25 18:10:45,774 | INFO | Environmental noise 0.070 0.390 0.214 ✓ +2026-06-25 18:10:45,774 | INFO | Bird vocalization, bird call, bird song 0.095 0.337 0.204 ✓ +2026-06-25 18:10:45,774 | INFO | Animal 0.158 0.000 0.087 ✗ +2026-06-25 18:10:45,774 | INFO | Chirp, tweet 0.097 0.000 0.053 ✗ +2026-06-25 18:10:45,774 | INFO | → WINNER: Bird (combined=0.261) +2026-06-25 18:10:45,805 | INFO | +[691.00s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,805 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,805 | INFO | Bird 0.281 0.325 0.301 ✓ +2026-06-25 18:10:45,806 | INFO | Bird vocalization, bird call, bird song 0.155 0.337 0.237 ✓ +2026-06-25 18:10:45,806 | INFO | Environmental noise 0.076 0.390 0.217 ✓ +2026-06-25 18:10:45,806 | INFO | Insect 0.049 0.378 0.197 ✓ +2026-06-25 18:10:45,806 | INFO | Cricket 0.044 0.307 0.162 ✓ +2026-06-25 18:10:45,806 | INFO | Chirp, tweet 0.175 0.000 0.096 ✗ +2026-06-25 18:10:45,807 | INFO | → WINNER: Bird (combined=0.301) +2026-06-25 18:10:45,836 | INFO | +[691.20s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,837 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,837 | INFO | Bird 0.215 0.325 0.264 ✓ +2026-06-25 18:10:45,838 | INFO | Bird vocalization, bird call, bird song 0.138 0.337 0.228 ✓ +2026-06-25 18:10:45,838 | INFO | Environmental noise 0.095 0.390 0.227 ✓ +2026-06-25 18:10:45,838 | INFO | Insect 0.077 0.378 0.212 ✓ +2026-06-25 18:10:45,838 | INFO | Cricket 0.074 0.307 0.179 ✓ +2026-06-25 18:10:45,838 | INFO | Animal 0.146 0.000 0.080 ✗ +2026-06-25 18:10:45,838 | INFO | → WINNER: Bird (combined=0.264) +2026-06-25 18:10:45,868 | INFO | +[691.40s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,868 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,868 | INFO | Bird 0.228 0.325 0.271 ✓ +2026-06-25 18:10:45,869 | INFO | Environmental noise 0.166 0.390 0.267 ✓ +2026-06-25 18:10:45,870 | INFO | Bird vocalization, bird call, bird song 0.139 0.337 0.228 ✓ +2026-06-25 18:10:45,870 | INFO | Insect 0.069 0.378 0.208 ✓ +2026-06-25 18:10:45,870 | INFO | Cricket 0.049 0.307 0.165 ✓ +2026-06-25 18:10:45,870 | INFO | Animal 0.158 0.000 0.087 ✗ +2026-06-25 18:10:45,871 | INFO | → WINNER: Bird (combined=0.271) +2026-06-25 18:10:45,900 | INFO | +[691.60s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,900 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,901 | INFO | Environmental noise 0.190 0.390 0.280 ✓ +2026-06-25 18:10:45,901 | INFO | Bird 0.189 0.325 0.250 ✓ +2026-06-25 18:10:45,901 | INFO | Bird vocalization, bird call, bird song 0.112 0.337 0.213 ✓ +2026-06-25 18:10:45,901 | INFO | Insect 0.050 0.378 0.197 ✓ +2026-06-25 18:10:45,902 | INFO | Cricket 0.033 0.307 0.156 ✓ +2026-06-25 18:10:45,902 | INFO | Animal 0.169 0.000 0.093 ✗ +2026-06-25 18:10:45,902 | INFO | → WINNER: Environmental noise (combined=0.280) +2026-06-25 18:10:45,931 | INFO | +[691.80s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,931 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,931 | INFO | Bird 0.199 0.325 0.256 ✓ +2026-06-25 18:10:45,931 | INFO | Environmental noise 0.107 0.390 0.234 ✓ +2026-06-25 18:10:45,931 | INFO | Bird vocalization, bird call, bird song 0.114 0.337 0.214 ✓ +2026-06-25 18:10:45,931 | INFO | Insect 0.053 0.378 0.199 ✓ +2026-06-25 18:10:45,931 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:45,931 | INFO | Chirp, tweet 0.106 0.000 0.058 ✗ +2026-06-25 18:10:45,931 | INFO | → WINNER: Bird (combined=0.256) +2026-06-25 18:10:45,961 | INFO | +[692.00s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,963 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,963 | INFO | Environmental noise 0.170 0.390 0.269 ✓ +2026-06-25 18:10:45,964 | INFO | Bird 0.212 0.325 0.263 ✓ +2026-06-25 18:10:45,964 | INFO | Bird vocalization, bird call, bird song 0.140 0.337 0.229 ✓ +2026-06-25 18:10:45,964 | INFO | Insect 0.051 0.378 0.198 ✓ +2026-06-25 18:10:45,964 | INFO | Animal 0.178 0.000 0.098 ✗ +2026-06-25 18:10:45,965 | INFO | Chirp, tweet 0.129 0.000 0.071 ✗ +2026-06-25 18:10:45,965 | INFO | → WINNER: Environmental noise (combined=0.269) +2026-06-25 18:10:45,996 | INFO | +[697.20s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:45,996 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:45,996 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:45,997 | INFO | Wood block 0.442 0.000 0.243 ✓ +2026-06-25 18:10:45,997 | INFO | Musical instrument 0.421 0.000 0.231 ✓ +2026-06-25 18:10:45,997 | INFO | Percussion 0.356 0.000 0.196 ✓ +2026-06-25 18:10:45,997 | INFO | Drum 0.267 0.000 0.147 ✓ +2026-06-25 18:10:45,997 | INFO | Tabla 0.123 0.000 0.068 ✗ +2026-06-25 18:10:45,998 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:46,026 | INFO | +[697.40s] AMBIENT | scene='The image shows three people sitting on the ground in a wooded area. H' +2026-06-25 18:10:46,026 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,026 | INFO | Music 0.771 0.000 0.424 ✓ +2026-06-25 18:10:46,028 | INFO | Percussion 0.410 0.000 0.226 ✓ +2026-06-25 18:10:46,029 | INFO | Wood block 0.357 0.000 0.196 ✓ +2026-06-25 18:10:46,029 | INFO | Tabla 0.311 0.000 0.171 ✓ +2026-06-25 18:10:46,029 | INFO | Musical instrument 0.291 0.000 0.160 ✓ +2026-06-25 18:10:46,029 | INFO | Drum 0.225 0.000 0.124 ✓ +2026-06-25 18:10:46,030 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:10:46,060 | INFO | +[697.60s] AMBIENT | scene='' +2026-06-25 18:10:46,061 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,061 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:10:46,063 | INFO | Wood block 0.452 0.000 0.248 ✓ +2026-06-25 18:10:46,063 | INFO | Percussion 0.317 0.000 0.174 ✓ +2026-06-25 18:10:46,063 | INFO | Musical instrument 0.211 0.000 0.116 ✗ +2026-06-25 18:10:46,063 | INFO | Drum 0.134 0.000 0.074 ✗ +2026-06-25 18:10:46,063 | INFO | Tabla 0.060 0.000 0.033 ✗ +2026-06-25 18:10:46,063 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:46,092 | INFO | +[697.80s] AMBIENT | scene='' +2026-06-25 18:10:46,093 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,093 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:46,093 | INFO | Percussion 0.418 0.000 0.230 ✓ +2026-06-25 18:10:46,093 | INFO | Tabla 0.407 0.000 0.224 ✓ +2026-06-25 18:10:46,094 | INFO | Wood block 0.335 0.000 0.184 ✓ +2026-06-25 18:10:46,094 | INFO | Musical instrument 0.252 0.000 0.138 ✓ +2026-06-25 18:10:46,094 | INFO | Drum 0.237 0.000 0.130 ✓ +2026-06-25 18:10:46,095 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:46,124 | INFO | +[698.00s] AMBIENT | scene='' +2026-06-25 18:10:46,124 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,124 | INFO | Music 0.870 0.000 0.478 ✓ +2026-06-25 18:10:46,124 | INFO | Wood block 0.356 0.000 0.196 ✓ +2026-06-25 18:10:46,125 | INFO | Percussion 0.219 0.000 0.120 ✓ +2026-06-25 18:10:46,125 | INFO | Musical instrument 0.137 0.000 0.075 ✗ +2026-06-25 18:10:46,125 | INFO | Drum 0.129 0.000 0.071 ✗ +2026-06-25 18:10:46,125 | INFO | → WINNER: Music (combined=0.478) +2026-06-25 18:10:46,159 | INFO | +[713.40s] AMBIENT | scene='' +2026-06-25 18:10:46,159 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,159 | INFO | Music 0.792 0.000 0.436 ✓ +2026-06-25 18:10:46,160 | INFO | Tabla 0.312 0.000 0.172 ✓ +2026-06-25 18:10:46,160 | INFO | Percussion 0.301 0.000 0.166 ✓ +2026-06-25 18:10:46,160 | INFO | Drum 0.282 0.000 0.155 ✓ +2026-06-25 18:10:46,160 | INFO | Wood block 0.271 0.000 0.149 ✓ +2026-06-25 18:10:46,160 | INFO | Musical instrument 0.254 0.000 0.139 ✓ +2026-06-25 18:10:46,161 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:46,190 | INFO | +[713.60s] AMBIENT | scene='' +2026-06-25 18:10:46,190 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,190 | INFO | Music 0.736 0.000 0.405 ✓ +2026-06-25 18:10:46,190 | INFO | Percussion 0.325 0.000 0.178 ✓ +2026-06-25 18:10:46,190 | INFO | Tabla 0.320 0.000 0.176 ✓ +2026-06-25 18:10:46,190 | INFO | Drum 0.287 0.000 0.158 ✓ +2026-06-25 18:10:46,190 | INFO | Wood block 0.277 0.000 0.152 ✓ +2026-06-25 18:10:46,190 | INFO | Musical instrument 0.253 0.000 0.139 ✓ +2026-06-25 18:10:46,190 | INFO | → WINNER: Music (combined=0.405) +2026-06-25 18:10:46,231 | INFO | +[748.00s] AMBIENT | scene='' +2026-06-25 18:10:46,232 | INFO | → no winner +2026-06-25 18:10:46,261 | INFO | +[748.20s] AMBIENT | scene='' +2026-06-25 18:10:46,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,263 | INFO | Music 0.129 0.000 0.071 ✗ +2026-06-25 18:10:46,263 | INFO | → no winner +2026-06-25 18:10:46,295 | INFO | +[748.40s] AMBIENT | scene='' +2026-06-25 18:10:46,295 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,295 | INFO | Music 0.215 0.000 0.118 ✗ +2026-06-25 18:10:46,296 | INFO | Singing 0.135 0.000 0.074 ✗ +2026-06-25 18:10:46,296 | INFO | Mantra 0.060 0.000 0.033 ✗ +2026-06-25 18:10:46,296 | INFO | → no winner +2026-06-25 18:10:46,326 | INFO | +[748.60s] AMBIENT | scene='' +2026-06-25 18:10:46,326 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,326 | INFO | Music 0.252 0.000 0.139 ✓ +2026-06-25 18:10:46,326 | INFO | Singing 0.109 0.000 0.060 ✗ +2026-06-25 18:10:46,328 | INFO | Mantra 0.067 0.000 0.037 ✗ +2026-06-25 18:10:46,328 | INFO | → WINNER: Music (combined=0.139) +2026-06-25 18:10:46,358 | INFO | +[748.80s] AMBIENT | scene='' +2026-06-25 18:10:46,359 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,359 | INFO | Music 0.782 0.000 0.430 ✓ +2026-06-25 18:10:46,359 | INFO | Singing 0.232 0.000 0.127 ✓ +2026-06-25 18:10:46,359 | INFO | Musical instrument 0.068 0.000 0.037 ✗ +2026-06-25 18:10:46,360 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:10:46,390 | INFO | +[750.60s] AMBIENT | scene='' +2026-06-25 18:10:46,391 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,391 | INFO | Music 0.343 0.000 0.189 ✓ +2026-06-25 18:10:46,391 | INFO | Singing 0.203 0.000 0.112 ✗ +2026-06-25 18:10:46,392 | INFO | Chant 0.057 0.000 0.031 ✗ +2026-06-25 18:10:46,392 | INFO | Mantra 0.055 0.000 0.030 ✗ +2026-06-25 18:10:46,392 | INFO | → WINNER: Music (combined=0.189) +2026-06-25 18:10:46,422 | INFO | +[750.80s] AMBIENT | scene='' +2026-06-25 18:10:46,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,422 | INFO | Music 0.810 0.000 0.446 ✓ +2026-06-25 18:10:46,422 | INFO | Singing 0.323 0.000 0.178 ✓ +2026-06-25 18:10:46,423 | INFO | Tabla 0.289 0.000 0.159 ✓ +2026-06-25 18:10:46,423 | INFO | Middle Eastern music 0.174 0.000 0.096 ✗ +2026-06-25 18:10:46,423 | INFO | Folk music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:46,423 | INFO | Musical instrument 0.104 0.000 0.057 ✗ +2026-06-25 18:10:46,423 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:46,452 | INFO | +[751.00s] AMBIENT | scene='' +2026-06-25 18:10:46,453 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,453 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:46,453 | INFO | Singing 0.289 0.000 0.159 ✓ +2026-06-25 18:10:46,454 | INFO | Middle Eastern music 0.229 0.000 0.126 ✓ +2026-06-25 18:10:46,454 | INFO | Folk music 0.190 0.000 0.104 ✗ +2026-06-25 18:10:46,454 | INFO | Tabla 0.173 0.000 0.095 ✗ +2026-06-25 18:10:46,454 | INFO | Musical instrument 0.094 0.000 0.052 ✗ +2026-06-25 18:10:46,454 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:46,484 | INFO | +[751.20s] AMBIENT | scene='' +2026-06-25 18:10:46,484 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,484 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:46,484 | INFO | Tabla 0.220 0.000 0.121 ✓ +2026-06-25 18:10:46,484 | INFO | Singing 0.170 0.000 0.093 ✗ +2026-06-25 18:10:46,485 | INFO | Musical instrument 0.117 0.000 0.064 ✗ +2026-06-25 18:10:46,485 | INFO | Folk music 0.117 0.000 0.064 ✗ +2026-06-25 18:10:46,485 | INFO | Middle Eastern music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:46,485 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:46,516 | INFO | +[751.40s] AMBIENT | scene='' +2026-06-25 18:10:46,516 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,516 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:10:46,516 | INFO | Singing 0.203 0.000 0.112 ✗ +2026-06-25 18:10:46,516 | INFO | Musical instrument 0.113 0.000 0.062 ✗ +2026-06-25 18:10:46,516 | INFO | Tabla 0.069 0.000 0.038 ✗ +2026-06-25 18:10:46,516 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:46,547 | INFO | +[753.40s] AMBIENT | scene='' +2026-06-25 18:10:46,547 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,547 | INFO | Music 0.655 0.000 0.360 ✓ +2026-06-25 18:10:46,547 | INFO | Singing 0.147 0.000 0.081 ✗ +2026-06-25 18:10:46,548 | INFO | Middle Eastern music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:46,548 | INFO | Mantra 0.059 0.000 0.032 ✗ +2026-06-25 18:10:46,548 | INFO | Music of Bollywood 0.041 0.000 0.022 ✗ +2026-06-25 18:10:46,548 | INFO | → WINNER: Music (combined=0.360) +2026-06-25 18:10:46,576 | INFO | +[753.60s] AMBIENT | scene='' +2026-06-25 18:10:46,579 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,579 | INFO | Music 0.229 0.000 0.126 ✓ +2026-06-25 18:10:46,580 | INFO | Mantra 0.058 0.000 0.032 ✗ +2026-06-25 18:10:46,580 | INFO | → WINNER: Music (combined=0.126) +2026-06-25 18:10:46,609 | INFO | +[753.80s] AMBIENT | scene='' +2026-06-25 18:10:46,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,610 | INFO | Music 0.119 0.000 0.066 ✗ +2026-06-25 18:10:46,610 | INFO | → no winner +2026-06-25 18:10:46,639 | INFO | +[754.00s] AMBIENT | scene='' +2026-06-25 18:10:46,640 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,640 | INFO | Music 0.143 0.000 0.079 ✗ +2026-06-25 18:10:46,640 | INFO | → no winner +2026-06-25 18:10:46,671 | INFO | +[754.20s] AMBIENT | scene='' +2026-06-25 18:10:46,671 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,671 | INFO | Music 0.213 0.000 0.117 ✗ +2026-06-25 18:10:46,671 | INFO | → no winner +2026-06-25 18:10:46,700 | INFO | +[754.40s] AMBIENT | scene='' +2026-06-25 18:10:46,701 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,701 | INFO | Music 0.445 0.000 0.245 ✓ +2026-06-25 18:10:46,701 | INFO | Singing 0.193 0.000 0.106 ✗ +2026-06-25 18:10:46,701 | INFO | Mantra 0.054 0.000 0.030 ✗ +2026-06-25 18:10:46,701 | INFO | → WINNER: Music (combined=0.245) +2026-06-25 18:10:46,731 | INFO | +[754.60s] AMBIENT | scene='' +2026-06-25 18:10:46,731 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,731 | INFO | Music 0.490 0.000 0.270 ✓ +2026-06-25 18:10:46,731 | INFO | Singing 0.260 0.000 0.143 ✓ +2026-06-25 18:10:46,731 | INFO | Female singing 0.125 0.000 0.069 ✗ +2026-06-25 18:10:46,731 | INFO | → WINNER: Music (combined=0.270) +2026-06-25 18:10:46,762 | INFO | +[754.80s] AMBIENT | scene='' +2026-06-25 18:10:46,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,762 | INFO | Music 0.788 0.000 0.433 ✓ +2026-06-25 18:10:46,762 | INFO | Singing 0.259 0.000 0.142 ✓ +2026-06-25 18:10:46,762 | INFO | Middle Eastern music 0.258 0.000 0.142 ✓ +2026-06-25 18:10:46,762 | INFO | Tabla 0.241 0.000 0.133 ✓ +2026-06-25 18:10:46,762 | INFO | Folk music 0.178 0.000 0.098 ✗ +2026-06-25 18:10:46,762 | INFO | Musical instrument 0.129 0.000 0.071 ✗ +2026-06-25 18:10:46,762 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:10:46,793 | INFO | +[755.00s] AMBIENT | scene='' +2026-06-25 18:10:46,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,794 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:46,794 | INFO | Middle Eastern music 0.308 0.000 0.169 ✓ +2026-06-25 18:10:46,794 | INFO | Singing 0.248 0.000 0.136 ✓ +2026-06-25 18:10:46,794 | INFO | Folk music 0.234 0.000 0.129 ✓ +2026-06-25 18:10:46,796 | INFO | Salsa music 0.195 0.000 0.107 ✗ +2026-06-25 18:10:46,796 | INFO | Musical instrument 0.152 0.000 0.084 ✗ +2026-06-25 18:10:46,796 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:46,825 | INFO | +[755.20s] AMBIENT | scene='' +2026-06-25 18:10:46,826 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,826 | INFO | Music 0.828 0.000 0.456 ✓ +2026-06-25 18:10:46,826 | INFO | Singing 0.292 0.000 0.161 ✓ +2026-06-25 18:10:46,826 | INFO | Musical instrument 0.146 0.000 0.080 ✗ +2026-06-25 18:10:46,827 | INFO | Middle Eastern music 0.112 0.000 0.062 ✗ +2026-06-25 18:10:46,827 | INFO | Folk music 0.106 0.000 0.058 ✗ +2026-06-25 18:10:46,827 | INFO | Music of Latin America 0.099 0.000 0.055 ✗ +2026-06-25 18:10:46,827 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:46,856 | INFO | +[755.40s] AMBIENT | scene='' +2026-06-25 18:10:46,856 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,856 | INFO | Music 0.854 0.000 0.470 ✓ +2026-06-25 18:10:46,856 | INFO | Singing 0.231 0.000 0.127 ✓ +2026-06-25 18:10:46,858 | INFO | Musical instrument 0.192 0.000 0.106 ✗ +2026-06-25 18:10:46,858 | INFO | Music of Latin America 0.137 0.000 0.075 ✗ +2026-06-25 18:10:46,858 | INFO | Salsa music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:46,858 | INFO | Banjo 0.083 0.000 0.046 ✗ +2026-06-25 18:10:46,858 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:46,887 | INFO | +[755.60s] AMBIENT | scene='' +2026-06-25 18:10:46,887 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,889 | INFO | Music 0.282 0.000 0.155 ✓ +2026-06-25 18:10:46,889 | INFO | → WINNER: Music (combined=0.155) +2026-06-25 18:10:46,919 | INFO | +[755.80s] AMBIENT | scene='' +2026-06-25 18:10:46,920 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,920 | INFO | Music 0.141 0.000 0.077 ✗ +2026-06-25 18:10:46,921 | INFO | → no winner +2026-06-25 18:10:46,950 | INFO | +[756.00s] AMBIENT | scene='' +2026-06-25 18:10:46,951 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,951 | INFO | Music 0.212 0.000 0.117 ✗ +2026-06-25 18:10:46,952 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:10:46,952 | INFO | → no winner +2026-06-25 18:10:46,981 | INFO | +[756.20s] AMBIENT | scene='' +2026-06-25 18:10:46,982 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:46,982 | INFO | Music 0.297 0.000 0.164 ✓ +2026-06-25 18:10:46,982 | INFO | Singing 0.159 0.000 0.087 ✗ +2026-06-25 18:10:46,982 | INFO | Mantra 0.155 0.000 0.085 ✗ +2026-06-25 18:10:46,982 | INFO | Chant 0.142 0.000 0.078 ✗ +2026-06-25 18:10:46,983 | INFO | → WINNER: Music (combined=0.164) +2026-06-25 18:10:47,014 | INFO | +[756.40s] AMBIENT | scene='' +2026-06-25 18:10:47,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,014 | INFO | Music 0.485 0.000 0.267 ✓ +2026-06-25 18:10:47,014 | INFO | Singing 0.242 0.000 0.133 ✓ +2026-06-25 18:10:47,014 | INFO | Mantra 0.146 0.000 0.081 ✗ +2026-06-25 18:10:47,014 | INFO | Carnatic music 0.134 0.000 0.074 ✗ +2026-06-25 18:10:47,014 | INFO | Female singing 0.114 0.000 0.063 ✗ +2026-06-25 18:10:47,014 | INFO | Chant 0.099 0.000 0.054 ✗ +2026-06-25 18:10:47,014 | INFO | → WINNER: Music (combined=0.267) +2026-06-25 18:10:47,045 | INFO | +[756.60s] AMBIENT | scene='' +2026-06-25 18:10:47,046 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,047 | INFO | Music 0.784 0.000 0.431 ✓ +2026-06-25 18:10:47,047 | INFO | Singing 0.287 0.000 0.158 ✓ +2026-06-25 18:10:47,047 | INFO | Female singing 0.161 0.000 0.088 ✗ +2026-06-25 18:10:47,048 | INFO | Tabla 0.075 0.000 0.041 ✗ +2026-06-25 18:10:47,048 | INFO | Drum 0.055 0.000 0.030 ✗ +2026-06-25 18:10:47,048 | INFO | Choir 0.052 0.000 0.029 ✗ +2026-06-25 18:10:47,048 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:10:47,077 | INFO | +[756.80s] AMBIENT | scene='' +2026-06-25 18:10:47,078 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,078 | INFO | Music 0.773 0.000 0.425 ✓ +2026-06-25 18:10:47,078 | INFO | Tabla 0.351 0.000 0.193 ✓ +2026-06-25 18:10:47,078 | INFO | Singing 0.266 0.000 0.146 ✓ +2026-06-25 18:10:47,078 | INFO | Drum 0.157 0.000 0.086 ✗ +2026-06-25 18:10:47,079 | INFO | Percussion 0.131 0.000 0.072 ✗ +2026-06-25 18:10:47,079 | INFO | Musical instrument 0.120 0.000 0.066 ✗ +2026-06-25 18:10:47,079 | INFO | → WINNER: Music (combined=0.425) +2026-06-25 18:10:47,108 | INFO | +[757.00s] AMBIENT | scene='' +2026-06-25 18:10:47,108 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,108 | INFO | Music 0.770 0.000 0.423 ✓ +2026-06-25 18:10:47,110 | INFO | Singing 0.280 0.000 0.154 ✓ +2026-06-25 18:10:47,110 | INFO | Tabla 0.275 0.000 0.151 ✓ +2026-06-25 18:10:47,110 | INFO | Middle Eastern music 0.101 0.000 0.056 ✗ +2026-06-25 18:10:47,110 | INFO | Musical instrument 0.092 0.000 0.051 ✗ +2026-06-25 18:10:47,110 | INFO | Drum 0.069 0.000 0.038 ✗ +2026-06-25 18:10:47,111 | INFO | → WINNER: Music (combined=0.423) +2026-06-25 18:10:47,141 | INFO | +[757.20s] AMBIENT | scene='' +2026-06-25 18:10:47,141 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,142 | INFO | Music 0.799 0.000 0.439 ✓ +2026-06-25 18:10:47,142 | INFO | Singing 0.300 0.000 0.165 ✓ +2026-06-25 18:10:47,142 | INFO | Female singing 0.120 0.000 0.066 ✗ +2026-06-25 18:10:47,142 | INFO | Musical instrument 0.119 0.000 0.065 ✗ +2026-06-25 18:10:47,143 | INFO | Tabla 0.117 0.000 0.064 ✗ +2026-06-25 18:10:47,143 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:47,173 | INFO | +[757.40s] AMBIENT | scene='' +2026-06-25 18:10:47,173 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,174 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:10:47,174 | INFO | Singing 0.338 0.000 0.186 ✓ +2026-06-25 18:10:47,174 | INFO | Musical instrument 0.139 0.000 0.076 ✗ +2026-06-25 18:10:47,174 | INFO | Tabla 0.069 0.000 0.038 ✗ +2026-06-25 18:10:47,174 | INFO | Drum 0.059 0.000 0.032 ✗ +2026-06-25 18:10:47,174 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:10:47,203 | INFO | +[757.60s] AMBIENT | scene='' +2026-06-25 18:10:47,203 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,203 | INFO | Music 0.327 0.000 0.180 ✓ +2026-06-25 18:10:47,203 | INFO | Singing 0.238 0.000 0.131 ✓ +2026-06-25 18:10:47,203 | INFO | Female singing 0.212 0.000 0.117 ✗ +2026-06-25 18:10:47,203 | INFO | Child singing 0.078 0.000 0.043 ✗ +2026-06-25 18:10:47,203 | INFO | → WINNER: Music (combined=0.180) +2026-06-25 18:10:47,234 | INFO | +[757.80s] AMBIENT | scene='' +2026-06-25 18:10:47,235 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,235 | INFO | Music 0.189 0.000 0.104 ✗ +2026-06-25 18:10:47,235 | INFO | Singing 0.111 0.000 0.061 ✗ +2026-06-25 18:10:47,235 | INFO | Mantra 0.075 0.000 0.041 ✗ +2026-06-25 18:10:47,235 | INFO | → no winner +2026-06-25 18:10:47,264 | INFO | +[758.00s] AMBIENT | scene='' +2026-06-25 18:10:47,264 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,265 | INFO | Music 0.325 0.000 0.179 ✓ +2026-06-25 18:10:47,265 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:10:47,265 | INFO | Mantra 0.061 0.000 0.034 ✗ +2026-06-25 18:10:47,265 | INFO | → WINNER: Music (combined=0.179) +2026-06-25 18:10:47,294 | INFO | +[758.20s] AMBIENT | scene='' +2026-06-25 18:10:47,294 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,295 | INFO | Music 0.223 0.000 0.123 ✓ +2026-06-25 18:10:47,295 | INFO | Mantra 0.060 0.000 0.033 ✗ +2026-06-25 18:10:47,295 | INFO | → WINNER: Music (combined=0.123) +2026-06-25 18:10:47,324 | INFO | +[758.40s] AMBIENT | scene='' +2026-06-25 18:10:47,324 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,324 | INFO | Music 0.184 0.000 0.101 ✗ +2026-06-25 18:10:47,324 | INFO | Mantra 0.061 0.000 0.034 ✗ +2026-06-25 18:10:47,324 | INFO | → no winner +2026-06-25 18:10:47,355 | INFO | +[758.60s] AMBIENT | scene='' +2026-06-25 18:10:47,356 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,356 | INFO | Music 0.781 0.000 0.429 ✓ +2026-06-25 18:10:47,356 | INFO | Singing 0.180 0.000 0.099 ✗ +2026-06-25 18:10:47,356 | INFO | Tabla 0.175 0.000 0.096 ✗ +2026-06-25 18:10:47,357 | INFO | Musical instrument 0.155 0.000 0.085 ✗ +2026-06-25 18:10:47,357 | INFO | Middle Eastern music 0.125 0.000 0.069 ✗ +2026-06-25 18:10:47,357 | INFO | Drum 0.105 0.000 0.058 ✗ +2026-06-25 18:10:47,357 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:10:47,386 | INFO | +[758.80s] AMBIENT | scene='' +2026-06-25 18:10:47,386 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,387 | INFO | Music 0.812 0.000 0.447 ✓ +2026-06-25 18:10:47,387 | INFO | Singing 0.217 0.000 0.119 ✗ +2026-06-25 18:10:47,387 | INFO | Musical instrument 0.153 0.000 0.084 ✗ +2026-06-25 18:10:47,387 | INFO | Folk music 0.140 0.000 0.077 ✗ +2026-06-25 18:10:47,388 | INFO | Middle Eastern music 0.122 0.000 0.067 ✗ +2026-06-25 18:10:47,388 | INFO | Traditional music 0.101 0.000 0.056 ✗ +2026-06-25 18:10:47,388 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:10:47,413 | INFO | +[759.00s] AMBIENT | scene='' +2026-06-25 18:10:47,413 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,413 | INFO | Music 0.768 0.000 0.422 ✓ +2026-06-25 18:10:47,413 | INFO | Singing 0.168 0.000 0.092 ✗ +2026-06-25 18:10:47,413 | INFO | Tabla 0.092 0.000 0.050 ✗ +2026-06-25 18:10:47,413 | INFO | Musical instrument 0.073 0.000 0.040 ✗ +2026-06-25 18:10:47,413 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:10:47,448 | INFO | +[759.20s] AMBIENT | scene='' +2026-06-25 18:10:47,449 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,449 | INFO | Music 0.718 0.000 0.395 ✓ +2026-06-25 18:10:47,449 | INFO | Musical instrument 0.169 0.000 0.093 ✗ +2026-06-25 18:10:47,449 | INFO | Singing 0.079 0.000 0.043 ✗ +2026-06-25 18:10:47,450 | INFO | Tabla 0.057 0.000 0.031 ✗ +2026-06-25 18:10:47,450 | INFO | → WINNER: Music (combined=0.395) +2026-06-25 18:10:47,478 | INFO | +[759.40s] AMBIENT | scene='' +2026-06-25 18:10:47,478 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,480 | INFO | Music 0.727 0.000 0.400 ✓ +2026-06-25 18:10:47,480 | INFO | Singing 0.189 0.000 0.104 ✗ +2026-06-25 18:10:47,480 | INFO | Mantra 0.117 0.000 0.064 ✗ +2026-06-25 18:10:47,480 | INFO | Musical instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:10:47,480 | INFO | Chant 0.058 0.000 0.032 ✗ +2026-06-25 18:10:47,480 | INFO | → WINNER: Music (combined=0.400) +2026-06-25 18:10:47,510 | INFO | +[759.60s] AMBIENT | scene='' +2026-06-25 18:10:47,510 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,510 | INFO | Music 0.266 0.000 0.146 ✓ +2026-06-25 18:10:47,511 | INFO | Child singing 0.202 0.000 0.111 ✗ +2026-06-25 18:10:47,511 | INFO | Singing 0.150 0.000 0.083 ✗ +2026-06-25 18:10:47,511 | INFO | Female singing 0.126 0.000 0.070 ✗ +2026-06-25 18:10:47,511 | INFO | Mantra 0.100 0.000 0.055 ✗ +2026-06-25 18:10:47,511 | INFO | Chant 0.085 0.000 0.047 ✗ +2026-06-25 18:10:47,511 | INFO | → WINNER: Music (combined=0.146) +2026-06-25 18:10:47,541 | INFO | +[759.80s] AMBIENT | scene='' +2026-06-25 18:10:47,541 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,541 | INFO | Music 0.274 0.000 0.150 ✓ +2026-06-25 18:10:47,542 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:10:47,542 | INFO | Child singing 0.151 0.000 0.083 ✗ +2026-06-25 18:10:47,542 | INFO | Female singing 0.114 0.000 0.062 ✗ +2026-06-25 18:10:47,542 | INFO | Mantra 0.091 0.000 0.050 ✗ +2026-06-25 18:10:47,542 | INFO | → WINNER: Music (combined=0.150) +2026-06-25 18:10:47,572 | INFO | +[760.00s] AMBIENT | scene='' +2026-06-25 18:10:47,572 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,573 | INFO | Music 0.348 0.000 0.191 ✓ +2026-06-25 18:10:47,573 | INFO | Child singing 0.248 0.000 0.136 ✓ +2026-06-25 18:10:47,573 | INFO | Singing 0.201 0.000 0.111 ✗ +2026-06-25 18:10:47,573 | INFO | Female singing 0.184 0.000 0.101 ✗ +2026-06-25 18:10:47,573 | INFO | → WINNER: Music (combined=0.191) +2026-06-25 18:10:47,603 | INFO | +[760.20s] AMBIENT | scene='' +2026-06-25 18:10:47,603 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,604 | INFO | Music 0.224 0.000 0.123 ✓ +2026-06-25 18:10:47,604 | INFO | Child singing 0.136 0.000 0.075 ✗ +2026-06-25 18:10:47,604 | INFO | Singing 0.110 0.000 0.060 ✗ +2026-06-25 18:10:47,604 | INFO | Female singing 0.085 0.000 0.047 ✗ +2026-06-25 18:10:47,604 | INFO | → WINNER: Music (combined=0.123) +2026-06-25 18:10:47,633 | INFO | +[760.40s] AMBIENT | scene='' +2026-06-25 18:10:47,633 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,635 | INFO | Music 0.321 0.000 0.177 ✓ +2026-06-25 18:10:47,635 | INFO | Singing 0.121 0.000 0.067 ✗ +2026-06-25 18:10:47,635 | INFO | → WINNER: Music (combined=0.177) +2026-06-25 18:10:47,665 | INFO | +[760.60s] AMBIENT | scene='' +2026-06-25 18:10:47,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,665 | INFO | Music 0.789 0.000 0.434 ✓ +2026-06-25 18:10:47,666 | INFO | Tabla 0.194 0.000 0.107 ✗ +2026-06-25 18:10:47,666 | INFO | Singing 0.172 0.000 0.095 ✗ +2026-06-25 18:10:47,666 | INFO | Musical instrument 0.133 0.000 0.073 ✗ +2026-06-25 18:10:47,666 | INFO | Middle Eastern music 0.116 0.000 0.064 ✗ +2026-06-25 18:10:47,666 | INFO | Drum 0.068 0.000 0.037 ✗ +2026-06-25 18:10:47,667 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:10:47,697 | INFO | +[760.80s] AMBIENT | scene='' +2026-06-25 18:10:47,697 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,697 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:47,697 | INFO | Musical instrument 0.200 0.000 0.110 ✗ +2026-06-25 18:10:47,697 | INFO | Tabla 0.199 0.000 0.109 ✗ +2026-06-25 18:10:47,697 | INFO | Middle Eastern music 0.175 0.000 0.097 ✗ +2026-06-25 18:10:47,697 | INFO | Banjo 0.169 0.000 0.093 ✗ +2026-06-25 18:10:47,697 | INFO | Folk music 0.127 0.000 0.070 ✗ +2026-06-25 18:10:47,697 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:47,730 | INFO | +[761.00s] AMBIENT | scene='' +2026-06-25 18:10:47,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,730 | INFO | Music 0.789 0.000 0.434 ✓ +2026-06-25 18:10:47,730 | INFO | Tabla 0.201 0.000 0.111 ✗ +2026-06-25 18:10:47,732 | INFO | Middle Eastern music 0.177 0.000 0.098 ✗ +2026-06-25 18:10:47,732 | INFO | Musical instrument 0.148 0.000 0.081 ✗ +2026-06-25 18:10:47,732 | INFO | Folk music 0.128 0.000 0.070 ✗ +2026-06-25 18:10:47,732 | INFO | Singing 0.119 0.000 0.065 ✗ +2026-06-25 18:10:47,732 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:10:47,762 | INFO | +[761.20s] AMBIENT | scene='' +2026-06-25 18:10:47,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,762 | INFO | Music 0.778 0.000 0.428 ✓ +2026-06-25 18:10:47,762 | INFO | Musical instrument 0.161 0.000 0.089 ✗ +2026-06-25 18:10:47,762 | INFO | Banjo 0.087 0.000 0.048 ✗ +2026-06-25 18:10:47,762 | INFO | Country 0.061 0.000 0.034 ✗ +2026-06-25 18:10:47,762 | INFO | Bluegrass 0.053 0.000 0.029 ✗ +2026-06-25 18:10:47,765 | INFO | → WINNER: Music (combined=0.428) +2026-06-25 18:10:47,794 | INFO | +[761.40s] AMBIENT | scene='' +2026-06-25 18:10:47,795 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,795 | INFO | Music 0.511 0.000 0.281 ✓ +2026-06-25 18:10:47,795 | INFO | → WINNER: Music (combined=0.281) +2026-06-25 18:10:47,824 | INFO | +[761.60s] AMBIENT | scene='' +2026-06-25 18:10:47,825 | INFO | → no winner +2026-06-25 18:10:47,853 | INFO | +[761.80s] AMBIENT | scene='' +2026-06-25 18:10:47,854 | INFO | → no winner +2026-06-25 18:10:47,882 | INFO | +[762.00s] AMBIENT | scene='' +2026-06-25 18:10:47,882 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,882 | INFO | Music 0.152 0.000 0.083 ✗ +2026-06-25 18:10:47,882 | INFO | → no winner +2026-06-25 18:10:47,913 | INFO | +[762.20s] AMBIENT | scene='' +2026-06-25 18:10:47,914 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,914 | INFO | Music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:47,914 | INFO | → no winner +2026-06-25 18:10:47,942 | INFO | +[762.40s] AMBIENT | scene='' +2026-06-25 18:10:47,943 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,943 | INFO | Music 0.285 0.000 0.157 ✓ +2026-06-25 18:10:47,943 | INFO | Singing 0.100 0.000 0.055 ✗ +2026-06-25 18:10:47,944 | INFO | → WINNER: Music (combined=0.157) +2026-06-25 18:10:47,972 | INFO | +[762.60s] AMBIENT | scene='' +2026-06-25 18:10:47,973 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:47,973 | INFO | Music 0.790 0.000 0.434 ✓ +2026-06-25 18:10:47,973 | INFO | Tabla 0.276 0.000 0.152 ✓ +2026-06-25 18:10:47,974 | INFO | Middle Eastern music 0.230 0.000 0.127 ✓ +2026-06-25 18:10:47,974 | INFO | Singing 0.210 0.000 0.116 ✗ +2026-06-25 18:10:47,974 | INFO | Folk music 0.162 0.000 0.089 ✗ +2026-06-25 18:10:47,974 | INFO | Musical instrument 0.137 0.000 0.075 ✗ +2026-06-25 18:10:47,974 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:10:48,004 | INFO | +[762.80s] AMBIENT | scene='' +2026-06-25 18:10:48,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,004 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:10:48,005 | INFO | Singing 0.261 0.000 0.143 ✓ +2026-06-25 18:10:48,005 | INFO | Middle Eastern music 0.230 0.000 0.126 ✓ +2026-06-25 18:10:48,005 | INFO | Tabla 0.193 0.000 0.106 ✗ +2026-06-25 18:10:48,005 | INFO | Folk music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:48,005 | INFO | Musical instrument 0.145 0.000 0.080 ✗ +2026-06-25 18:10:48,006 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:48,034 | INFO | +[763.00s] AMBIENT | scene='' +2026-06-25 18:10:48,035 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,035 | INFO | Music 0.802 0.000 0.441 ✓ +2026-06-25 18:10:48,035 | INFO | Middle Eastern music 0.269 0.000 0.148 ✓ +2026-06-25 18:10:48,037 | INFO | Singing 0.197 0.000 0.108 ✗ +2026-06-25 18:10:48,037 | INFO | Folk music 0.193 0.000 0.106 ✗ +2026-06-25 18:10:48,037 | INFO | Salsa music 0.117 0.000 0.065 ✗ +2026-06-25 18:10:48,037 | INFO | Tabla 0.115 0.000 0.063 ✗ +2026-06-25 18:10:48,037 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:10:48,066 | INFO | +[763.20s] AMBIENT | scene='' +2026-06-25 18:10:48,066 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,067 | INFO | Music 0.822 0.000 0.452 ✓ +2026-06-25 18:10:48,067 | INFO | Middle Eastern music 0.247 0.000 0.136 ✓ +2026-06-25 18:10:48,067 | INFO | Singing 0.240 0.000 0.132 ✓ +2026-06-25 18:10:48,067 | INFO | Folk music 0.173 0.000 0.095 ✗ +2026-06-25 18:10:48,068 | INFO | Musical instrument 0.154 0.000 0.085 ✗ +2026-06-25 18:10:48,068 | INFO | Tabla 0.120 0.000 0.066 ✗ +2026-06-25 18:10:48,068 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:48,098 | INFO | +[763.40s] AMBIENT | scene='' +2026-06-25 18:10:48,098 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,098 | INFO | Music 0.645 0.000 0.354 ✓ +2026-06-25 18:10:48,099 | INFO | Singing 0.179 0.000 0.098 ✗ +2026-06-25 18:10:48,099 | INFO | → WINNER: Music (combined=0.354) +2026-06-25 18:10:48,127 | INFO | +[763.60s] AMBIENT | scene='' +2026-06-25 18:10:48,127 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,129 | INFO | Music 0.294 0.000 0.162 ✓ +2026-06-25 18:10:48,129 | INFO | Singing 0.112 0.000 0.061 ✗ +2026-06-25 18:10:48,130 | INFO | Mantra 0.085 0.000 0.047 ✗ +2026-06-25 18:10:48,130 | INFO | → WINNER: Music (combined=0.162) +2026-06-25 18:10:48,158 | INFO | +[763.80s] AMBIENT | scene='' +2026-06-25 18:10:48,158 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,158 | INFO | Music 0.616 0.000 0.339 ✓ +2026-06-25 18:10:48,158 | INFO | Singing 0.179 0.000 0.099 ✗ +2026-06-25 18:10:48,158 | INFO | Mantra 0.072 0.000 0.040 ✗ +2026-06-25 18:10:48,158 | INFO | → WINNER: Music (combined=0.339) +2026-06-25 18:10:48,188 | INFO | +[764.00s] AMBIENT | scene='' +2026-06-25 18:10:48,191 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,192 | INFO | Music 0.839 0.000 0.462 ✓ +2026-06-25 18:10:48,192 | INFO | Musical instrument 0.175 0.000 0.096 ✗ +2026-06-25 18:10:48,192 | INFO | Carnatic music 0.156 0.000 0.086 ✗ +2026-06-25 18:10:48,192 | INFO | Middle Eastern music 0.132 0.000 0.073 ✗ +2026-06-25 18:10:48,193 | INFO | Sitar 0.118 0.000 0.065 ✗ +2026-06-25 18:10:48,193 | INFO | Singing 0.101 0.000 0.055 ✗ +2026-06-25 18:10:48,193 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:10:48,224 | INFO | +[764.20s] AMBIENT | scene='' +2026-06-25 18:10:48,224 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,224 | INFO | Music 0.793 0.000 0.436 ✓ +2026-06-25 18:10:48,225 | INFO | Musical instrument 0.266 0.000 0.146 ✓ +2026-06-25 18:10:48,225 | INFO | Carnatic music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:48,225 | INFO | Sitar 0.101 0.000 0.056 ✗ +2026-06-25 18:10:48,225 | INFO | Plucked string instrument 0.076 0.000 0.042 ✗ +2026-06-25 18:10:48,225 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:48,254 | INFO | +[764.40s] AMBIENT | scene='' +2026-06-25 18:10:48,254 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,254 | INFO | Music 0.783 0.000 0.431 ✓ +2026-06-25 18:10:48,255 | INFO | Musical instrument 0.167 0.000 0.092 ✗ +2026-06-25 18:10:48,255 | INFO | Tabla 0.140 0.000 0.077 ✗ +2026-06-25 18:10:48,255 | INFO | Singing 0.134 0.000 0.074 ✗ +2026-06-25 18:10:48,255 | INFO | Drum 0.074 0.000 0.041 ✗ +2026-06-25 18:10:48,255 | INFO | Percussion 0.063 0.000 0.035 ✗ +2026-06-25 18:10:48,255 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:10:48,284 | INFO | +[764.60s] AMBIENT | scene='' +2026-06-25 18:10:48,284 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,286 | INFO | Music 0.656 0.000 0.361 ✓ +2026-06-25 18:10:48,287 | INFO | Tabla 0.359 0.000 0.198 ✓ +2026-06-25 18:10:48,287 | INFO | Musical instrument 0.133 0.000 0.073 ✗ +2026-06-25 18:10:48,287 | INFO | Singing 0.129 0.000 0.071 ✗ +2026-06-25 18:10:48,288 | INFO | Middle Eastern music 0.102 0.000 0.056 ✗ +2026-06-25 18:10:48,288 | INFO | Percussion 0.100 0.000 0.055 ✗ +2026-06-25 18:10:48,289 | INFO | → WINNER: Music (combined=0.361) +2026-06-25 18:10:48,318 | INFO | +[764.80s] AMBIENT | scene='' +2026-06-25 18:10:48,319 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,319 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:10:48,319 | INFO | Singing 0.236 0.000 0.130 ✓ +2026-06-25 18:10:48,320 | INFO | Music of Latin America 0.179 0.000 0.099 ✗ +2026-06-25 18:10:48,320 | INFO | Middle Eastern music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:48,320 | INFO | Salsa music 0.141 0.000 0.078 ✗ +2026-06-25 18:10:48,320 | INFO | Folk music 0.124 0.000 0.068 ✗ +2026-06-25 18:10:48,321 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:48,349 | INFO | +[765.00s] AMBIENT | scene='' +2026-06-25 18:10:48,350 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,350 | INFO | Music 0.775 0.000 0.426 ✓ +2026-06-25 18:10:48,350 | INFO | Singing 0.239 0.000 0.132 ✓ +2026-06-25 18:10:48,350 | INFO | Musical instrument 0.072 0.000 0.040 ✗ +2026-06-25 18:10:48,350 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:10:48,380 | INFO | +[765.20s] AMBIENT | scene='' +2026-06-25 18:10:48,380 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,380 | INFO | Music 0.808 0.000 0.444 ✓ +2026-06-25 18:10:48,381 | INFO | Singing 0.190 0.000 0.105 ✗ +2026-06-25 18:10:48,381 | INFO | Musical instrument 0.088 0.000 0.048 ✗ +2026-06-25 18:10:48,381 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:48,411 | INFO | +[765.40s] AMBIENT | scene='' +2026-06-25 18:10:48,411 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,411 | INFO | Music 0.191 0.000 0.105 ✗ +2026-06-25 18:10:48,412 | INFO | Child singing 0.155 0.000 0.085 ✗ +2026-06-25 18:10:48,412 | INFO | Female singing 0.129 0.000 0.071 ✗ +2026-06-25 18:10:48,412 | INFO | Singing 0.110 0.000 0.060 ✗ +2026-06-25 18:10:48,412 | INFO | → no winner +2026-06-25 18:10:48,441 | INFO | +[765.60s] AMBIENT | scene='' +2026-06-25 18:10:48,442 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,443 | INFO | Female singing 0.413 0.000 0.227 ✓ +2026-06-25 18:10:48,443 | INFO | Music 0.356 0.000 0.196 ✓ +2026-06-25 18:10:48,443 | INFO | Singing 0.256 0.000 0.141 ✓ +2026-06-25 18:10:48,443 | INFO | Child singing 0.192 0.000 0.105 ✗ +2026-06-25 18:10:48,443 | INFO | → WINNER: Female singing (combined=0.227) +2026-06-25 18:10:48,474 | INFO | +[765.80s] AMBIENT | scene='' +2026-06-25 18:10:48,474 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,474 | INFO | Music 0.425 0.000 0.234 ✓ +2026-06-25 18:10:48,475 | INFO | Singing 0.309 0.000 0.170 ✓ +2026-06-25 18:10:48,475 | INFO | Female singing 0.280 0.000 0.154 ✓ +2026-06-25 18:10:48,475 | INFO | Child singing 0.134 0.000 0.073 ✗ +2026-06-25 18:10:48,475 | INFO | Male singing 0.093 0.000 0.051 ✗ +2026-06-25 18:10:48,475 | INFO | Choir 0.064 0.000 0.035 ✗ +2026-06-25 18:10:48,475 | INFO | → WINNER: Music (combined=0.234) +2026-06-25 18:10:48,505 | INFO | +[766.00s] AMBIENT | scene='' +2026-06-25 18:10:48,505 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,505 | INFO | Music 0.406 0.000 0.224 ✓ +2026-06-25 18:10:48,505 | INFO | Female singing 0.270 0.000 0.148 ✓ +2026-06-25 18:10:48,506 | INFO | Singing 0.238 0.000 0.131 ✓ +2026-06-25 18:10:48,506 | INFO | Child singing 0.127 0.000 0.070 ✗ +2026-06-25 18:10:48,506 | INFO | Male singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:48,506 | INFO | A capella 0.055 0.000 0.030 ✗ +2026-06-25 18:10:48,506 | INFO | → WINNER: Music (combined=0.224) +2026-06-25 18:10:48,535 | INFO | +[766.20s] AMBIENT | scene='' +2026-06-25 18:10:48,535 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,535 | INFO | Music 0.506 0.000 0.278 ✓ +2026-06-25 18:10:48,537 | INFO | Singing 0.209 0.000 0.115 ✗ +2026-06-25 18:10:48,537 | INFO | Female singing 0.168 0.000 0.092 ✗ +2026-06-25 18:10:48,537 | INFO | Male singing 0.082 0.000 0.045 ✗ +2026-06-25 18:10:48,537 | INFO | Synthetic singing 0.081 0.000 0.044 ✗ +2026-06-25 18:10:48,537 | INFO | Mantra 0.065 0.000 0.036 ✗ +2026-06-25 18:10:48,537 | INFO | → WINNER: Music (combined=0.278) +2026-06-25 18:10:48,566 | INFO | +[766.40s] AMBIENT | scene='' +2026-06-25 18:10:48,566 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,566 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:48,567 | INFO | Singing 0.157 0.000 0.087 ✗ +2026-06-25 18:10:48,567 | INFO | Musical instrument 0.116 0.000 0.064 ✗ +2026-06-25 18:10:48,567 | INFO | Tabla 0.115 0.000 0.063 ✗ +2026-06-25 18:10:48,567 | INFO | Drum 0.061 0.000 0.034 ✗ +2026-06-25 18:10:48,567 | INFO | Percussion 0.061 0.000 0.033 ✗ +2026-06-25 18:10:48,568 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:48,595 | INFO | +[766.60s] AMBIENT | scene='' +2026-06-25 18:10:48,595 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,595 | INFO | Music 0.805 0.000 0.443 ✓ +2026-06-25 18:10:48,595 | INFO | Tabla 0.329 0.000 0.181 ✓ +2026-06-25 18:10:48,595 | INFO | Middle Eastern music 0.270 0.000 0.148 ✓ +2026-06-25 18:10:48,595 | INFO | Folk music 0.180 0.000 0.099 ✗ +2026-06-25 18:10:48,595 | INFO | Singing 0.154 0.000 0.085 ✗ +2026-06-25 18:10:48,600 | INFO | Musical instrument 0.145 0.000 0.080 ✗ +2026-06-25 18:10:48,600 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:48,631 | INFO | +[766.80s] AMBIENT | scene='' +2026-06-25 18:10:48,631 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,631 | INFO | Music 0.768 0.000 0.422 ✓ +2026-06-25 18:10:48,631 | INFO | Tabla 0.391 0.000 0.215 ✓ +2026-06-25 18:10:48,631 | INFO | Singing 0.232 0.000 0.128 ✓ +2026-06-25 18:10:48,631 | INFO | Middle Eastern music 0.232 0.000 0.128 ✓ +2026-06-25 18:10:48,632 | INFO | Musical instrument 0.167 0.000 0.092 ✗ +2026-06-25 18:10:48,632 | INFO | Folk music 0.149 0.000 0.082 ✗ +2026-06-25 18:10:48,632 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:10:48,660 | INFO | +[767.00s] AMBIENT | scene='' +2026-06-25 18:10:48,662 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,663 | INFO | Music 0.752 0.000 0.414 ✓ +2026-06-25 18:10:48,663 | INFO | Tabla 0.422 0.000 0.232 ✓ +2026-06-25 18:10:48,664 | INFO | Singing 0.256 0.000 0.141 ✓ +2026-06-25 18:10:48,664 | INFO | Musical instrument 0.179 0.000 0.099 ✗ +2026-06-25 18:10:48,664 | INFO | Carnatic music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:48,664 | INFO | Percussion 0.114 0.000 0.063 ✗ +2026-06-25 18:10:48,664 | INFO | → WINNER: Music (combined=0.414) +2026-06-25 18:10:48,694 | INFO | +[767.20s] AMBIENT | scene='' +2026-06-25 18:10:48,695 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,695 | INFO | Music 0.760 0.000 0.418 ✓ +2026-06-25 18:10:48,695 | INFO | Singing 0.315 0.000 0.173 ✓ +2026-06-25 18:10:48,695 | INFO | Tabla 0.305 0.000 0.168 ✓ +2026-06-25 18:10:48,696 | INFO | Carnatic music 0.258 0.000 0.142 ✓ +2026-06-25 18:10:48,696 | INFO | Musical instrument 0.184 0.000 0.101 ✗ +2026-06-25 18:10:48,696 | INFO | Middle Eastern music 0.102 0.000 0.056 ✗ +2026-06-25 18:10:48,696 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:10:48,725 | INFO | +[767.40s] AMBIENT | scene='' +2026-06-25 18:10:48,725 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,725 | INFO | Music 0.183 0.000 0.101 ✗ +2026-06-25 18:10:48,725 | INFO | Mantra 0.101 0.000 0.055 ✗ +2026-06-25 18:10:48,727 | INFO | Singing 0.086 0.000 0.048 ✗ +2026-06-25 18:10:48,727 | INFO | Chant 0.083 0.000 0.045 ✗ +2026-06-25 18:10:48,727 | INFO | → no winner +2026-06-25 18:10:48,756 | INFO | +[767.60s] AMBIENT | scene='' +2026-06-25 18:10:48,756 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,756 | INFO | Music 0.232 0.000 0.128 ✓ +2026-06-25 18:10:48,756 | INFO | Female singing 0.212 0.000 0.116 ✗ +2026-06-25 18:10:48,758 | INFO | Child singing 0.183 0.000 0.101 ✗ +2026-06-25 18:10:48,758 | INFO | Singing 0.144 0.000 0.080 ✗ +2026-06-25 18:10:48,758 | INFO | Mantra 0.108 0.000 0.059 ✗ +2026-06-25 18:10:48,758 | INFO | Chant 0.095 0.000 0.052 ✗ +2026-06-25 18:10:48,758 | INFO | → WINNER: Music (combined=0.128) +2026-06-25 18:10:48,788 | INFO | +[767.80s] AMBIENT | scene='' +2026-06-25 18:10:48,788 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,788 | INFO | Music 0.399 0.000 0.219 ✓ +2026-06-25 18:10:48,788 | INFO | Singing 0.159 0.000 0.087 ✗ +2026-06-25 18:10:48,788 | INFO | Mantra 0.091 0.000 0.050 ✗ +2026-06-25 18:10:48,790 | INFO | Chant 0.079 0.000 0.043 ✗ +2026-06-25 18:10:48,790 | INFO | → WINNER: Music (combined=0.219) +2026-06-25 18:10:48,820 | INFO | +[768.00s] AMBIENT | scene='' +2026-06-25 18:10:48,820 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,820 | INFO | Music 0.770 0.000 0.423 ✓ +2026-06-25 18:10:48,820 | INFO | Tabla 0.319 0.000 0.175 ✓ +2026-06-25 18:10:48,821 | INFO | Musical instrument 0.191 0.000 0.105 ✗ +2026-06-25 18:10:48,821 | INFO | Singing 0.165 0.000 0.091 ✗ +2026-06-25 18:10:48,821 | INFO | Carnatic music 0.145 0.000 0.080 ✗ +2026-06-25 18:10:48,821 | INFO | Middle Eastern music 0.104 0.000 0.057 ✗ +2026-06-25 18:10:48,822 | INFO | → WINNER: Music (combined=0.423) +2026-06-25 18:10:48,852 | INFO | +[768.20s] AMBIENT | scene='' +2026-06-25 18:10:48,852 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,853 | INFO | Music 0.819 0.000 0.450 ✓ +2026-06-25 18:10:48,853 | INFO | Musical instrument 0.207 0.000 0.114 ✗ +2026-06-25 18:10:48,853 | INFO | Sitar 0.059 0.000 0.033 ✗ +2026-06-25 18:10:48,853 | INFO | Tabla 0.054 0.000 0.030 ✗ +2026-06-25 18:10:48,854 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:48,882 | INFO | +[768.40s] AMBIENT | scene='' +2026-06-25 18:10:48,883 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,883 | INFO | Music 0.817 0.000 0.450 ✓ +2026-06-25 18:10:48,883 | INFO | Tabla 0.286 0.000 0.157 ✓ +2026-06-25 18:10:48,884 | INFO | Middle Eastern music 0.250 0.000 0.137 ✓ +2026-06-25 18:10:48,884 | INFO | Musical instrument 0.168 0.000 0.092 ✗ +2026-06-25 18:10:48,884 | INFO | Folk music 0.142 0.000 0.078 ✗ +2026-06-25 18:10:48,884 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:10:48,884 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:48,913 | INFO | +[768.60s] AMBIENT | scene='' +2026-06-25 18:10:48,915 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,915 | INFO | Music 0.775 0.000 0.426 ✓ +2026-06-25 18:10:48,915 | INFO | Middle Eastern music 0.276 0.000 0.152 ✓ +2026-06-25 18:10:48,915 | INFO | Folk music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:48,916 | INFO | Singing 0.104 0.000 0.057 ✗ +2026-06-25 18:10:48,916 | INFO | Tabla 0.084 0.000 0.046 ✗ +2026-06-25 18:10:48,916 | INFO | Musical instrument 0.075 0.000 0.041 ✗ +2026-06-25 18:10:48,916 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:10:48,945 | INFO | +[768.80s] AMBIENT | scene='' +2026-06-25 18:10:48,945 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,947 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:10:48,947 | INFO | Gargling 0.199 0.000 0.109 ✗ +2026-06-25 18:10:48,947 | INFO | Singing 0.126 0.000 0.069 ✗ +2026-06-25 18:10:48,947 | INFO | Musical instrument 0.081 0.000 0.045 ✗ +2026-06-25 18:10:48,947 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:48,976 | INFO | +[769.00s] AMBIENT | scene='' +2026-06-25 18:10:48,976 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:48,978 | INFO | Music 0.336 0.000 0.185 ✓ +2026-06-25 18:10:48,978 | INFO | → WINNER: Music (combined=0.185) +2026-06-25 18:10:49,006 | INFO | +[769.20s] AMBIENT | scene='' +2026-06-25 18:10:49,006 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,006 | INFO | Music 0.109 0.000 0.060 ✗ +2026-06-25 18:10:49,006 | INFO | → no winner +2026-06-25 18:10:49,037 | INFO | +[769.40s] AMBIENT | scene='' +2026-06-25 18:10:49,037 | INFO | → no winner +2026-06-25 18:10:49,066 | INFO | +[769.60s] AMBIENT | scene='' +2026-06-25 18:10:49,066 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,066 | INFO | Music 0.180 0.000 0.099 ✗ +2026-06-25 18:10:49,066 | INFO | → no winner +2026-06-25 18:10:49,096 | INFO | +[769.80s] AMBIENT | scene='' +2026-06-25 18:10:49,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,097 | INFO | Music 0.264 0.000 0.145 ✓ +2026-06-25 18:10:49,097 | INFO | Singing 0.103 0.000 0.057 ✗ +2026-06-25 18:10:49,097 | INFO | → WINNER: Music (combined=0.145) +2026-06-25 18:10:49,121 | INFO | +[770.00s] AMBIENT | scene='' +2026-06-25 18:10:49,121 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,121 | INFO | Music 0.141 0.000 0.077 ✗ +2026-06-25 18:10:49,121 | INFO | → no winner +2026-06-25 18:10:49,153 | INFO | +[770.20s] AMBIENT | scene='' +2026-06-25 18:10:49,153 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,153 | INFO | Music 0.132 0.000 0.072 ✗ +2026-06-25 18:10:49,153 | INFO | → no winner +2026-06-25 18:10:49,187 | INFO | +[770.40s] AMBIENT | scene='' +2026-06-25 18:10:49,187 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,187 | INFO | Music 0.705 0.000 0.388 ✓ +2026-06-25 18:10:49,187 | INFO | Middle Eastern music 0.186 0.000 0.102 ✗ +2026-06-25 18:10:49,190 | INFO | Tabla 0.152 0.000 0.084 ✗ +2026-06-25 18:10:49,190 | INFO | Musical instrument 0.114 0.000 0.062 ✗ +2026-06-25 18:10:49,190 | INFO | Folk music 0.098 0.000 0.054 ✗ +2026-06-25 18:10:49,190 | INFO | Sitar 0.074 0.000 0.041 ✗ +2026-06-25 18:10:49,190 | INFO | → WINNER: Music (combined=0.388) +2026-06-25 18:10:49,220 | INFO | +[770.60s] AMBIENT | scene='' +2026-06-25 18:10:49,220 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,220 | INFO | Music 0.786 0.000 0.432 ✓ +2026-06-25 18:10:49,220 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:10:49,220 | INFO | Middle Eastern music 0.130 0.000 0.071 ✗ +2026-06-25 18:10:49,221 | INFO | Tabla 0.119 0.000 0.066 ✗ +2026-06-25 18:10:49,221 | INFO | Folk music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:49,221 | INFO | Musical instrument 0.086 0.000 0.047 ✗ +2026-06-25 18:10:49,221 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:49,250 | INFO | +[770.80s] AMBIENT | scene='' +2026-06-25 18:10:49,250 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,251 | INFO | Music 0.774 0.000 0.426 ✓ +2026-06-25 18:10:49,251 | INFO | Singing 0.229 0.000 0.126 ✓ +2026-06-25 18:10:49,251 | INFO | Middle Eastern music 0.162 0.000 0.089 ✗ +2026-06-25 18:10:49,251 | INFO | Tabla 0.133 0.000 0.073 ✗ +2026-06-25 18:10:49,252 | INFO | Folk music 0.098 0.000 0.054 ✗ +2026-06-25 18:10:49,252 | INFO | Musical instrument 0.091 0.000 0.050 ✗ +2026-06-25 18:10:49,253 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:10:49,282 | INFO | +[771.00s] AMBIENT | scene='' +2026-06-25 18:10:49,282 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,282 | INFO | Music 0.838 0.000 0.461 ✓ +2026-06-25 18:10:49,282 | INFO | Singing 0.215 0.000 0.118 ✗ +2026-06-25 18:10:49,284 | INFO | Music of Latin America 0.124 0.000 0.068 ✗ +2026-06-25 18:10:49,284 | INFO | Musical instrument 0.088 0.000 0.048 ✗ +2026-06-25 18:10:49,284 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:10:49,313 | INFO | +[771.20s] AMBIENT | scene='' +2026-06-25 18:10:49,313 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,314 | INFO | Music 0.655 0.000 0.360 ✓ +2026-06-25 18:10:49,314 | INFO | Singing 0.240 0.000 0.132 ✓ +2026-06-25 18:10:49,314 | INFO | Male singing 0.101 0.000 0.056 ✗ +2026-06-25 18:10:49,314 | INFO | → WINNER: Music (combined=0.360) +2026-06-25 18:10:49,344 | INFO | +[771.40s] AMBIENT | scene='' +2026-06-25 18:10:49,344 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,346 | INFO | Music 0.198 0.000 0.109 ✗ +2026-06-25 18:10:49,346 | INFO | Singing 0.096 0.000 0.053 ✗ +2026-06-25 18:10:49,346 | INFO | Mantra 0.061 0.000 0.033 ✗ +2026-06-25 18:10:49,346 | INFO | → no winner +2026-06-25 18:10:49,374 | INFO | +[771.60s] AMBIENT | scene='' +2026-06-25 18:10:49,376 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,376 | INFO | Music 0.218 0.000 0.120 ✗ +2026-06-25 18:10:49,376 | INFO | Singing 0.085 0.000 0.046 ✗ +2026-06-25 18:10:49,376 | INFO | Mantra 0.068 0.000 0.037 ✗ +2026-06-25 18:10:49,376 | INFO | → no winner +2026-06-25 18:10:49,406 | INFO | +[771.80s] AMBIENT | scene='' +2026-06-25 18:10:49,406 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,406 | INFO | Music 0.708 0.000 0.389 ✓ +2026-06-25 18:10:49,406 | INFO | Singing 0.146 0.000 0.080 ✗ +2026-06-25 18:10:49,406 | INFO | Middle Eastern music 0.124 0.000 0.068 ✗ +2026-06-25 18:10:49,406 | INFO | Carnatic music 0.110 0.000 0.060 ✗ +2026-06-25 18:10:49,406 | INFO | Mantra 0.098 0.000 0.054 ✗ +2026-06-25 18:10:49,406 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:10:49,406 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:10:49,438 | INFO | +[772.00s] AMBIENT | scene='' +2026-06-25 18:10:49,438 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,438 | INFO | Music 0.812 0.000 0.446 ✓ +2026-06-25 18:10:49,438 | INFO | Carnatic music 0.228 0.000 0.125 ✓ +2026-06-25 18:10:49,438 | INFO | Musical instrument 0.215 0.000 0.118 ✗ +2026-06-25 18:10:49,440 | INFO | Singing 0.186 0.000 0.102 ✗ +2026-06-25 18:10:49,440 | INFO | Middle Eastern music 0.149 0.000 0.082 ✗ +2026-06-25 18:10:49,440 | INFO | Sitar 0.104 0.000 0.058 ✗ +2026-06-25 18:10:49,440 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:49,471 | INFO | +[772.20s] AMBIENT | scene='' +2026-06-25 18:10:49,472 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,472 | INFO | Music 0.745 0.000 0.410 ✓ +2026-06-25 18:10:49,472 | INFO | Singing 0.220 0.000 0.121 ✓ +2026-06-25 18:10:49,472 | INFO | Carnatic music 0.145 0.000 0.080 ✗ +2026-06-25 18:10:49,472 | INFO | Middle Eastern music 0.134 0.000 0.074 ✗ +2026-06-25 18:10:49,473 | INFO | Musical instrument 0.128 0.000 0.070 ✗ +2026-06-25 18:10:49,473 | INFO | Tabla 0.102 0.000 0.056 ✗ +2026-06-25 18:10:49,473 | INFO | → WINNER: Music (combined=0.410) +2026-06-25 18:10:49,502 | INFO | +[772.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,503 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,504 | INFO | Music 0.758 0.000 0.417 ✓ +2026-06-25 18:10:49,504 | INFO | Tabla 0.408 0.000 0.225 ✓ +2026-06-25 18:10:49,504 | INFO | Singing 0.245 0.000 0.135 ✓ +2026-06-25 18:10:49,505 | INFO | Musical instrument 0.192 0.000 0.106 ✗ +2026-06-25 18:10:49,505 | INFO | Middle Eastern music 0.185 0.000 0.102 ✗ +2026-06-25 18:10:49,505 | INFO | Percussion 0.155 0.000 0.085 ✗ +2026-06-25 18:10:49,505 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:10:49,535 | INFO | +[772.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,536 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,536 | INFO | Music 0.829 0.000 0.456 ✓ +2026-06-25 18:10:49,538 | INFO | Singing 0.237 0.000 0.131 ✓ +2026-06-25 18:10:49,538 | INFO | Musical instrument 0.077 0.000 0.043 ✗ +2026-06-25 18:10:49,538 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:49,565 | INFO | +[772.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,567 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,567 | INFO | Music 0.810 0.000 0.446 ✓ +2026-06-25 18:10:49,567 | INFO | Singing 0.217 0.000 0.119 ✗ +2026-06-25 18:10:49,567 | INFO | Musical instrument 0.095 0.000 0.052 ✗ +2026-06-25 18:10:49,567 | INFO | Female singing 0.079 0.000 0.043 ✗ +2026-06-25 18:10:49,567 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:49,595 | INFO | +[773.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,595 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,595 | INFO | Music 0.848 0.000 0.466 ✓ +2026-06-25 18:10:49,595 | INFO | Singing 0.161 0.000 0.089 ✗ +2026-06-25 18:10:49,595 | INFO | Musical instrument 0.087 0.000 0.048 ✗ +2026-06-25 18:10:49,595 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:49,628 | INFO | +[773.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,628 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,628 | INFO | Music 0.255 0.000 0.140 ✓ +2026-06-25 18:10:49,628 | INFO | Female singing 0.103 0.000 0.057 ✗ +2026-06-25 18:10:49,629 | INFO | Child singing 0.096 0.000 0.053 ✗ +2026-06-25 18:10:49,629 | INFO | Singing 0.091 0.000 0.050 ✗ +2026-06-25 18:10:49,629 | INFO | Mantra 0.052 0.000 0.029 ✗ +2026-06-25 18:10:49,629 | INFO | → WINNER: Music (combined=0.140) +2026-06-25 18:10:49,658 | INFO | +[773.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,658 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,658 | INFO | Music 0.298 0.000 0.164 ✓ +2026-06-25 18:10:49,659 | INFO | Female singing 0.266 0.000 0.146 ✓ +2026-06-25 18:10:49,659 | INFO | Singing 0.153 0.000 0.084 ✗ +2026-06-25 18:10:49,659 | INFO | Child singing 0.080 0.000 0.044 ✗ +2026-06-25 18:10:49,659 | INFO | → WINNER: Music (combined=0.164) +2026-06-25 18:10:49,688 | INFO | +[773.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,690 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,690 | INFO | Music 0.396 0.000 0.218 ✓ +2026-06-25 18:10:49,690 | INFO | Female singing 0.272 0.000 0.149 ✓ +2026-06-25 18:10:49,690 | INFO | Singing 0.192 0.000 0.106 ✗ +2026-06-25 18:10:49,691 | INFO | Child singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:49,691 | INFO | → WINNER: Music (combined=0.218) +2026-06-25 18:10:49,720 | INFO | +[773.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,721 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,721 | INFO | Music 0.429 0.000 0.236 ✓ +2026-06-25 18:10:49,721 | INFO | Female singing 0.276 0.000 0.152 ✓ +2026-06-25 18:10:49,721 | INFO | Singing 0.181 0.000 0.099 ✗ +2026-06-25 18:10:49,721 | INFO | Child singing 0.090 0.000 0.050 ✗ +2026-06-25 18:10:49,721 | INFO | → WINNER: Music (combined=0.236) +2026-06-25 18:10:49,754 | INFO | +[774.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,755 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,755 | INFO | Music 0.527 0.000 0.290 ✓ +2026-06-25 18:10:49,755 | INFO | Female singing 0.226 0.000 0.124 ✓ +2026-06-25 18:10:49,755 | INFO | Singing 0.212 0.000 0.117 ✗ +2026-06-25 18:10:49,756 | INFO | A capella 0.084 0.000 0.046 ✗ +2026-06-25 18:10:49,756 | INFO | → WINNER: Music (combined=0.290) +2026-06-25 18:10:49,786 | INFO | +[774.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,787 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,787 | INFO | Music 0.716 0.000 0.394 ✓ +2026-06-25 18:10:49,788 | INFO | Singing 0.218 0.000 0.120 ✓ +2026-06-25 18:10:49,788 | INFO | A capella 0.116 0.000 0.064 ✗ +2026-06-25 18:10:49,788 | INFO | Female singing 0.087 0.000 0.048 ✗ +2026-06-25 18:10:49,788 | INFO | Yodeling 0.073 0.000 0.040 ✗ +2026-06-25 18:10:49,788 | INFO | → WINNER: Music (combined=0.394) +2026-06-25 18:10:49,817 | INFO | +[774.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,817 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,817 | INFO | Music 0.366 0.000 0.201 ✓ +2026-06-25 18:10:49,817 | INFO | → WINNER: Music (combined=0.201) +2026-06-25 18:10:49,845 | INFO | +[774.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,845 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,845 | INFO | Music 0.477 0.000 0.262 ✓ +2026-06-25 18:10:49,845 | INFO | → WINNER: Music (combined=0.262) +2026-06-25 18:10:49,878 | INFO | +[774.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,879 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,880 | INFO | Animal 0.046 0.402 0.206 ✓ +2026-06-25 18:10:49,880 | INFO | Music 0.099 0.000 0.054 ✗ +2026-06-25 18:10:49,880 | INFO | → WINNER: Animal (combined=0.206) +2026-06-25 18:10:49,910 | INFO | +[775.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,910 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,910 | INFO | Music 0.174 0.000 0.096 ✗ +2026-06-25 18:10:49,910 | INFO | → no winner +2026-06-25 18:10:49,940 | INFO | +[775.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,940 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,941 | INFO | Animal 0.039 0.402 0.202 ✓ +2026-06-25 18:10:49,941 | INFO | Music 0.114 0.000 0.063 ✗ +2026-06-25 18:10:49,941 | INFO | Whimper 0.074 0.000 0.041 ✗ +2026-06-25 18:10:49,941 | INFO | Chuckle, chortle 0.072 0.000 0.040 ✗ +2026-06-25 18:10:49,941 | INFO | Laughter 0.072 0.000 0.040 ✗ +2026-06-25 18:10:49,942 | INFO | Baby cry, infant cry 0.053 0.000 0.029 ✗ +2026-06-25 18:10:49,942 | INFO | → WINNER: Animal (combined=0.202) +2026-06-25 18:10:49,971 | INFO | +[775.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:49,972 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:49,972 | INFO | Animal 0.207 0.402 0.295 ✓ +2026-06-25 18:10:49,972 | INFO | Domestic animals, pets 0.127 0.329 0.218 ✓ +2026-06-25 18:10:49,972 | INFO | Dog 0.183 0.000 0.101 ✗ +2026-06-25 18:10:49,973 | INFO | Music 0.133 0.000 0.073 ✗ +2026-06-25 18:10:49,973 | INFO | Bow-wow 0.126 0.000 0.069 ✗ +2026-06-25 18:10:49,973 | INFO | Whimper (dog) 0.046 0.000 0.025 ✗ +2026-06-25 18:10:49,973 | INFO | → WINNER: Animal (combined=0.295) +2026-06-25 18:10:50,002 | INFO | +[775.60s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:50,002 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,002 | INFO | Music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:50,003 | INFO | → no winner +2026-06-25 18:10:50,032 | INFO | +[775.80s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:50,032 | INFO | → no winner +2026-06-25 18:10:50,061 | INFO | +[776.00s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:50,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,062 | INFO | Vehicle 0.126 0.000 0.069 ✗ +2026-06-25 18:10:50,062 | INFO | Outside, urban or manmade 0.084 0.000 0.046 ✗ +2026-06-25 18:10:50,063 | INFO | → no winner +2026-06-25 18:10:50,092 | INFO | +[776.20s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:50,092 | INFO | → no winner +2026-06-25 18:10:50,123 | INFO | +[776.40s] AMBIENT | scene='The image shows a group of four people sitting on the ground in a fore' +2026-06-25 18:10:50,123 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,123 | INFO | Music 0.117 0.000 0.064 ✗ +2026-06-25 18:10:50,123 | INFO | Inside, small room 0.059 0.000 0.032 ✗ +2026-06-25 18:10:50,123 | INFO | → no winner +2026-06-25 18:10:50,160 | INFO | +[793.20s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-06-25 18:10:50,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,162 | INFO | Music 0.788 0.000 0.433 ✓ +2026-06-25 18:10:50,162 | INFO | Middle Eastern music 0.312 0.000 0.172 ✓ +2026-06-25 18:10:50,162 | INFO | Tabla 0.216 0.000 0.119 ✗ +2026-06-25 18:10:50,162 | INFO | Folk music 0.194 0.000 0.107 ✗ +2026-06-25 18:10:50,162 | INFO | Percussion 0.132 0.000 0.073 ✗ +2026-06-25 18:10:50,162 | INFO | Salsa music 0.126 0.000 0.069 ✗ +2026-06-25 18:10:50,162 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:10:50,192 | INFO | +[793.40s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-06-25 18:10:50,192 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,192 | INFO | Music 0.768 0.000 0.422 ✓ +2026-06-25 18:10:50,192 | INFO | Middle Eastern music 0.367 0.000 0.202 ✓ +2026-06-25 18:10:50,193 | INFO | Sitar 0.106 0.240 0.166 ✓ +2026-06-25 18:10:50,193 | INFO | Tabla 0.274 0.000 0.150 ✓ +2026-06-25 18:10:50,193 | INFO | Folk music 0.186 0.000 0.102 ✗ +2026-06-25 18:10:50,193 | INFO | Musical instrument 0.152 0.000 0.084 ✗ +2026-06-25 18:10:50,193 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:10:50,223 | INFO | +[793.60s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-06-25 18:10:50,223 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,223 | INFO | Music 0.761 0.000 0.418 ✓ +2026-06-25 18:10:50,223 | INFO | Tabla 0.563 0.000 0.310 ✓ +2026-06-25 18:10:50,223 | INFO | Sitar 0.102 0.240 0.164 ✓ +2026-06-25 18:10:50,223 | INFO | Middle Eastern music 0.270 0.000 0.149 ✓ +2026-06-25 18:10:50,224 | INFO | Percussion 0.241 0.000 0.133 ✓ +2026-06-25 18:10:50,224 | INFO | Musical instrument 0.189 0.000 0.104 ✗ +2026-06-25 18:10:50,224 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:10:50,255 | INFO | +[793.80s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-06-25 18:10:50,256 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,256 | INFO | Music 0.825 0.000 0.454 ✓ +2026-06-25 18:10:50,256 | INFO | Sitar 0.088 0.240 0.156 ✓ +2026-06-25 18:10:50,256 | INFO | Middle Eastern music 0.224 0.000 0.123 ✓ +2026-06-25 18:10:50,256 | INFO | Musical instrument 0.177 0.000 0.097 ✗ +2026-06-25 18:10:50,257 | INFO | Traditional music 0.132 0.000 0.072 ✗ +2026-06-25 18:10:50,257 | INFO | Tabla 0.129 0.000 0.071 ✗ +2026-06-25 18:10:50,258 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:50,287 | INFO | +[794.00s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-06-25 18:10:50,287 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,287 | INFO | Music 0.613 0.000 0.337 ✓ +2026-06-25 18:10:50,287 | INFO | Musical instrument 0.134 0.000 0.074 ✗ +2026-06-25 18:10:50,287 | INFO | Tabla 0.055 0.000 0.030 ✗ +2026-06-25 18:10:50,287 | INFO | → WINNER: Music (combined=0.337) +2026-06-25 18:10:50,316 | INFO | +[794.20s] AMBIENT | scene='The image shows a man and a woman sitting on the ground in a forested ' +2026-06-25 18:10:50,317 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,317 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:10:50,318 | INFO | Musical instrument 0.174 0.000 0.096 ✗ +2026-06-25 18:10:50,318 | INFO | Tabla 0.080 0.000 0.044 ✗ +2026-06-25 18:10:50,318 | INFO | Drum 0.063 0.000 0.035 ✗ +2026-06-25 18:10:50,318 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:50,349 | INFO | +[794.40s] AMBIENT | scene='' +2026-06-25 18:10:50,349 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,350 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:50,350 | INFO | Musical instrument 0.275 0.000 0.151 ✓ +2026-06-25 18:10:50,350 | INFO | Traditional music 0.161 0.000 0.088 ✗ +2026-06-25 18:10:50,350 | INFO | Folk music 0.142 0.000 0.078 ✗ +2026-06-25 18:10:50,351 | INFO | Tabla 0.130 0.000 0.072 ✗ +2026-06-25 18:10:50,351 | INFO | Middle Eastern music 0.108 0.000 0.059 ✗ +2026-06-25 18:10:50,351 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:50,380 | INFO | +[794.60s] AMBIENT | scene='' +2026-06-25 18:10:50,380 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,381 | INFO | Music 0.759 0.000 0.418 ✓ +2026-06-25 18:10:50,381 | INFO | Singing 0.174 0.000 0.096 ✗ +2026-06-25 18:10:50,381 | INFO | Musical instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:10:50,382 | INFO | Tabla 0.133 0.000 0.073 ✗ +2026-06-25 18:10:50,382 | INFO | Carnatic music 0.129 0.000 0.071 ✗ +2026-06-25 18:10:50,382 | INFO | Music of Bollywood 0.047 0.000 0.026 ✗ +2026-06-25 18:10:50,382 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:10:50,412 | INFO | +[794.80s] AMBIENT | scene='' +2026-06-25 18:10:50,412 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,414 | INFO | Music 0.841 0.000 0.463 ✓ +2026-06-25 18:10:50,414 | INFO | Tabla 0.326 0.000 0.179 ✓ +2026-06-25 18:10:50,414 | INFO | Musical instrument 0.186 0.000 0.102 ✗ +2026-06-25 18:10:50,414 | INFO | Singing 0.151 0.000 0.083 ✗ +2026-06-25 18:10:50,414 | INFO | Folk music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:50,414 | INFO | Percussion 0.097 0.000 0.053 ✗ +2026-06-25 18:10:50,415 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:50,443 | INFO | +[795.00s] AMBIENT | scene='' +2026-06-25 18:10:50,444 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,444 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:10:50,444 | INFO | Tabla 0.465 0.000 0.256 ✓ +2026-06-25 18:10:50,446 | INFO | Musical instrument 0.218 0.000 0.120 ✓ +2026-06-25 18:10:50,446 | INFO | Percussion 0.157 0.000 0.086 ✗ +2026-06-25 18:10:50,446 | INFO | Folk music 0.140 0.000 0.077 ✗ +2026-06-25 18:10:50,446 | INFO | Middle Eastern music 0.128 0.000 0.070 ✗ +2026-06-25 18:10:50,446 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:50,476 | INFO | +[795.20s] AMBIENT | scene='' +2026-06-25 18:10:50,476 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,476 | INFO | Music 0.862 0.000 0.474 ✓ +2026-06-25 18:10:50,477 | INFO | Salsa music 0.294 0.000 0.162 ✓ +2026-06-25 18:10:50,477 | INFO | Music of Latin America 0.235 0.000 0.129 ✓ +2026-06-25 18:10:50,477 | INFO | Singing 0.228 0.000 0.126 ✓ +2026-06-25 18:10:50,477 | INFO | Musical instrument 0.172 0.000 0.095 ✗ +2026-06-25 18:10:50,478 | INFO | Banjo 0.074 0.000 0.041 ✗ +2026-06-25 18:10:50,478 | INFO | → WINNER: Music (combined=0.474) +2026-06-25 18:10:50,507 | INFO | +[795.40s] AMBIENT | scene='' +2026-06-25 18:10:50,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,508 | INFO | Music 0.865 0.000 0.476 ✓ +2026-06-25 18:10:50,508 | INFO | Salsa music 0.356 0.000 0.196 ✓ +2026-06-25 18:10:50,508 | INFO | Musical instrument 0.305 0.000 0.168 ✓ +2026-06-25 18:10:50,509 | INFO | Banjo 0.278 0.000 0.153 ✓ +2026-06-25 18:10:50,509 | INFO | Music of Latin America 0.194 0.000 0.106 ✗ +2026-06-25 18:10:50,509 | INFO | Singing 0.174 0.000 0.096 ✗ +2026-06-25 18:10:50,509 | INFO | → WINNER: Music (combined=0.476) +2026-06-25 18:10:50,540 | INFO | +[795.60s] AMBIENT | scene='' +2026-06-25 18:10:50,540 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,541 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:50,541 | INFO | Salsa music 0.312 0.000 0.172 ✓ +2026-06-25 18:10:50,541 | INFO | Banjo 0.295 0.000 0.162 ✓ +2026-06-25 18:10:50,541 | INFO | Musical instrument 0.277 0.000 0.152 ✓ +2026-06-25 18:10:50,541 | INFO | Music of Latin America 0.114 0.000 0.063 ✗ +2026-06-25 18:10:50,542 | INFO | Traditional music 0.097 0.000 0.053 ✗ +2026-06-25 18:10:50,542 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:50,571 | INFO | +[795.80s] AMBIENT | scene='' +2026-06-25 18:10:50,572 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,572 | INFO | Music 0.792 0.000 0.435 ✓ +2026-06-25 18:10:50,572 | INFO | Singing 0.196 0.000 0.108 ✗ +2026-06-25 18:10:50,572 | INFO | Musical instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:10:50,572 | INFO | Crowd 0.032 0.000 0.018 ✗ +2026-06-25 18:10:50,573 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:50,602 | INFO | +[796.00s] AMBIENT | scene='' +2026-06-25 18:10:50,602 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,602 | INFO | Music 0.686 0.000 0.377 ✓ +2026-06-25 18:10:50,602 | INFO | Musical instrument 0.175 0.000 0.096 ✗ +2026-06-25 18:10:50,604 | INFO | Tabla 0.142 0.000 0.078 ✗ +2026-06-25 18:10:50,604 | INFO | Singing 0.126 0.000 0.069 ✗ +2026-06-25 18:10:50,604 | INFO | Carnatic music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:50,604 | INFO | Middle Eastern music 0.112 0.000 0.061 ✗ +2026-06-25 18:10:50,604 | INFO | → WINNER: Music (combined=0.377) +2026-06-25 18:10:50,634 | INFO | +[796.20s] AMBIENT | scene='' +2026-06-25 18:10:50,634 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,634 | INFO | Music 0.677 0.000 0.373 ✓ +2026-06-25 18:10:50,634 | INFO | Singing 0.202 0.000 0.111 ✗ +2026-06-25 18:10:50,634 | INFO | Carnatic music 0.116 0.000 0.064 ✗ +2026-06-25 18:10:50,635 | INFO | Musical instrument 0.114 0.000 0.063 ✗ +2026-06-25 18:10:50,635 | INFO | → WINNER: Music (combined=0.373) +2026-06-25 18:10:50,664 | INFO | +[796.40s] AMBIENT | scene='' +2026-06-25 18:10:50,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,665 | INFO | Music 0.629 0.000 0.346 ✓ +2026-06-25 18:10:50,665 | INFO | Carnatic music 0.296 0.000 0.163 ✓ +2026-06-25 18:10:50,666 | INFO | Singing 0.237 0.000 0.131 ✓ +2026-06-25 18:10:50,666 | INFO | Musical instrument 0.126 0.000 0.070 ✗ +2026-06-25 18:10:50,666 | INFO | Tabla 0.097 0.000 0.053 ✗ +2026-06-25 18:10:50,666 | INFO | → WINNER: Music (combined=0.346) +2026-06-25 18:10:50,698 | INFO | +[796.60s] AMBIENT | scene='' +2026-06-25 18:10:50,698 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,699 | INFO | Music 0.586 0.000 0.322 ✓ +2026-06-25 18:10:50,699 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:10:50,699 | INFO | Animal 0.067 0.000 0.037 ✗ +2026-06-25 18:10:50,700 | INFO | Domestic animals, pets 0.050 0.000 0.027 ✗ +2026-06-25 18:10:50,700 | INFO | → WINNER: Music (combined=0.322) +2026-06-25 18:10:50,729 | INFO | +[796.80s] AMBIENT | scene='' +2026-06-25 18:10:50,729 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,729 | INFO | Music 0.821 0.000 0.452 ✓ +2026-06-25 18:10:50,729 | INFO | Musical instrument 0.186 0.000 0.102 ✗ +2026-06-25 18:10:50,731 | INFO | Percussion 0.168 0.000 0.092 ✗ +2026-06-25 18:10:50,731 | INFO | Wood block 0.120 0.000 0.066 ✗ +2026-06-25 18:10:50,731 | INFO | Drum 0.103 0.000 0.056 ✗ +2026-06-25 18:10:50,732 | INFO | Tabla 0.091 0.000 0.050 ✗ +2026-06-25 18:10:50,732 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:50,760 | INFO | +[797.00s] AMBIENT | scene='' +2026-06-25 18:10:50,760 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,763 | INFO | Music 0.863 0.000 0.475 ✓ +2026-06-25 18:10:50,763 | INFO | Singing 0.293 0.000 0.161 ✓ +2026-06-25 18:10:50,763 | INFO | Salsa music 0.289 0.000 0.159 ✓ +2026-06-25 18:10:50,763 | INFO | Music of Latin America 0.205 0.000 0.113 ✗ +2026-06-25 18:10:50,764 | INFO | Musical instrument 0.195 0.000 0.107 ✗ +2026-06-25 18:10:50,764 | INFO | Middle Eastern music 0.127 0.000 0.070 ✗ +2026-06-25 18:10:50,764 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:50,794 | INFO | +[797.20s] AMBIENT | scene='' +2026-06-25 18:10:50,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,794 | INFO | Music 0.853 0.000 0.469 ✓ +2026-06-25 18:10:50,794 | INFO | Singing 0.205 0.000 0.113 ✗ +2026-06-25 18:10:50,794 | INFO | Musical instrument 0.163 0.000 0.089 ✗ +2026-06-25 18:10:50,796 | INFO | Salsa music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:50,796 | INFO | Music of Latin America 0.143 0.000 0.079 ✗ +2026-06-25 18:10:50,796 | INFO | Middle Eastern music 0.125 0.000 0.069 ✗ +2026-06-25 18:10:50,796 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:50,825 | INFO | +[797.40s] AMBIENT | scene='' +2026-06-25 18:10:50,825 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,825 | INFO | Music 0.843 0.000 0.463 ✓ +2026-06-25 18:10:50,825 | INFO | Musical instrument 0.239 0.000 0.131 ✓ +2026-06-25 18:10:50,825 | INFO | Singing 0.132 0.000 0.073 ✗ +2026-06-25 18:10:50,825 | INFO | Middle Eastern music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:50,826 | INFO | Banjo 0.106 0.000 0.058 ✗ +2026-06-25 18:10:50,826 | INFO | Plucked string instrument 0.058 0.000 0.032 ✗ +2026-06-25 18:10:50,826 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:10:50,853 | INFO | +[797.60s] AMBIENT | scene='' +2026-06-25 18:10:50,853 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,853 | INFO | Music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:50,853 | INFO | → no winner +2026-06-25 18:10:50,880 | INFO | +[797.80s] AMBIENT | scene='' +2026-06-25 18:10:50,886 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,886 | INFO | Music 0.161 0.000 0.089 ✗ +2026-06-25 18:10:50,887 | INFO | → no winner +2026-06-25 18:10:50,917 | INFO | +[798.00s] AMBIENT | scene='' +2026-06-25 18:10:50,917 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,918 | INFO | Music 0.489 0.000 0.269 ✓ +2026-06-25 18:10:50,918 | INFO | Singing 0.184 0.000 0.101 ✗ +2026-06-25 18:10:50,918 | INFO | → WINNER: Music (combined=0.269) +2026-06-25 18:10:50,947 | INFO | +[798.20s] AMBIENT | scene='' +2026-06-25 18:10:50,948 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,948 | INFO | Music 0.500 0.000 0.275 ✓ +2026-06-25 18:10:50,948 | INFO | Singing 0.174 0.000 0.096 ✗ +2026-06-25 18:10:50,948 | INFO | Yodeling 0.059 0.000 0.032 ✗ +2026-06-25 18:10:50,949 | INFO | → WINNER: Music (combined=0.275) +2026-06-25 18:10:50,979 | INFO | +[798.40s] AMBIENT | scene='' +2026-06-25 18:10:50,979 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:50,979 | INFO | Music 0.596 0.000 0.328 ✓ +2026-06-25 18:10:50,980 | INFO | Singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:50,980 | INFO | → WINNER: Music (combined=0.328) +2026-06-25 18:10:51,009 | INFO | +[798.60s] AMBIENT | scene='' +2026-06-25 18:10:51,009 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,009 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:10:51,009 | INFO | Tabla 0.272 0.000 0.149 ✓ +2026-06-25 18:10:51,011 | INFO | Percussion 0.259 0.000 0.142 ✓ +2026-06-25 18:10:51,011 | INFO | Musical instrument 0.243 0.000 0.134 ✓ +2026-06-25 18:10:51,012 | INFO | Folk music 0.169 0.000 0.093 ✗ +2026-06-25 18:10:51,012 | INFO | Middle Eastern music 0.168 0.000 0.092 ✗ +2026-06-25 18:10:51,012 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:51,040 | INFO | +[798.80s] AMBIENT | scene='' +2026-06-25 18:10:51,040 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,040 | INFO | Music 0.854 0.000 0.469 ✓ +2026-06-25 18:10:51,040 | INFO | Banjo 0.598 0.000 0.329 ✓ +2026-06-25 18:10:51,040 | INFO | Musical instrument 0.441 0.000 0.242 ✓ +2026-06-25 18:10:51,043 | INFO | Bluegrass 0.312 0.000 0.172 ✓ +2026-06-25 18:10:51,043 | INFO | Country 0.280 0.000 0.154 ✓ +2026-06-25 18:10:51,043 | INFO | Singing 0.238 0.000 0.131 ✓ +2026-06-25 18:10:51,043 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:51,074 | INFO | +[799.00s] AMBIENT | scene='' +2026-06-25 18:10:51,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,074 | INFO | Music 0.846 0.000 0.466 ✓ +2026-06-25 18:10:51,074 | INFO | Salsa music 0.347 0.000 0.191 ✓ +2026-06-25 18:10:51,074 | INFO | Musical instrument 0.243 0.000 0.134 ✓ +2026-06-25 18:10:51,075 | INFO | Singing 0.178 0.000 0.098 ✗ +2026-06-25 18:10:51,075 | INFO | Music of Latin America 0.163 0.000 0.090 ✗ +2026-06-25 18:10:51,075 | INFO | Banjo 0.161 0.000 0.089 ✗ +2026-06-25 18:10:51,075 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:51,105 | INFO | +[799.20s] AMBIENT | scene='' +2026-06-25 18:10:51,105 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,105 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:10:51,105 | INFO | Singing 0.147 0.000 0.081 ✗ +2026-06-25 18:10:51,106 | INFO | Musical instrument 0.128 0.000 0.070 ✗ +2026-06-25 18:10:51,106 | INFO | Banjo 0.082 0.000 0.045 ✗ +2026-06-25 18:10:51,106 | INFO | Country 0.071 0.000 0.039 ✗ +2026-06-25 18:10:51,106 | INFO | Bluegrass 0.064 0.000 0.035 ✗ +2026-06-25 18:10:51,106 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:10:51,137 | INFO | +[799.40s] AMBIENT | scene='' +2026-06-25 18:10:51,137 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,137 | INFO | Music 0.841 0.000 0.462 ✓ +2026-06-25 18:10:51,137 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:10:51,138 | INFO | Child singing 0.127 0.000 0.070 ✗ +2026-06-25 18:10:51,138 | INFO | Female singing 0.114 0.000 0.062 ✗ +2026-06-25 18:10:51,138 | INFO | Musical instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:10:51,138 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:10:51,167 | INFO | +[799.60s] AMBIENT | scene='' +2026-06-25 18:10:51,168 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,168 | INFO | Child singing 0.449 0.000 0.247 ✓ +2026-06-25 18:10:51,168 | INFO | Music 0.226 0.000 0.124 ✓ +2026-06-25 18:10:51,168 | INFO | Female singing 0.198 0.000 0.109 ✗ +2026-06-25 18:10:51,168 | INFO | Singing 0.108 0.000 0.059 ✗ +2026-06-25 18:10:51,168 | INFO | Synthetic singing 0.090 0.000 0.049 ✗ +2026-06-25 18:10:51,170 | INFO | → WINNER: Child singing (combined=0.247) +2026-06-25 18:10:51,199 | INFO | +[799.80s] AMBIENT | scene='' +2026-06-25 18:10:51,199 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,200 | INFO | Music 0.574 0.000 0.316 ✓ +2026-06-25 18:10:51,200 | INFO | Child singing 0.189 0.000 0.104 ✗ +2026-06-25 18:10:51,200 | INFO | Singing 0.162 0.000 0.089 ✗ +2026-06-25 18:10:51,200 | INFO | Middle Eastern music 0.108 0.000 0.060 ✗ +2026-06-25 18:10:51,200 | INFO | Female singing 0.106 0.000 0.058 ✗ +2026-06-25 18:10:51,201 | INFO | Musical instrument 0.071 0.000 0.039 ✗ +2026-06-25 18:10:51,201 | INFO | → WINNER: Music (combined=0.316) +2026-06-25 18:10:51,230 | INFO | +[800.00s] AMBIENT | scene='' +2026-06-25 18:10:51,230 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,230 | INFO | Music 0.698 0.000 0.384 ✓ +2026-06-25 18:10:51,230 | INFO | Musical instrument 0.207 0.000 0.114 ✗ +2026-06-25 18:10:51,230 | INFO | Tabla 0.172 0.000 0.095 ✗ +2026-06-25 18:10:51,230 | INFO | Traditional music 0.152 0.000 0.084 ✗ +2026-06-25 18:10:51,232 | INFO | Middle Eastern music 0.129 0.000 0.071 ✗ +2026-06-25 18:10:51,232 | INFO | Folk music 0.122 0.000 0.067 ✗ +2026-06-25 18:10:51,232 | INFO | → WINNER: Music (combined=0.384) +2026-06-25 18:10:51,261 | INFO | +[800.20s] AMBIENT | scene='' +2026-06-25 18:10:51,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,261 | INFO | Music 0.814 0.000 0.448 ✓ +2026-06-25 18:10:51,261 | INFO | Musical instrument 0.329 0.000 0.181 ✓ +2026-06-25 18:10:51,262 | INFO | Tabla 0.239 0.000 0.132 ✓ +2026-06-25 18:10:51,262 | INFO | Traditional music 0.182 0.000 0.100 ✗ +2026-06-25 18:10:51,262 | INFO | Percussion 0.160 0.000 0.088 ✗ +2026-06-25 18:10:51,263 | INFO | Folk music 0.148 0.000 0.081 ✗ +2026-06-25 18:10:51,263 | INFO | → WINNER: Music (combined=0.448) +2026-06-25 18:10:51,292 | INFO | +[800.40s] AMBIENT | scene='' +2026-06-25 18:10:51,292 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,292 | INFO | Music 0.830 0.000 0.456 ✓ +2026-06-25 18:10:51,292 | INFO | Percussion 0.279 0.000 0.153 ✓ +2026-06-25 18:10:51,292 | INFO | Tabla 0.259 0.000 0.143 ✓ +2026-06-25 18:10:51,292 | INFO | Musical instrument 0.234 0.000 0.129 ✓ +2026-06-25 18:10:51,294 | INFO | Drum 0.202 0.000 0.111 ✗ +2026-06-25 18:10:51,294 | INFO | Folk music 0.176 0.000 0.097 ✗ +2026-06-25 18:10:51,294 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:51,323 | INFO | +[800.60s] AMBIENT | scene='' +2026-06-25 18:10:51,323 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,323 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:10:51,323 | INFO | Musical instrument 0.206 0.000 0.113 ✗ +2026-06-25 18:10:51,323 | INFO | Percussion 0.199 0.000 0.109 ✗ +2026-06-25 18:10:51,323 | INFO | Middle Eastern music 0.189 0.000 0.104 ✗ +2026-06-25 18:10:51,323 | INFO | Folk music 0.181 0.000 0.100 ✗ +2026-06-25 18:10:51,323 | INFO | Tabla 0.178 0.000 0.098 ✗ +2026-06-25 18:10:51,323 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:51,356 | INFO | +[800.80s] AMBIENT | scene='' +2026-06-25 18:10:51,356 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,356 | INFO | Music 0.861 0.000 0.474 ✓ +2026-06-25 18:10:51,356 | INFO | Salsa music 0.511 0.000 0.281 ✓ +2026-06-25 18:10:51,356 | INFO | Musical instrument 0.235 0.000 0.129 ✓ +2026-06-25 18:10:51,358 | INFO | Music of Latin America 0.210 0.000 0.116 ✗ +2026-06-25 18:10:51,358 | INFO | Singing 0.113 0.000 0.062 ✗ +2026-06-25 18:10:51,358 | INFO | Folk music 0.096 0.000 0.053 ✗ +2026-06-25 18:10:51,358 | INFO | → WINNER: Music (combined=0.474) +2026-06-25 18:10:51,387 | INFO | +[801.00s] AMBIENT | scene='' +2026-06-25 18:10:51,388 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,388 | INFO | Music 0.848 0.000 0.466 ✓ +2026-06-25 18:10:51,388 | INFO | Salsa music 0.553 0.000 0.304 ✓ +2026-06-25 18:10:51,389 | INFO | Music of Latin America 0.216 0.000 0.119 ✗ +2026-06-25 18:10:51,389 | INFO | Musical instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:10:51,389 | INFO | Middle Eastern music 0.112 0.000 0.062 ✗ +2026-06-25 18:10:51,389 | INFO | Folk music 0.095 0.000 0.052 ✗ +2026-06-25 18:10:51,389 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:51,418 | INFO | +[801.20s] AMBIENT | scene='' +2026-06-25 18:10:51,418 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,419 | INFO | Music 0.825 0.000 0.454 ✓ +2026-06-25 18:10:51,419 | INFO | Middle Eastern music 0.246 0.000 0.135 ✓ +2026-06-25 18:10:51,419 | INFO | Folk music 0.188 0.000 0.103 ✗ +2026-06-25 18:10:51,420 | INFO | Tabla 0.132 0.000 0.073 ✗ +2026-06-25 18:10:51,420 | INFO | Musical instrument 0.128 0.000 0.070 ✗ +2026-06-25 18:10:51,420 | INFO | Traditional music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:51,420 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:51,450 | INFO | +[801.40s] AMBIENT | scene='' +2026-06-25 18:10:51,450 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,450 | INFO | Music 0.654 0.000 0.360 ✓ +2026-06-25 18:10:51,450 | INFO | Musical instrument 0.076 0.000 0.042 ✗ +2026-06-25 18:10:51,450 | INFO | → WINNER: Music (combined=0.360) +2026-06-25 18:10:51,480 | INFO | +[801.60s] AMBIENT | scene='' +2026-06-25 18:10:51,481 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,481 | INFO | Music 0.255 0.000 0.140 ✓ +2026-06-25 18:10:51,481 | INFO | Singing 0.115 0.000 0.063 ✗ +2026-06-25 18:10:51,481 | INFO | → WINNER: Music (combined=0.140) +2026-06-25 18:10:51,511 | INFO | +[801.80s] AMBIENT | scene='' +2026-06-25 18:10:51,512 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,512 | INFO | Music 0.426 0.000 0.235 ✓ +2026-06-25 18:10:51,512 | INFO | Singing 0.194 0.000 0.107 ✗ +2026-06-25 18:10:51,513 | INFO | → WINNER: Music (combined=0.235) +2026-06-25 18:10:51,543 | INFO | +[802.00s] AMBIENT | scene='' +2026-06-25 18:10:51,543 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,543 | INFO | Music 0.500 0.000 0.275 ✓ +2026-06-25 18:10:51,544 | INFO | Singing 0.331 0.000 0.182 ✓ +2026-06-25 18:10:51,544 | INFO | Female singing 0.168 0.000 0.092 ✗ +2026-06-25 18:10:51,544 | INFO | Child singing 0.107 0.000 0.059 ✗ +2026-06-25 18:10:51,544 | INFO | Music of Bollywood 0.037 0.000 0.020 ✗ +2026-06-25 18:10:51,544 | INFO | → WINNER: Music (combined=0.275) +2026-06-25 18:10:51,572 | INFO | +[802.20s] AMBIENT | scene='' +2026-06-25 18:10:51,572 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,572 | INFO | Music 0.713 0.000 0.392 ✓ +2026-06-25 18:10:51,572 | INFO | Singing 0.345 0.000 0.190 ✓ +2026-06-25 18:10:51,572 | INFO | Female singing 0.153 0.000 0.084 ✗ +2026-06-25 18:10:51,572 | INFO | Child singing 0.093 0.000 0.051 ✗ +2026-06-25 18:10:51,572 | INFO | → WINNER: Music (combined=0.392) +2026-06-25 18:10:51,605 | INFO | +[802.40s] AMBIENT | scene='' +2026-06-25 18:10:51,606 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,606 | INFO | Music 0.835 0.000 0.459 ✓ +2026-06-25 18:10:51,606 | INFO | Tabla 0.201 0.000 0.110 ✗ +2026-06-25 18:10:51,606 | INFO | Musical instrument 0.197 0.000 0.108 ✗ +2026-06-25 18:10:51,606 | INFO | Singing 0.192 0.000 0.106 ✗ +2026-06-25 18:10:51,606 | INFO | Folk music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:51,607 | INFO | Salsa music 0.110 0.000 0.061 ✗ +2026-06-25 18:10:51,607 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:51,636 | INFO | +[802.60s] AMBIENT | scene='' +2026-06-25 18:10:51,637 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,637 | INFO | Music 0.871 0.000 0.479 ✓ +2026-06-25 18:10:51,637 | INFO | Salsa music 0.421 0.000 0.231 ✓ +2026-06-25 18:10:51,637 | INFO | Musical instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:10:51,638 | INFO | Music of Latin America 0.204 0.000 0.112 ✗ +2026-06-25 18:10:51,638 | INFO | Singing 0.115 0.000 0.063 ✗ +2026-06-25 18:10:51,638 | INFO | Folk music 0.097 0.000 0.053 ✗ +2026-06-25 18:10:51,638 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:51,667 | INFO | +[802.80s] AMBIENT | scene='' +2026-06-25 18:10:51,668 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,668 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:51,668 | INFO | Salsa music 0.493 0.000 0.271 ✓ +2026-06-25 18:10:51,668 | INFO | Musical instrument 0.273 0.000 0.150 ✓ +2026-06-25 18:10:51,668 | INFO | Music of Latin America 0.232 0.000 0.128 ✓ +2026-06-25 18:10:51,668 | INFO | Singing 0.120 0.000 0.066 ✗ +2026-06-25 18:10:51,669 | INFO | Percussion 0.093 0.000 0.051 ✗ +2026-06-25 18:10:51,669 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:51,698 | INFO | +[803.00s] AMBIENT | scene='' +2026-06-25 18:10:51,699 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,699 | INFO | Music 0.819 0.000 0.451 ✓ +2026-06-25 18:10:51,699 | INFO | Salsa music 0.434 0.000 0.239 ✓ +2026-06-25 18:10:51,699 | INFO | Traditional music 0.257 0.000 0.141 ✓ +2026-06-25 18:10:51,699 | INFO | Musical instrument 0.214 0.000 0.118 ✗ +2026-06-25 18:10:51,700 | INFO | Folk music 0.188 0.000 0.104 ✗ +2026-06-25 18:10:51,700 | INFO | Middle Eastern music 0.172 0.000 0.095 ✗ +2026-06-25 18:10:51,700 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:51,729 | INFO | +[803.20s] AMBIENT | scene='' +2026-06-25 18:10:51,729 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,729 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:10:51,729 | INFO | Singing 0.166 0.000 0.091 ✗ +2026-06-25 18:10:51,729 | INFO | Musical instrument 0.129 0.000 0.071 ✗ +2026-06-25 18:10:51,729 | INFO | Salsa music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:51,729 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:10:51,759 | INFO | +[803.40s] AMBIENT | scene='' +2026-06-25 18:10:51,759 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,759 | INFO | Music 0.352 0.000 0.194 ✓ +2026-06-25 18:10:51,759 | INFO | Singing 0.116 0.000 0.064 ✗ +2026-06-25 18:10:51,761 | INFO | → WINNER: Music (combined=0.194) +2026-06-25 18:10:51,791 | INFO | +[803.60s] AMBIENT | scene='' +2026-06-25 18:10:51,791 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,791 | INFO | Music 0.632 0.000 0.347 ✓ +2026-06-25 18:10:51,791 | INFO | Singing 0.258 0.000 0.142 ✓ +2026-06-25 18:10:51,791 | INFO | Middle Eastern music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:51,791 | INFO | Musical instrument 0.080 0.000 0.044 ✗ +2026-06-25 18:10:51,792 | INFO | Yodeling 0.055 0.000 0.030 ✗ +2026-06-25 18:10:51,792 | INFO | → WINNER: Music (combined=0.347) +2026-06-25 18:10:51,822 | INFO | +[803.80s] AMBIENT | scene='' +2026-06-25 18:10:51,823 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,823 | INFO | Music 0.539 0.000 0.296 ✓ +2026-06-25 18:10:51,823 | INFO | Carnatic music 0.330 0.000 0.182 ✓ +2026-06-25 18:10:51,823 | INFO | Singing 0.324 0.000 0.178 ✓ +2026-06-25 18:10:51,823 | INFO | Musical instrument 0.079 0.000 0.044 ✗ +2026-06-25 18:10:51,823 | INFO | Tabla 0.072 0.000 0.040 ✗ +2026-06-25 18:10:51,824 | INFO | → WINNER: Music (combined=0.296) +2026-06-25 18:10:51,853 | INFO | +[804.00s] AMBIENT | scene='' +2026-06-25 18:10:51,854 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,854 | INFO | Music 0.677 0.000 0.372 ✓ +2026-06-25 18:10:51,854 | INFO | Singing 0.297 0.000 0.163 ✓ +2026-06-25 18:10:51,854 | INFO | Female singing 0.157 0.000 0.086 ✗ +2026-06-25 18:10:51,855 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:10:51,880 | INFO | +[804.20s] AMBIENT | scene='' +2026-06-25 18:10:51,880 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,880 | INFO | Music 0.814 0.000 0.448 ✓ +2026-06-25 18:10:51,880 | INFO | Tabla 0.342 0.000 0.188 ✓ +2026-06-25 18:10:51,880 | INFO | Singing 0.253 0.000 0.139 ✓ +2026-06-25 18:10:51,880 | INFO | Folk music 0.153 0.000 0.084 ✗ +2026-06-25 18:10:51,880 | INFO | Percussion 0.146 0.000 0.080 ✗ +2026-06-25 18:10:51,880 | INFO | Musical instrument 0.138 0.000 0.076 ✗ +2026-06-25 18:10:51,886 | INFO | → WINNER: Music (combined=0.448) +2026-06-25 18:10:51,915 | INFO | +[804.40s] AMBIENT | scene='' +2026-06-25 18:10:51,916 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,916 | INFO | Music 0.875 0.000 0.481 ✓ +2026-06-25 18:10:51,916 | INFO | Salsa music 0.672 0.000 0.370 ✓ +2026-06-25 18:10:51,917 | INFO | Music of Latin America 0.249 0.000 0.137 ✓ +2026-06-25 18:10:51,917 | INFO | Middle Eastern music 0.238 0.000 0.131 ✓ +2026-06-25 18:10:51,917 | INFO | Folk music 0.165 0.000 0.091 ✗ +2026-06-25 18:10:51,917 | INFO | Musical instrument 0.149 0.000 0.082 ✗ +2026-06-25 18:10:51,917 | INFO | → WINNER: Music (combined=0.481) +2026-06-25 18:10:51,948 | INFO | +[804.60s] AMBIENT | scene='' +2026-06-25 18:10:51,949 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,949 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:10:51,949 | INFO | Salsa music 0.366 0.000 0.201 ✓ +2026-06-25 18:10:51,949 | INFO | Musical instrument 0.217 0.000 0.120 ✗ +2026-06-25 18:10:51,950 | INFO | Middle Eastern music 0.214 0.000 0.118 ✗ +2026-06-25 18:10:51,950 | INFO | Tabla 0.206 0.000 0.114 ✗ +2026-06-25 18:10:51,950 | INFO | Folk music 0.170 0.000 0.093 ✗ +2026-06-25 18:10:51,950 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:51,980 | INFO | +[804.80s] AMBIENT | scene='' +2026-06-25 18:10:51,980 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:51,980 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:51,980 | INFO | Salsa music 0.501 0.000 0.275 ✓ +2026-06-25 18:10:51,980 | INFO | Music of Latin America 0.203 0.000 0.112 ✗ +2026-06-25 18:10:51,980 | INFO | Musical instrument 0.192 0.000 0.106 ✗ +2026-06-25 18:10:51,980 | INFO | Singing 0.139 0.000 0.077 ✗ +2026-06-25 18:10:51,980 | INFO | Middle Eastern music 0.114 0.000 0.063 ✗ +2026-06-25 18:10:51,980 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:52,011 | INFO | +[805.00s] AMBIENT | scene='' +2026-06-25 18:10:52,012 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,012 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:52,012 | INFO | Singing 0.131 0.000 0.072 ✗ +2026-06-25 18:10:52,012 | INFO | Middle Eastern music 0.129 0.000 0.071 ✗ +2026-06-25 18:10:52,012 | INFO | Musical instrument 0.068 0.000 0.037 ✗ +2026-06-25 18:10:52,012 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:52,041 | INFO | +[805.20s] AMBIENT | scene='' +2026-06-25 18:10:52,041 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,042 | INFO | Music 0.258 0.000 0.142 ✓ +2026-06-25 18:10:52,042 | INFO | Singing 0.096 0.000 0.053 ✗ +2026-06-25 18:10:52,042 | INFO | → WINNER: Music (combined=0.142) +2026-06-25 18:10:52,071 | INFO | +[805.40s] AMBIENT | scene='' +2026-06-25 18:10:52,072 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,072 | INFO | Music 0.613 0.000 0.337 ✓ +2026-06-25 18:10:52,072 | INFO | Singing 0.231 0.000 0.127 ✓ +2026-06-25 18:10:52,073 | INFO | Yodeling 0.152 0.000 0.084 ✗ +2026-06-25 18:10:52,073 | INFO | → WINNER: Music (combined=0.337) +2026-06-25 18:10:52,102 | INFO | +[805.60s] AMBIENT | scene='' +2026-06-25 18:10:52,103 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,103 | INFO | Music 0.728 0.000 0.400 ✓ +2026-06-25 18:10:52,103 | INFO | Singing 0.226 0.000 0.124 ✓ +2026-06-25 18:10:52,104 | INFO | Musical instrument 0.116 0.000 0.064 ✗ +2026-06-25 18:10:52,104 | INFO | Yodeling 0.107 0.000 0.059 ✗ +2026-06-25 18:10:52,104 | INFO | → WINNER: Music (combined=0.400) +2026-06-25 18:10:52,130 | INFO | +[805.80s] AMBIENT | scene='' +2026-06-25 18:10:52,130 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,130 | INFO | Music 0.883 0.000 0.486 ✓ +2026-06-25 18:10:52,135 | INFO | Musical instrument 0.364 0.000 0.200 ✓ +2026-06-25 18:10:52,135 | INFO | Plucked string instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:10:52,135 | INFO | Guitar 0.112 0.000 0.061 ✗ +2026-06-25 18:10:52,136 | INFO | Singing 0.082 0.000 0.045 ✗ +2026-06-25 18:10:52,136 | INFO | → WINNER: Music (combined=0.486) +2026-06-25 18:10:52,162 | INFO | +[806.00s] AMBIENT | scene='' +2026-06-25 18:10:52,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,162 | INFO | Music 0.856 0.000 0.471 ✓ +2026-06-25 18:10:52,162 | INFO | Middle Eastern music 0.294 0.000 0.162 ✓ +2026-06-25 18:10:52,162 | INFO | Folk music 0.236 0.000 0.130 ✓ +2026-06-25 18:10:52,162 | INFO | Singing 0.151 0.000 0.083 ✗ +2026-06-25 18:10:52,162 | INFO | Traditional music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:52,162 | INFO | Musical instrument 0.128 0.000 0.071 ✗ +2026-06-25 18:10:52,162 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:52,195 | INFO | +[806.20s] AMBIENT | scene='' +2026-06-25 18:10:52,195 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,200 | INFO | Music 0.849 0.000 0.467 ✓ +2026-06-25 18:10:52,200 | INFO | Middle Eastern music 0.417 0.000 0.229 ✓ +2026-06-25 18:10:52,200 | INFO | Folk music 0.251 0.000 0.138 ✓ +2026-06-25 18:10:52,200 | INFO | Traditional music 0.227 0.000 0.125 ✓ +2026-06-25 18:10:52,200 | INFO | Singing 0.146 0.000 0.081 ✗ +2026-06-25 18:10:52,200 | INFO | Musical instrument 0.146 0.000 0.080 ✗ +2026-06-25 18:10:52,200 | INFO | → WINNER: Music (combined=0.467) +2026-06-25 18:10:52,231 | INFO | +[806.40s] AMBIENT | scene='' +2026-06-25 18:10:52,232 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,232 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:10:52,232 | INFO | Salsa music 0.223 0.000 0.123 ✓ +2026-06-25 18:10:52,233 | INFO | Music of Latin America 0.133 0.000 0.073 ✗ +2026-06-25 18:10:52,233 | INFO | Middle Eastern music 0.128 0.000 0.070 ✗ +2026-06-25 18:10:52,233 | INFO | Folk music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:52,233 | INFO | Singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:52,233 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:52,262 | INFO | +[806.60s] AMBIENT | scene='' +2026-06-25 18:10:52,262 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,262 | INFO | Music 0.834 0.000 0.459 ✓ +2026-06-25 18:10:52,263 | INFO | Child singing 0.255 0.000 0.140 ✓ +2026-06-25 18:10:52,263 | INFO | Singing 0.194 0.000 0.106 ✗ +2026-06-25 18:10:52,263 | INFO | Female singing 0.119 0.000 0.066 ✗ +2026-06-25 18:10:52,264 | INFO | Synthetic singing 0.107 0.000 0.059 ✗ +2026-06-25 18:10:52,264 | INFO | Musical instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:10:52,264 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:52,290 | INFO | +[806.80s] AMBIENT | scene='' +2026-06-25 18:10:52,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,294 | INFO | Music 0.873 0.000 0.480 ✓ +2026-06-25 18:10:52,294 | INFO | Synthetic singing 0.384 0.000 0.211 ✓ +2026-06-25 18:10:52,296 | INFO | Female singing 0.214 0.000 0.118 ✗ +2026-06-25 18:10:52,296 | INFO | Singing 0.196 0.000 0.108 ✗ +2026-06-25 18:10:52,296 | INFO | Child singing 0.098 0.000 0.054 ✗ +2026-06-25 18:10:52,296 | INFO | → WINNER: Music (combined=0.480) +2026-06-25 18:10:52,324 | INFO | +[807.00s] AMBIENT | scene='' +2026-06-25 18:10:52,324 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,324 | INFO | Music 0.368 0.000 0.203 ✓ +2026-06-25 18:10:52,324 | INFO | Child singing 0.302 0.000 0.166 ✓ +2026-06-25 18:10:52,326 | INFO | Synthetic singing 0.268 0.000 0.147 ✓ +2026-06-25 18:10:52,326 | INFO | Female singing 0.263 0.000 0.144 ✓ +2026-06-25 18:10:52,326 | INFO | Singing 0.170 0.000 0.093 ✗ +2026-06-25 18:10:52,326 | INFO | → WINNER: Music (combined=0.203) +2026-06-25 18:10:52,356 | INFO | +[807.20s] AMBIENT | scene='' +2026-06-25 18:10:52,356 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,356 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:52,356 | INFO | Singing 0.218 0.000 0.120 ✗ +2026-06-25 18:10:52,356 | INFO | Middle Eastern music 0.175 0.000 0.096 ✗ +2026-06-25 18:10:52,358 | INFO | Folk music 0.132 0.000 0.073 ✗ +2026-06-25 18:10:52,358 | INFO | Carnatic music 0.125 0.000 0.069 ✗ +2026-06-25 18:10:52,358 | INFO | Musical instrument 0.106 0.000 0.058 ✗ +2026-06-25 18:10:52,358 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:52,387 | INFO | +[807.40s] AMBIENT | scene='' +2026-06-25 18:10:52,388 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,388 | INFO | Music 0.762 0.000 0.419 ✓ +2026-06-25 18:10:52,388 | INFO | Middle Eastern music 0.198 0.000 0.109 ✗ +2026-06-25 18:10:52,388 | INFO | Tabla 0.183 0.000 0.101 ✗ +2026-06-25 18:10:52,388 | INFO | Singing 0.172 0.000 0.094 ✗ +2026-06-25 18:10:52,388 | INFO | Folk music 0.169 0.000 0.093 ✗ +2026-06-25 18:10:52,390 | INFO | Musical instrument 0.124 0.000 0.068 ✗ +2026-06-25 18:10:52,390 | INFO | → WINNER: Music (combined=0.419) +2026-06-25 18:10:52,422 | INFO | +[807.60s] AMBIENT | scene='' +2026-06-25 18:10:52,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,422 | INFO | Music 0.676 0.000 0.372 ✓ +2026-06-25 18:10:52,423 | INFO | Musical instrument 0.192 0.000 0.106 ✗ +2026-06-25 18:10:52,423 | INFO | Tabla 0.149 0.000 0.082 ✗ +2026-06-25 18:10:52,423 | INFO | Traditional music 0.119 0.000 0.065 ✗ +2026-06-25 18:10:52,423 | INFO | Wind instrument, woodwind instrument 0.108 0.000 0.059 ✗ +2026-06-25 18:10:52,424 | INFO | Percussion 0.079 0.000 0.043 ✗ +2026-06-25 18:10:52,424 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:10:52,454 | INFO | +[807.80s] AMBIENT | scene='' +2026-06-25 18:10:52,455 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,455 | INFO | Music 0.703 0.000 0.387 ✓ +2026-06-25 18:10:52,455 | INFO | Tabla 0.339 0.000 0.186 ✓ +2026-06-25 18:10:52,455 | INFO | Percussion 0.162 0.000 0.089 ✗ +2026-06-25 18:10:52,455 | INFO | Musical instrument 0.160 0.000 0.088 ✗ +2026-06-25 18:10:52,456 | INFO | Drum 0.133 0.000 0.073 ✗ +2026-06-25 18:10:52,456 | INFO | Wood block 0.069 0.000 0.038 ✗ +2026-06-25 18:10:52,456 | INFO | → WINNER: Music (combined=0.387) +2026-06-25 18:10:52,480 | INFO | +[808.00s] AMBIENT | scene='' +2026-06-25 18:10:52,486 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,487 | INFO | Music 0.839 0.000 0.461 ✓ +2026-06-25 18:10:52,487 | INFO | Musical instrument 0.209 0.000 0.115 ✗ +2026-06-25 18:10:52,487 | INFO | Middle Eastern music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:52,487 | INFO | Drum 0.069 0.000 0.038 ✗ +2026-06-25 18:10:52,487 | INFO | Percussion 0.068 0.000 0.038 ✗ +2026-06-25 18:10:52,487 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:10:52,519 | INFO | +[808.20s] AMBIENT | scene='' +2026-06-25 18:10:52,519 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,519 | INFO | Music 0.830 0.000 0.456 ✓ +2026-06-25 18:10:52,519 | INFO | Musical instrument 0.215 0.000 0.118 ✗ +2026-06-25 18:10:52,520 | INFO | Salsa music 0.199 0.000 0.109 ✗ +2026-06-25 18:10:52,520 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:52,548 | INFO | +[808.40s] AMBIENT | scene='' +2026-06-25 18:10:52,550 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,550 | INFO | Music 0.809 0.000 0.445 ✓ +2026-06-25 18:10:52,550 | INFO | Salsa music 0.389 0.000 0.214 ✓ +2026-06-25 18:10:52,550 | INFO | Percussion 0.250 0.000 0.138 ✓ +2026-06-25 18:10:52,551 | INFO | Wood block 0.184 0.000 0.102 ✗ +2026-06-25 18:10:52,551 | INFO | Musical instrument 0.160 0.000 0.088 ✗ +2026-06-25 18:10:52,551 | INFO | Middle Eastern music 0.139 0.000 0.076 ✗ +2026-06-25 18:10:52,551 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:52,581 | INFO | +[808.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,581 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,582 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:52,582 | INFO | Salsa music 0.207 0.000 0.114 ✗ +2026-06-25 18:10:52,582 | INFO | Percussion 0.201 0.000 0.110 ✗ +2026-06-25 18:10:52,582 | INFO | Wood block 0.195 0.000 0.107 ✗ +2026-06-25 18:10:52,582 | INFO | Middle Eastern music 0.150 0.000 0.083 ✗ +2026-06-25 18:10:52,582 | INFO | Musical instrument 0.139 0.000 0.076 ✗ +2026-06-25 18:10:52,583 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:52,612 | INFO | +[808.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,612 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,612 | INFO | Music 0.790 0.000 0.434 ✓ +2026-06-25 18:10:52,614 | INFO | Wood block 0.259 0.000 0.143 ✓ +2026-06-25 18:10:52,614 | INFO | Percussion 0.240 0.000 0.132 ✓ +2026-06-25 18:10:52,614 | INFO | Musical instrument 0.221 0.000 0.121 ✓ +2026-06-25 18:10:52,614 | INFO | Drum 0.169 0.000 0.093 ✗ +2026-06-25 18:10:52,615 | INFO | Tabla 0.116 0.000 0.064 ✗ +2026-06-25 18:10:52,615 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:10:52,643 | INFO | +[809.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,644 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,644 | INFO | Music 0.785 0.000 0.432 ✓ +2026-06-25 18:10:52,644 | INFO | Wood block 0.421 0.000 0.232 ✓ +2026-06-25 18:10:52,644 | INFO | Percussion 0.311 0.000 0.171 ✓ +2026-06-25 18:10:52,644 | INFO | Drum 0.228 0.000 0.125 ✓ +2026-06-25 18:10:52,644 | INFO | Musical instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:10:52,644 | INFO | Tabla 0.140 0.000 0.077 ✗ +2026-06-25 18:10:52,646 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:52,675 | INFO | +[809.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,675 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,675 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:10:52,675 | INFO | Wood block 0.440 0.000 0.242 ✓ +2026-06-25 18:10:52,676 | INFO | Percussion 0.320 0.000 0.176 ✓ +2026-06-25 18:10:52,676 | INFO | Musical instrument 0.243 0.000 0.134 ✓ +2026-06-25 18:10:52,676 | INFO | Drum 0.224 0.000 0.123 ✓ +2026-06-25 18:10:52,676 | INFO | Tabla 0.061 0.000 0.034 ✗ +2026-06-25 18:10:52,676 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:10:52,707 | INFO | +[809.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,707 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,708 | INFO | Music 0.796 0.000 0.438 ✓ +2026-06-25 18:10:52,708 | INFO | Wood block 0.459 0.000 0.252 ✓ +2026-06-25 18:10:52,708 | INFO | Percussion 0.405 0.000 0.223 ✓ +2026-06-25 18:10:52,709 | INFO | Musical instrument 0.253 0.000 0.139 ✓ +2026-06-25 18:10:52,709 | INFO | Tabla 0.237 0.000 0.131 ✓ +2026-06-25 18:10:52,709 | INFO | Drum 0.210 0.000 0.116 ✗ +2026-06-25 18:10:52,709 | INFO | → WINNER: Music (combined=0.438) +2026-06-25 18:10:52,740 | INFO | +[809.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,740 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,740 | INFO | Music 0.828 0.000 0.455 ✓ +2026-06-25 18:10:52,741 | INFO | Wood block 0.441 0.000 0.242 ✓ +2026-06-25 18:10:52,741 | INFO | Percussion 0.335 0.000 0.184 ✓ +2026-06-25 18:10:52,741 | INFO | Musical instrument 0.324 0.000 0.178 ✓ +2026-06-25 18:10:52,741 | INFO | Tabla 0.222 0.000 0.122 ✓ +2026-06-25 18:10:52,742 | INFO | Drum 0.179 0.000 0.099 ✗ +2026-06-25 18:10:52,742 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:52,771 | INFO | +[809.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,771 | INFO | Music 0.725 0.000 0.399 ✓ +2026-06-25 18:10:52,771 | INFO | Tabla 0.512 0.000 0.282 ✓ +2026-06-25 18:10:52,771 | INFO | Percussion 0.452 0.000 0.248 ✓ +2026-06-25 18:10:52,771 | INFO | Musical instrument 0.314 0.000 0.172 ✓ +2026-06-25 18:10:52,773 | INFO | Wood block 0.286 0.000 0.158 ✓ +2026-06-25 18:10:52,773 | INFO | Drum 0.274 0.000 0.150 ✓ +2026-06-25 18:10:52,773 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:10:52,800 | INFO | +[810.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,803 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,803 | INFO | Music 0.759 0.000 0.418 ✓ +2026-06-25 18:10:52,803 | INFO | Percussion 0.421 0.000 0.232 ✓ +2026-06-25 18:10:52,803 | INFO | Wood block 0.412 0.000 0.227 ✓ +2026-06-25 18:10:52,804 | INFO | Musical instrument 0.249 0.000 0.137 ✓ +2026-06-25 18:10:52,804 | INFO | Drum 0.237 0.000 0.130 ✓ +2026-06-25 18:10:52,804 | INFO | Tabla 0.234 0.000 0.128 ✓ +2026-06-25 18:10:52,804 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:10:52,833 | INFO | +[810.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,834 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,834 | INFO | Music 0.799 0.000 0.440 ✓ +2026-06-25 18:10:52,834 | INFO | Wood block 0.510 0.000 0.281 ✓ +2026-06-25 18:10:52,834 | INFO | Percussion 0.427 0.000 0.235 ✓ +2026-06-25 18:10:52,834 | INFO | Drum 0.302 0.000 0.166 ✓ +2026-06-25 18:10:52,834 | INFO | Musical instrument 0.283 0.000 0.155 ✓ +2026-06-25 18:10:52,834 | INFO | Tabla 0.121 0.000 0.066 ✗ +2026-06-25 18:10:52,835 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:52,863 | INFO | +[810.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,864 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,864 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:52,865 | INFO | Wood block 0.421 0.000 0.232 ✓ +2026-06-25 18:10:52,865 | INFO | Percussion 0.298 0.000 0.164 ✓ +2026-06-25 18:10:52,865 | INFO | Musical instrument 0.202 0.000 0.111 ✗ +2026-06-25 18:10:52,865 | INFO | Drum 0.201 0.000 0.111 ✗ +2026-06-25 18:10:52,865 | INFO | Salsa music 0.114 0.000 0.063 ✗ +2026-06-25 18:10:52,865 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:52,895 | INFO | +[810.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,895 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,896 | INFO | Music 0.848 0.000 0.467 ✓ +2026-06-25 18:10:52,896 | INFO | Wood block 0.453 0.000 0.249 ✓ +2026-06-25 18:10:52,896 | INFO | Percussion 0.315 0.000 0.173 ✓ +2026-06-25 18:10:52,896 | INFO | Drum 0.239 0.000 0.132 ✓ +2026-06-25 18:10:52,896 | INFO | Musical instrument 0.208 0.000 0.114 ✗ +2026-06-25 18:10:52,896 | INFO | Bass drum 0.056 0.000 0.031 ✗ +2026-06-25 18:10:52,896 | INFO | → WINNER: Music (combined=0.467) +2026-06-25 18:10:52,927 | INFO | +[810.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,928 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,928 | INFO | Music 0.834 0.000 0.458 ✓ +2026-06-25 18:10:52,928 | INFO | Wood block 0.526 0.000 0.289 ✓ +2026-06-25 18:10:52,928 | INFO | Percussion 0.382 0.000 0.210 ✓ +2026-06-25 18:10:52,928 | INFO | Drum 0.296 0.000 0.163 ✓ +2026-06-25 18:10:52,929 | INFO | Musical instrument 0.253 0.000 0.139 ✓ +2026-06-25 18:10:52,929 | INFO | Bass drum 0.049 0.000 0.027 ✗ +2026-06-25 18:10:52,929 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:52,958 | INFO | +[811.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,958 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,960 | INFO | Music 0.852 0.000 0.469 ✓ +2026-06-25 18:10:52,960 | INFO | Wood block 0.488 0.000 0.269 ✓ +2026-06-25 18:10:52,960 | INFO | Percussion 0.303 0.000 0.167 ✓ +2026-06-25 18:10:52,960 | INFO | Musical instrument 0.195 0.000 0.107 ✗ +2026-06-25 18:10:52,961 | INFO | Drum 0.194 0.000 0.107 ✗ +2026-06-25 18:10:52,961 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:52,990 | INFO | +[811.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:52,990 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:52,991 | INFO | Music 0.830 0.000 0.456 ✓ +2026-06-25 18:10:52,991 | INFO | Wood block 0.507 0.000 0.279 ✓ +2026-06-25 18:10:52,991 | INFO | Percussion 0.361 0.000 0.199 ✓ +2026-06-25 18:10:52,991 | INFO | Drum 0.247 0.000 0.136 ✓ +2026-06-25 18:10:52,991 | INFO | Musical instrument 0.225 0.000 0.124 ✓ +2026-06-25 18:10:52,991 | INFO | Tabla 0.068 0.000 0.037 ✗ +2026-06-25 18:10:52,992 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:53,021 | INFO | +[811.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,022 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,022 | INFO | Music 0.759 0.000 0.417 ✓ +2026-06-25 18:10:53,022 | INFO | Wood block 0.590 0.000 0.324 ✓ +2026-06-25 18:10:53,022 | INFO | Percussion 0.417 0.000 0.229 ✓ +2026-06-25 18:10:53,023 | INFO | Drum 0.217 0.000 0.119 ✗ +2026-06-25 18:10:53,023 | INFO | Musical instrument 0.203 0.000 0.112 ✗ +2026-06-25 18:10:53,023 | INFO | Tabla 0.089 0.000 0.049 ✗ +2026-06-25 18:10:53,023 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:10:53,052 | INFO | +[811.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,053 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,053 | INFO | Music 0.787 0.000 0.433 ✓ +2026-06-25 18:10:53,054 | INFO | Wood block 0.536 0.000 0.295 ✓ +2026-06-25 18:10:53,054 | INFO | Percussion 0.488 0.000 0.269 ✓ +2026-06-25 18:10:53,054 | INFO | Drum 0.312 0.000 0.172 ✓ +2026-06-25 18:10:53,054 | INFO | Musical instrument 0.269 0.000 0.148 ✓ +2026-06-25 18:10:53,054 | INFO | Drum kit 0.073 0.000 0.040 ✗ +2026-06-25 18:10:53,055 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:10:53,080 | INFO | +[811.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,080 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,080 | INFO | Music 0.770 0.000 0.423 ✓ +2026-06-25 18:10:53,080 | INFO | Wood block 0.530 0.000 0.291 ✓ +2026-06-25 18:10:53,080 | INFO | Percussion 0.469 0.000 0.258 ✓ +2026-06-25 18:10:53,080 | INFO | Musical instrument 0.264 0.000 0.145 ✓ +2026-06-25 18:10:53,080 | INFO | Drum 0.249 0.000 0.137 ✓ +2026-06-25 18:10:53,080 | INFO | Tabla 0.160 0.000 0.088 ✗ +2026-06-25 18:10:53,080 | INFO | → WINNER: Music (combined=0.423) +2026-06-25 18:10:53,115 | INFO | +[812.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,115 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,116 | INFO | Music 0.782 0.000 0.430 ✓ +2026-06-25 18:10:53,116 | INFO | Percussion 0.267 0.000 0.147 ✓ +2026-06-25 18:10:53,116 | INFO | Musical instrument 0.239 0.000 0.132 ✓ +2026-06-25 18:10:53,116 | INFO | Wood block 0.199 0.000 0.109 ✗ +2026-06-25 18:10:53,116 | INFO | Tabla 0.190 0.000 0.104 ✗ +2026-06-25 18:10:53,116 | INFO | Drum 0.148 0.000 0.082 ✗ +2026-06-25 18:10:53,117 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:10:53,145 | INFO | +[812.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,146 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,146 | INFO | Music 0.742 0.000 0.408 ✓ +2026-06-25 18:10:53,146 | INFO | Musical instrument 0.179 0.000 0.098 ✗ +2026-06-25 18:10:53,147 | INFO | Singing 0.120 0.000 0.066 ✗ +2026-06-25 18:10:53,147 | INFO | Percussion 0.108 0.000 0.060 ✗ +2026-06-25 18:10:53,147 | INFO | Tabla 0.091 0.000 0.050 ✗ +2026-06-25 18:10:53,147 | INFO | Drum 0.060 0.000 0.033 ✗ +2026-06-25 18:10:53,147 | INFO | → WINNER: Music (combined=0.408) +2026-06-25 18:10:53,176 | INFO | +[812.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,178 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,178 | INFO | Music 0.679 0.000 0.373 ✓ +2026-06-25 18:10:53,178 | INFO | Middle Eastern music 0.122 0.000 0.067 ✗ +2026-06-25 18:10:53,178 | INFO | Musical instrument 0.109 0.000 0.060 ✗ +2026-06-25 18:10:53,179 | INFO | Singing 0.094 0.000 0.051 ✗ +2026-06-25 18:10:53,179 | INFO | Tabla 0.070 0.000 0.038 ✗ +2026-06-25 18:10:53,179 | INFO | → WINNER: Music (combined=0.373) +2026-06-25 18:10:53,208 | INFO | +[812.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,208 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,208 | INFO | Music 0.223 0.000 0.122 ✓ +2026-06-25 18:10:53,208 | INFO | Mantra 0.071 0.000 0.039 ✗ +2026-06-25 18:10:53,208 | INFO | → WINNER: Music (combined=0.122) +2026-06-25 18:10:53,237 | INFO | +[812.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,237 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,239 | INFO | Music 0.275 0.000 0.151 ✓ +2026-06-25 18:10:53,239 | INFO | Singing 0.088 0.000 0.049 ✗ +2026-06-25 18:10:53,239 | INFO | Mantra 0.074 0.000 0.041 ✗ +2026-06-25 18:10:53,240 | INFO | → WINNER: Music (combined=0.151) +2026-06-25 18:10:53,268 | INFO | +[813.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,268 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,268 | INFO | Music 0.593 0.000 0.326 ✓ +2026-06-25 18:10:53,268 | INFO | Middle Eastern music 0.112 0.000 0.062 ✗ +2026-06-25 18:10:53,270 | INFO | Singing 0.106 0.000 0.059 ✗ +2026-06-25 18:10:53,270 | INFO | Musical instrument 0.064 0.000 0.035 ✗ +2026-06-25 18:10:53,270 | INFO | Mantra 0.062 0.000 0.034 ✗ +2026-06-25 18:10:53,270 | INFO | → WINNER: Music (combined=0.326) +2026-06-25 18:10:53,298 | INFO | +[813.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,298 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,300 | INFO | Music 0.301 0.000 0.165 ✓ +2026-06-25 18:10:53,300 | INFO | Singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:53,300 | INFO | → WINNER: Music (combined=0.165) +2026-06-25 18:10:53,330 | INFO | +[813.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,330 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,330 | INFO | Music 0.820 0.000 0.451 ✓ +2026-06-25 18:10:53,331 | INFO | Middle Eastern music 0.250 0.000 0.138 ✓ +2026-06-25 18:10:53,331 | INFO | Musical instrument 0.243 0.000 0.134 ✓ +2026-06-25 18:10:53,331 | INFO | Tabla 0.151 0.000 0.083 ✗ +2026-06-25 18:10:53,331 | INFO | Singing 0.146 0.000 0.081 ✗ +2026-06-25 18:10:53,331 | INFO | Folk music 0.127 0.000 0.070 ✗ +2026-06-25 18:10:53,331 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:53,360 | INFO | +[813.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,360 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,360 | INFO | Music 0.802 0.000 0.441 ✓ +2026-06-25 18:10:53,360 | INFO | Middle Eastern music 0.320 0.000 0.176 ✓ +2026-06-25 18:10:53,362 | INFO | Folk music 0.206 0.000 0.114 ✗ +2026-06-25 18:10:53,362 | INFO | Musical instrument 0.189 0.000 0.104 ✗ +2026-06-25 18:10:53,362 | INFO | Singing 0.166 0.000 0.091 ✗ +2026-06-25 18:10:53,362 | INFO | Traditional music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:53,362 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:10:53,390 | INFO | +[813.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,390 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,390 | INFO | Music 0.763 0.000 0.420 ✓ +2026-06-25 18:10:53,390 | INFO | Middle Eastern music 0.306 0.000 0.168 ✓ +2026-06-25 18:10:53,390 | INFO | Folk music 0.217 0.000 0.119 ✗ +2026-06-25 18:10:53,390 | INFO | Singing 0.206 0.000 0.113 ✗ +2026-06-25 18:10:53,390 | INFO | Tabla 0.173 0.000 0.095 ✗ +2026-06-25 18:10:53,390 | INFO | Musical instrument 0.116 0.000 0.064 ✗ +2026-06-25 18:10:53,390 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:10:53,420 | INFO | +[814.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,420 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,420 | INFO | Music 0.814 0.000 0.447 ✓ +2026-06-25 18:10:53,420 | INFO | Singing 0.159 0.000 0.087 ✗ +2026-06-25 18:10:53,420 | INFO | Musical instrument 0.148 0.000 0.081 ✗ +2026-06-25 18:10:53,420 | INFO | Middle Eastern music 0.137 0.000 0.075 ✗ +2026-06-25 18:10:53,420 | INFO | Folk music 0.116 0.000 0.064 ✗ +2026-06-25 18:10:53,420 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:10:53,456 | INFO | +[814.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,456 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,456 | INFO | Music 0.762 0.000 0.419 ✓ +2026-06-25 18:10:53,456 | INFO | Musical instrument 0.117 0.000 0.064 ✗ +2026-06-25 18:10:53,456 | INFO | Singing 0.092 0.000 0.051 ✗ +2026-06-25 18:10:53,456 | INFO | → WINNER: Music (combined=0.419) +2026-06-25 18:10:53,487 | INFO | +[814.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,487 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,487 | INFO | Music 0.447 0.000 0.246 ✓ +2026-06-25 18:10:53,488 | INFO | Singing 0.165 0.000 0.091 ✗ +2026-06-25 18:10:53,488 | INFO | Female singing 0.077 0.000 0.042 ✗ +2026-06-25 18:10:53,488 | INFO | → WINNER: Music (combined=0.246) +2026-06-25 18:10:53,516 | INFO | +[814.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,516 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,516 | INFO | Music 0.603 0.000 0.332 ✓ +2026-06-25 18:10:53,516 | INFO | Singing 0.226 0.000 0.124 ✓ +2026-06-25 18:10:53,516 | INFO | Female singing 0.222 0.000 0.122 ✓ +2026-06-25 18:10:53,519 | INFO | Child singing 0.127 0.000 0.070 ✗ +2026-06-25 18:10:53,519 | INFO | → WINNER: Music (combined=0.332) +2026-06-25 18:10:53,547 | INFO | +[814.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,547 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,550 | INFO | Music 0.709 0.000 0.390 ✓ +2026-06-25 18:10:53,550 | INFO | Female singing 0.360 0.000 0.198 ✓ +2026-06-25 18:10:53,550 | INFO | Singing 0.266 0.000 0.146 ✓ +2026-06-25 18:10:53,550 | INFO | Child singing 0.212 0.000 0.117 ✗ +2026-06-25 18:10:53,550 | INFO | → WINNER: Music (combined=0.390) +2026-06-25 18:10:53,580 | INFO | +[815.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,580 | INFO | Music 0.738 0.000 0.406 ✓ +2026-06-25 18:10:53,580 | INFO | Singing 0.280 0.000 0.154 ✓ +2026-06-25 18:10:53,580 | INFO | Female singing 0.161 0.000 0.089 ✗ +2026-06-25 18:10:53,580 | INFO | A capella 0.066 0.000 0.036 ✗ +2026-06-25 18:10:53,580 | INFO | Choir 0.056 0.000 0.031 ✗ +2026-06-25 18:10:53,580 | INFO | → WINNER: Music (combined=0.406) +2026-06-25 18:10:53,612 | INFO | +[815.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,612 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,613 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:53,613 | INFO | Singing 0.231 0.000 0.127 ✓ +2026-06-25 18:10:53,613 | INFO | Musical instrument 0.141 0.000 0.078 ✗ +2026-06-25 18:10:53,613 | INFO | Middle Eastern music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:53,613 | INFO | Folk music 0.099 0.000 0.055 ✗ +2026-06-25 18:10:53,614 | INFO | Tabla 0.091 0.000 0.050 ✗ +2026-06-25 18:10:53,614 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:53,642 | INFO | +[815.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,644 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,644 | INFO | Music 0.780 0.000 0.429 ✓ +2026-06-25 18:10:53,644 | INFO | Middle Eastern music 0.322 0.000 0.177 ✓ +2026-06-25 18:10:53,644 | INFO | Singing 0.163 0.000 0.090 ✗ +2026-06-25 18:10:53,645 | INFO | Folk music 0.113 0.000 0.062 ✗ +2026-06-25 18:10:53,646 | INFO | Music of Bollywood 0.081 0.000 0.045 ✗ +2026-06-25 18:10:53,646 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:10:53,676 | INFO | +[815.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,676 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,676 | INFO | Music 0.711 0.000 0.391 ✓ +2026-06-25 18:10:53,677 | INFO | Middle Eastern music 0.233 0.000 0.128 ✓ +2026-06-25 18:10:53,677 | INFO | Singing 0.177 0.000 0.098 ✗ +2026-06-25 18:10:53,677 | INFO | Tabla 0.131 0.000 0.072 ✗ +2026-06-25 18:10:53,677 | INFO | Folk music 0.111 0.000 0.061 ✗ +2026-06-25 18:10:53,678 | INFO | Music of Bollywood 0.051 0.000 0.028 ✗ +2026-06-25 18:10:53,678 | INFO | → WINNER: Music (combined=0.391) +2026-06-25 18:10:53,704 | INFO | +[815.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,704 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,704 | INFO | Music 0.819 0.000 0.450 ✓ +2026-06-25 18:10:53,704 | INFO | Singing 0.174 0.000 0.096 ✗ +2026-06-25 18:10:53,710 | INFO | Middle Eastern music 0.164 0.000 0.090 ✗ +2026-06-25 18:10:53,710 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:53,740 | INFO | +[816.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,740 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,741 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:10:53,741 | INFO | Singing 0.227 0.000 0.125 ✓ +2026-06-25 18:10:53,741 | INFO | Middle Eastern music 0.131 0.000 0.072 ✗ +2026-06-25 18:10:53,742 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:10:53,771 | INFO | +[816.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,771 | INFO | Music 0.390 0.000 0.214 ✓ +2026-06-25 18:10:53,771 | INFO | Singing 0.216 0.000 0.119 ✗ +2026-06-25 18:10:53,771 | INFO | Female singing 0.175 0.000 0.096 ✗ +2026-06-25 18:10:53,771 | INFO | → WINNER: Music (combined=0.214) +2026-06-25 18:10:53,801 | INFO | +[816.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,801 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,801 | INFO | Music 0.406 0.000 0.223 ✓ +2026-06-25 18:10:53,802 | INFO | Singing 0.222 0.000 0.122 ✓ +2026-06-25 18:10:53,802 | INFO | Female singing 0.149 0.000 0.082 ✗ +2026-06-25 18:10:53,802 | INFO | → WINNER: Music (combined=0.223) +2026-06-25 18:10:53,831 | INFO | +[816.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,831 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,831 | INFO | Music 0.313 0.000 0.172 ✓ +2026-06-25 18:10:53,831 | INFO | Singing 0.172 0.000 0.094 ✗ +2026-06-25 18:10:53,831 | INFO | Female singing 0.128 0.000 0.071 ✗ +2026-06-25 18:10:53,831 | INFO | Mantra 0.061 0.000 0.034 ✗ +2026-06-25 18:10:53,831 | INFO | → WINNER: Music (combined=0.172) +2026-06-25 18:10:53,862 | INFO | +[816.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,862 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,862 | INFO | Music 0.212 0.000 0.116 ✗ +2026-06-25 18:10:53,862 | INFO | Singing 0.086 0.000 0.047 ✗ +2026-06-25 18:10:53,862 | INFO | → no winner +2026-06-25 18:10:53,893 | INFO | +[817.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,893 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,893 | INFO | Music 0.774 0.000 0.426 ✓ +2026-06-25 18:10:53,893 | INFO | Middle Eastern music 0.232 0.000 0.128 ✓ +2026-06-25 18:10:53,894 | INFO | Singing 0.165 0.000 0.091 ✗ +2026-06-25 18:10:53,894 | INFO | Musical instrument 0.156 0.000 0.086 ✗ +2026-06-25 18:10:53,894 | INFO | Tabla 0.151 0.000 0.083 ✗ +2026-06-25 18:10:53,894 | INFO | Folk music 0.134 0.000 0.074 ✗ +2026-06-25 18:10:53,895 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:10:53,924 | INFO | +[817.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,924 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,924 | INFO | Music 0.796 0.000 0.438 ✓ +2026-06-25 18:10:53,925 | INFO | Music of Latin America 0.208 0.000 0.115 ✗ +2026-06-25 18:10:53,925 | INFO | Salsa music 0.190 0.000 0.105 ✗ +2026-06-25 18:10:53,925 | INFO | Singing 0.190 0.000 0.104 ✗ +2026-06-25 18:10:53,925 | INFO | Middle Eastern music 0.142 0.000 0.078 ✗ +2026-06-25 18:10:53,925 | INFO | Musical instrument 0.096 0.000 0.052 ✗ +2026-06-25 18:10:53,926 | INFO | → WINNER: Music (combined=0.438) +2026-06-25 18:10:53,956 | INFO | +[817.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,956 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,956 | INFO | Music 0.826 0.000 0.454 ✓ +2026-06-25 18:10:53,956 | INFO | Singing 0.229 0.000 0.126 ✓ +2026-06-25 18:10:53,957 | INFO | Music of Latin America 0.177 0.000 0.097 ✗ +2026-06-25 18:10:53,957 | INFO | Tambourine 0.155 0.000 0.086 ✗ +2026-06-25 18:10:53,957 | INFO | Maraca 0.112 0.000 0.061 ✗ +2026-06-25 18:10:53,957 | INFO | Salsa music 0.098 0.000 0.054 ✗ +2026-06-25 18:10:53,958 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:10:53,988 | INFO | +[817.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:53,990 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:53,990 | INFO | Music 0.853 0.000 0.469 ✓ +2026-06-25 18:10:53,990 | INFO | Salsa music 0.292 0.000 0.161 ✓ +2026-06-25 18:10:53,990 | INFO | Music of Latin America 0.262 0.000 0.144 ✓ +2026-06-25 18:10:53,991 | INFO | Singing 0.201 0.000 0.111 ✗ +2026-06-25 18:10:53,991 | INFO | Musical instrument 0.121 0.000 0.067 ✗ +2026-06-25 18:10:53,991 | INFO | Maraca 0.116 0.000 0.064 ✗ +2026-06-25 18:10:53,991 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:10:54,020 | INFO | +[817.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,021 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,021 | INFO | Music 0.588 0.000 0.324 ✓ +2026-06-25 18:10:54,021 | INFO | Crowd 0.029 0.316 0.158 ✓ +2026-06-25 18:10:54,022 | INFO | Singing 0.141 0.000 0.077 ✗ +2026-06-25 18:10:54,022 | INFO | → WINNER: Music (combined=0.324) +2026-06-25 18:10:54,051 | INFO | +[818.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,052 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,052 | INFO | Music 0.352 0.000 0.194 ✓ +2026-06-25 18:10:54,052 | INFO | Singing 0.152 0.000 0.083 ✗ +2026-06-25 18:10:54,054 | INFO | Carnatic music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:54,054 | INFO | Mantra 0.067 0.000 0.037 ✗ +2026-06-25 18:10:54,054 | INFO | → WINNER: Music (combined=0.194) +2026-06-25 18:10:54,083 | INFO | +[818.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,084 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,084 | INFO | Music 0.729 0.000 0.401 ✓ +2026-06-25 18:10:54,084 | INFO | Chant 0.055 0.316 0.172 ✓ +2026-06-25 18:10:54,084 | INFO | Singing 0.217 0.000 0.119 ✗ +2026-06-25 18:10:54,084 | INFO | Musical instrument 0.109 0.000 0.060 ✗ +2026-06-25 18:10:54,084 | INFO | Middle Eastern music 0.101 0.000 0.056 ✗ +2026-06-25 18:10:54,084 | INFO | Mantra 0.082 0.000 0.045 ✗ +2026-06-25 18:10:54,084 | INFO | → WINNER: Music (combined=0.401) +2026-06-25 18:10:54,114 | INFO | +[818.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,115 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,115 | INFO | Music 0.744 0.000 0.409 ✓ +2026-06-25 18:10:54,115 | INFO | Singing 0.173 0.000 0.095 ✗ +2026-06-25 18:10:54,116 | INFO | Musical instrument 0.132 0.000 0.073 ✗ +2026-06-25 18:10:54,116 | INFO | → WINNER: Music (combined=0.409) +2026-06-25 18:10:54,146 | INFO | +[818.60s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,147 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,147 | INFO | Music 0.820 0.000 0.451 ✓ +2026-06-25 18:10:54,147 | INFO | Musical instrument 0.244 0.000 0.134 ✓ +2026-06-25 18:10:54,147 | INFO | Plucked string instrument 0.057 0.000 0.031 ✗ +2026-06-25 18:10:54,147 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:54,176 | INFO | +[818.80s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,177 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,177 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:54,177 | INFO | Singing 0.201 0.000 0.111 ✗ +2026-06-25 18:10:54,177 | INFO | Musical instrument 0.159 0.000 0.087 ✗ +2026-06-25 18:10:54,178 | INFO | Middle Eastern music 0.099 0.000 0.054 ✗ +2026-06-25 18:10:54,178 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:54,207 | INFO | +[819.00s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,207 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,207 | INFO | Music 0.748 0.000 0.411 ✓ +2026-06-25 18:10:54,207 | INFO | Singing 0.280 0.000 0.154 ✓ +2026-06-25 18:10:54,207 | INFO | Musical instrument 0.114 0.000 0.063 ✗ +2026-06-25 18:10:54,207 | INFO | → WINNER: Music (combined=0.411) +2026-06-25 18:10:54,238 | INFO | +[819.20s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,238 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,238 | INFO | Music 0.759 0.000 0.417 ✓ +2026-06-25 18:10:54,238 | INFO | Singing 0.292 0.000 0.161 ✓ +2026-06-25 18:10:54,238 | INFO | Folk music 0.104 0.000 0.057 ✗ +2026-06-25 18:10:54,239 | INFO | Musical instrument 0.094 0.000 0.052 ✗ +2026-06-25 18:10:54,239 | INFO | Tabla 0.089 0.000 0.049 ✗ +2026-06-25 18:10:54,239 | INFO | Choir 0.067 0.000 0.037 ✗ +2026-06-25 18:10:54,240 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:10:54,270 | INFO | +[819.40s] AMBIENT | scene='The image is a still from a movie or TV show. It shows a group of peop' +2026-06-25 18:10:54,270 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,271 | INFO | Music 0.732 0.000 0.403 ✓ +2026-06-25 18:10:54,271 | INFO | Singing 0.207 0.000 0.114 ✗ +2026-06-25 18:10:54,271 | INFO | Musical instrument 0.071 0.000 0.039 ✗ +2026-06-25 18:10:54,271 | INFO | Tabla 0.054 0.000 0.030 ✗ +2026-06-25 18:10:54,272 | INFO | → WINNER: Music (combined=0.403) +2026-06-25 18:10:54,301 | INFO | +[819.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,301 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,301 | INFO | Music 0.260 0.000 0.143 ✓ +2026-06-25 18:10:54,302 | INFO | Singing 0.110 0.000 0.060 ✗ +2026-06-25 18:10:54,303 | INFO | Crowd 0.034 0.000 0.019 ✗ +2026-06-25 18:10:54,303 | INFO | → WINNER: Music (combined=0.143) +2026-06-25 18:10:54,331 | INFO | +[819.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,332 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,332 | INFO | Music 0.362 0.000 0.199 ✓ +2026-06-25 18:10:54,332 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:10:54,332 | INFO | → WINNER: Music (combined=0.199) +2026-06-25 18:10:54,362 | INFO | +[820.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,362 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,362 | INFO | Music 0.572 0.000 0.315 ✓ +2026-06-25 18:10:54,364 | INFO | Singing 0.154 0.000 0.085 ✗ +2026-06-25 18:10:54,364 | INFO | → WINNER: Music (combined=0.315) +2026-06-25 18:10:54,389 | INFO | +[820.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,389 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,389 | INFO | Music 0.828 0.000 0.455 ✓ +2026-06-25 18:10:54,395 | INFO | Musical instrument 0.199 0.000 0.110 ✗ +2026-06-25 18:10:54,395 | INFO | Singing 0.147 0.000 0.081 ✗ +2026-06-25 18:10:54,396 | INFO | Middle Eastern music 0.145 0.000 0.080 ✗ +2026-06-25 18:10:54,396 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:54,420 | INFO | +[820.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,420 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,420 | INFO | Music 0.843 0.000 0.464 ✓ +2026-06-25 18:10:54,420 | INFO | Musical instrument 0.186 0.000 0.102 ✗ +2026-06-25 18:10:54,420 | INFO | Singing 0.182 0.000 0.100 ✗ +2026-06-25 18:10:54,420 | INFO | → WINNER: Music (combined=0.464) +2026-06-25 18:10:54,456 | INFO | +[820.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,457 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,457 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:10:54,457 | INFO | Musical instrument 0.214 0.000 0.118 ✗ +2026-06-25 18:10:54,457 | INFO | Singing 0.112 0.000 0.061 ✗ +2026-06-25 18:10:54,458 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:10:54,486 | INFO | +[820.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,486 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,487 | INFO | Music 0.832 0.000 0.457 ✓ +2026-06-25 18:10:54,487 | INFO | Musical instrument 0.148 0.000 0.081 ✗ +2026-06-25 18:10:54,487 | INFO | Singing 0.089 0.000 0.049 ✗ +2026-06-25 18:10:54,488 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:54,518 | INFO | +[821.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,518 | INFO | Music 0.830 0.000 0.457 ✓ +2026-06-25 18:10:54,519 | INFO | Singing 0.142 0.000 0.078 ✗ +2026-06-25 18:10:54,519 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:10:54,519 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:54,547 | INFO | +[821.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,547 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,550 | INFO | Music 0.621 0.000 0.341 ✓ +2026-06-25 18:10:54,550 | INFO | Gargling 0.056 0.000 0.031 ✗ +2026-06-25 18:10:54,550 | INFO | → WINNER: Music (combined=0.341) +2026-06-25 18:10:54,579 | INFO | +[821.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,580 | INFO | Music 0.289 0.000 0.159 ✓ +2026-06-25 18:10:54,580 | INFO | Singing 0.077 0.000 0.043 ✗ +2026-06-25 18:10:54,580 | INFO | → WINNER: Music (combined=0.159) +2026-06-25 18:10:54,609 | INFO | +[821.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,610 | INFO | Music 0.390 0.000 0.214 ✓ +2026-06-25 18:10:54,610 | INFO | Singing 0.131 0.000 0.072 ✗ +2026-06-25 18:10:54,610 | INFO | Crowd 0.035 0.000 0.019 ✗ +2026-06-25 18:10:54,611 | INFO | → WINNER: Music (combined=0.214) +2026-06-25 18:10:54,641 | INFO | +[821.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,641 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,641 | INFO | Music 0.460 0.000 0.253 ✓ +2026-06-25 18:10:54,642 | INFO | Singing 0.191 0.000 0.105 ✗ +2026-06-25 18:10:54,642 | INFO | → WINNER: Music (combined=0.253) +2026-06-25 18:10:54,670 | INFO | +[822.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,670 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,670 | INFO | Music 0.688 0.000 0.379 ✓ +2026-06-25 18:10:54,670 | INFO | Singing 0.259 0.000 0.142 ✓ +2026-06-25 18:10:54,670 | INFO | Female singing 0.115 0.000 0.063 ✗ +2026-06-25 18:10:54,670 | INFO | Choir 0.063 0.000 0.035 ✗ +2026-06-25 18:10:54,670 | INFO | → WINNER: Music (combined=0.379) +2026-06-25 18:10:54,703 | INFO | +[822.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,703 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,703 | INFO | Music 0.846 0.000 0.466 ✓ +2026-06-25 18:10:54,703 | INFO | Singing 0.156 0.000 0.086 ✗ +2026-06-25 18:10:54,703 | INFO | Middle Eastern music 0.146 0.000 0.080 ✗ +2026-06-25 18:10:54,703 | INFO | Folk music 0.123 0.000 0.068 ✗ +2026-06-25 18:10:54,703 | INFO | Salsa music 0.118 0.000 0.065 ✗ +2026-06-25 18:10:54,703 | INFO | Musical instrument 0.115 0.000 0.063 ✗ +2026-06-25 18:10:54,703 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:54,735 | INFO | +[822.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,736 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,736 | INFO | Music 0.784 0.000 0.431 ✓ +2026-06-25 18:10:54,736 | INFO | Middle Eastern music 0.311 0.000 0.171 ✓ +2026-06-25 18:10:54,736 | INFO | Salsa music 0.218 0.000 0.120 ✗ +2026-06-25 18:10:54,736 | INFO | Folk music 0.182 0.000 0.100 ✗ +2026-06-25 18:10:54,736 | INFO | Traditional music 0.112 0.000 0.062 ✗ +2026-06-25 18:10:54,737 | INFO | Music of Latin America 0.101 0.000 0.056 ✗ +2026-06-25 18:10:54,737 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:10:54,766 | INFO | +[822.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,766 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,767 | INFO | Music 0.801 0.000 0.441 ✓ +2026-06-25 18:10:54,767 | INFO | Middle Eastern music 0.207 0.000 0.114 ✗ +2026-06-25 18:10:54,768 | INFO | Folk music 0.164 0.000 0.090 ✗ +2026-06-25 18:10:54,768 | INFO | Musical instrument 0.153 0.000 0.084 ✗ +2026-06-25 18:10:54,768 | INFO | Salsa music 0.141 0.000 0.078 ✗ +2026-06-25 18:10:54,768 | INFO | Traditional music 0.131 0.000 0.072 ✗ +2026-06-25 18:10:54,768 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:10:54,799 | INFO | +[822.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,800 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,800 | INFO | Music 0.879 0.000 0.484 ✓ +2026-06-25 18:10:54,800 | INFO | Middle Eastern music 0.328 0.000 0.180 ✓ +2026-06-25 18:10:54,801 | INFO | Folk music 0.201 0.000 0.110 ✗ +2026-06-25 18:10:54,801 | INFO | Singing 0.186 0.000 0.102 ✗ +2026-06-25 18:10:54,801 | INFO | Salsa music 0.148 0.000 0.082 ✗ +2026-06-25 18:10:54,801 | INFO | Music of Latin America 0.120 0.000 0.066 ✗ +2026-06-25 18:10:54,801 | INFO | → WINNER: Music (combined=0.484) +2026-06-25 18:10:54,831 | INFO | +[823.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,831 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,833 | INFO | Music 0.690 0.000 0.379 ✓ +2026-06-25 18:10:54,833 | INFO | Singing 0.206 0.000 0.114 ✗ +2026-06-25 18:10:54,833 | INFO | Child singing 0.178 0.000 0.098 ✗ +2026-06-25 18:10:54,833 | INFO | Female singing 0.144 0.000 0.079 ✗ +2026-06-25 18:10:54,833 | INFO | → WINNER: Music (combined=0.379) +2026-06-25 18:10:54,863 | INFO | +[823.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,863 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,863 | INFO | Music 0.570 0.000 0.314 ✓ +2026-06-25 18:10:54,864 | INFO | Female singing 0.317 0.000 0.174 ✓ +2026-06-25 18:10:54,864 | INFO | Child singing 0.311 0.000 0.171 ✓ +2026-06-25 18:10:54,864 | INFO | Singing 0.293 0.000 0.161 ✓ +2026-06-25 18:10:54,864 | INFO | Synthetic singing 0.121 0.000 0.067 ✗ +2026-06-25 18:10:54,864 | INFO | → WINNER: Music (combined=0.314) +2026-06-25 18:10:54,894 | INFO | +[823.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,894 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,894 | INFO | Music 0.664 0.000 0.365 ✓ +2026-06-25 18:10:54,895 | INFO | Singing 0.202 0.000 0.111 ✗ +2026-06-25 18:10:54,895 | INFO | Female singing 0.139 0.000 0.076 ✗ +2026-06-25 18:10:54,895 | INFO | Synthetic singing 0.112 0.000 0.061 ✗ +2026-06-25 18:10:54,896 | INFO | → WINNER: Music (combined=0.365) +2026-06-25 18:10:54,922 | INFO | +[823.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,922 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,922 | INFO | Music 0.818 0.000 0.450 ✓ +2026-06-25 18:10:54,922 | INFO | Singing 0.276 0.000 0.151 ✓ +2026-06-25 18:10:54,922 | INFO | Musical instrument 0.130 0.000 0.071 ✗ +2026-06-25 18:10:54,922 | INFO | Female singing 0.092 0.000 0.051 ✗ +2026-06-25 18:10:54,922 | INFO | Synthetic singing 0.087 0.000 0.048 ✗ +2026-06-25 18:10:54,922 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:10:54,956 | INFO | +[823.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,957 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,957 | INFO | Music 0.880 0.000 0.484 ✓ +2026-06-25 18:10:54,957 | INFO | Musical instrument 0.180 0.000 0.099 ✗ +2026-06-25 18:10:54,958 | INFO | Singing 0.129 0.000 0.071 ✗ +2026-06-25 18:10:54,958 | INFO | Middle Eastern music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:54,958 | INFO | Folk music 0.111 0.000 0.061 ✗ +2026-06-25 18:10:54,958 | INFO | → WINNER: Music (combined=0.484) +2026-06-25 18:10:54,989 | INFO | +[824.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:54,989 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:54,990 | INFO | Music 0.832 0.000 0.457 ✓ +2026-06-25 18:10:54,990 | INFO | Traditional music 0.400 0.000 0.220 ✓ +2026-06-25 18:10:54,990 | INFO | Musical instrument 0.262 0.000 0.144 ✓ +2026-06-25 18:10:54,990 | INFO | Middle Eastern music 0.252 0.000 0.139 ✓ +2026-06-25 18:10:54,990 | INFO | Folk music 0.245 0.000 0.135 ✓ +2026-06-25 18:10:54,991 | INFO | Violin, fiddle 0.082 0.000 0.045 ✗ +2026-06-25 18:10:54,991 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:10:55,021 | INFO | +[824.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,022 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,022 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:10:55,022 | INFO | Folk music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:55,022 | INFO | Musical instrument 0.148 0.000 0.082 ✗ +2026-06-25 18:10:55,022 | INFO | Traditional music 0.148 0.000 0.082 ✗ +2026-06-25 18:10:55,022 | INFO | Middle Eastern music 0.137 0.000 0.075 ✗ +2026-06-25 18:10:55,022 | INFO | Music of Latin America 0.133 0.000 0.073 ✗ +2026-06-25 18:10:55,022 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:55,054 | INFO | +[824.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,054 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,055 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:10:55,055 | INFO | Musical instrument 0.195 0.000 0.107 ✗ +2026-06-25 18:10:55,055 | INFO | Folk music 0.186 0.000 0.102 ✗ +2026-06-25 18:10:55,055 | INFO | Traditional music 0.177 0.000 0.098 ✗ +2026-06-25 18:10:55,056 | INFO | Singing 0.145 0.000 0.080 ✗ +2026-06-25 18:10:55,056 | INFO | Middle Eastern music 0.131 0.000 0.072 ✗ +2026-06-25 18:10:55,056 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:55,084 | INFO | +[824.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,086 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,087 | INFO | Music 0.819 0.000 0.451 ✓ +2026-06-25 18:10:55,087 | INFO | Singing 0.206 0.000 0.114 ✗ +2026-06-25 18:10:55,087 | INFO | Middle Eastern music 0.131 0.000 0.072 ✗ +2026-06-25 18:10:55,088 | INFO | Folk music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:55,088 | INFO | Musical instrument 0.068 0.000 0.038 ✗ +2026-06-25 18:10:55,088 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:55,115 | INFO | +[824.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,115 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,119 | INFO | Music 0.450 0.000 0.247 ✓ +2026-06-25 18:10:55,119 | INFO | Singing 0.169 0.000 0.093 ✗ +2026-06-25 18:10:55,120 | INFO | Crowd 0.052 0.000 0.029 ✗ +2026-06-25 18:10:55,120 | INFO | → WINNER: Music (combined=0.247) +2026-06-25 18:10:55,149 | INFO | +[825.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,151 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,151 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:10:55,151 | INFO | Singing 0.230 0.000 0.127 ✓ +2026-06-25 18:10:55,152 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:10:55,180 | INFO | +[825.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,180 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,180 | INFO | Music 0.620 0.000 0.341 ✓ +2026-06-25 18:10:55,180 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:10:55,180 | INFO | Musical instrument 0.076 0.000 0.042 ✗ +2026-06-25 18:10:55,180 | INFO | → WINNER: Music (combined=0.341) +2026-06-25 18:10:55,213 | INFO | +[825.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,213 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,214 | INFO | Music 0.613 0.000 0.337 ✓ +2026-06-25 18:10:55,214 | INFO | Musical instrument 0.142 0.000 0.078 ✗ +2026-06-25 18:10:55,214 | INFO | Singing 0.102 0.000 0.056 ✗ +2026-06-25 18:10:55,214 | INFO | Carnatic music 0.102 0.000 0.056 ✗ +2026-06-25 18:10:55,214 | INFO | Sitar 0.086 0.000 0.047 ✗ +2026-06-25 18:10:55,215 | INFO | Tabla 0.066 0.000 0.036 ✗ +2026-06-25 18:10:55,215 | INFO | → WINNER: Music (combined=0.337) +2026-06-25 18:10:55,244 | INFO | +[825.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,246 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,246 | INFO | Music 0.829 0.000 0.456 ✓ +2026-06-25 18:10:55,246 | INFO | Middle Eastern music 0.294 0.000 0.162 ✓ +2026-06-25 18:10:55,246 | INFO | Musical instrument 0.172 0.000 0.095 ✗ +2026-06-25 18:10:55,247 | INFO | Folk music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:55,247 | INFO | Tabla 0.144 0.000 0.079 ✗ +2026-06-25 18:10:55,247 | INFO | Singing 0.137 0.000 0.075 ✗ +2026-06-25 18:10:55,247 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:55,270 | INFO | +[825.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,270 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,270 | INFO | Music 0.754 0.000 0.415 ✓ +2026-06-25 18:10:55,277 | INFO | Middle Eastern music 0.386 0.000 0.212 ✓ +2026-06-25 18:10:55,277 | INFO | Tabla 0.174 0.000 0.096 ✗ +2026-06-25 18:10:55,277 | INFO | Folk music 0.174 0.000 0.096 ✗ +2026-06-25 18:10:55,279 | INFO | Singing 0.165 0.000 0.091 ✗ +2026-06-25 18:10:55,279 | INFO | Musical instrument 0.125 0.000 0.069 ✗ +2026-06-25 18:10:55,279 | INFO | → WINNER: Music (combined=0.415) +2026-06-25 18:10:55,309 | INFO | +[826.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,309 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,309 | INFO | Music 0.770 0.000 0.424 ✓ +2026-06-25 18:10:55,310 | INFO | Middle Eastern music 0.352 0.000 0.194 ✓ +2026-06-25 18:10:55,310 | INFO | Singing 0.226 0.000 0.124 ✓ +2026-06-25 18:10:55,310 | INFO | Tabla 0.185 0.000 0.102 ✗ +2026-06-25 18:10:55,310 | INFO | Folk music 0.144 0.000 0.079 ✗ +2026-06-25 18:10:55,310 | INFO | Musical instrument 0.096 0.000 0.053 ✗ +2026-06-25 18:10:55,311 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:10:55,341 | INFO | +[826.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,342 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,342 | INFO | Music 0.823 0.000 0.452 ✓ +2026-06-25 18:10:55,342 | INFO | Singing 0.259 0.000 0.142 ✓ +2026-06-25 18:10:55,342 | INFO | Middle Eastern music 0.243 0.000 0.134 ✓ +2026-06-25 18:10:55,342 | INFO | Folk music 0.141 0.000 0.078 ✗ +2026-06-25 18:10:55,343 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:10:55,343 | INFO | Music of Bollywood 0.035 0.000 0.019 ✗ +2026-06-25 18:10:55,343 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:55,373 | INFO | +[826.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,373 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,373 | INFO | Music 0.673 0.000 0.370 ✓ +2026-06-25 18:10:55,373 | INFO | Singing 0.228 0.000 0.125 ✓ +2026-06-25 18:10:55,374 | INFO | Middle Eastern music 0.214 0.000 0.118 ✗ +2026-06-25 18:10:55,374 | INFO | Folk music 0.111 0.000 0.061 ✗ +2026-06-25 18:10:55,374 | INFO | Carnatic music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:55,374 | INFO | Musical instrument 0.070 0.000 0.038 ✗ +2026-06-25 18:10:55,374 | INFO | → WINNER: Music (combined=0.370) +2026-06-25 18:10:55,404 | INFO | +[826.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,405 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,405 | INFO | Music 0.473 0.000 0.260 ✓ +2026-06-25 18:10:55,405 | INFO | Singing 0.185 0.000 0.102 ✗ +2026-06-25 18:10:55,405 | INFO | Middle Eastern music 0.160 0.000 0.088 ✗ +2026-06-25 18:10:55,405 | INFO | Carnatic music 0.112 0.000 0.061 ✗ +2026-06-25 18:10:55,406 | INFO | Music of Bollywood 0.053 0.000 0.029 ✗ +2026-06-25 18:10:55,406 | INFO | → WINNER: Music (combined=0.260) +2026-06-25 18:10:55,434 | INFO | +[826.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,434 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,434 | INFO | Music 0.667 0.000 0.367 ✓ +2026-06-25 18:10:55,436 | INFO | Carnatic music 0.295 0.000 0.162 ✓ +2026-06-25 18:10:55,436 | INFO | Middle Eastern music 0.200 0.000 0.110 ✗ +2026-06-25 18:10:55,436 | INFO | Singing 0.139 0.000 0.076 ✗ +2026-06-25 18:10:55,436 | INFO | Sitar 0.111 0.000 0.061 ✗ +2026-06-25 18:10:55,436 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:10:55,436 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:10:55,465 | INFO | +[827.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,466 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,466 | INFO | Music 0.707 0.000 0.389 ✓ +2026-06-25 18:10:55,466 | INFO | Carnatic music 0.272 0.000 0.149 ✓ +2026-06-25 18:10:55,466 | INFO | Musical instrument 0.196 0.000 0.108 ✗ +2026-06-25 18:10:55,466 | INFO | Sitar 0.127 0.000 0.070 ✗ +2026-06-25 18:10:55,467 | INFO | Middle Eastern music 0.121 0.000 0.067 ✗ +2026-06-25 18:10:55,467 | INFO | Classical music 0.095 0.000 0.052 ✗ +2026-06-25 18:10:55,467 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:10:55,496 | INFO | +[827.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,497 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,497 | INFO | Music 0.816 0.000 0.449 ✓ +2026-06-25 18:10:55,497 | INFO | Tabla 0.366 0.000 0.202 ✓ +2026-06-25 18:10:55,498 | INFO | Musical instrument 0.231 0.000 0.127 ✓ +2026-06-25 18:10:55,498 | INFO | Percussion 0.177 0.000 0.098 ✗ +2026-06-25 18:10:55,498 | INFO | Drum 0.177 0.000 0.097 ✗ +2026-06-25 18:10:55,498 | INFO | Middle Eastern music 0.160 0.000 0.088 ✗ +2026-06-25 18:10:55,498 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:10:55,528 | INFO | +[827.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,528 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,530 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:10:55,530 | INFO | Musical instrument 0.256 0.000 0.141 ✓ +2026-06-25 18:10:55,530 | INFO | Middle Eastern music 0.242 0.000 0.133 ✓ +2026-06-25 18:10:55,531 | INFO | Tabla 0.214 0.000 0.118 ✗ +2026-06-25 18:10:55,531 | INFO | Folk music 0.170 0.000 0.093 ✗ +2026-06-25 18:10:55,531 | INFO | Singing 0.145 0.000 0.080 ✗ +2026-06-25 18:10:55,531 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:10:55,560 | INFO | +[827.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,561 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,561 | INFO | Music 0.812 0.000 0.447 ✓ +2026-06-25 18:10:55,561 | INFO | Musical instrument 0.234 0.000 0.128 ✓ +2026-06-25 18:10:55,562 | INFO | Tabla 0.181 0.000 0.100 ✗ +2026-06-25 18:10:55,562 | INFO | Carnatic music 0.148 0.000 0.081 ✗ +2026-06-25 18:10:55,562 | INFO | Singing 0.143 0.000 0.079 ✗ +2026-06-25 18:10:55,562 | INFO | Middle Eastern music 0.131 0.000 0.072 ✗ +2026-06-25 18:10:55,562 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:10:55,593 | INFO | +[827.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,593 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,593 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:10:55,594 | INFO | Musical instrument 0.154 0.000 0.085 ✗ +2026-06-25 18:10:55,594 | INFO | Singing 0.125 0.000 0.069 ✗ +2026-06-25 18:10:55,594 | INFO | Middle Eastern music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:55,595 | INFO | Folk music 0.101 0.000 0.056 ✗ +2026-06-25 18:10:55,595 | INFO | Percussion 0.053 0.000 0.029 ✗ +2026-06-25 18:10:55,595 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:10:55,625 | INFO | +[828.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,625 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,625 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:10:55,625 | INFO | Middle Eastern music 0.151 0.000 0.083 ✗ +2026-06-25 18:10:55,626 | INFO | Musical instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:10:55,626 | INFO | Folk music 0.118 0.000 0.065 ✗ +2026-06-25 18:10:55,626 | INFO | Singing 0.103 0.000 0.057 ✗ +2026-06-25 18:10:55,626 | INFO | Music of Bollywood 0.036 0.000 0.020 ✗ +2026-06-25 18:10:55,626 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:10:55,657 | INFO | +[828.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,657 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,657 | INFO | Music 0.322 0.000 0.177 ✓ +2026-06-25 18:10:55,658 | INFO | Singing 0.077 0.000 0.042 ✗ +2026-06-25 18:10:55,658 | INFO | Animal 0.062 0.000 0.034 ✗ +2026-06-25 18:10:55,658 | INFO | Dog 0.045 0.000 0.025 ✗ +2026-06-25 18:10:55,658 | INFO | → WINNER: Music (combined=0.177) +2026-06-25 18:10:55,690 | INFO | +[828.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,690 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,691 | INFO | Music 0.488 0.000 0.268 ✓ +2026-06-25 18:10:55,691 | INFO | Singing 0.200 0.000 0.110 ✗ +2026-06-25 18:10:55,691 | INFO | Yodeling 0.074 0.000 0.041 ✗ +2026-06-25 18:10:55,691 | INFO | → WINNER: Music (combined=0.268) +2026-06-25 18:10:55,721 | INFO | +[828.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,721 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,722 | INFO | Music 0.577 0.000 0.317 ✓ +2026-06-25 18:10:55,722 | INFO | Singing 0.260 0.000 0.143 ✓ +2026-06-25 18:10:55,722 | INFO | Yodeling 0.059 0.000 0.033 ✗ +2026-06-25 18:10:55,722 | INFO | → WINNER: Music (combined=0.317) +2026-06-25 18:10:55,752 | INFO | +[828.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,752 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,752 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:10:55,752 | INFO | Singing 0.272 0.000 0.150 ✓ +2026-06-25 18:10:55,753 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:10:55,782 | INFO | +[829.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,782 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,782 | INFO | Music 0.830 0.000 0.456 ✓ +2026-06-25 18:10:55,782 | INFO | Middle Eastern music 0.161 0.000 0.088 ✗ +2026-06-25 18:10:55,782 | INFO | Musical instrument 0.132 0.000 0.072 ✗ +2026-06-25 18:10:55,782 | INFO | Folk music 0.114 0.000 0.063 ✗ +2026-06-25 18:10:55,782 | INFO | Traditional music 0.107 0.000 0.059 ✗ +2026-06-25 18:10:55,782 | INFO | Singing 0.098 0.000 0.054 ✗ +2026-06-25 18:10:55,782 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:10:55,814 | INFO | +[829.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,814 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,815 | INFO | Music 0.820 0.000 0.451 ✓ +2026-06-25 18:10:55,815 | INFO | Middle Eastern music 0.302 0.000 0.166 ✓ +2026-06-25 18:10:55,816 | INFO | Traditional music 0.243 0.000 0.134 ✓ +2026-06-25 18:10:55,816 | INFO | Folk music 0.220 0.000 0.121 ✓ +2026-06-25 18:10:55,816 | INFO | Musical instrument 0.182 0.000 0.100 ✗ +2026-06-25 18:10:55,816 | INFO | Sitar 0.105 0.000 0.058 ✗ +2026-06-25 18:10:55,817 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:10:55,845 | INFO | +[829.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,847 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,847 | INFO | Music 0.828 0.000 0.455 ✓ +2026-06-25 18:10:55,847 | INFO | Folk music 0.190 0.000 0.104 ✗ +2026-06-25 18:10:55,848 | INFO | Middle Eastern music 0.184 0.000 0.102 ✗ +2026-06-25 18:10:55,848 | INFO | Singing 0.161 0.000 0.088 ✗ +2026-06-25 18:10:55,848 | INFO | Musical instrument 0.157 0.000 0.086 ✗ +2026-06-25 18:10:55,848 | INFO | Traditional music 0.137 0.000 0.075 ✗ +2026-06-25 18:10:55,848 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:10:55,877 | INFO | +[829.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,879 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,879 | INFO | Music 0.871 0.000 0.479 ✓ +2026-06-25 18:10:55,880 | INFO | Singing 0.265 0.000 0.145 ✓ +2026-06-25 18:10:55,880 | INFO | Musical instrument 0.184 0.000 0.101 ✗ +2026-06-25 18:10:55,881 | INFO | Country 0.054 0.000 0.030 ✗ +2026-06-25 18:10:55,881 | INFO | Plucked string instrument 0.051 0.000 0.028 ✗ +2026-06-25 18:10:55,881 | INFO | → WINNER: Music (combined=0.479) +2026-06-25 18:10:55,912 | INFO | +[829.80s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,912 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,912 | INFO | Music 0.877 0.000 0.482 ✓ +2026-06-25 18:10:55,913 | INFO | Child singing 0.388 0.000 0.213 ✓ +2026-06-25 18:10:55,913 | INFO | Singing 0.324 0.000 0.178 ✓ +2026-06-25 18:10:55,913 | INFO | Female singing 0.299 0.000 0.165 ✓ +2026-06-25 18:10:55,913 | INFO | Musical instrument 0.119 0.000 0.065 ✗ +2026-06-25 18:10:55,914 | INFO | Guitar 0.057 0.000 0.032 ✗ +2026-06-25 18:10:55,914 | INFO | → WINNER: Music (combined=0.482) +2026-06-25 18:10:55,942 | INFO | +[830.00s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,942 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,942 | INFO | Music 0.465 0.000 0.256 ✓ +2026-06-25 18:10:55,943 | INFO | Singing 0.241 0.000 0.132 ✓ +2026-06-25 18:10:55,943 | INFO | Female singing 0.214 0.000 0.118 ✗ +2026-06-25 18:10:55,943 | INFO | Child singing 0.200 0.000 0.110 ✗ +2026-06-25 18:10:55,944 | INFO | → WINNER: Music (combined=0.256) +2026-06-25 18:10:55,973 | INFO | +[830.20s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:55,974 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:55,974 | INFO | Music 0.579 0.000 0.318 ✓ +2026-06-25 18:10:55,974 | INFO | Singing 0.268 0.000 0.147 ✓ +2026-06-25 18:10:55,975 | INFO | Female singing 0.250 0.000 0.138 ✓ +2026-06-25 18:10:55,975 | INFO | Child singing 0.148 0.000 0.082 ✗ +2026-06-25 18:10:55,975 | INFO | Synthetic singing 0.079 0.000 0.043 ✗ +2026-06-25 18:10:55,975 | INFO | → WINNER: Music (combined=0.318) +2026-06-25 18:10:56,004 | INFO | +[830.40s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:56,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,004 | INFO | Music 0.712 0.000 0.392 ✓ +2026-06-25 18:10:56,004 | INFO | Singing 0.229 0.000 0.126 ✓ +2026-06-25 18:10:56,005 | INFO | Female singing 0.165 0.000 0.091 ✗ +2026-06-25 18:10:56,005 | INFO | Synthetic singing 0.127 0.000 0.070 ✗ +2026-06-25 18:10:56,005 | INFO | Child singing 0.082 0.000 0.045 ✗ +2026-06-25 18:10:56,005 | INFO | → WINNER: Music (combined=0.392) +2026-06-25 18:10:56,035 | INFO | +[830.60s] AMBIENT | scene='The image shows a group of people in a rural area, with trees and bush' +2026-06-25 18:10:56,036 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,036 | INFO | Music 0.850 0.000 0.467 ✓ +2026-06-25 18:10:56,036 | INFO | Middle Eastern music 0.241 0.000 0.133 ✓ +2026-06-25 18:10:56,036 | INFO | Folk music 0.138 0.000 0.076 ✗ +2026-06-25 18:10:56,036 | INFO | Singing 0.134 0.000 0.074 ✗ +2026-06-25 18:10:56,036 | INFO | Music of Bollywood 0.093 0.000 0.051 ✗ +2026-06-25 18:10:56,037 | INFO | → WINNER: Music (combined=0.467) +2026-06-25 18:10:56,066 | INFO | +[830.80s] AMBIENT | scene='' +2026-06-25 18:10:56,066 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,066 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:10:56,067 | INFO | Folk music 0.328 0.000 0.180 ✓ +2026-06-25 18:10:56,067 | INFO | Middle Eastern music 0.324 0.000 0.178 ✓ +2026-06-25 18:10:56,067 | INFO | Traditional music 0.280 0.000 0.154 ✓ +2026-06-25 18:10:56,067 | INFO | Music of Bollywood 0.131 0.000 0.072 ✗ +2026-06-25 18:10:56,067 | INFO | Singing 0.125 0.000 0.069 ✗ +2026-06-25 18:10:56,067 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:10:56,096 | INFO | +[831.00s] AMBIENT | scene='' +2026-06-25 18:10:56,097 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,097 | INFO | Music 0.894 0.000 0.492 ✓ +2026-06-25 18:10:56,097 | INFO | Singing 0.172 0.000 0.095 ✗ +2026-06-25 18:10:56,098 | INFO | → WINNER: Music (combined=0.492) +2026-06-25 18:10:56,128 | INFO | +[831.20s] AMBIENT | scene='' +2026-06-25 18:10:56,129 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,129 | INFO | Music 0.894 0.000 0.492 ✓ +2026-06-25 18:10:56,129 | INFO | Singing 0.299 0.000 0.165 ✓ +2026-06-25 18:10:56,129 | INFO | Folk music 0.178 0.000 0.098 ✗ +2026-06-25 18:10:56,131 | INFO | Middle Eastern music 0.170 0.000 0.093 ✗ +2026-06-25 18:10:56,131 | INFO | Music of Latin America 0.160 0.000 0.088 ✗ +2026-06-25 18:10:56,131 | INFO | Musical instrument 0.078 0.000 0.043 ✗ +2026-06-25 18:10:56,131 | INFO | → WINNER: Music (combined=0.492) +2026-06-25 18:10:56,162 | INFO | +[831.40s] AMBIENT | scene='' +2026-06-25 18:10:56,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,162 | INFO | Music 0.834 0.000 0.459 ✓ +2026-06-25 18:10:56,163 | INFO | Singing 0.206 0.000 0.113 ✗ +2026-06-25 18:10:56,163 | INFO | Middle Eastern music 0.152 0.000 0.084 ✗ +2026-06-25 18:10:56,163 | INFO | Folk music 0.100 0.000 0.055 ✗ +2026-06-25 18:10:56,163 | INFO | Musical instrument 0.065 0.000 0.036 ✗ +2026-06-25 18:10:56,164 | INFO | → WINNER: Music (combined=0.459) +2026-06-25 18:10:56,193 | INFO | +[831.60s] AMBIENT | scene='' +2026-06-25 18:10:56,193 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,193 | INFO | Music 0.564 0.000 0.310 ✓ +2026-06-25 18:10:56,193 | INFO | Singing 0.184 0.000 0.101 ✗ +2026-06-25 18:10:56,193 | INFO | Female singing 0.087 0.000 0.048 ✗ +2026-06-25 18:10:56,193 | INFO | → WINNER: Music (combined=0.310) +2026-06-25 18:10:56,224 | INFO | +[831.80s] AMBIENT | scene='' +2026-06-25 18:10:56,224 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,224 | INFO | Music 0.677 0.000 0.372 ✓ +2026-06-25 18:10:56,224 | INFO | Singing 0.162 0.000 0.089 ✗ +2026-06-25 18:10:56,224 | INFO | Middle Eastern music 0.155 0.000 0.085 ✗ +2026-06-25 18:10:56,224 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:10:56,255 | INFO | +[832.00s] AMBIENT | scene='' +2026-06-25 18:10:56,256 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,256 | INFO | Music 0.574 0.000 0.316 ✓ +2026-06-25 18:10:56,256 | INFO | Singing 0.149 0.000 0.082 ✗ +2026-06-25 18:10:56,256 | INFO | → WINNER: Music (combined=0.316) +2026-06-25 18:10:56,286 | INFO | +[832.20s] AMBIENT | scene='' +2026-06-25 18:10:56,286 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,286 | INFO | Music 0.772 0.000 0.425 ✓ +2026-06-25 18:10:56,287 | INFO | Middle Eastern music 0.233 0.000 0.128 ✓ +2026-06-25 18:10:56,287 | INFO | Musical instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:10:56,287 | INFO | Folk music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:56,287 | INFO | Singing 0.094 0.000 0.052 ✗ +2026-06-25 18:10:56,288 | INFO | Tabla 0.074 0.000 0.041 ✗ +2026-06-25 18:10:56,288 | INFO | → WINNER: Music (combined=0.425) +2026-06-25 18:10:56,312 | INFO | +[832.40s] AMBIENT | scene='' +2026-06-25 18:10:56,312 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,312 | INFO | Music 0.808 0.000 0.444 ✓ +2026-06-25 18:10:56,312 | INFO | Middle Eastern music 0.292 0.000 0.161 ✓ +2026-06-25 18:10:56,312 | INFO | Singing 0.209 0.000 0.115 ✗ +2026-06-25 18:10:56,312 | INFO | Folk music 0.158 0.000 0.087 ✗ +2026-06-25 18:10:56,312 | INFO | Musical instrument 0.126 0.000 0.070 ✗ +2026-06-25 18:10:56,312 | INFO | Tabla 0.112 0.000 0.061 ✗ +2026-06-25 18:10:56,312 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:10:56,348 | INFO | +[832.60s] AMBIENT | scene='' +2026-06-25 18:10:56,348 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,348 | INFO | Music 0.776 0.000 0.427 ✓ +2026-06-25 18:10:56,348 | INFO | Singing 0.252 0.000 0.139 ✓ +2026-06-25 18:10:56,348 | INFO | Middle Eastern music 0.205 0.000 0.113 ✗ +2026-06-25 18:10:56,348 | INFO | Folk music 0.106 0.000 0.059 ✗ +2026-06-25 18:10:56,348 | INFO | Musical instrument 0.087 0.000 0.048 ✗ +2026-06-25 18:10:56,350 | INFO | Tabla 0.063 0.000 0.035 ✗ +2026-06-25 18:10:56,350 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:10:56,380 | INFO | +[832.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,380 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,380 | INFO | Music 0.854 0.000 0.470 ✓ +2026-06-25 18:10:56,380 | INFO | Singing 0.386 0.000 0.212 ✓ +2026-06-25 18:10:56,380 | INFO | Musical instrument 0.120 0.000 0.066 ✗ +2026-06-25 18:10:56,380 | INFO | Folk music 0.118 0.000 0.065 ✗ +2026-06-25 18:10:56,380 | INFO | Middle Eastern music 0.110 0.000 0.060 ✗ +2026-06-25 18:10:56,380 | INFO | Yodeling 0.094 0.000 0.052 ✗ +2026-06-25 18:10:56,380 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:10:56,411 | INFO | +[833.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,411 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,412 | INFO | Music 0.677 0.000 0.373 ✓ +2026-06-25 18:10:56,412 | INFO | Singing 0.237 0.000 0.131 ✓ +2026-06-25 18:10:56,412 | INFO | Middle Eastern music 0.122 0.000 0.067 ✗ +2026-06-25 18:10:56,412 | INFO | → WINNER: Music (combined=0.373) +2026-06-25 18:10:56,440 | INFO | +[833.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,440 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,440 | INFO | Music 0.424 0.000 0.233 ✓ +2026-06-25 18:10:56,440 | INFO | Singing 0.147 0.000 0.081 ✗ +2026-06-25 18:10:56,440 | INFO | → WINNER: Music (combined=0.233) +2026-06-25 18:10:56,470 | INFO | +[833.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,470 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,470 | INFO | Music 0.771 0.000 0.424 ✓ +2026-06-25 18:10:56,470 | INFO | Music of Bollywood 0.056 0.380 0.202 ✓ +2026-06-25 18:10:56,470 | INFO | Middle Eastern music 0.188 0.000 0.103 ✗ +2026-06-25 18:10:56,470 | INFO | Musical instrument 0.166 0.000 0.091 ✗ +2026-06-25 18:10:56,470 | INFO | Carnatic music 0.152 0.000 0.084 ✗ +2026-06-25 18:10:56,470 | INFO | Folk music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:56,470 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:10:56,506 | INFO | +[833.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,507 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,507 | INFO | Music 0.446 0.000 0.245 ✓ +2026-06-25 18:10:56,507 | INFO | → WINNER: Music (combined=0.245) +2026-06-25 18:10:56,536 | INFO | +[833.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,536 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,536 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:10:56,537 | INFO | Middle Eastern music 0.198 0.000 0.109 ✗ +2026-06-25 18:10:56,537 | INFO | Musical instrument 0.156 0.000 0.086 ✗ +2026-06-25 18:10:56,537 | INFO | Folk music 0.124 0.000 0.068 ✗ +2026-06-25 18:10:56,537 | INFO | Singing 0.111 0.000 0.061 ✗ +2026-06-25 18:10:56,537 | INFO | Tabla 0.092 0.000 0.051 ✗ +2026-06-25 18:10:56,538 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:10:56,567 | INFO | +[834.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,568 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,568 | INFO | Music 0.785 0.000 0.432 ✓ +2026-06-25 18:10:56,568 | INFO | Middle Eastern music 0.228 0.000 0.126 ✓ +2026-06-25 18:10:56,568 | INFO | Musical instrument 0.137 0.000 0.075 ✗ +2026-06-25 18:10:56,569 | INFO | Folk music 0.127 0.000 0.070 ✗ +2026-06-25 18:10:56,569 | INFO | Singing 0.112 0.000 0.061 ✗ +2026-06-25 18:10:56,570 | INFO | Tabla 0.056 0.000 0.031 ✗ +2026-06-25 18:10:56,570 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:10:56,599 | INFO | +[834.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,600 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,600 | INFO | Music 0.738 0.000 0.406 ✓ +2026-06-25 18:10:56,600 | INFO | Music of Bollywood 0.078 0.380 0.214 ✓ +2026-06-25 18:10:56,600 | INFO | Middle Eastern music 0.293 0.000 0.161 ✓ +2026-06-25 18:10:56,600 | INFO | Singing 0.129 0.000 0.071 ✗ +2026-06-25 18:10:56,600 | INFO | Folk music 0.122 0.000 0.067 ✗ +2026-06-25 18:10:56,600 | INFO | Tabla 0.073 0.000 0.040 ✗ +2026-06-25 18:10:56,600 | INFO | → WINNER: Music (combined=0.406) +2026-06-25 18:10:56,630 | INFO | +[834.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,631 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,631 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:10:56,631 | INFO | Music of Bollywood 0.064 0.380 0.206 ✓ +2026-06-25 18:10:56,632 | INFO | Middle Eastern music 0.231 0.000 0.127 ✓ +2026-06-25 18:10:56,632 | INFO | Salsa music 0.218 0.000 0.120 ✓ +2026-06-25 18:10:56,632 | INFO | Singing 0.206 0.000 0.113 ✗ +2026-06-25 18:10:56,632 | INFO | Music of Latin America 0.201 0.000 0.111 ✗ +2026-06-25 18:10:56,632 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:10:56,661 | INFO | +[834.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,661 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,661 | INFO | Music 0.841 0.000 0.462 ✓ +2026-06-25 18:10:56,661 | INFO | Music of Bollywood 0.047 0.380 0.197 ✓ +2026-06-25 18:10:56,661 | INFO | Singing 0.278 0.000 0.153 ✓ +2026-06-25 18:10:56,661 | INFO | Music of Latin America 0.266 0.000 0.146 ✓ +2026-06-25 18:10:56,661 | INFO | Flamenco 0.207 0.000 0.114 ✗ +2026-06-25 18:10:56,661 | INFO | Musical instrument 0.095 0.000 0.052 ✗ +2026-06-25 18:10:56,661 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:10:56,693 | INFO | +[834.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,693 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,693 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:10:56,694 | INFO | Singing 0.289 0.000 0.159 ✓ +2026-06-25 18:10:56,694 | INFO | Female singing 0.101 0.000 0.055 ✗ +2026-06-25 18:10:56,694 | INFO | Musical instrument 0.086 0.000 0.047 ✗ +2026-06-25 18:10:56,694 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:10:56,724 | INFO | +[835.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,725 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,725 | INFO | Music 0.857 0.000 0.471 ✓ +2026-06-25 18:10:56,725 | INFO | Singing 0.255 0.000 0.140 ✓ +2026-06-25 18:10:56,725 | INFO | Middle Eastern music 0.104 0.000 0.057 ✗ +2026-06-25 18:10:56,725 | INFO | Yodeling 0.098 0.000 0.054 ✗ +2026-06-25 18:10:56,725 | INFO | Musical instrument 0.075 0.000 0.041 ✗ +2026-06-25 18:10:56,726 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:10:56,754 | INFO | +[835.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,754 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,754 | INFO | Music 0.809 0.000 0.445 ✓ +2026-06-25 18:10:56,754 | INFO | Singing 0.291 0.000 0.160 ✓ +2026-06-25 18:10:56,754 | INFO | Female singing 0.134 0.000 0.074 ✗ +2026-06-25 18:10:56,754 | INFO | Synthetic singing 0.077 0.000 0.043 ✗ +2026-06-25 18:10:56,756 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:10:56,780 | INFO | +[835.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,780 | INFO | Music 0.843 0.000 0.464 ✓ +2026-06-25 18:10:56,780 | INFO | Music of Bollywood 0.209 0.380 0.286 ✓ +2026-06-25 18:10:56,780 | INFO | Middle Eastern music 0.294 0.000 0.162 ✓ +2026-06-25 18:10:56,786 | INFO | Singing 0.133 0.000 0.073 ✗ +2026-06-25 18:10:56,786 | INFO | Folk music 0.098 0.000 0.054 ✗ +2026-06-25 18:10:56,787 | INFO | Song 0.070 0.000 0.039 ✗ +2026-06-25 18:10:56,787 | INFO | → WINNER: Music (combined=0.464) +2026-06-25 18:10:56,817 | INFO | +[835.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,817 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,818 | INFO | Music 0.773 0.000 0.425 ✓ +2026-06-25 18:10:56,818 | INFO | Music of Bollywood 0.117 0.380 0.235 ✓ +2026-06-25 18:10:56,818 | INFO | Middle Eastern music 0.245 0.000 0.135 ✓ +2026-06-25 18:10:56,818 | INFO | Singing 0.104 0.000 0.057 ✗ +2026-06-25 18:10:56,818 | INFO | Folk music 0.097 0.000 0.053 ✗ +2026-06-25 18:10:56,818 | INFO | Song 0.052 0.000 0.029 ✗ +2026-06-25 18:10:56,819 | INFO | → WINNER: Music (combined=0.425) +2026-06-25 18:10:56,848 | INFO | +[835.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,848 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,849 | INFO | Music 0.780 0.000 0.429 ✓ +2026-06-25 18:10:56,849 | INFO | Music of Bollywood 0.144 0.380 0.250 ✓ +2026-06-25 18:10:56,849 | INFO | Middle Eastern music 0.219 0.000 0.121 ✓ +2026-06-25 18:10:56,849 | INFO | Singing 0.083 0.000 0.045 ✗ +2026-06-25 18:10:56,849 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:10:56,879 | INFO | +[836.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,879 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,880 | INFO | Music 0.792 0.000 0.436 ✓ +2026-06-25 18:10:56,880 | INFO | Singing 0.174 0.000 0.096 ✗ +2026-06-25 18:10:56,880 | INFO | → WINNER: Music (combined=0.436) +2026-06-25 18:10:56,909 | INFO | +[836.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,910 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,910 | INFO | Music 0.652 0.000 0.358 ✓ +2026-06-25 18:10:56,910 | INFO | Singing 0.200 0.000 0.110 ✗ +2026-06-25 18:10:56,911 | INFO | Child singing 0.200 0.000 0.110 ✗ +2026-06-25 18:10:56,911 | INFO | Female singing 0.177 0.000 0.097 ✗ +2026-06-25 18:10:56,911 | INFO | → WINNER: Music (combined=0.358) +2026-06-25 18:10:56,984 | INFO | +[839.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:56,985 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:56,987 | INFO | Music 0.822 0.000 0.452 ✓ +2026-06-25 18:10:56,987 | INFO | Musical instrument 0.252 0.000 0.138 ✓ +2026-06-25 18:10:56,989 | INFO | Guitar 0.077 0.000 0.042 ✗ +2026-06-25 18:10:56,989 | INFO | Plucked string instrument 0.069 0.000 0.038 ✗ +2026-06-25 18:10:56,989 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:10:57,031 | INFO | +[840.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,031 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,031 | INFO | Music 0.455 0.000 0.250 ✓ +2026-06-25 18:10:57,031 | INFO | Animal 0.121 0.000 0.067 ✗ +2026-06-25 18:10:57,031 | INFO | Musical instrument 0.080 0.000 0.044 ✗ +2026-06-25 18:10:57,032 | INFO | → WINNER: Music (combined=0.250) +2026-06-25 18:10:57,061 | INFO | +[840.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,062 | INFO | Music 0.201 0.000 0.111 ✗ +2026-06-25 18:10:57,062 | INFO | Animal 0.147 0.000 0.081 ✗ +2026-06-25 18:10:57,063 | INFO | Bird 0.059 0.000 0.032 ✗ +2026-06-25 18:10:57,063 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:10:57,063 | INFO | → no winner +2026-06-25 18:10:57,103 | INFO | +[840.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,103 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,103 | INFO | Bird vocalization, bird call, bird song 0.050 0.272 0.150 ✓ +2026-06-25 18:10:57,104 | INFO | Animal 0.212 0.000 0.116 ✗ +2026-06-25 18:10:57,104 | INFO | Bird 0.127 0.000 0.070 ✗ +2026-06-25 18:10:57,104 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.150) +2026-06-25 18:10:57,175 | INFO | +[840.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,175 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,176 | INFO | Bird vocalization, bird call, bird song 0.080 0.272 0.166 ✓ +2026-06-25 18:10:57,176 | INFO | Cricket 0.029 0.330 0.165 ✓ +2026-06-25 18:10:57,176 | INFO | Animal 0.235 0.000 0.129 ✓ +2026-06-25 18:10:57,176 | INFO | Bird 0.188 0.000 0.103 ✗ +2026-06-25 18:10:57,176 | INFO | Environmental noise 0.110 0.000 0.060 ✗ +2026-06-25 18:10:57,176 | INFO | Outside, rural or natural 0.084 0.000 0.046 ✗ +2026-06-25 18:10:57,177 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.166) +2026-06-25 18:10:57,247 | INFO | +[840.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,248 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,248 | INFO | Bird vocalization, bird call, bird song 0.081 0.272 0.167 ✓ +2026-06-25 18:10:57,248 | INFO | Cricket 0.032 0.330 0.166 ✓ +2026-06-25 18:10:57,248 | INFO | Animal 0.196 0.000 0.108 ✗ +2026-06-25 18:10:57,248 | INFO | Environmental noise 0.178 0.000 0.098 ✗ +2026-06-25 18:10:57,248 | INFO | Bird 0.141 0.000 0.078 ✗ +2026-06-25 18:10:57,250 | INFO | Outside, rural or natural 0.082 0.000 0.045 ✗ +2026-06-25 18:10:57,250 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.167) +2026-06-25 18:10:57,301 | INFO | +[841.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,301 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,302 | INFO | Insect 0.078 0.324 0.189 ✓ +2026-06-25 18:10:57,302 | INFO | Cricket 0.068 0.330 0.186 ✓ +2026-06-25 18:10:57,302 | INFO | Bird vocalization, bird call, bird song 0.102 0.272 0.179 ✓ +2026-06-25 18:10:57,303 | INFO | Environmental noise 0.178 0.000 0.098 ✗ +2026-06-25 18:10:57,304 | INFO | Bird 0.160 0.000 0.088 ✗ +2026-06-25 18:10:57,304 | INFO | Animal 0.130 0.000 0.071 ✗ +2026-06-25 18:10:57,304 | INFO | → WINNER: Insect (combined=0.189) +2026-06-25 18:10:57,334 | INFO | +[841.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,334 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,335 | INFO | Bird vocalization, bird call, bird song 0.116 0.272 0.186 ✓ +2026-06-25 18:10:57,335 | INFO | Bird 0.163 0.000 0.090 ✗ +2026-06-25 18:10:57,336 | INFO | Environmental noise 0.144 0.000 0.079 ✗ +2026-06-25 18:10:57,336 | INFO | Chirp, tweet 0.098 0.000 0.054 ✗ +2026-06-25 18:10:57,336 | INFO | Animal 0.093 0.000 0.051 ✗ +2026-06-25 18:10:57,337 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.186) +2026-06-25 18:10:57,366 | INFO | +[841.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,366 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,368 | INFO | Bird vocalization, bird call, bird song 0.297 0.272 0.286 ✓ +2026-06-25 18:10:57,368 | INFO | Bird 0.406 0.000 0.223 ✓ +2026-06-25 18:10:57,368 | INFO | Chirp, tweet 0.303 0.000 0.167 ✓ +2026-06-25 18:10:57,368 | INFO | Animal 0.129 0.000 0.071 ✗ +2026-06-25 18:10:57,369 | INFO | Environmental noise 0.073 0.000 0.040 ✗ +2026-06-25 18:10:57,369 | INFO | Outside, rural or natural 0.055 0.000 0.030 ✗ +2026-06-25 18:10:57,369 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.286) +2026-06-25 18:10:57,398 | INFO | +[841.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,400 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,400 | INFO | Bird vocalization, bird call, bird song 0.363 0.272 0.322 ✓ +2026-06-25 18:10:57,400 | INFO | Bird 0.497 0.000 0.273 ✓ +2026-06-25 18:10:57,400 | INFO | Chirp, tweet 0.405 0.000 0.223 ✓ +2026-06-25 18:10:57,400 | INFO | Animal 0.107 0.000 0.059 ✗ +2026-06-25 18:10:57,401 | INFO | Domestic animals, pets 0.054 0.000 0.030 ✗ +2026-06-25 18:10:57,401 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.322) +2026-06-25 18:10:57,430 | INFO | +[841.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,430 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,430 | INFO | Bird vocalization, bird call, bird song 0.359 0.272 0.320 ✓ +2026-06-25 18:10:57,432 | INFO | Bird 0.489 0.000 0.269 ✓ +2026-06-25 18:10:57,432 | INFO | Chirp, tweet 0.424 0.000 0.233 ✓ +2026-06-25 18:10:57,432 | INFO | Animal 0.071 0.000 0.039 ✗ +2026-06-25 18:10:57,432 | INFO | Domestic animals, pets 0.051 0.000 0.028 ✗ +2026-06-25 18:10:57,432 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.320) +2026-06-25 18:10:57,462 | INFO | +[842.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,463 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,463 | INFO | Bird 0.522 0.000 0.287 ✓ +2026-06-25 18:10:57,463 | INFO | Bird vocalization, bird call, bird song 0.288 0.272 0.281 ✓ +2026-06-25 18:10:57,463 | INFO | Chirp, tweet 0.329 0.000 0.181 ✓ +2026-06-25 18:10:57,464 | INFO | Animal 0.104 0.000 0.057 ✗ +2026-06-25 18:10:57,464 | INFO | Domestic animals, pets 0.062 0.000 0.034 ✗ +2026-06-25 18:10:57,464 | INFO | → WINNER: Bird (combined=0.287) +2026-06-25 18:10:57,493 | INFO | +[842.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,494 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,494 | INFO | Bird vocalization, bird call, bird song 0.289 0.272 0.281 ✓ +2026-06-25 18:10:57,494 | INFO | Bird 0.509 0.000 0.280 ✓ +2026-06-25 18:10:57,495 | INFO | Chirp, tweet 0.342 0.000 0.188 ✓ +2026-06-25 18:10:57,495 | INFO | Animal 0.108 0.000 0.060 ✗ +2026-06-25 18:10:57,496 | INFO | Domestic animals, pets 0.041 0.000 0.022 ✗ +2026-06-25 18:10:57,496 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.281) +2026-06-25 18:10:57,525 | INFO | +[842.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,525 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,525 | INFO | Bird vocalization, bird call, bird song 0.224 0.272 0.246 ✓ +2026-06-25 18:10:57,525 | INFO | Bird 0.358 0.000 0.197 ✓ +2026-06-25 18:10:57,525 | INFO | Chirp, tweet 0.204 0.000 0.112 ✗ +2026-06-25 18:10:57,526 | INFO | Animal 0.137 0.000 0.075 ✗ +2026-06-25 18:10:57,526 | INFO | Environmental noise 0.098 0.000 0.054 ✗ +2026-06-25 18:10:57,526 | INFO | Outside, rural or natural 0.054 0.000 0.030 ✗ +2026-06-25 18:10:57,526 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.246) +2026-06-25 18:10:57,554 | INFO | +[842.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,554 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,554 | INFO | Bird vocalization, bird call, bird song 0.141 0.272 0.200 ✓ +2026-06-25 18:10:57,556 | INFO | Cricket 0.029 0.330 0.165 ✓ +2026-06-25 18:10:57,556 | INFO | Environmental noise 0.229 0.000 0.126 ✓ +2026-06-25 18:10:57,556 | INFO | Bird 0.212 0.000 0.117 ✗ +2026-06-25 18:10:57,556 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:10:57,556 | INFO | Chirp, tweet 0.097 0.000 0.054 ✗ +2026-06-25 18:10:57,556 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.200) +2026-06-25 18:10:57,586 | INFO | +[842.80s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,586 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,586 | INFO | Animal 0.068 0.000 0.037 ✗ +2026-06-25 18:10:57,586 | INFO | → no winner +2026-06-25 18:10:57,616 | INFO | +[843.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,616 | INFO | → no winner +2026-06-25 18:10:57,646 | INFO | +[843.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,646 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,646 | INFO | Inside, small room 0.081 0.000 0.044 ✗ +2026-06-25 18:10:57,647 | INFO | → no winner +2026-06-25 18:10:57,675 | INFO | +[843.40s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,676 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,676 | INFO | Inside, small room 0.097 0.000 0.053 ✗ +2026-06-25 18:10:57,676 | INFO | Animal 0.067 0.000 0.037 ✗ +2026-06-25 18:10:57,676 | INFO | Bird 0.060 0.000 0.033 ✗ +2026-06-25 18:10:57,676 | INFO | → no winner +2026-06-25 18:10:57,706 | INFO | +[843.60s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,706 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,706 | INFO | Bird vocalization, bird call, bird song 0.088 0.272 0.171 ✓ +2026-06-25 18:10:57,706 | INFO | Bird 0.178 0.000 0.098 ✗ +2026-06-25 18:10:57,706 | INFO | Animal 0.115 0.000 0.063 ✗ +2026-06-25 18:10:57,706 | INFO | Inside, small room 0.095 0.000 0.052 ✗ +2026-06-25 18:10:57,706 | INFO | Chirp, tweet 0.091 0.000 0.050 ✗ +2026-06-25 18:10:57,706 | INFO | Chicken, rooster 0.086 0.000 0.047 ✗ +2026-06-25 18:10:57,706 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.171) +2026-06-25 18:10:57,741 | INFO | +[855.00s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,742 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,742 | INFO | Bird 0.180 0.255 0.214 ✓ +2026-06-25 18:10:57,742 | INFO | Bird vocalization, bird call, bird song 0.072 0.255 0.154 ✓ +2026-06-25 18:10:57,742 | INFO | Animal 0.238 0.000 0.131 ✓ +2026-06-25 18:10:57,742 | INFO | Fowl 0.214 0.000 0.118 ✗ +2026-06-25 18:10:57,742 | INFO | Chicken, rooster 0.088 0.000 0.049 ✗ +2026-06-25 18:10:57,743 | INFO | Rodents, rats, mice 0.076 0.000 0.042 ✗ +2026-06-25 18:10:57,743 | INFO | → WINNER: Bird (combined=0.214) +2026-06-25 18:10:57,773 | INFO | +[855.20s] AMBIENT | scene='The image is a still from a Bollywood movie. It shows a man and a woma' +2026-06-25 18:10:57,773 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,773 | INFO | Bird 0.189 0.255 0.219 ✓ +2026-06-25 18:10:57,773 | INFO | Bird vocalization, bird call, bird song 0.089 0.255 0.164 ✓ +2026-06-25 18:10:57,774 | INFO | Environmental noise 0.079 0.234 0.149 ✓ +2026-06-25 18:10:57,774 | INFO | Animal 0.234 0.000 0.129 ✓ +2026-06-25 18:10:57,774 | INFO | Mouse 0.087 0.000 0.048 ✗ +2026-06-25 18:10:57,774 | INFO | Chirp, tweet 0.068 0.000 0.038 ✗ +2026-06-25 18:10:57,774 | INFO | → WINNER: Bird (combined=0.219) +2026-06-25 18:10:57,808 | INFO | +[871.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,808 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,808 | INFO | Bird vocalization, bird call, bird song 0.086 0.281 0.174 ✓ +2026-06-25 18:10:57,808 | INFO | Cricket 0.059 0.292 0.164 ✓ +2026-06-25 18:10:57,808 | INFO | Insect 0.060 0.270 0.154 ✓ +2026-06-25 18:10:57,809 | INFO | Animal 0.166 0.000 0.091 ✗ +2026-06-25 18:10:57,809 | INFO | Bird 0.161 0.000 0.089 ✗ +2026-06-25 18:10:57,809 | INFO | Environmental noise 0.144 0.000 0.079 ✗ +2026-06-25 18:10:57,809 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.174) +2026-06-25 18:10:57,839 | INFO | +[872.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,839 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,839 | INFO | Bird vocalization, bird call, bird song 0.128 0.281 0.197 ✓ +2026-06-25 18:10:57,839 | INFO | Cricket 0.040 0.292 0.154 ✓ +2026-06-25 18:10:57,840 | INFO | Environmental noise 0.278 0.000 0.153 ✓ +2026-06-25 18:10:57,840 | INFO | Bird 0.186 0.000 0.102 ✗ +2026-06-25 18:10:57,840 | INFO | Animal 0.135 0.000 0.074 ✗ +2026-06-25 18:10:57,840 | INFO | Chirp, tweet 0.120 0.000 0.066 ✗ +2026-06-25 18:10:57,841 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.197) +2026-06-25 18:10:57,870 | INFO | +[872.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,870 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,871 | INFO | Bird vocalization, bird call, bird song 0.136 0.281 0.201 ✓ +2026-06-25 18:10:57,871 | INFO | Environmental noise 0.327 0.000 0.180 ✓ +2026-06-25 18:10:57,871 | INFO | Cricket 0.046 0.292 0.157 ✓ +2026-06-25 18:10:57,871 | INFO | Insect 0.063 0.270 0.156 ✓ +2026-06-25 18:10:57,871 | INFO | Bird 0.161 0.000 0.089 ✗ +2026-06-25 18:10:57,871 | INFO | Chirp, tweet 0.112 0.000 0.061 ✗ +2026-06-25 18:10:57,871 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.201) +2026-06-25 18:10:57,901 | INFO | +[872.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,902 | INFO | Bird vocalization, bird call, bird song 0.164 0.281 0.217 ✓ +2026-06-25 18:10:57,902 | INFO | Cricket 0.065 0.292 0.168 ✓ +2026-06-25 18:10:57,902 | INFO | Insect 0.070 0.270 0.160 ✓ +2026-06-25 18:10:57,904 | INFO | Bird 0.220 0.000 0.121 ✓ +2026-06-25 18:10:57,904 | INFO | Environmental noise 0.189 0.000 0.104 ✗ +2026-06-25 18:10:57,904 | INFO | Chirp, tweet 0.173 0.000 0.095 ✗ +2026-06-25 18:10:57,904 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.217) +2026-06-25 18:10:57,933 | INFO | +[872.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,933 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,933 | INFO | Bird vocalization, bird call, bird song 0.159 0.281 0.214 ✓ +2026-06-25 18:10:57,934 | INFO | Insect 0.056 0.270 0.152 ✓ +2026-06-25 18:10:57,934 | INFO | Cricket 0.038 0.292 0.152 ✓ +2026-06-25 18:10:57,934 | INFO | Environmental noise 0.245 0.000 0.135 ✓ +2026-06-25 18:10:57,934 | INFO | Bird 0.203 0.000 0.112 ✗ +2026-06-25 18:10:57,934 | INFO | Chirp, tweet 0.155 0.000 0.085 ✗ +2026-06-25 18:10:57,935 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.214) +2026-06-25 18:10:57,964 | INFO | +[872.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,965 | INFO | Bird vocalization, bird call, bird song 0.166 0.281 0.217 ✓ +2026-06-25 18:10:57,965 | INFO | Cricket 0.044 0.292 0.156 ✓ +2026-06-25 18:10:57,965 | INFO | Insect 0.061 0.270 0.155 ✓ +2026-06-25 18:10:57,965 | INFO | Environmental noise 0.273 0.000 0.150 ✓ +2026-06-25 18:10:57,965 | INFO | Bird 0.233 0.000 0.128 ✓ +2026-06-25 18:10:57,966 | INFO | Chirp, tweet 0.146 0.000 0.081 ✗ +2026-06-25 18:10:57,966 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.217) +2026-06-25 18:10:57,994 | INFO | +[873.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:57,995 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:57,995 | INFO | Bird vocalization, bird call, bird song 0.083 0.281 0.172 ✓ +2026-06-25 18:10:57,995 | INFO | Cricket 0.063 0.292 0.167 ✓ +2026-06-25 18:10:57,995 | INFO | Insect 0.069 0.270 0.160 ✓ +2026-06-25 18:10:57,996 | INFO | Environmental noise 0.233 0.000 0.128 ✓ +2026-06-25 18:10:57,996 | INFO | Animal 0.169 0.000 0.093 ✗ +2026-06-25 18:10:57,996 | INFO | Bird 0.132 0.000 0.073 ✗ +2026-06-25 18:10:57,996 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.172) +2026-06-25 18:10:58,026 | INFO | +[873.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,026 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,026 | INFO | Bird vocalization, bird call, bird song 0.106 0.281 0.185 ✓ +2026-06-25 18:10:58,026 | INFO | Cricket 0.071 0.292 0.171 ✓ +2026-06-25 18:10:58,026 | INFO | Insect 0.062 0.270 0.156 ✓ +2026-06-25 18:10:58,026 | INFO | Environmental noise 0.195 0.000 0.107 ✗ +2026-06-25 18:10:58,026 | INFO | Bird 0.175 0.000 0.096 ✗ +2026-06-25 18:10:58,026 | INFO | Animal 0.142 0.000 0.078 ✗ +2026-06-25 18:10:58,026 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.185) +2026-06-25 18:10:58,056 | INFO | +[873.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,056 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,056 | INFO | Bird vocalization, bird call, bird song 0.118 0.281 0.192 ✓ +2026-06-25 18:10:58,056 | INFO | Cricket 0.035 0.292 0.151 ✓ +2026-06-25 18:10:58,056 | INFO | Bird 0.149 0.000 0.082 ✗ +2026-06-25 18:10:58,057 | INFO | Environmental noise 0.149 0.000 0.082 ✗ +2026-06-25 18:10:58,057 | INFO | Animal 0.096 0.000 0.053 ✗ +2026-06-25 18:10:58,057 | INFO | Chirp, tweet 0.089 0.000 0.049 ✗ +2026-06-25 18:10:58,057 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.192) +2026-06-25 18:10:58,086 | INFO | +[873.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,088 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,088 | INFO | Rodents, rats, mice 0.527 0.000 0.290 ✓ +2026-06-25 18:10:58,088 | INFO | Mouse 0.173 0.000 0.095 ✗ +2026-06-25 18:10:58,088 | INFO | Patter 0.131 0.000 0.072 ✗ +2026-06-25 18:10:58,090 | INFO | Animal 0.092 0.000 0.050 ✗ +2026-06-25 18:10:58,090 | INFO | Squeal 0.059 0.000 0.032 ✗ +2026-06-25 18:10:58,090 | INFO | Bird 0.044 0.000 0.024 ✗ +2026-06-25 18:10:58,090 | INFO | → WINNER: Rodents, rats, mice (combined=0.290) +2026-06-25 18:10:58,120 | INFO | +[873.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,120 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,120 | INFO | Bird vocalization, bird call, bird song 0.061 0.281 0.160 ✓ +2026-06-25 18:10:58,120 | INFO | Bird 0.155 0.000 0.085 ✗ +2026-06-25 18:10:58,121 | INFO | Rodents, rats, mice 0.104 0.000 0.057 ✗ +2026-06-25 18:10:58,121 | INFO | Squeal 0.071 0.000 0.039 ✗ +2026-06-25 18:10:58,121 | INFO | Animal 0.054 0.000 0.030 ✗ +2026-06-25 18:10:58,121 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.160) +2026-06-25 18:10:58,150 | INFO | +[874.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,151 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,151 | INFO | Bird vocalization, bird call, bird song 0.102 0.281 0.182 ✓ +2026-06-25 18:10:58,151 | INFO | Cricket 0.038 0.292 0.153 ✓ +2026-06-25 18:10:58,151 | INFO | Bird 0.178 0.000 0.098 ✗ +2026-06-25 18:10:58,151 | INFO | Chirp, tweet 0.105 0.000 0.058 ✗ +2026-06-25 18:10:58,151 | INFO | Rodents, rats, mice 0.089 0.000 0.049 ✗ +2026-06-25 18:10:58,152 | INFO | Animal 0.070 0.000 0.039 ✗ +2026-06-25 18:10:58,152 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.182) +2026-06-25 18:10:58,182 | INFO | +[874.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,182 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,182 | INFO | Animal 0.131 0.000 0.072 ✗ +2026-06-25 18:10:58,182 | INFO | Squeal 0.067 0.000 0.037 ✗ +2026-06-25 18:10:58,182 | INFO | Domestic animals, pets 0.050 0.000 0.027 ✗ +2026-06-25 18:10:58,183 | INFO | Bird 0.047 0.000 0.026 ✗ +2026-06-25 18:10:58,183 | INFO | → no winner +2026-06-25 18:10:58,212 | INFO | +[874.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,212 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,212 | INFO | Bird vocalization, bird call, bird song 0.108 0.281 0.186 ✓ +2026-06-25 18:10:58,212 | INFO | Insect 0.115 0.270 0.185 ✓ +2026-06-25 18:10:58,214 | INFO | Cricket 0.063 0.292 0.166 ✓ +2026-06-25 18:10:58,214 | INFO | Music 0.215 0.000 0.118 ✗ +2026-06-25 18:10:58,214 | INFO | Bird 0.114 0.000 0.062 ✗ +2026-06-25 18:10:58,214 | INFO | Chirp, tweet 0.091 0.000 0.050 ✗ +2026-06-25 18:10:58,214 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.186) +2026-06-25 18:10:58,244 | INFO | +[874.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,245 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,245 | INFO | Insect 0.158 0.270 0.208 ✓ +2026-06-25 18:10:58,245 | INFO | Music 0.297 0.000 0.163 ✓ +2026-06-25 18:10:58,245 | INFO | Cricket 0.040 0.292 0.154 ✓ +2026-06-25 18:10:58,245 | INFO | Animal 0.078 0.000 0.043 ✗ +2026-06-25 18:10:58,245 | INFO | Bird 0.034 0.000 0.019 ✗ +2026-06-25 18:10:58,245 | INFO | → WINNER: Insect (combined=0.208) +2026-06-25 18:10:58,274 | INFO | +[874.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,277 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,283 | INFO | Music 0.201 0.000 0.110 ✗ +2026-06-25 18:10:58,284 | INFO | Animal 0.091 0.000 0.050 ✗ +2026-06-25 18:10:58,291 | INFO | → no winner +2026-06-25 18:10:58,332 | INFO | +[875.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,333 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,333 | INFO | Animal 0.107 0.000 0.059 ✗ +2026-06-25 18:10:58,335 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:10:58,336 | INFO | Domestic animals, pets 0.050 0.000 0.028 ✗ +2026-06-25 18:10:58,337 | INFO | Bird 0.048 0.000 0.026 ✗ +2026-06-25 18:10:58,338 | INFO | → no winner +2026-06-25 18:10:58,371 | INFO | +[875.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,372 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,372 | INFO | Music 0.097 0.000 0.053 ✗ +2026-06-25 18:10:58,374 | INFO | Crowd 0.061 0.000 0.034 ✗ +2026-06-25 18:10:58,374 | INFO | → no winner +2026-06-25 18:10:58,405 | INFO | +[875.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,405 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,406 | INFO | Music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:58,406 | INFO | Crowd 0.064 0.000 0.035 ✗ +2026-06-25 18:10:58,406 | INFO | → no winner +2026-06-25 18:10:58,436 | INFO | +[875.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,437 | INFO | → no winner +2026-06-25 18:10:58,462 | INFO | +[875.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,462 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,462 | INFO | Animal 0.049 0.000 0.027 ✗ +2026-06-25 18:10:58,462 | INFO | → no winner +2026-06-25 18:10:58,506 | INFO | +[876.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,506 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,507 | INFO | Bird vocalization, bird call, bird song 0.042 0.281 0.150 ✓ +2026-06-25 18:10:58,507 | INFO | Animal 0.146 0.000 0.081 ✗ +2026-06-25 18:10:58,507 | INFO | Bird 0.072 0.000 0.040 ✗ +2026-06-25 18:10:58,507 | INFO | Domestic animals, pets 0.047 0.000 0.026 ✗ +2026-06-25 18:10:58,507 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.150) +2026-06-25 18:10:58,568 | INFO | +[876.20s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,568 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,568 | INFO | Bird vocalization, bird call, bird song 0.079 0.281 0.170 ✓ +2026-06-25 18:10:58,569 | INFO | Animal 0.214 0.000 0.118 ✗ +2026-06-25 18:10:58,569 | INFO | Bird 0.163 0.000 0.090 ✗ +2026-06-25 18:10:58,569 | INFO | Chirp, tweet 0.079 0.000 0.043 ✗ +2026-06-25 18:10:58,569 | INFO | Environmental noise 0.077 0.000 0.042 ✗ +2026-06-25 18:10:58,569 | INFO | Outside, rural or natural 0.065 0.000 0.036 ✗ +2026-06-25 18:10:58,569 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.170) +2026-06-25 18:10:58,628 | INFO | +[876.40s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,628 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,628 | INFO | Bird vocalization, bird call, bird song 0.085 0.281 0.173 ✓ +2026-06-25 18:10:58,630 | INFO | Animal 0.232 0.000 0.128 ✓ +2026-06-25 18:10:58,630 | INFO | Bird 0.166 0.000 0.091 ✗ +2026-06-25 18:10:58,630 | INFO | Fowl 0.101 0.000 0.055 ✗ +2026-06-25 18:10:58,630 | INFO | Environmental noise 0.083 0.000 0.046 ✗ +2026-06-25 18:10:58,630 | INFO | Chirp, tweet 0.077 0.000 0.043 ✗ +2026-06-25 18:10:58,630 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.173) +2026-06-25 18:10:58,688 | INFO | +[876.60s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,688 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,688 | INFO | Bird vocalization, bird call, bird song 0.211 0.281 0.242 ✓ +2026-06-25 18:10:58,688 | INFO | Bird 0.282 0.000 0.155 ✓ +2026-06-25 18:10:58,688 | INFO | Chirp, tweet 0.236 0.000 0.130 ✓ +2026-06-25 18:10:58,690 | INFO | Animal 0.183 0.000 0.101 ✗ +2026-06-25 18:10:58,690 | INFO | Environmental noise 0.152 0.000 0.084 ✗ +2026-06-25 18:10:58,690 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:10:58,690 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.242) +2026-06-25 18:10:58,720 | INFO | +[876.80s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,720 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,721 | INFO | Bird vocalization, bird call, bird song 0.227 0.281 0.252 ✓ +2026-06-25 18:10:58,721 | INFO | Bird 0.296 0.000 0.163 ✓ +2026-06-25 18:10:58,721 | INFO | Environmental noise 0.258 0.000 0.142 ✓ +2026-06-25 18:10:58,721 | INFO | Chirp, tweet 0.221 0.000 0.121 ✓ +2026-06-25 18:10:58,721 | INFO | Animal 0.137 0.000 0.075 ✗ +2026-06-25 18:10:58,721 | INFO | Outside, rural or natural 0.072 0.000 0.040 ✗ +2026-06-25 18:10:58,721 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.252) +2026-06-25 18:10:58,750 | INFO | +[877.00s] AMBIENT | scene='The image shows a man and a woman in a romantic embrace. He is smiling' +2026-06-25 18:10:58,750 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,750 | INFO | Bird vocalization, bird call, bird song 0.201 0.281 0.237 ✓ +2026-06-25 18:10:58,750 | INFO | Environmental noise 0.286 0.000 0.157 ✓ +2026-06-25 18:10:58,752 | INFO | Bird 0.270 0.000 0.148 ✓ +2026-06-25 18:10:58,752 | INFO | Chirp, tweet 0.172 0.000 0.094 ✗ +2026-06-25 18:10:58,752 | INFO | Animal 0.127 0.000 0.070 ✗ +2026-06-25 18:10:58,752 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:10:58,752 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.237) +2026-06-25 18:10:58,783 | INFO | +[877.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,783 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,783 | INFO | Environmental noise 0.221 0.373 0.289 ✓ +2026-06-25 18:10:58,783 | INFO | Bird 0.207 0.000 0.114 ✗ +2026-06-25 18:10:58,783 | INFO | Bird vocalization, bird call, bird song 0.132 0.000 0.073 ✗ +2026-06-25 18:10:58,783 | INFO | Animal 0.131 0.000 0.072 ✗ +2026-06-25 18:10:58,784 | INFO | Chirp, tweet 0.116 0.000 0.064 ✗ +2026-06-25 18:10:58,784 | INFO | → WINNER: Environmental noise (combined=0.289) +2026-06-25 18:10:58,814 | INFO | +[877.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,814 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,815 | INFO | Environmental noise 0.134 0.373 0.242 ✓ +2026-06-25 18:10:58,815 | INFO | Animal 0.294 0.000 0.162 ✓ +2026-06-25 18:10:58,815 | INFO | Dog 0.135 0.000 0.074 ✗ +2026-06-25 18:10:58,815 | INFO | Domestic animals, pets 0.113 0.000 0.062 ✗ +2026-06-25 18:10:58,815 | INFO | Bird 0.081 0.000 0.045 ✗ +2026-06-25 18:10:58,815 | INFO | Outside, rural or natural 0.062 0.000 0.034 ✗ +2026-06-25 18:10:58,816 | INFO | → WINNER: Environmental noise (combined=0.242) +2026-06-25 18:10:58,844 | INFO | +[877.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,845 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,845 | INFO | Environmental noise 0.182 0.373 0.268 ✓ +2026-06-25 18:10:58,845 | INFO | Animal 0.130 0.000 0.071 ✗ +2026-06-25 18:10:58,845 | INFO | Music 0.119 0.000 0.066 ✗ +2026-06-25 18:10:58,845 | INFO | Outside, rural or natural 0.098 0.000 0.054 ✗ +2026-06-25 18:10:58,846 | INFO | Bird 0.060 0.000 0.033 ✗ +2026-06-25 18:10:58,846 | INFO | Bird vocalization, bird call, bird song 0.055 0.000 0.030 ✗ +2026-06-25 18:10:58,847 | INFO | → WINNER: Environmental noise (combined=0.268) +2026-06-25 18:10:58,873 | INFO | +[877.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,873 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,873 | INFO | Music 0.257 0.000 0.141 ✓ +2026-06-25 18:10:58,873 | INFO | Neigh, whinny 0.120 0.000 0.066 ✗ +2026-06-25 18:10:58,873 | INFO | Animal 0.107 0.000 0.059 ✗ +2026-06-25 18:10:58,873 | INFO | Horse 0.063 0.000 0.035 ✗ +2026-06-25 18:10:58,873 | INFO | → WINNER: Music (combined=0.141) +2026-06-25 18:10:58,906 | INFO | +[878.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,906 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,906 | INFO | Music 0.275 0.000 0.151 ✓ +2026-06-25 18:10:58,906 | INFO | → WINNER: Music (combined=0.151) +2026-06-25 18:10:58,937 | INFO | +[878.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,938 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,938 | INFO | Music 0.464 0.000 0.255 ✓ +2026-06-25 18:10:58,938 | INFO | Musical instrument 0.063 0.000 0.034 ✗ +2026-06-25 18:10:58,938 | INFO | Crowd 0.032 0.000 0.017 ✗ +2026-06-25 18:10:58,938 | INFO | → WINNER: Music (combined=0.255) +2026-06-25 18:10:58,967 | INFO | +[878.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,967 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,967 | INFO | Music 0.188 0.000 0.103 ✗ +2026-06-25 18:10:58,967 | INFO | Theremin 0.105 0.000 0.058 ✗ +2026-06-25 18:10:58,967 | INFO | → no winner +2026-06-25 18:10:58,998 | INFO | +[878.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:58,998 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:58,998 | INFO | Music 0.112 0.000 0.062 ✗ +2026-06-25 18:10:58,998 | INFO | Crowd 0.099 0.000 0.054 ✗ +2026-06-25 18:10:58,999 | INFO | → no winner +2026-06-25 18:10:59,027 | INFO | +[878.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,027 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,027 | INFO | Music 0.103 0.000 0.057 ✗ +2026-06-25 18:10:59,027 | INFO | Crowd 0.032 0.000 0.018 ✗ +2026-06-25 18:10:59,027 | INFO | → no winner +2026-06-25 18:10:59,057 | INFO | +[879.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,057 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,058 | INFO | Animal 0.043 0.000 0.024 ✗ +2026-06-25 18:10:59,058 | INFO | Bird 0.034 0.000 0.018 ✗ +2026-06-25 18:10:59,058 | INFO | → no winner +2026-06-25 18:10:59,087 | INFO | +[879.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,087 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,087 | INFO | Animal 0.119 0.000 0.066 ✗ +2026-06-25 18:10:59,088 | INFO | Fowl 0.090 0.000 0.049 ✗ +2026-06-25 18:10:59,088 | INFO | Bird 0.081 0.000 0.044 ✗ +2026-06-25 18:10:59,088 | INFO | Chicken, rooster 0.054 0.000 0.030 ✗ +2026-06-25 18:10:59,088 | INFO | Bird vocalization, bird call, bird song 0.042 0.000 0.023 ✗ +2026-06-25 18:10:59,088 | INFO | → no winner +2026-06-25 18:10:59,118 | INFO | +[879.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,118 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,118 | INFO | Environmental noise 0.102 0.373 0.224 ✓ +2026-06-25 18:10:59,119 | INFO | Animal 0.159 0.000 0.088 ✗ +2026-06-25 18:10:59,119 | INFO | Bird 0.111 0.000 0.061 ✗ +2026-06-25 18:10:59,120 | INFO | Bird vocalization, bird call, bird song 0.071 0.000 0.039 ✗ +2026-06-25 18:10:59,120 | INFO | Chirp, tweet 0.054 0.000 0.029 ✗ +2026-06-25 18:10:59,120 | INFO | Fowl 0.053 0.000 0.029 ✗ +2026-06-25 18:10:59,120 | INFO | → WINNER: Environmental noise (combined=0.224) +2026-06-25 18:10:59,148 | INFO | +[879.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,150 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,150 | INFO | Environmental noise 0.255 0.373 0.308 ✓ +2026-06-25 18:10:59,150 | INFO | Bird 0.225 0.000 0.124 ✓ +2026-06-25 18:10:59,150 | INFO | Bird vocalization, bird call, bird song 0.184 0.000 0.101 ✗ +2026-06-25 18:10:59,150 | INFO | Chirp, tweet 0.162 0.000 0.089 ✗ +2026-06-25 18:10:59,150 | INFO | Animal 0.117 0.000 0.065 ✗ +2026-06-25 18:10:59,150 | INFO | Outside, rural or natural 0.077 0.000 0.042 ✗ +2026-06-25 18:10:59,150 | INFO | → WINNER: Environmental noise (combined=0.308) +2026-06-25 18:10:59,181 | INFO | +[879.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,182 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,182 | INFO | Environmental noise 0.124 0.373 0.236 ✓ +2026-06-25 18:10:59,182 | INFO | Bird 0.420 0.000 0.231 ✓ +2026-06-25 18:10:59,182 | INFO | Chirp, tweet 0.335 0.000 0.184 ✓ +2026-06-25 18:10:59,182 | INFO | Bird vocalization, bird call, bird song 0.303 0.000 0.167 ✓ +2026-06-25 18:10:59,182 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:10:59,183 | INFO | Outside, rural or natural 0.070 0.000 0.039 ✗ +2026-06-25 18:10:59,183 | INFO | → WINNER: Environmental noise (combined=0.236) +2026-06-25 18:10:59,212 | INFO | +[880.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,212 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,213 | INFO | Bird 0.553 0.000 0.304 ✓ +2026-06-25 18:10:59,213 | INFO | Chirp, tweet 0.424 0.000 0.233 ✓ +2026-06-25 18:10:59,213 | INFO | Environmental noise 0.094 0.373 0.220 ✓ +2026-06-25 18:10:59,213 | INFO | Bird vocalization, bird call, bird song 0.369 0.000 0.203 ✓ +2026-06-25 18:10:59,213 | INFO | Animal 0.251 0.000 0.138 ✓ +2026-06-25 18:10:59,213 | INFO | Outside, rural or natural 0.090 0.000 0.049 ✗ +2026-06-25 18:10:59,214 | INFO | → WINNER: Bird (combined=0.304) +2026-06-25 18:10:59,241 | INFO | +[880.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,243 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,244 | INFO | Bird 0.575 0.000 0.316 ✓ +2026-06-25 18:10:59,245 | INFO | Chirp, tweet 0.442 0.000 0.243 ✓ +2026-06-25 18:10:59,245 | INFO | Bird vocalization, bird call, bird song 0.361 0.000 0.199 ✓ +2026-06-25 18:10:59,246 | INFO | Environmental noise 0.054 0.373 0.198 ✓ +2026-06-25 18:10:59,246 | INFO | Animal 0.293 0.000 0.161 ✓ +2026-06-25 18:10:59,246 | INFO | Duck 0.183 0.000 0.101 ✗ +2026-06-25 18:10:59,246 | INFO | → WINNER: Bird (combined=0.316) +2026-06-25 18:10:59,276 | INFO | +[880.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,276 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,276 | INFO | Bird 0.597 0.000 0.329 ✓ +2026-06-25 18:10:59,277 | INFO | Duck 0.565 0.000 0.311 ✓ +2026-06-25 18:10:59,277 | INFO | Animal 0.342 0.000 0.188 ✓ +2026-06-25 18:10:59,277 | INFO | Chirp, tweet 0.321 0.000 0.176 ✓ +2026-06-25 18:10:59,277 | INFO | Bird vocalization, bird call, bird song 0.296 0.000 0.163 ✓ +2026-06-25 18:10:59,278 | INFO | Quack 0.172 0.000 0.095 ✗ +2026-06-25 18:10:59,278 | INFO | → WINNER: Bird (combined=0.329) +2026-06-25 18:10:59,306 | INFO | +[880.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,306 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,306 | INFO | Bird 0.545 0.000 0.300 ✓ +2026-06-25 18:10:59,306 | INFO | Chirp, tweet 0.370 0.000 0.204 ✓ +2026-06-25 18:10:59,306 | INFO | Animal 0.352 0.000 0.194 ✓ +2026-06-25 18:10:59,306 | INFO | Bird vocalization, bird call, bird song 0.265 0.000 0.145 ✓ +2026-06-25 18:10:59,306 | INFO | Duck 0.257 0.000 0.141 ✓ +2026-06-25 18:10:59,306 | INFO | Domestic animals, pets 0.179 0.000 0.098 ✗ +2026-06-25 18:10:59,306 | INFO | → WINNER: Bird (combined=0.300) +2026-06-25 18:10:59,338 | INFO | +[880.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,339 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,339 | INFO | Bird 0.649 0.000 0.357 ✓ +2026-06-25 18:10:59,339 | INFO | Chirp, tweet 0.477 0.000 0.262 ✓ +2026-06-25 18:10:59,339 | INFO | Bird vocalization, bird call, bird song 0.345 0.000 0.190 ✓ +2026-06-25 18:10:59,339 | INFO | Pigeon, dove 0.199 0.000 0.109 ✗ +2026-06-25 18:10:59,339 | INFO | Animal 0.185 0.000 0.102 ✗ +2026-06-25 18:10:59,339 | INFO | Coo 0.167 0.000 0.092 ✗ +2026-06-25 18:10:59,341 | INFO | → WINNER: Bird (combined=0.357) +2026-06-25 18:10:59,370 | INFO | +[881.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,370 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,370 | INFO | Music 0.359 0.000 0.197 ✓ +2026-06-25 18:10:59,371 | INFO | Animal 0.158 0.000 0.087 ✗ +2026-06-25 18:10:59,371 | INFO | Neigh, whinny 0.123 0.000 0.068 ✗ +2026-06-25 18:10:59,371 | INFO | Bird 0.090 0.000 0.050 ✗ +2026-06-25 18:10:59,371 | INFO | Horse 0.073 0.000 0.040 ✗ +2026-06-25 18:10:59,372 | INFO | Bird vocalization, bird call, bird song 0.039 0.000 0.021 ✗ +2026-06-25 18:10:59,372 | INFO | → WINNER: Music (combined=0.197) +2026-06-25 18:10:59,400 | INFO | +[881.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,400 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,403 | INFO | Music 0.115 0.000 0.063 ✗ +2026-06-25 18:10:59,403 | INFO | Bird 0.095 0.000 0.052 ✗ +2026-06-25 18:10:59,403 | INFO | Animal 0.089 0.000 0.049 ✗ +2026-06-25 18:10:59,403 | INFO | Bird vocalization, bird call, bird song 0.029 0.000 0.016 ✗ +2026-06-25 18:10:59,403 | INFO | → no winner +2026-06-25 18:10:59,432 | INFO | +[881.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,433 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,433 | INFO | Music 0.167 0.000 0.092 ✗ +2026-06-25 18:10:59,433 | INFO | Bird 0.065 0.000 0.036 ✗ +2026-06-25 18:10:59,433 | INFO | Animal 0.057 0.000 0.031 ✗ +2026-06-25 18:10:59,434 | INFO | → no winner +2026-06-25 18:10:59,463 | INFO | +[881.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,463 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,463 | INFO | Animal 0.053 0.000 0.029 ✗ +2026-06-25 18:10:59,463 | INFO | Bird 0.035 0.000 0.019 ✗ +2026-06-25 18:10:59,463 | INFO | → no winner +2026-06-25 18:10:59,493 | INFO | +[881.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,494 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,494 | INFO | Bird 0.070 0.000 0.039 ✗ +2026-06-25 18:10:59,494 | INFO | Animal 0.038 0.000 0.021 ✗ +2026-06-25 18:10:59,494 | INFO | → no winner +2026-06-25 18:10:59,524 | INFO | +[882.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,524 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,524 | INFO | Bird 0.297 0.000 0.164 ✓ +2026-06-25 18:10:59,525 | INFO | Chirp, tweet 0.199 0.000 0.110 ✗ +2026-06-25 18:10:59,525 | INFO | Bird vocalization, bird call, bird song 0.185 0.000 0.102 ✗ +2026-06-25 18:10:59,525 | INFO | Animal 0.083 0.000 0.046 ✗ +2026-06-25 18:10:59,525 | INFO | Coo 0.061 0.000 0.034 ✗ +2026-06-25 18:10:59,526 | INFO | → WINNER: Bird (combined=0.164) +2026-06-25 18:10:59,555 | INFO | +[882.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,555 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,556 | INFO | Environmental noise 0.069 0.373 0.206 ✓ +2026-06-25 18:10:59,556 | INFO | Bird 0.331 0.000 0.182 ✓ +2026-06-25 18:10:59,556 | INFO | Chirp, tweet 0.227 0.000 0.125 ✓ +2026-06-25 18:10:59,556 | INFO | Bird vocalization, bird call, bird song 0.220 0.000 0.121 ✓ +2026-06-25 18:10:59,556 | INFO | Animal 0.111 0.000 0.061 ✗ +2026-06-25 18:10:59,556 | INFO | Coo 0.067 0.000 0.037 ✗ +2026-06-25 18:10:59,557 | INFO | → WINNER: Environmental noise (combined=0.206) +2026-06-25 18:10:59,586 | INFO | +[882.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,586 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,586 | INFO | Environmental noise 0.079 0.373 0.211 ✓ +2026-06-25 18:10:59,586 | INFO | Bird 0.329 0.000 0.181 ✓ +2026-06-25 18:10:59,586 | INFO | Animal 0.243 0.000 0.134 ✓ +2026-06-25 18:10:59,586 | INFO | Bird vocalization, bird call, bird song 0.162 0.000 0.089 ✗ +2026-06-25 18:10:59,587 | INFO | Chirp, tweet 0.141 0.000 0.077 ✗ +2026-06-25 18:10:59,587 | INFO | Fowl 0.096 0.000 0.052 ✗ +2026-06-25 18:10:59,587 | INFO | → WINNER: Environmental noise (combined=0.211) +2026-06-25 18:10:59,616 | INFO | +[882.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,616 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,617 | INFO | Music 0.276 0.000 0.152 ✓ +2026-06-25 18:10:59,617 | INFO | Ding 0.216 0.000 0.119 ✗ +2026-06-25 18:10:59,617 | INFO | Ding-dong 0.131 0.000 0.072 ✗ +2026-06-25 18:10:59,617 | INFO | Bird 0.095 0.000 0.052 ✗ +2026-06-25 18:10:59,617 | INFO | Clang 0.095 0.000 0.052 ✗ +2026-06-25 18:10:59,618 | INFO | Animal 0.086 0.000 0.048 ✗ +2026-06-25 18:10:59,618 | INFO | → WINNER: Music (combined=0.152) +2026-06-25 18:10:59,647 | INFO | +[882.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,647 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,647 | INFO | Music 0.386 0.000 0.212 ✓ +2026-06-25 18:10:59,648 | INFO | Ding-dong 0.128 0.000 0.070 ✗ +2026-06-25 18:10:59,648 | INFO | Ding 0.113 0.000 0.062 ✗ +2026-06-25 18:10:59,648 | INFO | Doorbell 0.068 0.000 0.037 ✗ +2026-06-25 18:10:59,648 | INFO | Thunk 0.053 0.000 0.029 ✗ +2026-06-25 18:10:59,648 | INFO | Animal 0.041 0.000 0.023 ✗ +2026-06-25 18:10:59,648 | INFO | → WINNER: Music (combined=0.212) +2026-06-25 18:10:59,677 | INFO | +[883.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,677 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,677 | INFO | Music 0.588 0.000 0.323 ✓ +2026-06-25 18:10:59,679 | INFO | Tabla 0.171 0.000 0.094 ✗ +2026-06-25 18:10:59,679 | INFO | Carnatic music 0.171 0.000 0.094 ✗ +2026-06-25 18:10:59,679 | INFO | Musical instrument 0.090 0.000 0.049 ✗ +2026-06-25 18:10:59,679 | INFO | Percussion 0.073 0.000 0.040 ✗ +2026-06-25 18:10:59,679 | INFO | Sitar 0.069 0.000 0.038 ✗ +2026-06-25 18:10:59,680 | INFO | → WINNER: Music (combined=0.323) +2026-06-25 18:10:59,704 | INFO | +[883.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,704 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,704 | INFO | Music 0.704 0.000 0.387 ✓ +2026-06-25 18:10:59,704 | INFO | Sitar 0.106 0.000 0.058 ✗ +2026-06-25 18:10:59,710 | INFO | Carnatic music 0.105 0.000 0.058 ✗ +2026-06-25 18:10:59,710 | INFO | → WINNER: Music (combined=0.387) +2026-06-25 18:10:59,741 | INFO | +[883.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,741 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,741 | INFO | Music 0.768 0.000 0.422 ✓ +2026-06-25 18:10:59,742 | INFO | Sitar 0.152 0.000 0.083 ✗ +2026-06-25 18:10:59,742 | INFO | Mantra 0.101 0.000 0.056 ✗ +2026-06-25 18:10:59,742 | INFO | Music of Bollywood 0.060 0.000 0.033 ✗ +2026-06-25 18:10:59,742 | INFO | Tabla 0.056 0.000 0.031 ✗ +2026-06-25 18:10:59,742 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:10:59,772 | INFO | +[883.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,772 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,773 | INFO | Music 0.658 0.000 0.362 ✓ +2026-06-25 18:10:59,773 | INFO | Sitar 0.248 0.000 0.136 ✓ +2026-06-25 18:10:59,773 | INFO | Tabla 0.154 0.000 0.085 ✗ +2026-06-25 18:10:59,773 | INFO | Percussion 0.094 0.000 0.052 ✗ +2026-06-25 18:10:59,773 | INFO | Musical instrument 0.081 0.000 0.044 ✗ +2026-06-25 18:10:59,773 | INFO | Animal 0.056 0.000 0.031 ✗ +2026-06-25 18:10:59,774 | INFO | → WINNER: Music (combined=0.362) +2026-06-25 18:10:59,803 | INFO | +[883.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,803 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,804 | INFO | Music 0.604 0.000 0.332 ✓ +2026-06-25 18:10:59,804 | INFO | Percussion 0.184 0.000 0.101 ✗ +2026-06-25 18:10:59,804 | INFO | Wood block 0.142 0.000 0.078 ✗ +2026-06-25 18:10:59,804 | INFO | Drum 0.116 0.000 0.064 ✗ +2026-06-25 18:10:59,804 | INFO | Tabla 0.113 0.000 0.062 ✗ +2026-06-25 18:10:59,805 | INFO | Musical instrument 0.085 0.000 0.046 ✗ +2026-06-25 18:10:59,805 | INFO | → WINNER: Music (combined=0.332) +2026-06-25 18:10:59,834 | INFO | +[884.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,834 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,834 | INFO | Music 0.546 0.000 0.300 ✓ +2026-06-25 18:10:59,835 | INFO | Percussion 0.244 0.000 0.134 ✓ +2026-06-25 18:10:59,835 | INFO | Tabla 0.178 0.000 0.098 ✗ +2026-06-25 18:10:59,835 | INFO | Musical instrument 0.154 0.000 0.085 ✗ +2026-06-25 18:10:59,836 | INFO | Drum 0.153 0.000 0.084 ✗ +2026-06-25 18:10:59,836 | INFO | Wood block 0.152 0.000 0.083 ✗ +2026-06-25 18:10:59,836 | INFO | → WINNER: Music (combined=0.300) +2026-06-25 18:10:59,862 | INFO | +[884.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,862 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,862 | INFO | Music 0.617 0.000 0.339 ✓ +2026-06-25 18:10:59,862 | INFO | Percussion 0.269 0.000 0.148 ✓ +2026-06-25 18:10:59,862 | INFO | Tabla 0.185 0.000 0.102 ✗ +2026-06-25 18:10:59,862 | INFO | Wood block 0.185 0.000 0.102 ✗ +2026-06-25 18:10:59,867 | INFO | Drum 0.175 0.000 0.096 ✗ +2026-06-25 18:10:59,867 | INFO | Musical instrument 0.150 0.000 0.082 ✗ +2026-06-25 18:10:59,867 | INFO | → WINNER: Music (combined=0.339) +2026-06-25 18:10:59,898 | INFO | +[884.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,898 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,898 | INFO | Music 0.784 0.000 0.431 ✓ +2026-06-25 18:10:59,898 | INFO | Wood block 0.327 0.000 0.180 ✓ +2026-06-25 18:10:59,899 | INFO | Percussion 0.259 0.000 0.142 ✓ +2026-06-25 18:10:59,899 | INFO | Musical instrument 0.190 0.000 0.105 ✗ +2026-06-25 18:10:59,899 | INFO | Tubular bells 0.171 0.000 0.094 ✗ +2026-06-25 18:10:59,899 | INFO | Drum 0.132 0.000 0.073 ✗ +2026-06-25 18:10:59,899 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:10:59,929 | INFO | +[884.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,930 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,930 | INFO | Music 0.668 0.000 0.367 ✓ +2026-06-25 18:10:59,931 | INFO | Musical instrument 0.117 0.000 0.064 ✗ +2026-06-25 18:10:59,931 | INFO | Percussion 0.069 0.000 0.038 ✗ +2026-06-25 18:10:59,931 | INFO | Tubular bells 0.068 0.000 0.038 ✗ +2026-06-25 18:10:59,931 | INFO | Wood block 0.039 0.000 0.021 ✗ +2026-06-25 18:10:59,931 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:10:59,960 | INFO | +[884.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,962 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,962 | INFO | Music 0.687 0.000 0.378 ✓ +2026-06-25 18:10:59,962 | INFO | Musical instrument 0.100 0.000 0.055 ✗ +2026-06-25 18:10:59,962 | INFO | Ratchet, pawl 0.060 0.000 0.033 ✗ +2026-06-25 18:10:59,962 | INFO | Mechanisms 0.058 0.000 0.032 ✗ +2026-06-25 18:10:59,963 | INFO | Tubular bells 0.052 0.000 0.029 ✗ +2026-06-25 18:10:59,963 | INFO | → WINNER: Music (combined=0.378) +2026-06-25 18:10:59,992 | INFO | +[885.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:10:59,992 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:10:59,992 | INFO | Music 0.757 0.000 0.416 ✓ +2026-06-25 18:10:59,993 | INFO | Musical instrument 0.161 0.000 0.088 ✗ +2026-06-25 18:10:59,993 | INFO | Percussion 0.126 0.000 0.069 ✗ +2026-06-25 18:10:59,993 | INFO | Tabla 0.095 0.000 0.052 ✗ +2026-06-25 18:10:59,994 | INFO | Drum 0.064 0.000 0.035 ✗ +2026-06-25 18:10:59,994 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:11:00,023 | INFO | +[885.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,023 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,023 | INFO | Music 0.725 0.000 0.399 ✓ +2026-06-25 18:11:00,024 | INFO | Percussion 0.208 0.000 0.114 ✗ +2026-06-25 18:11:00,024 | INFO | Musical instrument 0.136 0.000 0.075 ✗ +2026-06-25 18:11:00,024 | INFO | Wood block 0.123 0.000 0.068 ✗ +2026-06-25 18:11:00,024 | INFO | Drum 0.089 0.000 0.049 ✗ +2026-06-25 18:11:00,024 | INFO | Tabla 0.082 0.000 0.045 ✗ +2026-06-25 18:11:00,024 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:11:00,053 | INFO | +[885.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,054 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,054 | INFO | Music 0.709 0.000 0.390 ✓ +2026-06-25 18:11:00,054 | INFO | Tabla 0.247 0.000 0.136 ✓ +2026-06-25 18:11:00,054 | INFO | Percussion 0.137 0.000 0.075 ✗ +2026-06-25 18:11:00,054 | INFO | Musical instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:11:00,055 | INFO | Sitar 0.106 0.000 0.058 ✗ +2026-06-25 18:11:00,055 | INFO | Drum 0.090 0.000 0.049 ✗ +2026-06-25 18:11:00,055 | INFO | → WINNER: Music (combined=0.390) +2026-06-25 18:11:00,084 | INFO | +[885.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,084 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,084 | INFO | Music 0.674 0.000 0.371 ✓ +2026-06-25 18:11:00,084 | INFO | Percussion 0.179 0.000 0.099 ✗ +2026-06-25 18:11:00,086 | INFO | Tubular bells 0.150 0.000 0.083 ✗ +2026-06-25 18:11:00,086 | INFO | Wood block 0.149 0.000 0.082 ✗ +2026-06-25 18:11:00,086 | INFO | Musical instrument 0.103 0.000 0.057 ✗ +2026-06-25 18:11:00,086 | INFO | Tabla 0.085 0.000 0.046 ✗ +2026-06-25 18:11:00,086 | INFO | → WINNER: Music (combined=0.371) +2026-06-25 18:11:00,115 | INFO | +[885.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,115 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,116 | INFO | Music 0.677 0.000 0.372 ✓ +2026-06-25 18:11:00,116 | INFO | Wood block 0.327 0.000 0.180 ✓ +2026-06-25 18:11:00,116 | INFO | Percussion 0.260 0.000 0.143 ✓ +2026-06-25 18:11:00,116 | INFO | Musical instrument 0.148 0.000 0.082 ✗ +2026-06-25 18:11:00,116 | INFO | Drum 0.132 0.000 0.073 ✗ +2026-06-25 18:11:00,116 | INFO | Tabla 0.100 0.000 0.055 ✗ +2026-06-25 18:11:00,116 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:11:00,145 | INFO | +[886.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,145 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,145 | INFO | Music 0.542 0.000 0.298 ✓ +2026-06-25 18:11:00,145 | INFO | Tubular bells 0.170 0.000 0.093 ✗ +2026-06-25 18:11:00,145 | INFO | Musical instrument 0.149 0.000 0.082 ✗ +2026-06-25 18:11:00,145 | INFO | Percussion 0.104 0.000 0.057 ✗ +2026-06-25 18:11:00,147 | INFO | Wood block 0.080 0.000 0.044 ✗ +2026-06-25 18:11:00,147 | INFO | → WINNER: Music (combined=0.298) +2026-06-25 18:11:00,176 | INFO | +[886.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,177 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,177 | INFO | Music 0.702 0.000 0.386 ✓ +2026-06-25 18:11:00,177 | INFO | Percussion 0.274 0.000 0.151 ✓ +2026-06-25 18:11:00,177 | INFO | Wood block 0.225 0.000 0.124 ✓ +2026-06-25 18:11:00,177 | INFO | Musical instrument 0.202 0.000 0.111 ✗ +2026-06-25 18:11:00,178 | INFO | Drum 0.164 0.000 0.090 ✗ +2026-06-25 18:11:00,178 | INFO | Tabla 0.119 0.000 0.065 ✗ +2026-06-25 18:11:00,178 | INFO | → WINNER: Music (combined=0.386) +2026-06-25 18:11:00,206 | INFO | +[886.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,208 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,208 | INFO | Music 0.749 0.000 0.412 ✓ +2026-06-25 18:11:00,208 | INFO | Tabla 0.254 0.000 0.140 ✓ +2026-06-25 18:11:00,208 | INFO | Sitar 0.248 0.000 0.137 ✓ +2026-06-25 18:11:00,208 | INFO | Musical instrument 0.192 0.000 0.105 ✗ +2026-06-25 18:11:00,209 | INFO | Carnatic music 0.104 0.000 0.057 ✗ +2026-06-25 18:11:00,209 | INFO | Percussion 0.090 0.000 0.050 ✗ +2026-06-25 18:11:00,209 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:11:00,237 | INFO | +[886.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,237 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,237 | INFO | Music 0.771 0.000 0.424 ✓ +2026-06-25 18:11:00,239 | INFO | Middle Eastern music 0.138 0.000 0.076 ✗ +2026-06-25 18:11:00,239 | INFO | Singing 0.131 0.000 0.072 ✗ +2026-06-25 18:11:00,239 | INFO | Folk music 0.110 0.000 0.061 ✗ +2026-06-25 18:11:00,239 | INFO | Sitar 0.106 0.000 0.058 ✗ +2026-06-25 18:11:00,239 | INFO | Music of Bollywood 0.076 0.000 0.042 ✗ +2026-06-25 18:11:00,239 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:00,269 | INFO | +[886.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,270 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,270 | INFO | Music 0.753 0.000 0.414 ✓ +2026-06-25 18:11:00,270 | INFO | Middle Eastern music 0.182 0.000 0.100 ✗ +2026-06-25 18:11:00,270 | INFO | Folk music 0.153 0.000 0.084 ✗ +2026-06-25 18:11:00,271 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:11:00,271 | INFO | Sitar 0.122 0.000 0.067 ✗ +2026-06-25 18:11:00,271 | INFO | Carnatic music 0.111 0.000 0.061 ✗ +2026-06-25 18:11:00,271 | INFO | → WINNER: Music (combined=0.414) +2026-06-25 18:11:00,301 | INFO | +[887.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,301 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,301 | INFO | Music 0.713 0.000 0.392 ✓ +2026-06-25 18:11:00,301 | INFO | Singing 0.145 0.000 0.080 ✗ +2026-06-25 18:11:00,302 | INFO | Middle Eastern music 0.123 0.000 0.068 ✗ +2026-06-25 18:11:00,302 | INFO | Mantra 0.091 0.000 0.050 ✗ +2026-06-25 18:11:00,302 | INFO | Music of Bollywood 0.042 0.000 0.023 ✗ +2026-06-25 18:11:00,302 | INFO | → WINNER: Music (combined=0.392) +2026-06-25 18:11:00,331 | INFO | +[887.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,332 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,332 | INFO | Music 0.705 0.000 0.388 ✓ +2026-06-25 18:11:00,332 | INFO | Singing 0.222 0.000 0.122 ✓ +2026-06-25 18:11:00,333 | INFO | Middle Eastern music 0.100 0.000 0.055 ✗ +2026-06-25 18:11:00,333 | INFO | Chant 0.081 0.000 0.045 ✗ +2026-06-25 18:11:00,333 | INFO | A capella 0.065 0.000 0.036 ✗ +2026-06-25 18:11:00,333 | INFO | Mantra 0.063 0.000 0.035 ✗ +2026-06-25 18:11:00,334 | INFO | → WINNER: Music (combined=0.388) +2026-06-25 18:11:00,363 | INFO | +[887.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,363 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,364 | INFO | Music 0.720 0.000 0.396 ✓ +2026-06-25 18:11:00,364 | INFO | Singing 0.176 0.000 0.097 ✗ +2026-06-25 18:11:00,364 | INFO | → WINNER: Music (combined=0.396) +2026-06-25 18:11:00,393 | INFO | +[887.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,394 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,394 | INFO | Music 0.235 0.000 0.129 ✓ +2026-06-25 18:11:00,394 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:11:00,394 | INFO | Gargling 0.060 0.000 0.033 ✗ +2026-06-25 18:11:00,395 | INFO | Chant 0.059 0.000 0.032 ✗ +2026-06-25 18:11:00,395 | INFO | → WINNER: Music (combined=0.129) +2026-06-25 18:11:00,424 | INFO | +[887.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,424 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,424 | INFO | Music 0.106 0.000 0.058 ✗ +2026-06-25 18:11:00,426 | INFO | → no winner +2026-06-25 18:11:00,455 | INFO | +[888.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,457 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,457 | INFO | Music 0.166 0.000 0.091 ✗ +2026-06-25 18:11:00,457 | INFO | → no winner +2026-06-25 18:11:00,486 | INFO | +[888.20s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,487 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,487 | INFO | Music 0.635 0.000 0.349 ✓ +2026-06-25 18:11:00,487 | INFO | Ding 0.074 0.000 0.041 ✗ +2026-06-25 18:11:00,487 | INFO | Mantra 0.067 0.000 0.037 ✗ +2026-06-25 18:11:00,487 | INFO | Jingle, tinkle 0.061 0.000 0.034 ✗ +2026-06-25 18:11:00,487 | INFO | → WINNER: Music (combined=0.349) +2026-06-25 18:11:00,517 | INFO | +[888.40s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,518 | INFO | Music 0.688 0.000 0.378 ✓ +2026-06-25 18:11:00,519 | INFO | Mantra 0.167 0.000 0.092 ✗ +2026-06-25 18:11:00,519 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:11:00,519 | INFO | Ding 0.056 0.000 0.031 ✗ +2026-06-25 18:11:00,520 | INFO | Bicycle bell 0.053 0.000 0.029 ✗ +2026-06-25 18:11:00,520 | INFO | → WINNER: Music (combined=0.378) +2026-06-25 18:11:00,549 | INFO | +[888.60s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,549 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,549 | INFO | Music 0.685 0.000 0.377 ✓ +2026-06-25 18:11:00,550 | INFO | Mantra 0.256 0.000 0.141 ✓ +2026-06-25 18:11:00,550 | INFO | Carnatic music 0.097 0.000 0.053 ✗ +2026-06-25 18:11:00,550 | INFO | Singing 0.078 0.000 0.043 ✗ +2026-06-25 18:11:00,550 | INFO | Ding 0.064 0.000 0.035 ✗ +2026-06-25 18:11:00,550 | INFO | → WINNER: Music (combined=0.377) +2026-06-25 18:11:00,579 | INFO | +[888.80s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,579 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,579 | INFO | Music 0.716 0.000 0.394 ✓ +2026-06-25 18:11:00,579 | INFO | Mantra 0.506 0.000 0.278 ✓ +2026-06-25 18:11:00,579 | INFO | Carnatic music 0.480 0.000 0.264 ✓ +2026-06-25 18:11:00,579 | INFO | Singing 0.085 0.000 0.046 ✗ +2026-06-25 18:11:00,579 | INFO | Sitar 0.077 0.000 0.042 ✗ +2026-06-25 18:11:00,581 | INFO | Song 0.063 0.000 0.035 ✗ +2026-06-25 18:11:00,581 | INFO | → WINNER: Music (combined=0.394) +2026-06-25 18:11:00,607 | INFO | +[889.00s] AMBIENT | scene='The sky is a beautiful shade of pink and orange, with the sun partiall' +2026-06-25 18:11:00,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,610 | INFO | Music 0.704 0.000 0.387 ✓ +2026-06-25 18:11:00,610 | INFO | Mantra 0.609 0.000 0.335 ✓ +2026-06-25 18:11:00,611 | INFO | Carnatic music 0.429 0.000 0.236 ✓ +2026-06-25 18:11:00,611 | INFO | Singing 0.098 0.000 0.054 ✗ +2026-06-25 18:11:00,611 | INFO | Chant 0.078 0.000 0.043 ✗ +2026-06-25 18:11:00,611 | INFO | Musical instrument 0.072 0.000 0.040 ✗ +2026-06-25 18:11:00,612 | INFO | → WINNER: Music (combined=0.387) +2026-06-25 18:11:00,641 | INFO | +[889.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,641 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,641 | INFO | Music 0.647 0.000 0.356 ✓ +2026-06-25 18:11:00,641 | INFO | Carnatic music 0.401 0.000 0.220 ✓ +2026-06-25 18:11:00,641 | INFO | Mantra 0.318 0.000 0.175 ✓ +2026-06-25 18:11:00,641 | INFO | Tabla 0.258 0.000 0.142 ✓ +2026-06-25 18:11:00,642 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:11:00,642 | INFO | Musical instrument 0.113 0.000 0.062 ✗ +2026-06-25 18:11:00,642 | INFO | → WINNER: Music (combined=0.356) +2026-06-25 18:11:00,672 | INFO | +[889.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,672 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,672 | INFO | Music 0.529 0.000 0.291 ✓ +2026-06-25 18:11:00,672 | INFO | Mantra 0.433 0.000 0.238 ✓ +2026-06-25 18:11:00,673 | INFO | Chant 0.293 0.000 0.161 ✓ +2026-06-25 18:11:00,673 | INFO | Carnatic music 0.168 0.000 0.092 ✗ +2026-06-25 18:11:00,673 | INFO | Singing 0.098 0.000 0.054 ✗ +2026-06-25 18:11:00,673 | INFO | Tabla 0.070 0.000 0.039 ✗ +2026-06-25 18:11:00,673 | INFO | → WINNER: Music (combined=0.291) +2026-06-25 18:11:00,702 | INFO | +[889.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,702 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,704 | INFO | Music 0.429 0.000 0.236 ✓ +2026-06-25 18:11:00,704 | INFO | Mantra 0.345 0.000 0.190 ✓ +2026-06-25 18:11:00,704 | INFO | Chant 0.243 0.000 0.134 ✓ +2026-06-25 18:11:00,704 | INFO | Carnatic music 0.103 0.000 0.057 ✗ +2026-06-25 18:11:00,704 | INFO | Singing 0.102 0.000 0.056 ✗ +2026-06-25 18:11:00,705 | INFO | Musical instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:11:00,705 | INFO | → WINNER: Music (combined=0.236) +2026-06-25 18:11:00,732 | INFO | +[889.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,732 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,732 | INFO | Music 0.649 0.000 0.357 ✓ +2026-06-25 18:11:00,736 | INFO | Middle Eastern music 0.121 0.000 0.067 ✗ +2026-06-25 18:11:00,737 | INFO | Musical instrument 0.097 0.000 0.053 ✗ +2026-06-25 18:11:00,737 | INFO | Sitar 0.081 0.000 0.044 ✗ +2026-06-25 18:11:00,737 | INFO | Mantra 0.071 0.000 0.039 ✗ +2026-06-25 18:11:00,737 | INFO | Music of Bollywood 0.038 0.000 0.021 ✗ +2026-06-25 18:11:00,738 | INFO | → WINNER: Music (combined=0.357) +2026-06-25 18:11:00,766 | INFO | +[890.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,767 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,767 | INFO | Music 0.725 0.000 0.399 ✓ +2026-06-25 18:11:00,768 | INFO | Musical instrument 0.101 0.000 0.056 ✗ +2026-06-25 18:11:00,768 | INFO | Singing 0.081 0.000 0.045 ✗ +2026-06-25 18:11:00,768 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:11:00,798 | INFO | +[890.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,798 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,799 | INFO | Music 0.770 0.000 0.424 ✓ +2026-06-25 18:11:00,799 | INFO | Musical instrument 0.129 0.000 0.071 ✗ +2026-06-25 18:11:00,799 | INFO | Traditional music 0.118 0.000 0.065 ✗ +2026-06-25 18:11:00,799 | INFO | Sitar 0.107 0.000 0.059 ✗ +2026-06-25 18:11:00,799 | INFO | Folk music 0.101 0.000 0.056 ✗ +2026-06-25 18:11:00,799 | INFO | Singing 0.090 0.000 0.050 ✗ +2026-06-25 18:11:00,799 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:00,827 | INFO | +[890.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,829 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,829 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:11:00,829 | INFO | Middle Eastern music 0.163 0.000 0.090 ✗ +2026-06-25 18:11:00,829 | INFO | Musical instrument 0.132 0.000 0.073 ✗ +2026-06-25 18:11:00,829 | INFO | Singing 0.119 0.000 0.065 ✗ +2026-06-25 18:11:00,829 | INFO | Folk music 0.115 0.000 0.063 ✗ +2026-06-25 18:11:00,830 | INFO | Banjo 0.083 0.000 0.045 ✗ +2026-06-25 18:11:00,830 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:11:00,858 | INFO | +[890.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,858 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,859 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:11:00,859 | INFO | Musical instrument 0.183 0.000 0.101 ✗ +2026-06-25 18:11:00,859 | INFO | Singing 0.143 0.000 0.079 ✗ +2026-06-25 18:11:00,859 | INFO | Mantra 0.081 0.000 0.045 ✗ +2026-06-25 18:11:00,859 | INFO | Plucked string instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:11:00,859 | INFO | Sitar 0.055 0.000 0.030 ✗ +2026-06-25 18:11:00,859 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:11:00,890 | INFO | +[890.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,890 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,890 | INFO | Music 0.820 0.000 0.451 ✓ +2026-06-25 18:11:00,890 | INFO | Mantra 0.220 0.000 0.121 ✓ +2026-06-25 18:11:00,890 | INFO | Chant 0.159 0.000 0.087 ✗ +2026-06-25 18:11:00,890 | INFO | Singing 0.146 0.000 0.080 ✗ +2026-06-25 18:11:00,890 | INFO | Middle Eastern music 0.112 0.000 0.061 ✗ +2026-06-25 18:11:00,890 | INFO | Musical instrument 0.084 0.000 0.046 ✗ +2026-06-25 18:11:00,890 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:11:00,922 | INFO | +[891.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,922 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,922 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:11:00,922 | INFO | Musical instrument 0.102 0.000 0.056 ✗ +2026-06-25 18:11:00,923 | INFO | Mantra 0.095 0.000 0.052 ✗ +2026-06-25 18:11:00,923 | INFO | Singing 0.083 0.000 0.046 ✗ +2026-06-25 18:11:00,923 | INFO | Chant 0.071 0.000 0.039 ✗ +2026-06-25 18:11:00,923 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:11:00,952 | INFO | +[891.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,952 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,952 | INFO | Music 0.767 0.000 0.422 ✓ +2026-06-25 18:11:00,953 | INFO | Mantra 0.359 0.000 0.197 ✓ +2026-06-25 18:11:00,953 | INFO | Chant 0.279 0.000 0.153 ✓ +2026-06-25 18:11:00,953 | INFO | Singing 0.108 0.000 0.059 ✗ +2026-06-25 18:11:00,953 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:11:00,983 | INFO | +[891.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:00,983 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:00,983 | INFO | Music 0.636 0.000 0.350 ✓ +2026-06-25 18:11:00,983 | INFO | Mantra 0.524 0.000 0.288 ✓ +2026-06-25 18:11:00,983 | INFO | Chant 0.457 0.000 0.252 ✓ +2026-06-25 18:11:00,984 | INFO | → WINNER: Music (combined=0.350) +2026-06-25 18:11:01,012 | INFO | +[891.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,013 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,014 | INFO | Mantra 0.533 0.000 0.293 ✓ +2026-06-25 18:11:01,014 | INFO | Chant 0.503 0.000 0.277 ✓ +2026-06-25 18:11:01,014 | INFO | Music 0.330 0.000 0.181 ✓ +2026-06-25 18:11:01,014 | INFO | → WINNER: Mantra (combined=0.293) +2026-06-25 18:11:01,043 | INFO | +[891.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,043 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,043 | INFO | Chant 0.354 0.000 0.195 ✓ +2026-06-25 18:11:01,044 | INFO | Mantra 0.352 0.000 0.194 ✓ +2026-06-25 18:11:01,044 | INFO | Music 0.274 0.000 0.151 ✓ +2026-06-25 18:11:01,044 | INFO | Male singing 0.081 0.000 0.045 ✗ +2026-06-25 18:11:01,044 | INFO | → WINNER: Chant (combined=0.195) +2026-06-25 18:11:01,074 | INFO | +[892.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,074 | INFO | Music 0.697 0.000 0.383 ✓ +2026-06-25 18:11:01,075 | INFO | Mantra 0.116 0.000 0.064 ✗ +2026-06-25 18:11:01,075 | INFO | Singing 0.112 0.000 0.061 ✗ +2026-06-25 18:11:01,075 | INFO | Musical instrument 0.077 0.000 0.042 ✗ +2026-06-25 18:11:01,075 | INFO | → WINNER: Music (combined=0.383) +2026-06-25 18:11:01,104 | INFO | +[892.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,104 | INFO | Music 0.751 0.000 0.413 ✓ +2026-06-25 18:11:01,106 | INFO | Singing 0.162 0.000 0.089 ✗ +2026-06-25 18:11:01,106 | INFO | Musical instrument 0.117 0.000 0.065 ✗ +2026-06-25 18:11:01,106 | INFO | Mantra 0.095 0.000 0.052 ✗ +2026-06-25 18:11:01,106 | INFO | → WINNER: Music (combined=0.413) +2026-06-25 18:11:01,135 | INFO | +[892.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,136 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,136 | INFO | Music 0.616 0.000 0.339 ✓ +2026-06-25 18:11:01,136 | INFO | Mantra 0.101 0.000 0.056 ✗ +2026-06-25 18:11:01,136 | INFO | Singing 0.086 0.000 0.047 ✗ +2026-06-25 18:11:01,136 | INFO | Musical instrument 0.079 0.000 0.043 ✗ +2026-06-25 18:11:01,136 | INFO | → WINNER: Music (combined=0.339) +2026-06-25 18:11:01,166 | INFO | +[892.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,166 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,166 | INFO | Music 0.612 0.000 0.337 ✓ +2026-06-25 18:11:01,167 | INFO | Mantra 0.192 0.000 0.105 ✗ +2026-06-25 18:11:01,167 | INFO | Singing 0.156 0.000 0.086 ✗ +2026-06-25 18:11:01,167 | INFO | Musical instrument 0.065 0.000 0.036 ✗ +2026-06-25 18:11:01,167 | INFO | Chant 0.054 0.000 0.030 ✗ +2026-06-25 18:11:01,167 | INFO | → WINNER: Music (combined=0.337) +2026-06-25 18:11:01,197 | INFO | +[892.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,197 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,197 | INFO | Music 0.635 0.000 0.349 ✓ +2026-06-25 18:11:01,197 | INFO | Singing 0.163 0.000 0.089 ✗ +2026-06-25 18:11:01,198 | INFO | Mantra 0.095 0.000 0.052 ✗ +2026-06-25 18:11:01,198 | INFO | Chant 0.065 0.000 0.036 ✗ +2026-06-25 18:11:01,198 | INFO | A capella 0.053 0.000 0.029 ✗ +2026-06-25 18:11:01,198 | INFO | → WINNER: Music (combined=0.349) +2026-06-25 18:11:01,229 | INFO | +[893.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,229 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,230 | INFO | Music 0.778 0.000 0.428 ✓ +2026-06-25 18:11:01,230 | INFO | Mantra 0.222 0.000 0.122 ✓ +2026-06-25 18:11:01,230 | INFO | Singing 0.205 0.000 0.113 ✗ +2026-06-25 18:11:01,230 | INFO | Chant 0.135 0.000 0.074 ✗ +2026-06-25 18:11:01,231 | INFO | Vocal music 0.102 0.000 0.056 ✗ +2026-06-25 18:11:01,231 | INFO | A capella 0.091 0.000 0.050 ✗ +2026-06-25 18:11:01,231 | INFO | → WINNER: Music (combined=0.428) +2026-06-25 18:11:01,261 | INFO | +[893.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,262 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,263 | INFO | Music 0.585 0.000 0.322 ✓ +2026-06-25 18:11:01,263 | INFO | Mantra 0.198 0.000 0.109 ✗ +2026-06-25 18:11:01,263 | INFO | Singing 0.133 0.000 0.073 ✗ +2026-06-25 18:11:01,263 | INFO | Chant 0.120 0.000 0.066 ✗ +2026-06-25 18:11:01,263 | INFO | → WINNER: Music (combined=0.322) +2026-06-25 18:11:01,293 | INFO | +[893.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,293 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,293 | INFO | Mantra 0.336 0.000 0.185 ✓ +2026-06-25 18:11:01,294 | INFO | Music 0.293 0.000 0.161 ✓ +2026-06-25 18:11:01,295 | INFO | Chant 0.223 0.000 0.122 ✓ +2026-06-25 18:11:01,295 | INFO | Singing 0.095 0.000 0.052 ✗ +2026-06-25 18:11:01,295 | INFO | → WINNER: Mantra (combined=0.185) +2026-06-25 18:11:01,324 | INFO | +[893.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,324 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,325 | INFO | Music 0.169 0.000 0.093 ✗ +2026-06-25 18:11:01,325 | INFO | Mantra 0.160 0.000 0.088 ✗ +2026-06-25 18:11:01,325 | INFO | Chant 0.084 0.000 0.046 ✗ +2026-06-25 18:11:01,325 | INFO | → no winner +2026-06-25 18:11:01,355 | INFO | +[893.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,355 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,355 | INFO | Music 0.779 0.000 0.429 ✓ +2026-06-25 18:11:01,355 | INFO | Singing 0.202 0.000 0.111 ✗ +2026-06-25 18:11:01,356 | INFO | Mantra 0.142 0.000 0.078 ✗ +2026-06-25 18:11:01,356 | INFO | Chant 0.093 0.000 0.051 ✗ +2026-06-25 18:11:01,356 | INFO | Musical instrument 0.072 0.000 0.040 ✗ +2026-06-25 18:11:01,356 | INFO | → WINNER: Music (combined=0.429) +2026-06-25 18:11:01,386 | INFO | +[894.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,387 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,387 | INFO | Music 0.729 0.000 0.401 ✓ +2026-06-25 18:11:01,387 | INFO | Singing 0.254 0.000 0.140 ✓ +2026-06-25 18:11:01,387 | INFO | Male singing 0.227 0.000 0.125 ✓ +2026-06-25 18:11:01,387 | INFO | Vocal music 0.099 0.000 0.054 ✗ +2026-06-25 18:11:01,388 | INFO | Chant 0.087 0.000 0.048 ✗ +2026-06-25 18:11:01,388 | INFO | Choir 0.081 0.000 0.045 ✗ +2026-06-25 18:11:01,388 | INFO | → WINNER: Music (combined=0.401) +2026-06-25 18:11:01,416 | INFO | +[894.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,417 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,417 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:11:01,417 | INFO | Singing 0.260 0.000 0.143 ✓ +2026-06-25 18:11:01,417 | INFO | Gospel music 0.129 0.000 0.071 ✗ +2026-06-25 18:11:01,417 | INFO | Chant 0.127 0.000 0.070 ✗ +2026-06-25 18:11:01,417 | INFO | Choir 0.113 0.000 0.062 ✗ +2026-06-25 18:11:01,417 | INFO | Mantra 0.111 0.000 0.061 ✗ +2026-06-25 18:11:01,417 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:11:01,448 | INFO | +[894.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,448 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,448 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:11:01,448 | INFO | Singing 0.225 0.000 0.124 ✓ +2026-06-25 18:11:01,448 | INFO | Chant 0.167 0.000 0.092 ✗ +2026-06-25 18:11:01,448 | INFO | Middle Eastern music 0.165 0.000 0.090 ✗ +2026-06-25 18:11:01,449 | INFO | Mantra 0.164 0.000 0.090 ✗ +2026-06-25 18:11:01,449 | INFO | Folk music 0.112 0.000 0.062 ✗ +2026-06-25 18:11:01,449 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:11:01,480 | INFO | +[894.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,480 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,481 | INFO | Music 0.769 0.000 0.423 ✓ +2026-06-25 18:11:01,481 | INFO | Singing 0.242 0.000 0.133 ✓ +2026-06-25 18:11:01,481 | INFO | Music of Bollywood 0.034 0.000 0.019 ✗ +2026-06-25 18:11:01,481 | INFO | → WINNER: Music (combined=0.423) +2026-06-25 18:11:01,511 | INFO | +[894.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,511 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,511 | INFO | Music 0.628 0.000 0.345 ✓ +2026-06-25 18:11:01,511 | INFO | Singing 0.206 0.000 0.113 ✗ +2026-06-25 18:11:01,512 | INFO | Middle Eastern music 0.175 0.000 0.096 ✗ +2026-06-25 18:11:01,512 | INFO | Chant 0.093 0.000 0.051 ✗ +2026-06-25 18:11:01,512 | INFO | Music of Bollywood 0.042 0.000 0.023 ✗ +2026-06-25 18:11:01,512 | INFO | → WINNER: Music (combined=0.345) +2026-06-25 18:11:01,540 | INFO | +[895.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,540 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,540 | INFO | Music 0.460 0.000 0.253 ✓ +2026-06-25 18:11:01,540 | INFO | Chant 0.158 0.000 0.087 ✗ +2026-06-25 18:11:01,540 | INFO | Singing 0.158 0.000 0.087 ✗ +2026-06-25 18:11:01,540 | INFO | Mantra 0.095 0.000 0.052 ✗ +2026-06-25 18:11:01,540 | INFO | A capella 0.059 0.000 0.033 ✗ +2026-06-25 18:11:01,540 | INFO | → WINNER: Music (combined=0.253) +2026-06-25 18:11:01,574 | INFO | +[895.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,574 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,574 | INFO | Music 0.483 0.000 0.266 ✓ +2026-06-25 18:11:01,574 | INFO | Chant 0.194 0.000 0.107 ✗ +2026-06-25 18:11:01,575 | INFO | Mantra 0.154 0.000 0.085 ✗ +2026-06-25 18:11:01,575 | INFO | Singing 0.096 0.000 0.053 ✗ +2026-06-25 18:11:01,575 | INFO | → WINNER: Music (combined=0.266) +2026-06-25 18:11:01,604 | INFO | +[895.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,604 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,604 | INFO | Music 0.533 0.000 0.293 ✓ +2026-06-25 18:11:01,604 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:11:01,604 | INFO | → WINNER: Music (combined=0.293) +2026-06-25 18:11:01,634 | INFO | +[895.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,634 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,634 | INFO | Music 0.450 0.000 0.247 ✓ +2026-06-25 18:11:01,634 | INFO | Singing 0.112 0.000 0.062 ✗ +2026-06-25 18:11:01,634 | INFO | Mantra 0.088 0.000 0.048 ✗ +2026-06-25 18:11:01,635 | INFO | → WINNER: Music (combined=0.247) +2026-06-25 18:11:01,664 | INFO | +[895.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,664 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,664 | INFO | Music 0.747 0.000 0.411 ✓ +2026-06-25 18:11:01,665 | INFO | Mantra 0.125 0.000 0.069 ✗ +2026-06-25 18:11:01,665 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:01,665 | INFO | Jingle bell 0.066 0.000 0.036 ✗ +2026-06-25 18:11:01,665 | INFO | Music of Bollywood 0.053 0.000 0.029 ✗ +2026-06-25 18:11:01,665 | INFO | → WINNER: Music (combined=0.411) +2026-06-25 18:11:01,694 | INFO | +[896.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,694 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,695 | INFO | Music 0.637 0.000 0.350 ✓ +2026-06-25 18:11:01,695 | INFO | Ding 0.112 0.000 0.062 ✗ +2026-06-25 18:11:01,695 | INFO | Mantra 0.099 0.000 0.054 ✗ +2026-06-25 18:11:01,695 | INFO | Jingle, tinkle 0.092 0.000 0.051 ✗ +2026-06-25 18:11:01,695 | INFO | Singing 0.091 0.000 0.050 ✗ +2026-06-25 18:11:01,695 | INFO | Jingle bell 0.054 0.000 0.029 ✗ +2026-06-25 18:11:01,696 | INFO | → WINNER: Music (combined=0.350) +2026-06-25 18:11:01,725 | INFO | +[896.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,726 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,726 | INFO | Music 0.706 0.000 0.389 ✓ +2026-06-25 18:11:01,726 | INFO | Mantra 0.214 0.000 0.118 ✗ +2026-06-25 18:11:01,726 | INFO | Ding 0.084 0.000 0.046 ✗ +2026-06-25 18:11:01,726 | INFO | Singing 0.076 0.000 0.042 ✗ +2026-06-25 18:11:01,727 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:11:01,757 | INFO | +[896.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,758 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,758 | INFO | Music 0.700 0.000 0.385 ✓ +2026-06-25 18:11:01,758 | INFO | Mantra 0.468 0.000 0.258 ✓ +2026-06-25 18:11:01,758 | INFO | Carnatic music 0.230 0.000 0.127 ✓ +2026-06-25 18:11:01,758 | INFO | Singing 0.112 0.000 0.062 ✗ +2026-06-25 18:11:01,758 | INFO | Chant 0.098 0.000 0.054 ✗ +2026-06-25 18:11:01,758 | INFO | Ding 0.055 0.000 0.030 ✗ +2026-06-25 18:11:01,759 | INFO | → WINNER: Music (combined=0.385) +2026-06-25 18:11:01,787 | INFO | +[896.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,788 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,788 | INFO | Music 0.539 0.000 0.296 ✓ +2026-06-25 18:11:01,788 | INFO | Mantra 0.421 0.000 0.232 ✓ +2026-06-25 18:11:01,788 | INFO | Chant 0.189 0.000 0.104 ✗ +2026-06-25 18:11:01,788 | INFO | Singing 0.152 0.000 0.084 ✗ +2026-06-25 18:11:01,788 | INFO | Vocal music 0.101 0.000 0.055 ✗ +2026-06-25 18:11:01,789 | INFO | A capella 0.082 0.000 0.045 ✗ +2026-06-25 18:11:01,789 | INFO | → WINNER: Music (combined=0.296) +2026-06-25 18:11:01,817 | INFO | +[896.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,819 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,819 | INFO | Mantra 0.526 0.000 0.290 ✓ +2026-06-25 18:11:01,820 | INFO | Music 0.420 0.000 0.231 ✓ +2026-06-25 18:11:01,820 | INFO | Chant 0.381 0.000 0.209 ✓ +2026-06-25 18:11:01,821 | INFO | Vocal music 0.137 0.000 0.075 ✗ +2026-06-25 18:11:01,821 | INFO | Singing 0.109 0.000 0.060 ✗ +2026-06-25 18:11:01,821 | INFO | A capella 0.099 0.000 0.054 ✗ +2026-06-25 18:11:01,821 | INFO | → WINNER: Mantra (combined=0.290) +2026-06-25 18:11:01,853 | INFO | +[897.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,853 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,853 | INFO | Mantra 0.495 0.000 0.272 ✓ +2026-06-25 18:11:01,854 | INFO | Chant 0.323 0.000 0.177 ✓ +2026-06-25 18:11:01,854 | INFO | Music 0.304 0.000 0.167 ✓ +2026-06-25 18:11:01,854 | INFO | Singing 0.101 0.000 0.056 ✗ +2026-06-25 18:11:01,854 | INFO | Vocal music 0.098 0.000 0.054 ✗ +2026-06-25 18:11:01,854 | INFO | A capella 0.084 0.000 0.046 ✗ +2026-06-25 18:11:01,854 | INFO | → WINNER: Mantra (combined=0.272) +2026-06-25 18:11:01,884 | INFO | +[897.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,884 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,884 | INFO | Music 0.575 0.000 0.316 ✓ +2026-06-25 18:11:01,884 | INFO | Mantra 0.299 0.000 0.165 ✓ +2026-06-25 18:11:01,884 | INFO | Chant 0.151 0.000 0.083 ✗ +2026-06-25 18:11:01,885 | INFO | → WINNER: Music (combined=0.316) +2026-06-25 18:11:01,914 | INFO | +[897.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,915 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,915 | INFO | Music 0.619 0.000 0.341 ✓ +2026-06-25 18:11:01,915 | INFO | Musical instrument 0.087 0.000 0.048 ✗ +2026-06-25 18:11:01,915 | INFO | Echo 0.062 0.000 0.034 ✗ +2026-06-25 18:11:01,915 | INFO | → WINNER: Music (combined=0.341) +2026-06-25 18:11:01,944 | INFO | +[897.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,945 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,945 | INFO | Music 0.796 0.000 0.438 ✓ +2026-06-25 18:11:01,945 | INFO | Sitar 0.307 0.000 0.169 ✓ +2026-06-25 18:11:01,945 | INFO | Folk music 0.114 0.000 0.063 ✗ +2026-06-25 18:11:01,946 | INFO | Middle Eastern music 0.101 0.000 0.056 ✗ +2026-06-25 18:11:01,946 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:11:01,946 | INFO | → WINNER: Music (combined=0.438) +2026-06-25 18:11:01,976 | INFO | +[897.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:01,976 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:01,976 | INFO | Music 0.770 0.000 0.424 ✓ +2026-06-25 18:11:01,976 | INFO | Folk music 0.156 0.000 0.086 ✗ +2026-06-25 18:11:01,976 | INFO | Middle Eastern music 0.121 0.000 0.067 ✗ +2026-06-25 18:11:01,977 | INFO | Singing 0.114 0.000 0.062 ✗ +2026-06-25 18:11:01,977 | INFO | Musical instrument 0.109 0.000 0.060 ✗ +2026-06-25 18:11:01,977 | INFO | Sitar 0.108 0.000 0.059 ✗ +2026-06-25 18:11:01,977 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:02,006 | INFO | +[898.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,006 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,007 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:11:02,007 | INFO | Mantra 0.229 0.000 0.126 ✓ +2026-06-25 18:11:02,007 | INFO | Sitar 0.196 0.000 0.108 ✗ +2026-06-25 18:11:02,007 | INFO | Carnatic music 0.181 0.000 0.100 ✗ +2026-06-25 18:11:02,007 | INFO | Folk music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:02,007 | INFO | Singing 0.082 0.000 0.045 ✗ +2026-06-25 18:11:02,008 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:11:02,037 | INFO | +[898.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,037 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,038 | INFO | Music 0.788 0.000 0.434 ✓ +2026-06-25 18:11:02,039 | INFO | Sitar 0.251 0.000 0.138 ✓ +2026-06-25 18:11:02,039 | INFO | Carnatic music 0.227 0.000 0.125 ✓ +2026-06-25 18:11:02,039 | INFO | Mantra 0.212 0.000 0.117 ✗ +2026-06-25 18:11:02,039 | INFO | Singing 0.097 0.000 0.053 ✗ +2026-06-25 18:11:02,039 | INFO | Middle Eastern music 0.096 0.000 0.053 ✗ +2026-06-25 18:11:02,039 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:11:02,068 | INFO | +[898.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,069 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,069 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:11:02,070 | INFO | Middle Eastern music 0.175 0.000 0.096 ✗ +2026-06-25 18:11:02,070 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:11:02,070 | INFO | Mantra 0.139 0.000 0.077 ✗ +2026-06-25 18:11:02,070 | INFO | Musical instrument 0.095 0.000 0.052 ✗ +2026-06-25 18:11:02,070 | INFO | Chant 0.068 0.000 0.037 ✗ +2026-06-25 18:11:02,070 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:11:02,099 | INFO | +[898.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,106 | INFO | Music 0.784 0.000 0.431 ✓ +2026-06-25 18:11:02,106 | INFO | Mantra 0.214 0.000 0.118 ✗ +2026-06-25 18:11:02,106 | INFO | Singing 0.117 0.000 0.065 ✗ +2026-06-25 18:11:02,106 | INFO | Carnatic music 0.108 0.000 0.060 ✗ +2026-06-25 18:11:02,106 | INFO | Middle Eastern music 0.107 0.000 0.059 ✗ +2026-06-25 18:11:02,108 | INFO | Chant 0.099 0.000 0.055 ✗ +2026-06-25 18:11:02,108 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:11:02,138 | INFO | +[898.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,138 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,138 | INFO | Music 0.501 0.000 0.276 ✓ +2026-06-25 18:11:02,138 | INFO | Chant 0.356 0.000 0.196 ✓ +2026-06-25 18:11:02,138 | INFO | Mantra 0.279 0.000 0.153 ✓ +2026-06-25 18:11:02,138 | INFO | Singing 0.126 0.000 0.069 ✗ +2026-06-25 18:11:02,138 | INFO | Choir 0.064 0.000 0.035 ✗ +2026-06-25 18:11:02,138 | INFO | A capella 0.058 0.000 0.032 ✗ +2026-06-25 18:11:02,140 | INFO | → WINNER: Music (combined=0.276) +2026-06-25 18:11:02,168 | INFO | +[899.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,169 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,169 | INFO | Music 0.446 0.000 0.245 ✓ +2026-06-25 18:11:02,170 | INFO | Mantra 0.291 0.000 0.160 ✓ +2026-06-25 18:11:02,170 | INFO | Chant 0.276 0.000 0.152 ✓ +2026-06-25 18:11:02,170 | INFO | Singing 0.123 0.000 0.068 ✗ +2026-06-25 18:11:02,170 | INFO | → WINNER: Music (combined=0.245) +2026-06-25 18:11:02,199 | INFO | +[899.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,200 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,200 | INFO | Music 0.323 0.000 0.178 ✓ +2026-06-25 18:11:02,200 | INFO | Chant 0.189 0.000 0.104 ✗ +2026-06-25 18:11:02,200 | INFO | Mantra 0.187 0.000 0.103 ✗ +2026-06-25 18:11:02,200 | INFO | Singing 0.162 0.000 0.089 ✗ +2026-06-25 18:11:02,201 | INFO | A capella 0.087 0.000 0.048 ✗ +2026-06-25 18:11:02,201 | INFO | → WINNER: Music (combined=0.178) +2026-06-25 18:11:02,230 | INFO | +[899.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,230 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,230 | INFO | Music 0.546 0.000 0.300 ✓ +2026-06-25 18:11:02,230 | INFO | Middle Eastern music 0.172 0.000 0.095 ✗ +2026-06-25 18:11:02,231 | INFO | Singing 0.128 0.000 0.070 ✗ +2026-06-25 18:11:02,231 | INFO | Mantra 0.090 0.000 0.049 ✗ +2026-06-25 18:11:02,231 | INFO | Chant 0.059 0.000 0.033 ✗ +2026-06-25 18:11:02,231 | INFO | → WINNER: Music (combined=0.300) +2026-06-25 18:11:02,260 | INFO | +[899.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,261 | INFO | Music 0.786 0.000 0.433 ✓ +2026-06-25 18:11:02,261 | INFO | Singing 0.170 0.000 0.093 ✗ +2026-06-25 18:11:02,261 | INFO | Middle Eastern music 0.130 0.000 0.071 ✗ +2026-06-25 18:11:02,262 | INFO | Folk music 0.117 0.000 0.064 ✗ +2026-06-25 18:11:02,262 | INFO | Musical instrument 0.078 0.000 0.043 ✗ +2026-06-25 18:11:02,262 | INFO | Mantra 0.077 0.000 0.042 ✗ +2026-06-25 18:11:02,262 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:02,291 | INFO | +[899.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,291 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,292 | INFO | Music 0.803 0.000 0.441 ✓ +2026-06-25 18:11:02,292 | INFO | Middle Eastern music 0.206 0.000 0.113 ✗ +2026-06-25 18:11:02,292 | INFO | Music of Bollywood 0.191 0.000 0.105 ✗ +2026-06-25 18:11:02,292 | INFO | Singing 0.175 0.000 0.096 ✗ +2026-06-25 18:11:02,292 | INFO | Folk music 0.117 0.000 0.064 ✗ +2026-06-25 18:11:02,293 | INFO | Song 0.061 0.000 0.033 ✗ +2026-06-25 18:11:02,293 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:11:02,322 | INFO | +[900.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,322 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,323 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:11:02,323 | INFO | Singing 0.190 0.000 0.104 ✗ +2026-06-25 18:11:02,323 | INFO | Musical instrument 0.148 0.000 0.082 ✗ +2026-06-25 18:11:02,324 | INFO | Folk music 0.132 0.000 0.072 ✗ +2026-06-25 18:11:02,324 | INFO | Middle Eastern music 0.131 0.000 0.072 ✗ +2026-06-25 18:11:02,325 | INFO | Music of Bollywood 0.057 0.000 0.031 ✗ +2026-06-25 18:11:02,325 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:11:02,354 | INFO | +[900.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,355 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,355 | INFO | Music 0.788 0.000 0.433 ✓ +2026-06-25 18:11:02,355 | INFO | Singing 0.148 0.000 0.082 ✗ +2026-06-25 18:11:02,356 | INFO | Musical instrument 0.060 0.000 0.033 ✗ +2026-06-25 18:11:02,356 | INFO | Music of Bollywood 0.041 0.000 0.023 ✗ +2026-06-25 18:11:02,356 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:02,384 | INFO | +[900.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,386 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,386 | INFO | Music 0.675 0.000 0.371 ✓ +2026-06-25 18:11:02,386 | INFO | Singing 0.175 0.000 0.097 ✗ +2026-06-25 18:11:02,386 | INFO | → WINNER: Music (combined=0.371) +2026-06-25 18:11:02,412 | INFO | +[900.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,412 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,412 | INFO | Music 0.511 0.000 0.281 ✓ +2026-06-25 18:11:02,412 | INFO | A capella 0.262 0.000 0.144 ✓ +2026-06-25 18:11:02,412 | INFO | Singing 0.223 0.000 0.122 ✓ +2026-06-25 18:11:02,412 | INFO | Vocal music 0.191 0.000 0.105 ✗ +2026-06-25 18:11:02,412 | INFO | Chant 0.130 0.000 0.072 ✗ +2026-06-25 18:11:02,412 | INFO | Choir 0.089 0.000 0.049 ✗ +2026-06-25 18:11:02,412 | INFO | → WINNER: Music (combined=0.281) +2026-06-25 18:11:02,447 | INFO | +[900.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,447 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,447 | INFO | Music 0.555 0.000 0.305 ✓ +2026-06-25 18:11:02,447 | INFO | Mantra 0.222 0.000 0.122 ✓ +2026-06-25 18:11:02,447 | INFO | Chant 0.169 0.000 0.093 ✗ +2026-06-25 18:11:02,447 | INFO | Middle Eastern music 0.151 0.000 0.083 ✗ +2026-06-25 18:11:02,447 | INFO | Singing 0.123 0.000 0.068 ✗ +2026-06-25 18:11:02,447 | INFO | Music of Bollywood 0.039 0.000 0.021 ✗ +2026-06-25 18:11:02,449 | INFO | → WINNER: Music (combined=0.305) +2026-06-25 18:11:02,478 | INFO | +[901.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,478 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,480 | INFO | Mantra 0.279 0.000 0.153 ✓ +2026-06-25 18:11:02,480 | INFO | Music 0.266 0.000 0.146 ✓ +2026-06-25 18:11:02,480 | INFO | Chant 0.119 0.000 0.066 ✗ +2026-06-25 18:11:02,480 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:11:02,480 | INFO | → WINNER: Mantra (combined=0.153) +2026-06-25 18:11:02,508 | INFO | +[901.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,509 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,510 | INFO | Music 0.420 0.000 0.231 ✓ +2026-06-25 18:11:02,510 | INFO | Mantra 0.183 0.000 0.101 ✗ +2026-06-25 18:11:02,510 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:11:02,510 | INFO | Chant 0.071 0.000 0.039 ✗ +2026-06-25 18:11:02,510 | INFO | → WINNER: Music (combined=0.231) +2026-06-25 18:11:02,540 | INFO | +[901.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,541 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,541 | INFO | Music 0.822 0.000 0.452 ✓ +2026-06-25 18:11:02,541 | INFO | Middle Eastern music 0.249 0.000 0.137 ✓ +2026-06-25 18:11:02,541 | INFO | Folk music 0.157 0.000 0.087 ✗ +2026-06-25 18:11:02,541 | INFO | Carnatic music 0.150 0.000 0.083 ✗ +2026-06-25 18:11:02,542 | INFO | Mantra 0.129 0.000 0.071 ✗ +2026-06-25 18:11:02,542 | INFO | Singing 0.113 0.000 0.062 ✗ +2026-06-25 18:11:02,542 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:11:02,570 | INFO | +[901.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,572 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,572 | INFO | Music 0.735 0.000 0.404 ✓ +2026-06-25 18:11:02,572 | INFO | Singing 0.111 0.000 0.061 ✗ +2026-06-25 18:11:02,572 | INFO | Mantra 0.075 0.000 0.041 ✗ +2026-06-25 18:11:02,572 | INFO | Musical instrument 0.062 0.000 0.034 ✗ +2026-06-25 18:11:02,572 | INFO | Ding 0.059 0.000 0.032 ✗ +2026-06-25 18:11:02,572 | INFO | → WINNER: Music (combined=0.404) +2026-06-25 18:11:02,605 | INFO | +[901.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,605 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,605 | INFO | Music 0.764 0.000 0.420 ✓ +2026-06-25 18:11:02,605 | INFO | Carnatic music 0.286 0.000 0.157 ✓ +2026-06-25 18:11:02,606 | INFO | Musical instrument 0.128 0.000 0.071 ✗ +2026-06-25 18:11:02,606 | INFO | Singing 0.127 0.000 0.070 ✗ +2026-06-25 18:11:02,606 | INFO | Folk music 0.111 0.000 0.061 ✗ +2026-06-25 18:11:02,606 | INFO | Tabla 0.095 0.000 0.052 ✗ +2026-06-25 18:11:02,606 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:11:02,635 | INFO | +[902.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,637 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,637 | INFO | Music 0.758 0.000 0.417 ✓ +2026-06-25 18:11:02,637 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:11:02,637 | INFO | Musical instrument 0.076 0.000 0.042 ✗ +2026-06-25 18:11:02,637 | INFO | Mantra 0.062 0.000 0.034 ✗ +2026-06-25 18:11:02,638 | INFO | → WINNER: Music (combined=0.417) +2026-06-25 18:11:02,666 | INFO | +[902.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,666 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,666 | INFO | Music 0.701 0.000 0.386 ✓ +2026-06-25 18:11:02,666 | INFO | Singing 0.127 0.000 0.070 ✗ +2026-06-25 18:11:02,666 | INFO | → WINNER: Music (combined=0.386) +2026-06-25 18:11:02,695 | INFO | +[902.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,695 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,695 | INFO | Music 0.491 0.000 0.270 ✓ +2026-06-25 18:11:02,695 | INFO | → WINNER: Music (combined=0.270) +2026-06-25 18:11:02,726 | INFO | +[902.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,727 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,729 | INFO | Music 0.634 0.000 0.349 ✓ +2026-06-25 18:11:02,730 | INFO | Singing 0.112 0.000 0.061 ✗ +2026-06-25 18:11:02,730 | INFO | → WINNER: Music (combined=0.349) +2026-06-25 18:11:02,758 | INFO | +[902.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,759 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,759 | INFO | Music 0.196 0.000 0.108 ✗ +2026-06-25 18:11:02,760 | INFO | → no winner +2026-06-25 18:11:02,789 | INFO | +[903.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,789 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,789 | INFO | Music 0.164 0.000 0.090 ✗ +2026-06-25 18:11:02,789 | INFO | → no winner +2026-06-25 18:11:02,813 | INFO | +[903.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,813 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,819 | INFO | Music 0.543 0.000 0.299 ✓ +2026-06-25 18:11:02,820 | INFO | Mantra 0.088 0.000 0.049 ✗ +2026-06-25 18:11:02,820 | INFO | → WINNER: Music (combined=0.299) +2026-06-25 18:11:02,849 | INFO | +[903.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,849 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,849 | INFO | Music 0.515 0.000 0.283 ✓ +2026-06-25 18:11:02,849 | INFO | Mantra 0.107 0.000 0.059 ✗ +2026-06-25 18:11:02,849 | INFO | Singing 0.081 0.000 0.044 ✗ +2026-06-25 18:11:02,849 | INFO | → WINNER: Music (combined=0.283) +2026-06-25 18:11:02,880 | INFO | +[903.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,881 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,881 | INFO | Music 0.668 0.000 0.367 ✓ +2026-06-25 18:11:02,881 | INFO | Mantra 0.289 0.000 0.159 ✓ +2026-06-25 18:11:02,882 | INFO | Carnatic music 0.115 0.000 0.063 ✗ +2026-06-25 18:11:02,882 | INFO | Singing 0.091 0.000 0.050 ✗ +2026-06-25 18:11:02,882 | INFO | Musical instrument 0.079 0.000 0.043 ✗ +2026-06-25 18:11:02,883 | INFO | Chant 0.056 0.000 0.031 ✗ +2026-06-25 18:11:02,884 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:11:02,914 | INFO | +[903.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,914 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,915 | INFO | Music 0.724 0.000 0.398 ✓ +2026-06-25 18:11:02,915 | INFO | Mantra 0.668 0.000 0.367 ✓ +2026-06-25 18:11:02,915 | INFO | Carnatic music 0.338 0.000 0.186 ✓ +2026-06-25 18:11:02,915 | INFO | Chant 0.139 0.000 0.076 ✗ +2026-06-25 18:11:02,915 | INFO | Singing 0.078 0.000 0.043 ✗ +2026-06-25 18:11:02,915 | INFO | Musical instrument 0.068 0.000 0.037 ✗ +2026-06-25 18:11:02,915 | INFO | → WINNER: Music (combined=0.398) +2026-06-25 18:11:02,944 | INFO | +[904.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,944 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,945 | INFO | Music 0.731 0.000 0.402 ✓ +2026-06-25 18:11:02,945 | INFO | Mantra 0.488 0.000 0.269 ✓ +2026-06-25 18:11:02,945 | INFO | Carnatic music 0.322 0.000 0.177 ✓ +2026-06-25 18:11:02,945 | INFO | Chant 0.110 0.000 0.061 ✗ +2026-06-25 18:11:02,945 | INFO | Singing 0.108 0.000 0.059 ✗ +2026-06-25 18:11:02,946 | INFO | Musical instrument 0.093 0.000 0.051 ✗ +2026-06-25 18:11:02,946 | INFO | → WINNER: Music (combined=0.402) +2026-06-25 18:11:02,974 | INFO | +[904.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:02,976 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:02,976 | INFO | Mantra 0.534 0.000 0.294 ✓ +2026-06-25 18:11:02,976 | INFO | Music 0.507 0.000 0.279 ✓ +2026-06-25 18:11:02,976 | INFO | Chant 0.364 0.000 0.200 ✓ +2026-06-25 18:11:02,976 | INFO | Vocal music 0.119 0.000 0.065 ✗ +2026-06-25 18:11:02,976 | INFO | Singing 0.077 0.000 0.042 ✗ +2026-06-25 18:11:02,976 | INFO | → WINNER: Mantra (combined=0.294) +2026-06-25 18:11:03,005 | INFO | +[904.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,005 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,005 | INFO | Mantra 0.576 0.000 0.317 ✓ +2026-06-25 18:11:03,005 | INFO | Chant 0.503 0.000 0.277 ✓ +2026-06-25 18:11:03,005 | INFO | Music 0.443 0.000 0.244 ✓ +2026-06-25 18:11:03,005 | INFO | Vocal music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:03,007 | INFO | Singing 0.084 0.000 0.046 ✗ +2026-06-25 18:11:03,007 | INFO | Choir 0.075 0.000 0.042 ✗ +2026-06-25 18:11:03,007 | INFO | → WINNER: Mantra (combined=0.317) +2026-06-25 18:11:03,036 | INFO | +[904.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,036 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,037 | INFO | Mantra 0.417 0.000 0.229 ✓ +2026-06-25 18:11:03,038 | INFO | Chant 0.373 0.000 0.205 ✓ +2026-06-25 18:11:03,038 | INFO | Music 0.372 0.000 0.205 ✓ +2026-06-25 18:11:03,038 | INFO | Vocal music 0.107 0.000 0.059 ✗ +2026-06-25 18:11:03,038 | INFO | Singing 0.106 0.000 0.059 ✗ +2026-06-25 18:11:03,039 | INFO | Choir 0.081 0.000 0.044 ✗ +2026-06-25 18:11:03,039 | INFO | → WINNER: Mantra (combined=0.229) +2026-06-25 18:11:03,068 | INFO | +[904.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,068 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,068 | INFO | Music 0.292 0.000 0.161 ✓ +2026-06-25 18:11:03,069 | INFO | Mantra 0.228 0.000 0.125 ✓ +2026-06-25 18:11:03,069 | INFO | Chant 0.078 0.000 0.043 ✗ +2026-06-25 18:11:03,069 | INFO | Tabla 0.062 0.000 0.034 ✗ +2026-06-25 18:11:03,070 | INFO | → WINNER: Music (combined=0.161) +2026-06-25 18:11:03,099 | INFO | +[905.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,099 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,100 | INFO | Music 0.746 0.000 0.410 ✓ +2026-06-25 18:11:03,100 | INFO | Musical instrument 0.292 0.000 0.161 ✓ +2026-06-25 18:11:03,100 | INFO | Plucked string instrument 0.162 0.000 0.089 ✗ +2026-06-25 18:11:03,101 | INFO | Tabla 0.123 0.000 0.068 ✗ +2026-06-25 18:11:03,101 | INFO | Carnatic music 0.117 0.000 0.064 ✗ +2026-06-25 18:11:03,102 | INFO | Sitar 0.113 0.000 0.062 ✗ +2026-06-25 18:11:03,104 | INFO | → WINNER: Music (combined=0.410) +2026-06-25 18:11:03,132 | INFO | +[905.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,132 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,134 | INFO | Music 0.757 0.000 0.416 ✓ +2026-06-25 18:11:03,134 | INFO | Sitar 0.155 0.000 0.085 ✗ +2026-06-25 18:11:03,134 | INFO | Tabla 0.145 0.000 0.080 ✗ +2026-06-25 18:11:03,134 | INFO | Musical instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:11:03,134 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:11:03,135 | INFO | Carnatic music 0.103 0.000 0.057 ✗ +2026-06-25 18:11:03,135 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:11:03,164 | INFO | +[905.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,165 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,165 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:11:03,165 | INFO | Musical instrument 0.157 0.000 0.086 ✗ +2026-06-25 18:11:03,165 | INFO | Singing 0.126 0.000 0.069 ✗ +2026-06-25 18:11:03,165 | INFO | Folk music 0.109 0.000 0.060 ✗ +2026-06-25 18:11:03,165 | INFO | Country 0.101 0.000 0.056 ✗ +2026-06-25 18:11:03,166 | INFO | Banjo 0.101 0.000 0.055 ✗ +2026-06-25 18:11:03,166 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:11:03,197 | INFO | +[905.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,198 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,198 | INFO | Music 0.802 0.000 0.441 ✓ +2026-06-25 18:11:03,198 | INFO | Musical instrument 0.160 0.000 0.088 ✗ +2026-06-25 18:11:03,199 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:11:03,199 | INFO | Plucked string instrument 0.106 0.000 0.058 ✗ +2026-06-25 18:11:03,199 | INFO | Country 0.102 0.000 0.056 ✗ +2026-06-25 18:11:03,199 | INFO | Banjo 0.078 0.000 0.043 ✗ +2026-06-25 18:11:03,199 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:11:03,227 | INFO | +[905.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,229 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,229 | INFO | Music 0.796 0.000 0.438 ✓ +2026-06-25 18:11:03,229 | INFO | Singing 0.175 0.000 0.096 ✗ +2026-06-25 18:11:03,230 | INFO | Musical instrument 0.100 0.000 0.055 ✗ +2026-06-25 18:11:03,230 | INFO | Male singing 0.090 0.000 0.050 ✗ +2026-06-25 18:11:03,230 | INFO | Country 0.065 0.000 0.036 ✗ +2026-06-25 18:11:03,230 | INFO | → WINNER: Music (combined=0.438) +2026-06-25 18:11:03,258 | INFO | +[906.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,260 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,260 | INFO | Music 0.486 0.000 0.267 ✓ +2026-06-25 18:11:03,260 | INFO | Singing 0.129 0.000 0.071 ✗ +2026-06-25 18:11:03,261 | INFO | Male singing 0.099 0.000 0.054 ✗ +2026-06-25 18:11:03,261 | INFO | → WINNER: Music (combined=0.267) +2026-06-25 18:11:03,290 | INFO | +[906.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,290 | INFO | Music 0.267 0.000 0.147 ✓ +2026-06-25 18:11:03,290 | INFO | → WINNER: Music (combined=0.147) +2026-06-25 18:11:03,322 | INFO | +[906.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,323 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,323 | INFO | Music 0.300 0.000 0.165 ✓ +2026-06-25 18:11:03,323 | INFO | Singing 0.081 0.000 0.045 ✗ +2026-06-25 18:11:03,323 | INFO | → WINNER: Music (combined=0.165) +2026-06-25 18:11:03,352 | INFO | +[906.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,352 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,353 | INFO | Music 0.252 0.000 0.138 ✓ +2026-06-25 18:11:03,353 | INFO | → WINNER: Music (combined=0.138) +2026-06-25 18:11:03,383 | INFO | +[906.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,384 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,384 | INFO | Chant 0.299 0.000 0.164 ✓ +2026-06-25 18:11:03,384 | INFO | Music 0.269 0.000 0.148 ✓ +2026-06-25 18:11:03,384 | INFO | Mantra 0.169 0.000 0.093 ✗ +2026-06-25 18:11:03,384 | INFO | Male singing 0.075 0.000 0.041 ✗ +2026-06-25 18:11:03,384 | INFO | → WINNER: Chant (combined=0.164) +2026-06-25 18:11:03,412 | INFO | +[907.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,413 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,413 | INFO | Music 0.441 0.000 0.242 ✓ +2026-06-25 18:11:03,413 | INFO | Mantra 0.203 0.000 0.112 ✗ +2026-06-25 18:11:03,413 | INFO | Chant 0.135 0.000 0.074 ✗ +2026-06-25 18:11:03,413 | INFO | → WINNER: Music (combined=0.242) +2026-06-25 18:11:03,442 | INFO | +[907.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,443 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,443 | INFO | Music 0.647 0.000 0.356 ✓ +2026-06-25 18:11:03,443 | INFO | Mantra 0.240 0.000 0.132 ✓ +2026-06-25 18:11:03,444 | INFO | Chant 0.197 0.000 0.108 ✗ +2026-06-25 18:11:03,444 | INFO | Middle Eastern music 0.111 0.000 0.061 ✗ +2026-06-25 18:11:03,444 | INFO | Singing 0.099 0.000 0.054 ✗ +2026-06-25 18:11:03,444 | INFO | → WINNER: Music (combined=0.356) +2026-06-25 18:11:03,473 | INFO | +[907.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,473 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,473 | INFO | Music 0.613 0.000 0.337 ✓ +2026-06-25 18:11:03,473 | INFO | Chant 0.216 0.000 0.119 ✗ +2026-06-25 18:11:03,473 | INFO | Mantra 0.215 0.000 0.118 ✗ +2026-06-25 18:11:03,474 | INFO | Singing 0.116 0.000 0.064 ✗ +2026-06-25 18:11:03,474 | INFO | Carnatic music 0.102 0.000 0.056 ✗ +2026-06-25 18:11:03,474 | INFO | Music of Bollywood 0.033 0.000 0.018 ✗ +2026-06-25 18:11:03,474 | INFO | → WINNER: Music (combined=0.337) +2026-06-25 18:11:03,503 | INFO | +[907.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,503 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,503 | INFO | Music 0.783 0.000 0.430 ✓ +2026-06-25 18:11:03,503 | INFO | Singing 0.201 0.000 0.110 ✗ +2026-06-25 18:11:03,503 | INFO | Music of Bollywood 0.156 0.000 0.086 ✗ +2026-06-25 18:11:03,505 | INFO | Middle Eastern music 0.146 0.000 0.080 ✗ +2026-06-25 18:11:03,505 | INFO | Mantra 0.104 0.000 0.057 ✗ +2026-06-25 18:11:03,505 | INFO | Chant 0.068 0.000 0.037 ✗ +2026-06-25 18:11:03,505 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:11:03,536 | INFO | +[907.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,536 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,536 | INFO | Music 0.607 0.000 0.334 ✓ +2026-06-25 18:11:03,537 | INFO | Singing 0.227 0.000 0.125 ✓ +2026-06-25 18:11:03,537 | INFO | Chant 0.114 0.000 0.063 ✗ +2026-06-25 18:11:03,537 | INFO | Male singing 0.098 0.000 0.054 ✗ +2026-06-25 18:11:03,537 | INFO | Mantra 0.083 0.000 0.045 ✗ +2026-06-25 18:11:03,538 | INFO | → WINNER: Music (combined=0.334) +2026-06-25 18:11:03,567 | INFO | +[908.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,567 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,567 | INFO | Music 0.428 0.000 0.235 ✓ +2026-06-25 18:11:03,567 | INFO | Singing 0.264 0.000 0.145 ✓ +2026-06-25 18:11:03,567 | INFO | A capella 0.180 0.000 0.099 ✗ +2026-06-25 18:11:03,567 | INFO | Male singing 0.167 0.000 0.092 ✗ +2026-06-25 18:11:03,568 | INFO | Chant 0.135 0.000 0.074 ✗ +2026-06-25 18:11:03,568 | INFO | Vocal music 0.132 0.000 0.072 ✗ +2026-06-25 18:11:03,568 | INFO | → WINNER: Music (combined=0.235) +2026-06-25 18:11:03,597 | INFO | +[908.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,598 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,598 | INFO | Music 0.450 0.000 0.247 ✓ +2026-06-25 18:11:03,598 | INFO | Singing 0.214 0.000 0.118 ✗ +2026-06-25 18:11:03,598 | INFO | Chant 0.159 0.000 0.087 ✗ +2026-06-25 18:11:03,598 | INFO | A capella 0.155 0.000 0.085 ✗ +2026-06-25 18:11:03,598 | INFO | Male singing 0.146 0.000 0.081 ✗ +2026-06-25 18:11:03,598 | INFO | Vocal music 0.115 0.000 0.063 ✗ +2026-06-25 18:11:03,598 | INFO | → WINNER: Music (combined=0.247) +2026-06-25 18:11:03,628 | INFO | +[908.40s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,628 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,629 | INFO | Music 0.421 0.000 0.232 ✓ +2026-06-25 18:11:03,629 | INFO | Singing 0.180 0.000 0.099 ✗ +2026-06-25 18:11:03,630 | INFO | Chant 0.176 0.000 0.097 ✗ +2026-06-25 18:11:03,630 | INFO | Mantra 0.144 0.000 0.079 ✗ +2026-06-25 18:11:03,630 | INFO | Male singing 0.119 0.000 0.066 ✗ +2026-06-25 18:11:03,630 | INFO | A capella 0.113 0.000 0.062 ✗ +2026-06-25 18:11:03,630 | INFO | → WINNER: Music (combined=0.232) +2026-06-25 18:11:03,657 | INFO | +[908.60s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,660 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,660 | INFO | Music 0.211 0.000 0.116 ✗ +2026-06-25 18:11:03,661 | INFO | Mantra 0.053 0.000 0.029 ✗ +2026-06-25 18:11:03,662 | INFO | → no winner +2026-06-25 18:11:03,690 | INFO | +[908.80s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,692 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,693 | INFO | Music 0.374 0.000 0.206 ✓ +2026-06-25 18:11:03,693 | INFO | Singing 0.097 0.000 0.053 ✗ +2026-06-25 18:11:03,693 | INFO | → WINNER: Music (combined=0.206) +2026-06-25 18:11:03,724 | INFO | +[909.00s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,724 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,724 | INFO | Music 0.687 0.000 0.378 ✓ +2026-06-25 18:11:03,724 | INFO | Crowd 0.028 0.337 0.167 ✓ +2026-06-25 18:11:03,725 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:11:03,725 | INFO | Mantra 0.079 0.000 0.043 ✗ +2026-06-25 18:11:03,725 | INFO | Jingle bell 0.070 0.000 0.038 ✗ +2026-06-25 18:11:03,725 | INFO | Chant 0.056 0.000 0.031 ✗ +2026-06-25 18:11:03,726 | INFO | → WINNER: Music (combined=0.378) +2026-06-25 18:11:03,755 | INFO | +[909.20s] AMBIENT | scene='The image shows a group of people walking through a field of tall gras' +2026-06-25 18:11:03,756 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,756 | INFO | Music 0.778 0.000 0.428 ✓ +2026-06-25 18:11:03,756 | INFO | Mantra 0.374 0.000 0.206 ✓ +2026-06-25 18:11:03,756 | INFO | Chant 0.144 0.000 0.079 ✗ +2026-06-25 18:11:03,756 | INFO | Singing 0.120 0.000 0.066 ✗ +2026-06-25 18:11:03,757 | INFO | Musical instrument 0.068 0.000 0.037 ✗ +2026-06-25 18:11:03,757 | INFO | → WINNER: Music (combined=0.428) +2026-06-25 18:11:03,787 | INFO | +[909.40s] AMBIENT | scene='' +2026-06-25 18:11:03,787 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,787 | INFO | Music 0.789 0.000 0.434 ✓ +2026-06-25 18:11:03,787 | INFO | Mantra 0.254 0.000 0.140 ✓ +2026-06-25 18:11:03,787 | INFO | Singing 0.123 0.000 0.068 ✗ +2026-06-25 18:11:03,788 | INFO | Musical instrument 0.073 0.000 0.040 ✗ +2026-06-25 18:11:03,788 | INFO | Jingle bell 0.056 0.000 0.030 ✗ +2026-06-25 18:11:03,788 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:11:03,816 | INFO | +[909.60s] AMBIENT | scene='' +2026-06-25 18:11:03,816 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,816 | INFO | Music 0.748 0.000 0.412 ✓ +2026-06-25 18:11:03,816 | INFO | Singing 0.168 0.000 0.093 ✗ +2026-06-25 18:11:03,818 | INFO | Carnatic music 0.151 0.000 0.083 ✗ +2026-06-25 18:11:03,818 | INFO | Mantra 0.103 0.000 0.056 ✗ +2026-06-25 18:11:03,818 | INFO | Musical instrument 0.082 0.000 0.045 ✗ +2026-06-25 18:11:03,818 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:11:03,849 | INFO | +[909.80s] AMBIENT | scene='' +2026-06-25 18:11:03,849 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,849 | INFO | Music 0.421 0.000 0.232 ✓ +2026-06-25 18:11:03,850 | INFO | Singing 0.127 0.000 0.070 ✗ +2026-06-25 18:11:03,850 | INFO | Male singing 0.087 0.000 0.048 ✗ +2026-06-25 18:11:03,850 | INFO | → WINNER: Music (combined=0.232) +2026-06-25 18:11:03,880 | INFO | +[910.00s] AMBIENT | scene='' +2026-06-25 18:11:03,881 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,881 | INFO | Music 0.407 0.000 0.224 ✓ +2026-06-25 18:11:03,881 | INFO | Singing 0.106 0.000 0.058 ✗ +2026-06-25 18:11:03,881 | INFO | → WINNER: Music (combined=0.224) +2026-06-25 18:11:03,911 | INFO | +[910.20s] AMBIENT | scene='' +2026-06-25 18:11:03,912 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,912 | INFO | Music 0.380 0.000 0.209 ✓ +2026-06-25 18:11:03,912 | INFO | Singing 0.090 0.000 0.050 ✗ +2026-06-25 18:11:03,912 | INFO | → WINNER: Music (combined=0.209) +2026-06-25 18:11:03,942 | INFO | +[910.40s] AMBIENT | scene='' +2026-06-25 18:11:03,943 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,943 | INFO | Music 0.195 0.000 0.107 ✗ +2026-06-25 18:11:03,943 | INFO | → no winner +2026-06-25 18:11:03,972 | INFO | +[910.60s] AMBIENT | scene='' +2026-06-25 18:11:03,972 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:03,972 | INFO | Music 0.247 0.000 0.136 ✓ +2026-06-25 18:11:03,974 | INFO | Chant 0.173 0.000 0.095 ✗ +2026-06-25 18:11:03,974 | INFO | Mantra 0.095 0.000 0.052 ✗ +2026-06-25 18:11:03,974 | INFO | → WINNER: Music (combined=0.136) +2026-06-25 18:11:04,004 | INFO | +[910.80s] AMBIENT | scene='' +2026-06-25 18:11:04,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,004 | INFO | Music 0.807 0.000 0.444 ✓ +2026-06-25 18:11:04,006 | INFO | Middle Eastern music 0.153 0.000 0.084 ✗ +2026-06-25 18:11:04,006 | INFO | Singing 0.116 0.000 0.064 ✗ +2026-06-25 18:11:04,006 | INFO | Folk music 0.098 0.000 0.054 ✗ +2026-06-25 18:11:04,006 | INFO | Mantra 0.073 0.000 0.040 ✗ +2026-06-25 18:11:04,006 | INFO | Music of Bollywood 0.035 0.000 0.019 ✗ +2026-06-25 18:11:04,006 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:11:04,036 | INFO | +[911.00s] AMBIENT | scene='' +2026-06-25 18:11:04,036 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,036 | INFO | Music 0.774 0.000 0.426 ✓ +2026-06-25 18:11:04,036 | INFO | Mantra 0.204 0.000 0.112 ✗ +2026-06-25 18:11:04,036 | INFO | Chant 0.176 0.000 0.097 ✗ +2026-06-25 18:11:04,036 | INFO | Middle Eastern music 0.159 0.000 0.087 ✗ +2026-06-25 18:11:04,036 | INFO | Folk music 0.115 0.000 0.063 ✗ +2026-06-25 18:11:04,036 | INFO | Singing 0.105 0.000 0.058 ✗ +2026-06-25 18:11:04,037 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:11:04,066 | INFO | +[911.20s] AMBIENT | scene='' +2026-06-25 18:11:04,066 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,066 | INFO | Music 0.765 0.000 0.421 ✓ +2026-06-25 18:11:04,066 | INFO | Mantra 0.222 0.000 0.122 ✓ +2026-06-25 18:11:04,066 | INFO | Carnatic music 0.214 0.000 0.117 ✗ +2026-06-25 18:11:04,066 | INFO | Singing 0.149 0.000 0.082 ✗ +2026-06-25 18:11:04,066 | INFO | Tabla 0.148 0.000 0.081 ✗ +2026-06-25 18:11:04,067 | INFO | Musical instrument 0.101 0.000 0.056 ✗ +2026-06-25 18:11:04,067 | INFO | → WINNER: Music (combined=0.421) +2026-06-25 18:11:04,096 | INFO | +[911.40s] AMBIENT | scene='' +2026-06-25 18:11:04,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,096 | INFO | Music 0.751 0.000 0.413 ✓ +2026-06-25 18:11:04,096 | INFO | Tabla 0.284 0.000 0.156 ✓ +2026-06-25 18:11:04,097 | INFO | Carnatic music 0.264 0.000 0.145 ✓ +2026-06-25 18:11:04,097 | INFO | Singing 0.169 0.000 0.093 ✗ +2026-06-25 18:11:04,097 | INFO | Musical instrument 0.168 0.000 0.092 ✗ +2026-06-25 18:11:04,097 | INFO | Middle Eastern music 0.103 0.000 0.057 ✗ +2026-06-25 18:11:04,097 | INFO | → WINNER: Music (combined=0.413) +2026-06-25 18:11:04,127 | INFO | +[911.60s] AMBIENT | scene='' +2026-06-25 18:11:04,127 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,127 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:11:04,127 | INFO | Singing 0.234 0.000 0.129 ✓ +2026-06-25 18:11:04,129 | INFO | Musical instrument 0.206 0.000 0.114 ✗ +2026-06-25 18:11:04,129 | INFO | Carnatic music 0.162 0.000 0.089 ✗ +2026-06-25 18:11:04,129 | INFO | Tabla 0.129 0.000 0.071 ✗ +2026-06-25 18:11:04,129 | INFO | Mantra 0.063 0.000 0.035 ✗ +2026-06-25 18:11:04,130 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:11:04,158 | INFO | +[911.80s] AMBIENT | scene='' +2026-06-25 18:11:04,158 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,158 | INFO | Music 0.741 0.000 0.408 ✓ +2026-06-25 18:11:04,158 | INFO | Tabla 0.529 0.000 0.291 ✓ +2026-06-25 18:11:04,158 | INFO | Carnatic music 0.227 0.000 0.125 ✓ +2026-06-25 18:11:04,158 | INFO | Musical instrument 0.211 0.000 0.116 ✗ +2026-06-25 18:11:04,158 | INFO | Percussion 0.175 0.000 0.097 ✗ +2026-06-25 18:11:04,160 | INFO | Drum 0.123 0.000 0.068 ✗ +2026-06-25 18:11:04,160 | INFO | → WINNER: Music (combined=0.408) +2026-06-25 18:11:04,189 | INFO | +[912.00s] AMBIENT | scene='' +2026-06-25 18:11:04,190 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,190 | INFO | Music 0.376 0.000 0.207 ✓ +2026-06-25 18:11:04,190 | INFO | Singing 0.111 0.000 0.061 ✗ +2026-06-25 18:11:04,190 | INFO | Mantra 0.102 0.000 0.056 ✗ +2026-06-25 18:11:04,191 | INFO | A capella 0.074 0.000 0.041 ✗ +2026-06-25 18:11:04,191 | INFO | Chant 0.062 0.000 0.034 ✗ +2026-06-25 18:11:04,191 | INFO | → WINNER: Music (combined=0.207) +2026-06-25 18:11:04,221 | INFO | +[912.20s] AMBIENT | scene='' +2026-06-25 18:11:04,222 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,222 | INFO | Music 0.557 0.000 0.307 ✓ +2026-06-25 18:11:04,222 | INFO | Gargling 0.119 0.000 0.066 ✗ +2026-06-25 18:11:04,222 | INFO | → WINNER: Music (combined=0.307) +2026-06-25 18:11:04,250 | INFO | +[912.40s] AMBIENT | scene='' +2026-06-25 18:11:04,252 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,252 | INFO | Music 0.464 0.000 0.255 ✓ +2026-06-25 18:11:04,252 | INFO | Mantra 0.074 0.000 0.041 ✗ +2026-06-25 18:11:04,253 | INFO | → WINNER: Music (combined=0.255) +2026-06-25 18:11:04,282 | INFO | +[912.60s] AMBIENT | scene='' +2026-06-25 18:11:04,282 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,282 | INFO | Music 0.708 0.000 0.389 ✓ +2026-06-25 18:11:04,282 | INFO | Musical instrument 0.101 0.000 0.056 ✗ +2026-06-25 18:11:04,282 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:11:04,313 | INFO | +[912.80s] AMBIENT | scene='' +2026-06-25 18:11:04,313 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,313 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:11:04,313 | INFO | Sitar 0.154 0.000 0.085 ✗ +2026-06-25 18:11:04,314 | INFO | Musical instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:11:04,314 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:11:04,340 | INFO | +[913.00s] AMBIENT | scene='' +2026-06-25 18:11:04,340 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,340 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:11:04,340 | INFO | Folk music 0.154 0.000 0.085 ✗ +2026-06-25 18:11:04,340 | INFO | Middle Eastern music 0.142 0.000 0.078 ✗ +2026-06-25 18:11:04,340 | INFO | Singing 0.141 0.000 0.078 ✗ +2026-06-25 18:11:04,340 | INFO | Musical instrument 0.101 0.000 0.056 ✗ +2026-06-25 18:11:04,345 | INFO | Sitar 0.074 0.000 0.041 ✗ +2026-06-25 18:11:04,345 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:11:04,370 | INFO | +[913.20s] AMBIENT | scene='' +2026-06-25 18:11:04,370 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,370 | INFO | Music 0.798 0.000 0.439 ✓ +2026-06-25 18:11:04,370 | INFO | Middle Eastern music 0.150 0.000 0.083 ✗ +2026-06-25 18:11:04,370 | INFO | Singing 0.132 0.000 0.073 ✗ +2026-06-25 18:11:04,370 | INFO | Folk music 0.130 0.000 0.072 ✗ +2026-06-25 18:11:04,370 | INFO | Musical instrument 0.116 0.000 0.064 ✗ +2026-06-25 18:11:04,370 | INFO | Sitar 0.071 0.000 0.039 ✗ +2026-06-25 18:11:04,370 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:11:04,408 | INFO | +[913.40s] AMBIENT | scene='' +2026-06-25 18:11:04,408 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,408 | INFO | Music 0.692 0.000 0.381 ✓ +2026-06-25 18:11:04,408 | INFO | Singing 0.205 0.000 0.113 ✗ +2026-06-25 18:11:04,408 | INFO | Middle Eastern music 0.100 0.000 0.055 ✗ +2026-06-25 18:11:04,408 | INFO | Mantra 0.060 0.000 0.033 ✗ +2026-06-25 18:11:04,408 | INFO | Music of Bollywood 0.035 0.000 0.019 ✗ +2026-06-25 18:11:04,408 | INFO | → WINNER: Music (combined=0.381) +2026-06-25 18:11:04,439 | INFO | +[913.60s] AMBIENT | scene='' +2026-06-25 18:11:04,440 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,440 | INFO | Music 0.695 0.000 0.382 ✓ +2026-06-25 18:11:04,440 | INFO | Singing 0.229 0.000 0.126 ✓ +2026-06-25 18:11:04,440 | INFO | A capella 0.067 0.000 0.037 ✗ +2026-06-25 18:11:04,440 | INFO | → WINNER: Music (combined=0.382) +2026-06-25 18:11:04,470 | INFO | +[913.80s] AMBIENT | scene='' +2026-06-25 18:11:04,471 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,471 | INFO | Music 0.491 0.000 0.270 ✓ +2026-06-25 18:11:04,471 | INFO | Singing 0.146 0.000 0.081 ✗ +2026-06-25 18:11:04,471 | INFO | Chant 0.074 0.000 0.041 ✗ +2026-06-25 18:11:04,471 | INFO | Mantra 0.057 0.000 0.031 ✗ +2026-06-25 18:11:04,471 | INFO | A capella 0.054 0.000 0.030 ✗ +2026-06-25 18:11:04,472 | INFO | → WINNER: Music (combined=0.270) +2026-06-25 18:11:04,500 | INFO | +[914.00s] AMBIENT | scene='' +2026-06-25 18:11:04,500 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,500 | INFO | Music 0.372 0.000 0.204 ✓ +2026-06-25 18:11:04,503 | INFO | Singing 0.082 0.000 0.045 ✗ +2026-06-25 18:11:04,504 | INFO | → WINNER: Music (combined=0.204) +2026-06-25 18:11:04,532 | INFO | +[914.20s] AMBIENT | scene='' +2026-06-25 18:11:04,532 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,532 | INFO | Music 0.493 0.000 0.271 ✓ +2026-06-25 18:11:04,532 | INFO | Singing 0.106 0.000 0.058 ✗ +2026-06-25 18:11:04,534 | INFO | → WINNER: Music (combined=0.271) +2026-06-25 18:11:04,564 | INFO | +[914.40s] AMBIENT | scene='' +2026-06-25 18:11:04,565 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,565 | INFO | Music 0.414 0.000 0.228 ✓ +2026-06-25 18:11:04,565 | INFO | → WINNER: Music (combined=0.228) +2026-06-25 18:11:04,594 | INFO | +[914.60s] AMBIENT | scene='' +2026-06-25 18:11:04,594 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,595 | INFO | Music 0.676 0.000 0.372 ✓ +2026-06-25 18:11:04,595 | INFO | Singing 0.103 0.000 0.057 ✗ +2026-06-25 18:11:04,595 | INFO | Mantra 0.071 0.000 0.039 ✗ +2026-06-25 18:11:04,596 | INFO | Ding 0.059 0.000 0.032 ✗ +2026-06-25 18:11:04,596 | INFO | Jingle, tinkle 0.052 0.000 0.029 ✗ +2026-06-25 18:11:04,596 | INFO | → WINNER: Music (combined=0.372) +2026-06-25 18:11:04,625 | INFO | +[914.80s] AMBIENT | scene='' +2026-06-25 18:11:04,626 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,626 | INFO | Music 0.638 0.000 0.351 ✓ +2026-06-25 18:11:04,626 | INFO | Mantra 0.154 0.000 0.085 ✗ +2026-06-25 18:11:04,626 | INFO | Jingle, tinkle 0.111 0.000 0.061 ✗ +2026-06-25 18:11:04,626 | INFO | Jingle bell 0.097 0.000 0.053 ✗ +2026-06-25 18:11:04,626 | INFO | Chant 0.062 0.000 0.034 ✗ +2026-06-25 18:11:04,627 | INFO | Ding 0.052 0.000 0.029 ✗ +2026-06-25 18:11:04,627 | INFO | → WINNER: Music (combined=0.351) +2026-06-25 18:11:04,655 | INFO | +[915.00s] AMBIENT | scene='' +2026-06-25 18:11:04,655 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,656 | INFO | Music 0.686 0.000 0.378 ✓ +2026-06-25 18:11:04,656 | INFO | Mantra 0.271 0.000 0.149 ✓ +2026-06-25 18:11:04,656 | INFO | Carnatic music 0.110 0.000 0.061 ✗ +2026-06-25 18:11:04,656 | INFO | Singing 0.077 0.000 0.042 ✗ +2026-06-25 18:11:04,656 | INFO | Chant 0.059 0.000 0.033 ✗ +2026-06-25 18:11:04,656 | INFO | → WINNER: Music (combined=0.378) +2026-06-25 18:11:04,687 | INFO | +[915.20s] AMBIENT | scene='' +2026-06-25 18:11:04,687 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,687 | INFO | Music 0.734 0.000 0.404 ✓ +2026-06-25 18:11:04,687 | INFO | Carnatic music 0.434 0.000 0.239 ✓ +2026-06-25 18:11:04,687 | INFO | Mantra 0.404 0.000 0.222 ✓ +2026-06-25 18:11:04,688 | INFO | Sitar 0.095 0.000 0.052 ✗ +2026-06-25 18:11:04,688 | INFO | Singing 0.085 0.000 0.047 ✗ +2026-06-25 18:11:04,688 | INFO | Tabla 0.065 0.000 0.036 ✗ +2026-06-25 18:11:04,688 | INFO | → WINNER: Music (combined=0.404) +2026-06-25 18:11:04,717 | INFO | +[915.40s] AMBIENT | scene='' +2026-06-25 18:11:04,717 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,717 | INFO | Music 0.774 0.000 0.426 ✓ +2026-06-25 18:11:04,718 | INFO | Mantra 0.250 0.000 0.137 ✓ +2026-06-25 18:11:04,718 | INFO | Carnatic music 0.218 0.000 0.120 ✗ +2026-06-25 18:11:04,718 | INFO | Singing 0.155 0.000 0.085 ✗ +2026-06-25 18:11:04,718 | INFO | Musical instrument 0.123 0.000 0.068 ✗ +2026-06-25 18:11:04,718 | INFO | Tambourine 0.054 0.000 0.030 ✗ +2026-06-25 18:11:04,718 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:11:04,747 | INFO | +[915.60s] AMBIENT | scene='' +2026-06-25 18:11:04,747 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,747 | INFO | Music 0.733 0.000 0.403 ✓ +2026-06-25 18:11:04,750 | INFO | Carnatic music 0.269 0.000 0.148 ✓ +2026-06-25 18:11:04,750 | INFO | Tabla 0.248 0.000 0.136 ✓ +2026-06-25 18:11:04,750 | INFO | Sitar 0.193 0.000 0.106 ✗ +2026-06-25 18:11:04,750 | INFO | Mantra 0.137 0.000 0.075 ✗ +2026-06-25 18:11:04,750 | INFO | Musical instrument 0.130 0.000 0.072 ✗ +2026-06-25 18:11:04,750 | INFO | → WINNER: Music (combined=0.403) +2026-06-25 18:11:04,780 | INFO | +[915.80s] AMBIENT | scene='' +2026-06-25 18:11:04,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,782 | INFO | Music 0.631 0.000 0.347 ✓ +2026-06-25 18:11:04,782 | INFO | Mantra 0.332 0.000 0.183 ✓ +2026-06-25 18:11:04,782 | INFO | Singing 0.097 0.000 0.053 ✗ +2026-06-25 18:11:04,782 | INFO | Chant 0.095 0.000 0.052 ✗ +2026-06-25 18:11:04,782 | INFO | → WINNER: Music (combined=0.347) +2026-06-25 18:11:04,812 | INFO | +[916.00s] AMBIENT | scene='' +2026-06-25 18:11:04,812 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,813 | INFO | Music 0.470 0.000 0.259 ✓ +2026-06-25 18:11:04,813 | INFO | Mantra 0.404 0.000 0.222 ✓ +2026-06-25 18:11:04,813 | INFO | Singing 0.106 0.000 0.058 ✗ +2026-06-25 18:11:04,813 | INFO | Chant 0.092 0.000 0.050 ✗ +2026-06-25 18:11:04,813 | INFO | → WINNER: Music (combined=0.259) +2026-06-25 18:11:04,843 | INFO | +[916.20s] AMBIENT | scene='' +2026-06-25 18:11:04,843 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,845 | INFO | Music 0.286 0.000 0.157 ✓ +2026-06-25 18:11:04,845 | INFO | Mantra 0.165 0.000 0.091 ✗ +2026-06-25 18:11:04,845 | INFO | → WINNER: Music (combined=0.157) +2026-06-25 18:11:04,875 | INFO | +[916.40s] AMBIENT | scene='' +2026-06-25 18:11:04,875 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,875 | INFO | Music 0.747 0.000 0.411 ✓ +2026-06-25 18:11:04,876 | INFO | Mantra 0.199 0.000 0.109 ✗ +2026-06-25 18:11:04,876 | INFO | Musical instrument 0.142 0.000 0.078 ✗ +2026-06-25 18:11:04,876 | INFO | Carnatic music 0.118 0.000 0.065 ✗ +2026-06-25 18:11:04,876 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:04,876 | INFO | Tabla 0.055 0.000 0.030 ✗ +2026-06-25 18:11:04,876 | INFO | → WINNER: Music (combined=0.411) +2026-06-25 18:11:04,907 | INFO | +[916.60s] AMBIENT | scene='' +2026-06-25 18:11:04,908 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,908 | INFO | Music 0.771 0.000 0.424 ✓ +2026-06-25 18:11:04,908 | INFO | Carnatic music 0.256 0.000 0.141 ✓ +2026-06-25 18:11:04,908 | INFO | Mantra 0.226 0.000 0.124 ✓ +2026-06-25 18:11:04,908 | INFO | Musical instrument 0.152 0.000 0.084 ✗ +2026-06-25 18:11:04,908 | INFO | Sitar 0.125 0.000 0.069 ✗ +2026-06-25 18:11:04,908 | INFO | Singing 0.099 0.000 0.055 ✗ +2026-06-25 18:11:04,909 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:04,938 | INFO | +[916.80s] AMBIENT | scene='' +2026-06-25 18:11:04,938 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,938 | INFO | Music 0.808 0.000 0.445 ✓ +2026-06-25 18:11:04,938 | INFO | Carnatic music 0.367 0.000 0.202 ✓ +2026-06-25 18:11:04,938 | INFO | Mantra 0.279 0.000 0.153 ✓ +2026-06-25 18:11:04,938 | INFO | Sitar 0.245 0.000 0.135 ✓ +2026-06-25 18:11:04,940 | INFO | Musical instrument 0.115 0.000 0.064 ✗ +2026-06-25 18:11:04,940 | INFO | Singing 0.093 0.000 0.051 ✗ +2026-06-25 18:11:04,940 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:11:04,969 | INFO | +[917.00s] AMBIENT | scene='' +2026-06-25 18:11:04,969 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:04,969 | INFO | Music 0.808 0.000 0.444 ✓ +2026-06-25 18:11:04,971 | INFO | Carnatic music 0.331 0.000 0.182 ✓ +2026-06-25 18:11:04,971 | INFO | Mantra 0.262 0.000 0.144 ✓ +2026-06-25 18:11:04,971 | INFO | Sitar 0.178 0.000 0.098 ✗ +2026-06-25 18:11:04,971 | INFO | Musical instrument 0.106 0.000 0.059 ✗ +2026-06-25 18:11:04,971 | INFO | Middle Eastern music 0.103 0.000 0.057 ✗ +2026-06-25 18:11:04,971 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:11:05,001 | INFO | +[917.20s] AMBIENT | scene='' +2026-06-25 18:11:05,001 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,002 | INFO | Music 0.772 0.000 0.424 ✓ +2026-06-25 18:11:05,002 | INFO | Carnatic music 0.188 0.000 0.103 ✗ +2026-06-25 18:11:05,002 | INFO | Mantra 0.174 0.000 0.096 ✗ +2026-06-25 18:11:05,002 | INFO | Singing 0.126 0.000 0.069 ✗ +2026-06-25 18:11:05,002 | INFO | Music of Bollywood 0.044 0.000 0.024 ✗ +2026-06-25 18:11:05,002 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:05,032 | INFO | +[917.40s] AMBIENT | scene='' +2026-06-25 18:11:05,032 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,032 | INFO | Music 0.782 0.000 0.430 ✓ +2026-06-25 18:11:05,033 | INFO | Singing 0.204 0.000 0.112 ✗ +2026-06-25 18:11:05,033 | INFO | Mantra 0.063 0.000 0.034 ✗ +2026-06-25 18:11:05,033 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:11:05,062 | INFO | +[917.60s] AMBIENT | scene='' +2026-06-25 18:11:05,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,062 | INFO | Music 0.695 0.000 0.382 ✓ +2026-06-25 18:11:05,062 | INFO | Singing 0.216 0.000 0.119 ✗ +2026-06-25 18:11:05,062 | INFO | Chant 0.157 0.000 0.086 ✗ +2026-06-25 18:11:05,062 | INFO | Mantra 0.146 0.000 0.081 ✗ +2026-06-25 18:11:05,062 | INFO | Choir 0.127 0.000 0.070 ✗ +2026-06-25 18:11:05,064 | INFO | A capella 0.102 0.000 0.056 ✗ +2026-06-25 18:11:05,064 | INFO | → WINNER: Music (combined=0.382) +2026-06-25 18:11:05,090 | INFO | +[917.80s] AMBIENT | scene='' +2026-06-25 18:11:05,090 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,090 | INFO | Music 0.646 0.000 0.355 ✓ +2026-06-25 18:11:05,094 | INFO | Singing 0.193 0.000 0.106 ✗ +2026-06-25 18:11:05,096 | INFO | Chant 0.104 0.000 0.057 ✗ +2026-06-25 18:11:05,096 | INFO | Mantra 0.098 0.000 0.054 ✗ +2026-06-25 18:11:05,096 | INFO | A capella 0.078 0.000 0.043 ✗ +2026-06-25 18:11:05,097 | INFO | Choir 0.071 0.000 0.039 ✗ +2026-06-25 18:11:05,097 | INFO | → WINNER: Music (combined=0.355) +2026-06-25 18:11:05,127 | INFO | +[918.00s] AMBIENT | scene='' +2026-06-25 18:11:05,127 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,128 | INFO | Music 0.450 0.000 0.248 ✓ +2026-06-25 18:11:05,128 | INFO | Singing 0.208 0.000 0.114 ✗ +2026-06-25 18:11:05,128 | INFO | Male singing 0.148 0.000 0.082 ✗ +2026-06-25 18:11:05,128 | INFO | Chant 0.135 0.000 0.074 ✗ +2026-06-25 18:11:05,128 | INFO | A capella 0.134 0.000 0.073 ✗ +2026-06-25 18:11:05,128 | INFO | Choir 0.105 0.000 0.058 ✗ +2026-06-25 18:11:05,128 | INFO | → WINNER: Music (combined=0.248) +2026-06-25 18:11:05,158 | INFO | +[918.20s] AMBIENT | scene='' +2026-06-25 18:11:05,158 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,159 | INFO | Music 0.326 0.000 0.179 ✓ +2026-06-25 18:11:05,159 | INFO | Singing 0.127 0.000 0.070 ✗ +2026-06-25 18:11:05,159 | INFO | Male singing 0.121 0.000 0.067 ✗ +2026-06-25 18:11:05,159 | INFO | Chant 0.096 0.000 0.053 ✗ +2026-06-25 18:11:05,159 | INFO | Mantra 0.083 0.000 0.045 ✗ +2026-06-25 18:11:05,159 | INFO | → WINNER: Music (combined=0.179) +2026-06-25 18:11:05,190 | INFO | +[918.40s] AMBIENT | scene='' +2026-06-25 18:11:05,190 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,190 | INFO | Music 0.787 0.000 0.433 ✓ +2026-06-25 18:11:05,191 | INFO | Singing 0.176 0.000 0.097 ✗ +2026-06-25 18:11:05,191 | INFO | Musical instrument 0.115 0.000 0.063 ✗ +2026-06-25 18:11:05,191 | INFO | Male singing 0.077 0.000 0.043 ✗ +2026-06-25 18:11:05,191 | INFO | Mantra 0.064 0.000 0.035 ✗ +2026-06-25 18:11:05,191 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:05,221 | INFO | +[918.60s] AMBIENT | scene='' +2026-06-25 18:11:05,221 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,222 | INFO | Music 0.761 0.000 0.418 ✓ +2026-06-25 18:11:05,222 | INFO | Singing 0.157 0.000 0.086 ✗ +2026-06-25 18:11:05,222 | INFO | Middle Eastern music 0.108 0.000 0.059 ✗ +2026-06-25 18:11:05,222 | INFO | Folk music 0.105 0.000 0.058 ✗ +2026-06-25 18:11:05,222 | INFO | Musical instrument 0.082 0.000 0.045 ✗ +2026-06-25 18:11:05,222 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:11:05,250 | INFO | +[918.80s] AMBIENT | scene='' +2026-06-25 18:11:05,250 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,252 | INFO | Music 0.562 0.000 0.309 ✓ +2026-06-25 18:11:05,254 | INFO | Singing 0.153 0.000 0.084 ✗ +2026-06-25 18:11:05,254 | INFO | Mantra 0.090 0.000 0.050 ✗ +2026-06-25 18:11:05,254 | INFO | → WINNER: Music (combined=0.309) +2026-06-25 18:11:05,284 | INFO | +[919.00s] AMBIENT | scene='' +2026-06-25 18:11:05,284 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,284 | INFO | Music 0.706 0.000 0.388 ✓ +2026-06-25 18:11:05,286 | INFO | Singing 0.158 0.000 0.087 ✗ +2026-06-25 18:11:05,286 | INFO | Middle Eastern music 0.108 0.000 0.059 ✗ +2026-06-25 18:11:05,287 | INFO | Mantra 0.098 0.000 0.054 ✗ +2026-06-25 18:11:05,288 | INFO | Musical instrument 0.090 0.000 0.050 ✗ +2026-06-25 18:11:05,288 | INFO | Music of Bollywood 0.048 0.000 0.026 ✗ +2026-06-25 18:11:05,289 | INFO | → WINNER: Music (combined=0.388) +2026-06-25 18:11:05,317 | INFO | +[919.20s] AMBIENT | scene='' +2026-06-25 18:11:05,318 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,318 | INFO | Music 0.442 0.000 0.243 ✓ +2026-06-25 18:11:05,318 | INFO | Singing 0.141 0.000 0.077 ✗ +2026-06-25 18:11:05,320 | INFO | Mantra 0.141 0.000 0.077 ✗ +2026-06-25 18:11:05,320 | INFO | Chant 0.130 0.000 0.072 ✗ +2026-06-25 18:11:05,320 | INFO | → WINNER: Music (combined=0.243) +2026-06-25 18:11:05,350 | INFO | +[919.40s] AMBIENT | scene='' +2026-06-25 18:11:05,350 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,351 | INFO | Music 0.353 0.000 0.194 ✓ +2026-06-25 18:11:05,351 | INFO | Chant 0.296 0.000 0.163 ✓ +2026-06-25 18:11:05,351 | INFO | Singing 0.201 0.000 0.110 ✗ +2026-06-25 18:11:05,351 | INFO | A capella 0.156 0.000 0.086 ✗ +2026-06-25 18:11:05,351 | INFO | Vocal music 0.150 0.000 0.083 ✗ +2026-06-25 18:11:05,352 | INFO | Mantra 0.130 0.000 0.071 ✗ +2026-06-25 18:11:05,352 | INFO | → WINNER: Music (combined=0.194) +2026-06-25 18:11:05,381 | INFO | +[919.60s] AMBIENT | scene='' +2026-06-25 18:11:05,383 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,383 | INFO | Chant 0.394 0.000 0.217 ✓ +2026-06-25 18:11:05,384 | INFO | Music 0.333 0.000 0.183 ✓ +2026-06-25 18:11:05,384 | INFO | Mantra 0.259 0.000 0.142 ✓ +2026-06-25 18:11:05,384 | INFO | Singing 0.156 0.000 0.086 ✗ +2026-06-25 18:11:05,384 | INFO | A capella 0.132 0.000 0.073 ✗ +2026-06-25 18:11:05,384 | INFO | Vocal music 0.131 0.000 0.072 ✗ +2026-06-25 18:11:05,384 | INFO | → WINNER: Chant (combined=0.217) +2026-06-25 18:11:05,414 | INFO | +[919.80s] AMBIENT | scene='' +2026-06-25 18:11:05,414 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,418 | INFO | Chant 0.364 0.000 0.200 ✓ +2026-06-25 18:11:05,418 | INFO | Music 0.331 0.000 0.182 ✓ +2026-06-25 18:11:05,418 | INFO | Mantra 0.293 0.000 0.161 ✓ +2026-06-25 18:11:05,418 | INFO | Carnatic music 0.123 0.000 0.068 ✗ +2026-06-25 18:11:05,418 | INFO | Singing 0.117 0.000 0.064 ✗ +2026-06-25 18:11:05,418 | INFO | Middle Eastern music 0.104 0.000 0.057 ✗ +2026-06-25 18:11:05,418 | INFO | → WINNER: Chant (combined=0.200) +2026-06-25 18:11:05,450 | INFO | +[920.00s] AMBIENT | scene='' +2026-06-25 18:11:05,450 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,450 | INFO | Music 0.287 0.000 0.158 ✓ +2026-06-25 18:11:05,450 | INFO | Chant 0.240 0.000 0.132 ✓ +2026-06-25 18:11:05,450 | INFO | Singing 0.153 0.000 0.084 ✗ +2026-06-25 18:11:05,450 | INFO | Mantra 0.150 0.000 0.082 ✗ +2026-06-25 18:11:05,450 | INFO | Male singing 0.126 0.000 0.069 ✗ +2026-06-25 18:11:05,450 | INFO | A capella 0.068 0.000 0.037 ✗ +2026-06-25 18:11:05,450 | INFO | → WINNER: Music (combined=0.158) +2026-06-25 18:11:05,481 | INFO | +[920.20s] AMBIENT | scene='' +2026-06-25 18:11:05,481 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,482 | INFO | Music 0.722 0.000 0.397 ✓ +2026-06-25 18:11:05,482 | INFO | Singing 0.191 0.000 0.105 ✗ +2026-06-25 18:11:05,482 | INFO | Mantra 0.120 0.000 0.066 ✗ +2026-06-25 18:11:05,482 | INFO | Chant 0.080 0.000 0.044 ✗ +2026-06-25 18:11:05,482 | INFO | Music of Bollywood 0.034 0.000 0.019 ✗ +2026-06-25 18:11:05,483 | INFO | → WINNER: Music (combined=0.397) +2026-06-25 18:11:05,512 | INFO | +[920.40s] AMBIENT | scene='' +2026-06-25 18:11:05,513 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,514 | INFO | Music 0.763 0.000 0.420 ✓ +2026-06-25 18:11:05,514 | INFO | Singing 0.182 0.000 0.100 ✗ +2026-06-25 18:11:05,514 | INFO | Jingle bell 0.098 0.000 0.054 ✗ +2026-06-25 18:11:05,514 | INFO | Mantra 0.072 0.000 0.040 ✗ +2026-06-25 18:11:05,514 | INFO | Music of Bollywood 0.046 0.000 0.025 ✗ +2026-06-25 18:11:05,515 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:11:05,547 | INFO | +[920.60s] AMBIENT | scene='' +2026-06-25 18:11:05,549 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,549 | INFO | Music 0.756 0.000 0.416 ✓ +2026-06-25 18:11:05,549 | INFO | Singing 0.168 0.000 0.092 ✗ +2026-06-25 18:11:05,549 | INFO | Folk music 0.119 0.000 0.066 ✗ +2026-06-25 18:11:05,549 | INFO | Mantra 0.113 0.000 0.062 ✗ +2026-06-25 18:11:05,549 | INFO | Music of Bollywood 0.067 0.000 0.037 ✗ +2026-06-25 18:11:05,550 | INFO | Jingle bell 0.054 0.000 0.030 ✗ +2026-06-25 18:11:05,550 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:11:05,580 | INFO | +[920.80s] AMBIENT | scene='' +2026-06-25 18:11:05,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,580 | INFO | Music 0.673 0.000 0.370 ✓ +2026-06-25 18:11:05,581 | INFO | Mantra 0.177 0.000 0.097 ✗ +2026-06-25 18:11:05,581 | INFO | Singing 0.156 0.000 0.086 ✗ +2026-06-25 18:11:05,581 | INFO | Music of Bollywood 0.081 0.000 0.044 ✗ +2026-06-25 18:11:05,581 | INFO | Chant 0.062 0.000 0.034 ✗ +2026-06-25 18:11:05,581 | INFO | → WINNER: Music (combined=0.370) +2026-06-25 18:11:05,611 | INFO | +[921.00s] AMBIENT | scene='' +2026-06-25 18:11:05,611 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,614 | INFO | Music 0.556 0.000 0.306 ✓ +2026-06-25 18:11:05,616 | INFO | Singing 0.112 0.000 0.062 ✗ +2026-06-25 18:11:05,616 | INFO | Mantra 0.088 0.000 0.048 ✗ +2026-06-25 18:11:05,616 | INFO | → WINNER: Music (combined=0.306) +2026-06-25 18:11:05,648 | INFO | +[921.20s] AMBIENT | scene='' +2026-06-25 18:11:05,649 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,650 | INFO | Music 0.369 0.000 0.203 ✓ +2026-06-25 18:11:05,650 | INFO | Singing 0.167 0.000 0.092 ✗ +2026-06-25 18:11:05,650 | INFO | Male singing 0.089 0.000 0.049 ✗ +2026-06-25 18:11:05,650 | INFO | Mantra 0.061 0.000 0.034 ✗ +2026-06-25 18:11:05,650 | INFO | Chant 0.054 0.000 0.029 ✗ +2026-06-25 18:11:05,650 | INFO | → WINNER: Music (combined=0.203) +2026-06-25 18:11:05,680 | INFO | +[921.40s] AMBIENT | scene='' +2026-06-25 18:11:05,680 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,680 | INFO | Music 0.235 0.000 0.129 ✓ +2026-06-25 18:11:05,680 | INFO | Singing 0.093 0.000 0.051 ✗ +2026-06-25 18:11:05,680 | INFO | → WINNER: Music (combined=0.129) +2026-06-25 18:11:05,710 | INFO | +[921.60s] AMBIENT | scene='' +2026-06-25 18:11:05,712 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,712 | INFO | Music 0.262 0.000 0.144 ✓ +2026-06-25 18:11:05,712 | INFO | Singing 0.087 0.000 0.048 ✗ +2026-06-25 18:11:05,714 | INFO | Mantra 0.083 0.000 0.046 ✗ +2026-06-25 18:11:05,714 | INFO | Chant 0.056 0.000 0.031 ✗ +2026-06-25 18:11:05,714 | INFO | → WINNER: Music (combined=0.144) +2026-06-25 18:11:05,743 | INFO | +[921.80s] AMBIENT | scene='' +2026-06-25 18:11:05,743 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,746 | INFO | Music 0.284 0.000 0.156 ✓ +2026-06-25 18:11:05,747 | INFO | → WINNER: Music (combined=0.156) +2026-06-25 18:11:05,780 | INFO | +[922.00s] AMBIENT | scene='' +2026-06-25 18:11:05,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,780 | INFO | Music 0.376 0.000 0.207 ✓ +2026-06-25 18:11:05,781 | INFO | Singing 0.087 0.000 0.048 ✗ +2026-06-25 18:11:05,781 | INFO | Mantra 0.066 0.000 0.036 ✗ +2026-06-25 18:11:05,781 | INFO | → WINNER: Music (combined=0.207) +2026-06-25 18:11:05,810 | INFO | +[922.20s] AMBIENT | scene='' +2026-06-25 18:11:05,811 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,811 | INFO | Music 0.597 0.000 0.328 ✓ +2026-06-25 18:11:05,811 | INFO | Ding 0.113 0.000 0.062 ✗ +2026-06-25 18:11:05,811 | INFO | Mantra 0.082 0.000 0.045 ✗ +2026-06-25 18:11:05,811 | INFO | → WINNER: Music (combined=0.328) +2026-06-25 18:11:05,842 | INFO | +[922.40s] AMBIENT | scene='' +2026-06-25 18:11:05,842 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,843 | INFO | Music 0.654 0.000 0.360 ✓ +2026-06-25 18:11:05,843 | INFO | Ding 0.105 0.000 0.058 ✗ +2026-06-25 18:11:05,843 | INFO | Singing 0.096 0.000 0.053 ✗ +2026-06-25 18:11:05,843 | INFO | Mantra 0.071 0.000 0.039 ✗ +2026-06-25 18:11:05,844 | INFO | Jingle bell 0.055 0.000 0.030 ✗ +2026-06-25 18:11:05,844 | INFO | Bicycle bell 0.053 0.000 0.029 ✗ +2026-06-25 18:11:05,844 | INFO | → WINNER: Music (combined=0.360) +2026-06-25 18:11:05,874 | INFO | +[922.60s] AMBIENT | scene='' +2026-06-25 18:11:05,874 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,875 | INFO | Music 0.685 0.000 0.377 ✓ +2026-06-25 18:11:05,875 | INFO | Mantra 0.116 0.000 0.064 ✗ +2026-06-25 18:11:05,875 | INFO | Ding 0.099 0.000 0.054 ✗ +2026-06-25 18:11:05,875 | INFO | Singing 0.090 0.000 0.050 ✗ +2026-06-25 18:11:05,875 | INFO | → WINNER: Music (combined=0.377) +2026-06-25 18:11:05,907 | INFO | +[922.80s] AMBIENT | scene='' +2026-06-25 18:11:05,907 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,907 | INFO | Music 0.593 0.000 0.326 ✓ +2026-06-25 18:11:05,908 | INFO | Mantra 0.307 0.000 0.169 ✓ +2026-06-25 18:11:05,908 | INFO | Carnatic music 0.186 0.000 0.102 ✗ +2026-06-25 18:11:05,908 | INFO | Ding 0.156 0.000 0.086 ✗ +2026-06-25 18:11:05,908 | INFO | Singing 0.082 0.000 0.045 ✗ +2026-06-25 18:11:05,908 | INFO | → WINNER: Music (combined=0.326) +2026-06-25 18:11:05,938 | INFO | +[923.00s] AMBIENT | scene='' +2026-06-25 18:11:05,939 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,939 | INFO | Music 0.657 0.000 0.361 ✓ +2026-06-25 18:11:05,939 | INFO | Mantra 0.395 0.000 0.217 ✓ +2026-06-25 18:11:05,939 | INFO | Singing 0.116 0.000 0.064 ✗ +2026-06-25 18:11:05,939 | INFO | Chant 0.077 0.000 0.042 ✗ +2026-06-25 18:11:05,940 | INFO | → WINNER: Music (combined=0.361) +2026-06-25 18:11:05,969 | INFO | +[923.20s] AMBIENT | scene='' +2026-06-25 18:11:05,970 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:05,970 | INFO | Music 0.706 0.000 0.389 ✓ +2026-06-25 18:11:05,970 | INFO | Mantra 0.195 0.000 0.107 ✗ +2026-06-25 18:11:05,971 | INFO | Tabla 0.190 0.000 0.105 ✗ +2026-06-25 18:11:05,971 | INFO | Carnatic music 0.154 0.000 0.085 ✗ +2026-06-25 18:11:05,972 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:11:05,972 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:11:05,972 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:11:06,002 | INFO | +[923.40s] AMBIENT | scene='' +2026-06-25 18:11:06,002 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,002 | INFO | Music 0.403 0.000 0.222 ✓ +2026-06-25 18:11:06,002 | INFO | Gargling 0.375 0.000 0.206 ✓ +2026-06-25 18:11:06,002 | INFO | Singing 0.095 0.000 0.052 ✗ +2026-06-25 18:11:06,002 | INFO | Chant 0.070 0.000 0.039 ✗ +2026-06-25 18:11:06,002 | INFO | Mantra 0.063 0.000 0.035 ✗ +2026-06-25 18:11:06,002 | INFO | → WINNER: Music (combined=0.222) +2026-06-25 18:11:06,034 | INFO | +[923.60s] AMBIENT | scene='' +2026-06-25 18:11:06,034 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,034 | INFO | Gargling 0.598 0.000 0.329 ✓ +2026-06-25 18:11:06,035 | INFO | Music 0.299 0.000 0.164 ✓ +2026-06-25 18:11:06,036 | INFO | → WINNER: Gargling (combined=0.329) +2026-06-25 18:11:06,070 | INFO | +[923.80s] AMBIENT | scene='' +2026-06-25 18:11:06,070 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,071 | INFO | Gargling 0.428 0.000 0.235 ✓ +2026-06-25 18:11:06,071 | INFO | Music 0.272 0.000 0.149 ✓ +2026-06-25 18:11:06,071 | INFO | → WINNER: Gargling (combined=0.235) +2026-06-25 18:11:06,101 | INFO | +[924.00s] AMBIENT | scene='' +2026-06-25 18:11:06,101 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,101 | INFO | Music 0.710 0.000 0.391 ✓ +2026-06-25 18:11:06,103 | INFO | Gargling 0.162 0.000 0.089 ✗ +2026-06-25 18:11:06,104 | INFO | Musical instrument 0.100 0.000 0.055 ✗ +2026-06-25 18:11:06,104 | INFO | Percussion 0.075 0.000 0.041 ✗ +2026-06-25 18:11:06,104 | INFO | Tubular bells 0.055 0.000 0.030 ✗ +2026-06-25 18:11:06,104 | INFO | → WINNER: Music (combined=0.391) +2026-06-25 18:11:06,132 | INFO | +[924.20s] AMBIENT | scene='' +2026-06-25 18:11:06,132 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,132 | INFO | Music 0.648 0.000 0.356 ✓ +2026-06-25 18:11:06,132 | INFO | Bicycle bell 0.151 0.000 0.083 ✗ +2026-06-25 18:11:06,132 | INFO | Musical instrument 0.067 0.000 0.037 ✗ +2026-06-25 18:11:06,132 | INFO | Sitar 0.060 0.000 0.033 ✗ +2026-06-25 18:11:06,132 | INFO | Bell 0.054 0.000 0.030 ✗ +2026-06-25 18:11:06,132 | INFO | → WINNER: Music (combined=0.356) +2026-06-25 18:11:06,165 | INFO | +[924.40s] AMBIENT | scene='' +2026-06-25 18:11:06,166 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,166 | INFO | Music 0.649 0.000 0.357 ✓ +2026-06-25 18:11:06,166 | INFO | Musical instrument 0.136 0.000 0.075 ✗ +2026-06-25 18:11:06,166 | INFO | Tabla 0.123 0.000 0.068 ✗ +2026-06-25 18:11:06,166 | INFO | Sitar 0.116 0.000 0.064 ✗ +2026-06-25 18:11:06,167 | INFO | Carnatic music 0.112 0.000 0.061 ✗ +2026-06-25 18:11:06,167 | INFO | Traditional music 0.099 0.000 0.055 ✗ +2026-06-25 18:11:06,167 | INFO | → WINNER: Music (combined=0.357) +2026-06-25 18:11:06,199 | INFO | +[924.60s] AMBIENT | scene='' +2026-06-25 18:11:06,200 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,200 | INFO | Music 0.708 0.000 0.389 ✓ +2026-06-25 18:11:06,200 | INFO | Tabla 0.223 0.000 0.122 ✓ +2026-06-25 18:11:06,200 | INFO | Musical instrument 0.181 0.000 0.100 ✗ +2026-06-25 18:11:06,200 | INFO | Carnatic music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:06,200 | INFO | Folk music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:06,200 | INFO | Percussion 0.122 0.000 0.067 ✗ +2026-06-25 18:11:06,200 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:11:06,231 | INFO | +[924.80s] AMBIENT | scene='' +2026-06-25 18:11:06,232 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,232 | INFO | Music 0.610 0.000 0.336 ✓ +2026-06-25 18:11:06,232 | INFO | Tabla 0.203 0.000 0.112 ✗ +2026-06-25 18:11:06,232 | INFO | Musical instrument 0.131 0.000 0.072 ✗ +2026-06-25 18:11:06,233 | INFO | Percussion 0.114 0.000 0.062 ✗ +2026-06-25 18:11:06,233 | INFO | Carnatic music 0.104 0.000 0.057 ✗ +2026-06-25 18:11:06,233 | INFO | Drum 0.069 0.000 0.038 ✗ +2026-06-25 18:11:06,233 | INFO | → WINNER: Music (combined=0.336) +2026-06-25 18:11:06,262 | INFO | +[925.00s] AMBIENT | scene='' +2026-06-25 18:11:06,263 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,263 | INFO | Music 0.743 0.000 0.409 ✓ +2026-06-25 18:11:06,263 | INFO | Tabla 0.500 0.000 0.275 ✓ +2026-06-25 18:11:06,263 | INFO | Musical instrument 0.308 0.000 0.169 ✓ +2026-06-25 18:11:06,263 | INFO | Percussion 0.293 0.000 0.161 ✓ +2026-06-25 18:11:06,263 | INFO | Drum 0.194 0.000 0.106 ✗ +2026-06-25 18:11:06,263 | INFO | Sitar 0.066 0.000 0.036 ✗ +2026-06-25 18:11:06,263 | INFO | → WINNER: Music (combined=0.409) +2026-06-25 18:11:06,292 | INFO | +[925.20s] AMBIENT | scene='' +2026-06-25 18:11:06,292 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,294 | INFO | Music 0.790 0.000 0.434 ✓ +2026-06-25 18:11:06,294 | INFO | Musical instrument 0.232 0.000 0.128 ✓ +2026-06-25 18:11:06,294 | INFO | Percussion 0.080 0.000 0.044 ✗ +2026-06-25 18:11:06,295 | INFO | Wood block 0.073 0.000 0.040 ✗ +2026-06-25 18:11:06,295 | INFO | Marimba, xylophone 0.056 0.000 0.031 ✗ +2026-06-25 18:11:06,295 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:11:06,325 | INFO | +[925.40s] AMBIENT | scene='' +2026-06-25 18:11:06,325 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,326 | INFO | Music 0.881 0.000 0.485 ✓ +2026-06-25 18:11:06,326 | INFO | Musical instrument 0.243 0.000 0.134 ✓ +2026-06-25 18:11:06,326 | INFO | Plucked string instrument 0.088 0.000 0.048 ✗ +2026-06-25 18:11:06,326 | INFO | Guitar 0.084 0.000 0.046 ✗ +2026-06-25 18:11:06,326 | INFO | → WINNER: Music (combined=0.485) +2026-06-25 18:11:06,356 | INFO | +[925.60s] AMBIENT | scene='' +2026-06-25 18:11:06,356 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,357 | INFO | Music 0.817 0.000 0.449 ✓ +2026-06-25 18:11:06,357 | INFO | Musical instrument 0.318 0.000 0.175 ✓ +2026-06-25 18:11:06,357 | INFO | Plucked string instrument 0.174 0.000 0.096 ✗ +2026-06-25 18:11:06,358 | INFO | Guitar 0.142 0.000 0.078 ✗ +2026-06-25 18:11:06,358 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:11:06,390 | INFO | +[925.80s] AMBIENT | scene='' +2026-06-25 18:11:06,390 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,390 | INFO | Music 0.747 0.000 0.411 ✓ +2026-06-25 18:11:06,390 | INFO | Musical instrument 0.102 0.000 0.056 ✗ +2026-06-25 18:11:06,390 | INFO | Plucked string instrument 0.050 0.000 0.027 ✗ +2026-06-25 18:11:06,391 | INFO | → WINNER: Music (combined=0.411) +2026-06-25 18:11:06,420 | INFO | +[926.00s] AMBIENT | scene='' +2026-06-25 18:11:06,420 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,420 | INFO | Music 0.742 0.000 0.408 ✓ +2026-06-25 18:11:06,420 | INFO | Sitar 0.370 0.000 0.203 ✓ +2026-06-25 18:11:06,420 | INFO | Musical instrument 0.202 0.000 0.111 ✗ +2026-06-25 18:11:06,420 | INFO | Tabla 0.187 0.000 0.103 ✗ +2026-06-25 18:11:06,420 | INFO | Traditional music 0.113 0.000 0.062 ✗ +2026-06-25 18:11:06,422 | INFO | Folk music 0.105 0.000 0.058 ✗ +2026-06-25 18:11:06,422 | INFO | → WINNER: Music (combined=0.408) +2026-06-25 18:11:06,452 | INFO | +[926.20s] AMBIENT | scene='' +2026-06-25 18:11:06,452 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,452 | INFO | Music 0.695 0.000 0.383 ✓ +2026-06-25 18:11:06,452 | INFO | Bicycle bell 0.511 0.000 0.281 ✓ +2026-06-25 18:11:06,452 | INFO | Bell 0.203 0.000 0.111 ✗ +2026-06-25 18:11:06,452 | INFO | Musical instrument 0.181 0.000 0.100 ✗ +2026-06-25 18:11:06,452 | INFO | Traditional music 0.105 0.000 0.058 ✗ +2026-06-25 18:11:06,452 | INFO | Tabla 0.100 0.000 0.055 ✗ +2026-06-25 18:11:06,452 | INFO | → WINNER: Music (combined=0.383) +2026-06-25 18:11:06,482 | INFO | +[926.40s] AMBIENT | scene='' +2026-06-25 18:11:06,482 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,483 | INFO | Music 0.688 0.000 0.379 ✓ +2026-06-25 18:11:06,483 | INFO | Tabla 0.246 0.000 0.135 ✓ +2026-06-25 18:11:06,483 | INFO | Carnatic music 0.228 0.000 0.125 ✓ +2026-06-25 18:11:06,483 | INFO | Musical instrument 0.224 0.000 0.123 ✓ +2026-06-25 18:11:06,483 | INFO | Sitar 0.199 0.000 0.110 ✗ +2026-06-25 18:11:06,484 | INFO | Percussion 0.094 0.000 0.052 ✗ +2026-06-25 18:11:06,484 | INFO | → WINNER: Music (combined=0.379) +2026-06-25 18:11:06,514 | INFO | +[926.60s] AMBIENT | scene='' +2026-06-25 18:11:06,515 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,515 | INFO | Music 0.684 0.000 0.376 ✓ +2026-06-25 18:11:06,515 | INFO | Tabla 0.269 0.000 0.148 ✓ +2026-06-25 18:11:06,515 | INFO | Musical instrument 0.210 0.000 0.116 ✗ +2026-06-25 18:11:06,515 | INFO | Carnatic music 0.186 0.000 0.102 ✗ +2026-06-25 18:11:06,515 | INFO | Sitar 0.183 0.000 0.101 ✗ +2026-06-25 18:11:06,516 | INFO | Percussion 0.075 0.000 0.042 ✗ +2026-06-25 18:11:06,516 | INFO | → WINNER: Music (combined=0.376) +2026-06-25 18:11:06,544 | INFO | +[926.80s] AMBIENT | scene='' +2026-06-25 18:11:06,545 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,545 | INFO | Music 0.711 0.000 0.391 ✓ +2026-06-25 18:11:06,545 | INFO | Musical instrument 0.060 0.000 0.033 ✗ +2026-06-25 18:11:06,545 | INFO | → WINNER: Music (combined=0.391) +2026-06-25 18:11:06,570 | INFO | +[927.00s] AMBIENT | scene='' +2026-06-25 18:11:06,570 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,570 | INFO | Music 0.754 0.000 0.415 ✓ +2026-06-25 18:11:06,570 | INFO | Tabla 0.167 0.000 0.092 ✗ +2026-06-25 18:11:06,570 | INFO | Musical instrument 0.121 0.000 0.067 ✗ +2026-06-25 18:11:06,570 | INFO | Percussion 0.105 0.000 0.058 ✗ +2026-06-25 18:11:06,570 | INFO | Drum 0.086 0.000 0.047 ✗ +2026-06-25 18:11:06,576 | INFO | Sitar 0.077 0.000 0.043 ✗ +2026-06-25 18:11:06,576 | INFO | → WINNER: Music (combined=0.415) +2026-06-25 18:11:06,603 | INFO | +[927.20s] AMBIENT | scene='' +2026-06-25 18:11:06,603 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,603 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:11:06,603 | INFO | Musical instrument 0.122 0.000 0.067 ✗ +2026-06-25 18:11:06,603 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:11:06,634 | INFO | +[927.40s] AMBIENT | scene='' +2026-06-25 18:11:06,635 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,635 | INFO | Music 0.799 0.000 0.439 ✓ +2026-06-25 18:11:06,635 | INFO | Musical instrument 0.280 0.000 0.154 ✓ +2026-06-25 18:11:06,636 | INFO | Plucked string instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:11:06,636 | INFO | Guitar 0.064 0.000 0.035 ✗ +2026-06-25 18:11:06,636 | INFO | → WINNER: Music (combined=0.439) +2026-06-25 18:11:06,662 | INFO | +[927.60s] AMBIENT | scene='' +2026-06-25 18:11:06,662 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,662 | INFO | Music 0.722 0.000 0.397 ✓ +2026-06-25 18:11:06,662 | INFO | Musical instrument 0.121 0.000 0.067 ✗ +2026-06-25 18:11:06,662 | INFO | → WINNER: Music (combined=0.397) +2026-06-25 18:11:06,695 | INFO | +[927.80s] AMBIENT | scene='' +2026-06-25 18:11:06,695 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,695 | INFO | Music 0.813 0.000 0.447 ✓ +2026-06-25 18:11:06,695 | INFO | Musical instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:11:06,695 | INFO | Tabla 0.103 0.000 0.057 ✗ +2026-06-25 18:11:06,698 | INFO | Percussion 0.094 0.000 0.052 ✗ +2026-06-25 18:11:06,698 | INFO | Drum 0.075 0.000 0.041 ✗ +2026-06-25 18:11:06,698 | INFO | Plucked string instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:11:06,698 | INFO | → WINNER: Music (combined=0.447) +2026-06-25 18:11:06,727 | INFO | +[928.00s] AMBIENT | scene='' +2026-06-25 18:11:06,728 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,728 | INFO | Music 0.704 0.000 0.387 ✓ +2026-06-25 18:11:06,728 | INFO | Folk music 0.133 0.000 0.073 ✗ +2026-06-25 18:11:06,728 | INFO | Middle Eastern music 0.119 0.000 0.066 ✗ +2026-06-25 18:11:06,729 | INFO | Tabla 0.092 0.000 0.051 ✗ +2026-06-25 18:11:06,729 | INFO | Percussion 0.076 0.000 0.042 ✗ +2026-06-25 18:11:06,729 | INFO | Musical instrument 0.071 0.000 0.039 ✗ +2026-06-25 18:11:06,730 | INFO | → WINNER: Music (combined=0.387) +2026-06-25 18:11:06,759 | INFO | +[928.20s] AMBIENT | scene='' +2026-06-25 18:11:06,759 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,760 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:11:06,760 | INFO | Middle Eastern music 0.151 0.000 0.083 ✗ +2026-06-25 18:11:06,760 | INFO | Folk music 0.145 0.000 0.080 ✗ +2026-06-25 18:11:06,760 | INFO | Singing 0.084 0.000 0.046 ✗ +2026-06-25 18:11:06,761 | INFO | Sitar 0.073 0.000 0.040 ✗ +2026-06-25 18:11:06,761 | INFO | Musical instrument 0.070 0.000 0.038 ✗ +2026-06-25 18:11:06,761 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:11:06,790 | INFO | +[928.40s] AMBIENT | scene='' +2026-06-25 18:11:06,790 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,790 | INFO | Music 0.809 0.000 0.445 ✓ +2026-06-25 18:11:06,790 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:11:06,790 | INFO | Musical instrument 0.103 0.000 0.057 ✗ +2026-06-25 18:11:06,791 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:11:06,820 | INFO | +[928.60s] AMBIENT | scene='' +2026-06-25 18:11:06,820 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,820 | INFO | Music 0.694 0.000 0.382 ✓ +2026-06-25 18:11:06,820 | INFO | Singing 0.153 0.000 0.084 ✗ +2026-06-25 18:11:06,820 | INFO | Mantra 0.084 0.000 0.046 ✗ +2026-06-25 18:11:06,820 | INFO | Bicycle bell 0.059 0.000 0.033 ✗ +2026-06-25 18:11:06,820 | INFO | → WINNER: Music (combined=0.382) +2026-06-25 18:11:06,852 | INFO | +[928.80s] AMBIENT | scene='' +2026-06-25 18:11:06,852 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,852 | INFO | Music 0.672 0.000 0.369 ✓ +2026-06-25 18:11:06,852 | INFO | Singing 0.224 0.000 0.123 ✓ +2026-06-25 18:11:06,852 | INFO | Mantra 0.085 0.000 0.047 ✗ +2026-06-25 18:11:06,852 | INFO | Chant 0.073 0.000 0.040 ✗ +2026-06-25 18:11:06,852 | INFO | Choir 0.060 0.000 0.033 ✗ +2026-06-25 18:11:06,852 | INFO | A capella 0.055 0.000 0.030 ✗ +2026-06-25 18:11:06,852 | INFO | → WINNER: Music (combined=0.369) +2026-06-25 18:11:06,882 | INFO | +[929.00s] AMBIENT | scene='' +2026-06-25 18:11:06,883 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,883 | INFO | Music 0.722 0.000 0.397 ✓ +2026-06-25 18:11:06,883 | INFO | Singing 0.200 0.000 0.110 ✗ +2026-06-25 18:11:06,883 | INFO | Mantra 0.117 0.000 0.064 ✗ +2026-06-25 18:11:06,883 | INFO | A capella 0.072 0.000 0.039 ✗ +2026-06-25 18:11:06,884 | INFO | Chant 0.060 0.000 0.033 ✗ +2026-06-25 18:11:06,884 | INFO | → WINNER: Music (combined=0.397) +2026-06-25 18:11:06,913 | INFO | +[929.20s] AMBIENT | scene='' +2026-06-25 18:11:06,913 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,914 | INFO | Music 0.623 0.000 0.343 ✓ +2026-06-25 18:11:06,914 | INFO | Singing 0.198 0.000 0.109 ✗ +2026-06-25 18:11:06,914 | INFO | A capella 0.131 0.000 0.072 ✗ +2026-06-25 18:11:06,914 | INFO | Mantra 0.099 0.000 0.055 ✗ +2026-06-25 18:11:06,915 | INFO | Male singing 0.093 0.000 0.051 ✗ +2026-06-25 18:11:06,915 | INFO | Chant 0.058 0.000 0.032 ✗ +2026-06-25 18:11:06,915 | INFO | → WINNER: Music (combined=0.343) +2026-06-25 18:11:06,944 | INFO | +[929.40s] AMBIENT | scene='' +2026-06-25 18:11:06,944 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,944 | INFO | Music 0.638 0.000 0.351 ✓ +2026-06-25 18:11:06,944 | INFO | Singing 0.208 0.000 0.115 ✗ +2026-06-25 18:11:06,945 | INFO | A capella 0.156 0.000 0.086 ✗ +2026-06-25 18:11:06,945 | INFO | Mantra 0.079 0.000 0.043 ✗ +2026-06-25 18:11:06,945 | INFO | Chant 0.057 0.000 0.031 ✗ +2026-06-25 18:11:06,945 | INFO | → WINNER: Music (combined=0.351) +2026-06-25 18:11:06,970 | INFO | +[929.60s] AMBIENT | scene='' +2026-06-25 18:11:06,970 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:06,970 | INFO | Music 0.372 0.000 0.205 ✓ +2026-06-25 18:11:06,970 | INFO | Singing 0.170 0.000 0.093 ✗ +2026-06-25 18:11:06,970 | INFO | Male singing 0.104 0.000 0.058 ✗ +2026-06-25 18:11:06,970 | INFO | Mantra 0.090 0.000 0.049 ✗ +2026-06-25 18:11:06,970 | INFO | Chant 0.075 0.000 0.041 ✗ +2026-06-25 18:11:06,970 | INFO | A capella 0.070 0.000 0.038 ✗ +2026-06-25 18:11:06,970 | INFO | → WINNER: Music (combined=0.205) +2026-06-25 18:11:07,006 | INFO | +[929.80s] AMBIENT | scene='' +2026-06-25 18:11:07,006 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,006 | INFO | Music 0.818 0.000 0.450 ✓ +2026-06-25 18:11:07,006 | INFO | Singing 0.224 0.000 0.123 ✓ +2026-06-25 18:11:07,007 | INFO | Musical instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:11:07,007 | INFO | Male singing 0.097 0.000 0.053 ✗ +2026-06-25 18:11:07,007 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:11:07,036 | INFO | +[930.00s] AMBIENT | scene='' +2026-06-25 18:11:07,037 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,037 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:11:07,037 | INFO | Singing 0.171 0.000 0.094 ✗ +2026-06-25 18:11:07,037 | INFO | Middle Eastern music 0.116 0.000 0.064 ✗ +2026-06-25 18:11:07,038 | INFO | Musical instrument 0.090 0.000 0.050 ✗ +2026-06-25 18:11:07,038 | INFO | Mantra 0.059 0.000 0.033 ✗ +2026-06-25 18:11:07,038 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:11:07,061 | INFO | +[930.20s] AMBIENT | scene='' +2026-06-25 18:11:07,061 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,061 | INFO | Music 0.807 0.000 0.444 ✓ +2026-06-25 18:11:07,061 | INFO | Middle Eastern music 0.191 0.000 0.105 ✗ +2026-06-25 18:11:07,061 | INFO | Musical instrument 0.186 0.000 0.102 ✗ +2026-06-25 18:11:07,061 | INFO | Folk music 0.151 0.000 0.083 ✗ +2026-06-25 18:11:07,061 | INFO | Sitar 0.132 0.000 0.073 ✗ +2026-06-25 18:11:07,061 | INFO | Carnatic music 0.106 0.000 0.059 ✗ +2026-06-25 18:11:07,061 | INFO | → WINNER: Music (combined=0.444) +2026-06-25 18:11:07,095 | INFO | +[930.40s] AMBIENT | scene='' +2026-06-25 18:11:07,095 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,095 | INFO | Music 0.827 0.000 0.455 ✓ +2026-06-25 18:11:07,095 | INFO | Middle Eastern music 0.136 0.000 0.075 ✗ +2026-06-25 18:11:07,095 | INFO | Folk music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:07,100 | INFO | Singing 0.114 0.000 0.063 ✗ +2026-06-25 18:11:07,100 | INFO | Musical instrument 0.095 0.000 0.052 ✗ +2026-06-25 18:11:07,100 | INFO | Music of Bollywood 0.040 0.000 0.022 ✗ +2026-06-25 18:11:07,100 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:11:07,128 | INFO | +[930.60s] AMBIENT | scene='' +2026-06-25 18:11:07,128 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,128 | INFO | Music 0.672 0.000 0.370 ✓ +2026-06-25 18:11:07,130 | INFO | Singing 0.142 0.000 0.078 ✗ +2026-06-25 18:11:07,130 | INFO | Middle Eastern music 0.130 0.000 0.071 ✗ +2026-06-25 18:11:07,130 | INFO | Mantra 0.081 0.000 0.044 ✗ +2026-06-25 18:11:07,130 | INFO | Music of Bollywood 0.035 0.000 0.019 ✗ +2026-06-25 18:11:07,130 | INFO | → WINNER: Music (combined=0.370) +2026-06-25 18:11:07,158 | INFO | +[930.80s] AMBIENT | scene='' +2026-06-25 18:11:07,160 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,160 | INFO | Music 0.671 0.000 0.369 ✓ +2026-06-25 18:11:07,160 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:07,160 | INFO | Mantra 0.053 0.000 0.029 ✗ +2026-06-25 18:11:07,160 | INFO | → WINNER: Music (combined=0.369) +2026-06-25 18:11:07,190 | INFO | +[931.00s] AMBIENT | scene='' +2026-06-25 18:11:07,190 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,190 | INFO | Music 0.337 0.000 0.185 ✓ +2026-06-25 18:11:07,190 | INFO | Mantra 0.080 0.000 0.044 ✗ +2026-06-25 18:11:07,190 | INFO | Chant 0.054 0.000 0.030 ✗ +2026-06-25 18:11:07,190 | INFO | → WINNER: Music (combined=0.185) +2026-06-25 18:11:07,219 | INFO | +[931.20s] AMBIENT | scene='' +2026-06-25 18:11:07,220 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,220 | INFO | Music 0.220 0.000 0.121 ✓ +2026-06-25 18:11:07,220 | INFO | Chant 0.070 0.000 0.038 ✗ +2026-06-25 18:11:07,220 | INFO | Mantra 0.060 0.000 0.033 ✗ +2026-06-25 18:11:07,220 | INFO | → WINNER: Music (combined=0.121) +2026-06-25 18:11:07,250 | INFO | +[931.40s] AMBIENT | scene='' +2026-06-25 18:11:07,250 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,250 | INFO | Music 0.166 0.000 0.091 ✗ +2026-06-25 18:11:07,250 | INFO | Chant 0.074 0.000 0.041 ✗ +2026-06-25 18:11:07,250 | INFO | → no winner +2026-06-25 18:11:07,280 | INFO | +[931.60s] AMBIENT | scene='' +2026-06-25 18:11:07,280 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,280 | INFO | Choir 0.338 0.000 0.186 ✓ +2026-06-25 18:11:07,281 | INFO | Chant 0.313 0.000 0.172 ✓ +2026-06-25 18:11:07,281 | INFO | Music 0.299 0.000 0.165 ✓ +2026-06-25 18:11:07,281 | INFO | A capella 0.264 0.000 0.145 ✓ +2026-06-25 18:11:07,281 | INFO | Singing 0.241 0.000 0.133 ✓ +2026-06-25 18:11:07,281 | INFO | Vocal music 0.155 0.000 0.085 ✗ +2026-06-25 18:11:07,282 | INFO | → WINNER: Choir (combined=0.186) +2026-06-25 18:11:07,311 | INFO | +[931.80s] AMBIENT | scene='' +2026-06-25 18:11:07,311 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,311 | INFO | Music 0.680 0.000 0.374 ✓ +2026-06-25 18:11:07,312 | INFO | Singing 0.258 0.000 0.142 ✓ +2026-06-25 18:11:07,312 | INFO | Choir 0.240 0.000 0.132 ✓ +2026-06-25 18:11:07,312 | INFO | Chant 0.238 0.000 0.131 ✓ +2026-06-25 18:11:07,312 | INFO | A capella 0.161 0.000 0.088 ✗ +2026-06-25 18:11:07,312 | INFO | Vocal music 0.138 0.000 0.076 ✗ +2026-06-25 18:11:07,312 | INFO | → WINNER: Music (combined=0.374) +2026-06-25 18:11:07,340 | INFO | +[932.00s] AMBIENT | scene='' +2026-06-25 18:11:07,340 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,340 | INFO | Music 0.661 0.000 0.363 ✓ +2026-06-25 18:11:07,340 | INFO | Singing 0.363 0.000 0.200 ✓ +2026-06-25 18:11:07,340 | INFO | A capella 0.355 0.000 0.195 ✓ +2026-06-25 18:11:07,340 | INFO | Vocal music 0.242 0.000 0.133 ✓ +2026-06-25 18:11:07,340 | INFO | Choir 0.206 0.000 0.114 ✗ +2026-06-25 18:11:07,340 | INFO | Chant 0.120 0.000 0.066 ✗ +2026-06-25 18:11:07,340 | INFO | → WINNER: Music (combined=0.363) +2026-06-25 18:11:07,372 | INFO | +[932.20s] AMBIENT | scene='' +2026-06-25 18:11:07,372 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,373 | INFO | Music 0.590 0.000 0.324 ✓ +2026-06-25 18:11:07,373 | INFO | Singing 0.301 0.000 0.165 ✓ +2026-06-25 18:11:07,373 | INFO | A capella 0.128 0.000 0.070 ✗ +2026-06-25 18:11:07,373 | INFO | Vocal music 0.126 0.000 0.070 ✗ +2026-06-25 18:11:07,373 | INFO | Mantra 0.073 0.000 0.040 ✗ +2026-06-25 18:11:07,373 | INFO | Musical instrument 0.063 0.000 0.035 ✗ +2026-06-25 18:11:07,373 | INFO | → WINNER: Music (combined=0.324) +2026-06-25 18:11:07,402 | INFO | +[932.40s] AMBIENT | scene='' +2026-06-25 18:11:07,403 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,403 | INFO | Music 0.706 0.000 0.388 ✓ +2026-06-25 18:11:07,403 | INFO | Singing 0.306 0.000 0.168 ✓ +2026-06-25 18:11:07,403 | INFO | A capella 0.056 0.000 0.031 ✗ +2026-06-25 18:11:07,404 | INFO | → WINNER: Music (combined=0.388) +2026-06-25 18:11:07,434 | INFO | +[932.60s] AMBIENT | scene='' +2026-06-25 18:11:07,434 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,434 | INFO | Music 0.485 0.000 0.267 ✓ +2026-06-25 18:11:07,435 | INFO | Singing 0.335 0.000 0.184 ✓ +2026-06-25 18:11:07,435 | INFO | Chant 0.168 0.000 0.092 ✗ +2026-06-25 18:11:07,435 | INFO | A capella 0.136 0.000 0.075 ✗ +2026-06-25 18:11:07,435 | INFO | Vocal music 0.123 0.000 0.068 ✗ +2026-06-25 18:11:07,435 | INFO | Male singing 0.075 0.000 0.042 ✗ +2026-06-25 18:11:07,435 | INFO | → WINNER: Music (combined=0.267) +2026-06-25 18:11:07,464 | INFO | +[932.80s] AMBIENT | scene='' +2026-06-25 18:11:07,465 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,465 | INFO | Chant 0.417 0.000 0.229 ✓ +2026-06-25 18:11:07,465 | INFO | Music 0.369 0.000 0.203 ✓ +2026-06-25 18:11:07,466 | INFO | Singing 0.230 0.000 0.127 ✓ +2026-06-25 18:11:07,466 | INFO | Mantra 0.148 0.000 0.081 ✗ +2026-06-25 18:11:07,466 | INFO | Choir 0.132 0.000 0.072 ✗ +2026-06-25 18:11:07,466 | INFO | A capella 0.107 0.000 0.059 ✗ +2026-06-25 18:11:07,467 | INFO | → WINNER: Chant (combined=0.229) +2026-06-25 18:11:07,496 | INFO | +[933.00s] AMBIENT | scene='' +2026-06-25 18:11:07,497 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,497 | INFO | Chant 0.494 0.000 0.272 ✓ +2026-06-25 18:11:07,497 | INFO | Music 0.320 0.000 0.176 ✓ +2026-06-25 18:11:07,497 | INFO | Choir 0.255 0.000 0.140 ✓ +2026-06-25 18:11:07,498 | INFO | Singing 0.229 0.000 0.126 ✓ +2026-06-25 18:11:07,498 | INFO | A capella 0.185 0.000 0.102 ✗ +2026-06-25 18:11:07,498 | INFO | Mantra 0.174 0.000 0.096 ✗ +2026-06-25 18:11:07,500 | INFO | → WINNER: Chant (combined=0.272) +2026-06-25 18:11:07,530 | INFO | +[933.20s] AMBIENT | scene='' +2026-06-25 18:11:07,530 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,530 | INFO | Chant 0.455 0.000 0.250 ✓ +2026-06-25 18:11:07,530 | INFO | Music 0.265 0.000 0.146 ✓ +2026-06-25 18:11:07,530 | INFO | Mantra 0.198 0.000 0.109 ✗ +2026-06-25 18:11:07,530 | INFO | Singing 0.159 0.000 0.088 ✗ +2026-06-25 18:11:07,530 | INFO | A capella 0.123 0.000 0.068 ✗ +2026-06-25 18:11:07,530 | INFO | Male singing 0.120 0.000 0.066 ✗ +2026-06-25 18:11:07,530 | INFO | → WINNER: Chant (combined=0.250) +2026-06-25 18:11:07,569 | INFO | +[933.40s] AMBIENT | scene='' +2026-06-25 18:11:07,569 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,570 | INFO | Chant 0.430 0.000 0.236 ✓ +2026-06-25 18:11:07,570 | INFO | Mantra 0.221 0.000 0.122 ✓ +2026-06-25 18:11:07,570 | INFO | Music 0.202 0.000 0.111 ✗ +2026-06-25 18:11:07,571 | INFO | Singing 0.092 0.000 0.051 ✗ +2026-06-25 18:11:07,571 | INFO | → WINNER: Chant (combined=0.236) +2026-06-25 18:11:07,601 | INFO | +[933.60s] AMBIENT | scene='' +2026-06-25 18:11:07,601 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,602 | INFO | Music 0.475 0.000 0.261 ✓ +2026-06-25 18:11:07,602 | INFO | Mantra 0.233 0.000 0.128 ✓ +2026-06-25 18:11:07,602 | INFO | Chant 0.222 0.000 0.122 ✓ +2026-06-25 18:11:07,602 | INFO | Singing 0.084 0.000 0.046 ✗ +2026-06-25 18:11:07,602 | INFO | → WINNER: Music (combined=0.261) +2026-06-25 18:11:07,632 | INFO | +[933.80s] AMBIENT | scene='' +2026-06-25 18:11:07,633 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,633 | INFO | Music 0.505 0.000 0.278 ✓ +2026-06-25 18:11:07,633 | INFO | Mantra 0.254 0.000 0.140 ✓ +2026-06-25 18:11:07,633 | INFO | Chant 0.144 0.000 0.079 ✗ +2026-06-25 18:11:07,634 | INFO | Singing 0.075 0.000 0.041 ✗ +2026-06-25 18:11:07,634 | INFO | → WINNER: Music (combined=0.278) +2026-06-25 18:11:07,663 | INFO | +[934.00s] AMBIENT | scene='' +2026-06-25 18:11:07,664 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,664 | INFO | Music 0.643 0.000 0.354 ✓ +2026-06-25 18:11:07,665 | INFO | Mantra 0.178 0.000 0.098 ✗ +2026-06-25 18:11:07,665 | INFO | Middle Eastern music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:07,665 | INFO | Chant 0.118 0.000 0.065 ✗ +2026-06-25 18:11:07,666 | INFO | Singing 0.099 0.000 0.054 ✗ +2026-06-25 18:11:07,666 | INFO | Music of Bollywood 0.041 0.000 0.023 ✗ +2026-06-25 18:11:07,666 | INFO | → WINNER: Music (combined=0.354) +2026-06-25 18:11:07,698 | INFO | +[934.20s] AMBIENT | scene='' +2026-06-25 18:11:07,698 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,698 | INFO | Music 0.738 0.000 0.406 ✓ +2026-06-25 18:11:07,699 | INFO | Carnatic music 0.182 0.000 0.100 ✗ +2026-06-25 18:11:07,699 | INFO | Singing 0.167 0.000 0.092 ✗ +2026-06-25 18:11:07,699 | INFO | Middle Eastern music 0.162 0.000 0.089 ✗ +2026-06-25 18:11:07,700 | INFO | Mantra 0.147 0.000 0.081 ✗ +2026-06-25 18:11:07,700 | INFO | Chant 0.095 0.000 0.052 ✗ +2026-06-25 18:11:07,700 | INFO | → WINNER: Music (combined=0.406) +2026-06-25 18:11:07,730 | INFO | +[934.40s] AMBIENT | scene='' +2026-06-25 18:11:07,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,730 | INFO | Music 0.761 0.000 0.419 ✓ +2026-06-25 18:11:07,730 | INFO | Singing 0.265 0.000 0.146 ✓ +2026-06-25 18:11:07,730 | INFO | Middle Eastern music 0.130 0.000 0.072 ✗ +2026-06-25 18:11:07,730 | INFO | Chant 0.080 0.000 0.044 ✗ +2026-06-25 18:11:07,730 | INFO | Musical instrument 0.074 0.000 0.041 ✗ +2026-06-25 18:11:07,730 | INFO | Mantra 0.060 0.000 0.033 ✗ +2026-06-25 18:11:07,730 | INFO | → WINNER: Music (combined=0.419) +2026-06-25 18:11:07,761 | INFO | +[934.60s] AMBIENT | scene='' +2026-06-25 18:11:07,770 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:07,770 | INFO | Music 0.605 0.000 0.333 ✓ +2026-06-25 18:11:07,770 | INFO | Singing 0.282 0.000 0.155 ✓ +2026-06-25 18:11:07,770 | INFO | Musical instrument 0.077 0.000 0.042 ✗ +2026-06-25 18:11:07,770 | INFO | Chant 0.064 0.000 0.035 ✗ +2026-06-25 18:11:07,775 | INFO | → WINNER: Music (combined=0.333) +2026-06-25 18:11:08,030 | INFO | +[934.80s] AMBIENT | scene='' +2026-06-25 18:11:08,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,030 | INFO | Music 0.682 0.000 0.375 ✓ +2026-06-25 18:11:08,030 | INFO | Singing 0.225 0.000 0.124 ✓ +2026-06-25 18:11:08,035 | INFO | Musical instrument 0.138 0.000 0.076 ✗ +2026-06-25 18:11:08,035 | INFO | Chant 0.052 0.000 0.029 ✗ +2026-06-25 18:11:08,035 | INFO | → WINNER: Music (combined=0.375) +2026-06-25 18:11:08,068 | INFO | +[935.00s] AMBIENT | scene='' +2026-06-25 18:11:08,069 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,070 | INFO | Music 0.501 0.000 0.276 ✓ +2026-06-25 18:11:08,070 | INFO | Singing 0.113 0.000 0.062 ✗ +2026-06-25 18:11:08,071 | INFO | Musical instrument 0.086 0.000 0.048 ✗ +2026-06-25 18:11:08,071 | INFO | Animal 0.039 0.000 0.021 ✗ +2026-06-25 18:11:08,071 | INFO | → WINNER: Music (combined=0.276) +2026-06-25 18:11:08,102 | INFO | +[935.20s] AMBIENT | scene='' +2026-06-25 18:11:08,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,105 | INFO | Music 0.377 0.000 0.207 ✓ +2026-06-25 18:11:08,105 | INFO | Singing 0.146 0.000 0.080 ✗ +2026-06-25 18:11:08,106 | INFO | Chant 0.118 0.000 0.065 ✗ +2026-06-25 18:11:08,107 | INFO | Mantra 0.110 0.000 0.061 ✗ +2026-06-25 18:11:08,107 | INFO | → WINNER: Music (combined=0.207) +2026-06-25 18:11:08,140 | INFO | +[935.40s] AMBIENT | scene='' +2026-06-25 18:11:08,141 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,142 | INFO | Music 0.818 0.000 0.450 ✓ +2026-06-25 18:11:08,142 | INFO | Singing 0.203 0.000 0.111 ✗ +2026-06-25 18:11:08,143 | INFO | Musical instrument 0.066 0.000 0.036 ✗ +2026-06-25 18:11:08,145 | INFO | Choir 0.055 0.000 0.030 ✗ +2026-06-25 18:11:08,146 | INFO | → WINNER: Music (combined=0.450) +2026-06-25 18:11:08,222 | INFO | +[935.60s] AMBIENT | scene='' +2026-06-25 18:11:08,234 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,242 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:11:08,250 | INFO | Singing 0.147 0.000 0.081 ✗ +2026-06-25 18:11:08,259 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:11:08,320 | INFO | +[935.80s] AMBIENT | scene='' +2026-06-25 18:11:08,323 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,326 | INFO | Music 0.806 0.000 0.443 ✓ +2026-06-25 18:11:08,330 | INFO | Singing 0.117 0.000 0.064 ✗ +2026-06-25 18:11:08,332 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:11:08,386 | INFO | +[936.00s] AMBIENT | scene='' +2026-06-25 18:11:08,387 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,388 | INFO | Music 0.774 0.000 0.426 ✓ +2026-06-25 18:11:08,389 | INFO | Singing 0.135 0.000 0.074 ✗ +2026-06-25 18:11:08,390 | INFO | Musical instrument 0.062 0.000 0.034 ✗ +2026-06-25 18:11:08,391 | INFO | Mantra 0.061 0.000 0.034 ✗ +2026-06-25 18:11:08,392 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:11:08,442 | INFO | +[936.20s] AMBIENT | scene='' +2026-06-25 18:11:08,443 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,445 | INFO | Music 0.795 0.000 0.437 ✓ +2026-06-25 18:11:08,445 | INFO | Musical instrument 0.097 0.000 0.053 ✗ +2026-06-25 18:11:08,446 | INFO | Singing 0.079 0.000 0.043 ✗ +2026-06-25 18:11:08,446 | INFO | → WINNER: Music (combined=0.437) +2026-06-25 18:11:08,483 | INFO | +[936.40s] AMBIENT | scene='' +2026-06-25 18:11:08,484 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,485 | INFO | Music 0.833 0.000 0.458 ✓ +2026-06-25 18:11:08,485 | INFO | Singing 0.133 0.000 0.073 ✗ +2026-06-25 18:11:08,486 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:11:08,562 | INFO | +[936.60s] AMBIENT | scene='' +2026-06-25 18:11:08,563 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,564 | INFO | Music 0.863 0.000 0.475 ✓ +2026-06-25 18:11:08,564 | INFO | Musical instrument 0.103 0.000 0.057 ✗ +2026-06-25 18:11:08,564 | INFO | Singing 0.094 0.000 0.051 ✗ +2026-06-25 18:11:08,566 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:11:08,641 | INFO | +[936.80s] AMBIENT | scene='' +2026-06-25 18:11:08,642 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,642 | INFO | Music 0.884 0.000 0.486 ✓ +2026-06-25 18:11:08,643 | INFO | Singing 0.097 0.000 0.054 ✗ +2026-06-25 18:11:08,643 | INFO | Musical instrument 0.063 0.000 0.035 ✗ +2026-06-25 18:11:08,644 | INFO | → WINNER: Music (combined=0.486) +2026-06-25 18:11:08,698 | INFO | +[937.00s] AMBIENT | scene='' +2026-06-25 18:11:08,699 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,700 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:11:08,700 | INFO | Singing 0.114 0.000 0.063 ✗ +2026-06-25 18:11:08,700 | INFO | Musical instrument 0.069 0.000 0.038 ✗ +2026-06-25 18:11:08,700 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:11:08,750 | INFO | +[937.20s] AMBIENT | scene='' +2026-06-25 18:11:08,750 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,751 | INFO | Music 0.535 0.000 0.294 ✓ +2026-06-25 18:11:08,752 | INFO | Mantra 0.131 0.000 0.072 ✗ +2026-06-25 18:11:08,752 | INFO | Singing 0.106 0.000 0.059 ✗ +2026-06-25 18:11:08,753 | INFO | → WINNER: Music (combined=0.294) +2026-06-25 18:11:08,806 | INFO | +[937.40s] AMBIENT | scene='' +2026-06-25 18:11:08,806 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,806 | INFO | Music 0.789 0.000 0.434 ✓ +2026-06-25 18:11:08,806 | INFO | Mantra 0.198 0.000 0.109 ✗ +2026-06-25 18:11:08,807 | INFO | Carnatic music 0.095 0.000 0.052 ✗ +2026-06-25 18:11:08,807 | INFO | Singing 0.094 0.000 0.051 ✗ +2026-06-25 18:11:08,807 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:11:08,839 | INFO | +[937.60s] AMBIENT | scene='' +2026-06-25 18:11:08,840 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,841 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:11:08,841 | INFO | Carnatic music 0.250 0.000 0.138 ✓ +2026-06-25 18:11:08,842 | INFO | Mantra 0.160 0.000 0.088 ✗ +2026-06-25 18:11:08,842 | INFO | Sitar 0.144 0.000 0.079 ✗ +2026-06-25 18:11:08,842 | INFO | Singing 0.134 0.000 0.074 ✗ +2026-06-25 18:11:08,843 | INFO | Music of Bollywood 0.039 0.000 0.022 ✗ +2026-06-25 18:11:08,843 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:11:08,874 | INFO | +[937.80s] AMBIENT | scene='' +2026-06-25 18:11:08,889 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,890 | INFO | Music 0.825 0.000 0.454 ✓ +2026-06-25 18:11:08,891 | INFO | Sitar 0.382 0.000 0.210 ✓ +2026-06-25 18:11:08,891 | INFO | Carnatic music 0.371 0.000 0.204 ✓ +2026-06-25 18:11:08,892 | INFO | Musical instrument 0.160 0.000 0.088 ✗ +2026-06-25 18:11:08,892 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:11:08,903 | INFO | Tabla 0.147 0.000 0.081 ✗ +2026-06-25 18:11:08,903 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:11:08,978 | INFO | +[938.00s] AMBIENT | scene='' +2026-06-25 18:11:08,983 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:08,983 | INFO | Music 0.786 0.000 0.433 ✓ +2026-06-25 18:11:08,986 | INFO | Sitar 0.356 0.000 0.196 ✓ +2026-06-25 18:11:08,986 | INFO | Carnatic music 0.273 0.000 0.150 ✓ +2026-06-25 18:11:08,998 | INFO | Mantra 0.117 0.000 0.064 ✗ +2026-06-25 18:11:08,998 | INFO | Musical instrument 0.093 0.000 0.051 ✗ +2026-06-25 18:11:09,001 | INFO | Singing 0.092 0.000 0.051 ✗ +2026-06-25 18:11:09,003 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:09,074 | INFO | +[938.20s] AMBIENT | scene='' +2026-06-25 18:11:09,076 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,077 | INFO | Music 0.789 0.000 0.434 ✓ +2026-06-25 18:11:09,077 | INFO | Middle Eastern music 0.237 0.000 0.130 ✓ +2026-06-25 18:11:09,077 | INFO | Singing 0.149 0.000 0.082 ✗ +2026-06-25 18:11:09,078 | INFO | Carnatic music 0.143 0.000 0.079 ✗ +2026-06-25 18:11:09,078 | INFO | Folk music 0.116 0.000 0.064 ✗ +2026-06-25 18:11:09,078 | INFO | Musical instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:11:09,078 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:11:09,262 | INFO | +[938.40s] AMBIENT | scene='' +2026-06-25 18:11:09,263 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,263 | INFO | Music 0.662 0.000 0.364 ✓ +2026-06-25 18:11:09,264 | INFO | Singing 0.184 0.000 0.101 ✗ +2026-06-25 18:11:09,264 | INFO | Mantra 0.076 0.000 0.042 ✗ +2026-06-25 18:11:09,265 | INFO | → WINNER: Music (combined=0.364) +2026-06-25 18:11:09,387 | INFO | +[938.60s] AMBIENT | scene='' +2026-06-25 18:11:09,388 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,390 | INFO | Music 0.494 0.000 0.272 ✓ +2026-06-25 18:11:09,390 | INFO | Singing 0.172 0.000 0.095 ✗ +2026-06-25 18:11:09,391 | INFO | Mantra 0.074 0.000 0.041 ✗ +2026-06-25 18:11:09,391 | INFO | Chant 0.053 0.000 0.029 ✗ +2026-06-25 18:11:09,391 | INFO | → WINNER: Music (combined=0.272) +2026-06-25 18:11:09,425 | INFO | +[938.80s] AMBIENT | scene='' +2026-06-25 18:11:09,427 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,428 | INFO | Music 0.428 0.000 0.235 ✓ +2026-06-25 18:11:09,430 | INFO | Singing 0.188 0.000 0.103 ✗ +2026-06-25 18:11:09,438 | INFO | A capella 0.097 0.000 0.053 ✗ +2026-06-25 18:11:09,438 | INFO | Male singing 0.086 0.000 0.047 ✗ +2026-06-25 18:11:09,440 | INFO | Mantra 0.065 0.000 0.036 ✗ +2026-06-25 18:11:09,440 | INFO | Chant 0.056 0.000 0.031 ✗ +2026-06-25 18:11:09,440 | INFO | → WINNER: Music (combined=0.235) +2026-06-25 18:11:09,478 | INFO | +[939.00s] AMBIENT | scene='' +2026-06-25 18:11:09,479 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,479 | INFO | Music 0.234 0.000 0.129 ✓ +2026-06-25 18:11:09,480 | INFO | Singing 0.130 0.000 0.071 ✗ +2026-06-25 18:11:09,481 | INFO | Mantra 0.090 0.000 0.049 ✗ +2026-06-25 18:11:09,481 | INFO | Chant 0.076 0.000 0.042 ✗ +2026-06-25 18:11:09,482 | INFO | A capella 0.065 0.000 0.036 ✗ +2026-06-25 18:11:09,482 | INFO | → WINNER: Music (combined=0.129) +2026-06-25 18:11:09,592 | INFO | +[939.20s] AMBIENT | scene='' +2026-06-25 18:11:09,593 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,594 | INFO | Music 0.460 0.000 0.253 ✓ +2026-06-25 18:11:09,594 | INFO | Singing 0.196 0.000 0.107 ✗ +2026-06-25 18:11:09,595 | INFO | Chant 0.102 0.000 0.056 ✗ +2026-06-25 18:11:09,595 | INFO | Male singing 0.102 0.000 0.056 ✗ +2026-06-25 18:11:09,596 | INFO | A capella 0.098 0.000 0.054 ✗ +2026-06-25 18:11:09,597 | INFO | Choir 0.096 0.000 0.053 ✗ +2026-06-25 18:11:09,597 | INFO | → WINNER: Music (combined=0.253) +2026-06-25 18:11:09,697 | INFO | +[939.40s] AMBIENT | scene='' +2026-06-25 18:11:09,700 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,700 | INFO | Music 0.685 0.000 0.377 ✓ +2026-06-25 18:11:09,701 | INFO | Singing 0.172 0.000 0.094 ✗ +2026-06-25 18:11:09,702 | INFO | Chant 0.152 0.000 0.083 ✗ +2026-06-25 18:11:09,702 | INFO | Mantra 0.110 0.000 0.061 ✗ +2026-06-25 18:11:09,703 | INFO | Choir 0.101 0.000 0.056 ✗ +2026-06-25 18:11:09,703 | INFO | Crowd 0.051 0.000 0.028 ✗ +2026-06-25 18:11:09,713 | INFO | → WINNER: Music (combined=0.377) +2026-06-25 18:11:09,780 | INFO | +[939.60s] AMBIENT | scene='' +2026-06-25 18:11:09,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,781 | INFO | Music 0.725 0.000 0.399 ✓ +2026-06-25 18:11:09,781 | INFO | Singing 0.192 0.000 0.105 ✗ +2026-06-25 18:11:09,781 | INFO | Chant 0.168 0.000 0.093 ✗ +2026-06-25 18:11:09,781 | INFO | Mantra 0.143 0.000 0.079 ✗ +2026-06-25 18:11:09,782 | INFO | Choir 0.068 0.000 0.037 ✗ +2026-06-25 18:11:09,782 | INFO | → WINNER: Music (combined=0.399) +2026-06-25 18:11:09,811 | INFO | +[939.80s] AMBIENT | scene='' +2026-06-25 18:11:09,812 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,812 | INFO | Music 0.760 0.000 0.418 ✓ +2026-06-25 18:11:09,812 | INFO | Singing 0.229 0.000 0.126 ✓ +2026-06-25 18:11:09,812 | INFO | Male singing 0.086 0.000 0.047 ✗ +2026-06-25 18:11:09,813 | INFO | Musical instrument 0.067 0.000 0.037 ✗ +2026-06-25 18:11:09,813 | INFO | Mantra 0.065 0.000 0.035 ✗ +2026-06-25 18:11:09,813 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:11:09,844 | INFO | +[940.00s] AMBIENT | scene='' +2026-06-25 18:11:09,844 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,844 | INFO | Music 0.695 0.000 0.383 ✓ +2026-06-25 18:11:09,845 | INFO | Singing 0.205 0.000 0.113 ✗ +2026-06-25 18:11:09,845 | INFO | Male singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:09,845 | INFO | Mantra 0.092 0.000 0.051 ✗ +2026-06-25 18:11:09,845 | INFO | Chant 0.068 0.000 0.037 ✗ +2026-06-25 18:11:09,845 | INFO | → WINNER: Music (combined=0.383) +2026-06-25 18:11:09,874 | INFO | +[940.20s] AMBIENT | scene='' +2026-06-25 18:11:09,874 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,875 | INFO | Music 0.337 0.000 0.185 ✓ +2026-06-25 18:11:09,875 | INFO | Singing 0.205 0.000 0.113 ✗ +2026-06-25 18:11:09,875 | INFO | Male singing 0.098 0.000 0.054 ✗ +2026-06-25 18:11:09,875 | INFO | Chant 0.096 0.000 0.053 ✗ +2026-06-25 18:11:09,875 | INFO | Mantra 0.053 0.000 0.029 ✗ +2026-06-25 18:11:09,875 | INFO | → WINNER: Music (combined=0.185) +2026-06-25 18:11:09,942 | INFO | +[940.40s] AMBIENT | scene='' +2026-06-25 18:11:09,942 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:09,942 | INFO | Chant 0.448 0.000 0.246 ✓ +2026-06-25 18:11:09,942 | INFO | Music 0.243 0.000 0.134 ✓ +2026-06-25 18:11:09,942 | INFO | Mantra 0.174 0.000 0.096 ✗ +2026-06-25 18:11:09,943 | INFO | Singing 0.112 0.000 0.062 ✗ +2026-06-25 18:11:09,943 | INFO | Choir 0.061 0.000 0.033 ✗ +2026-06-25 18:11:09,943 | INFO | → WINNER: Chant (combined=0.246) +2026-06-25 18:11:10,013 | INFO | +[940.60s] AMBIENT | scene='' +2026-06-25 18:11:10,013 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,014 | INFO | Music 0.146 0.000 0.080 ✗ +2026-06-25 18:11:10,014 | INFO | Chant 0.114 0.000 0.063 ✗ +2026-06-25 18:11:10,014 | INFO | Mantra 0.075 0.000 0.041 ✗ +2026-06-25 18:11:10,015 | INFO | → no winner +2026-06-25 18:11:10,085 | INFO | +[940.80s] AMBIENT | scene='' +2026-06-25 18:11:10,086 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,086 | INFO | Music 0.177 0.000 0.098 ✗ +2026-06-25 18:11:10,086 | INFO | → no winner +2026-06-25 18:11:10,119 | INFO | +[941.00s] AMBIENT | scene='' +2026-06-25 18:11:10,121 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,121 | INFO | Music 0.121 0.000 0.066 ✗ +2026-06-25 18:11:10,121 | INFO | → no winner +2026-06-25 18:11:10,153 | INFO | +[941.20s] AMBIENT | scene='' +2026-06-25 18:11:10,157 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,158 | INFO | Music 0.745 0.000 0.410 ✓ +2026-06-25 18:11:10,158 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:11:10,158 | INFO | Musical instrument 0.095 0.000 0.052 ✗ +2026-06-25 18:11:10,158 | INFO | Mantra 0.074 0.000 0.041 ✗ +2026-06-25 18:11:10,158 | INFO | → WINNER: Music (combined=0.410) +2026-06-25 18:11:10,190 | INFO | +[941.40s] AMBIENT | scene='' +2026-06-25 18:11:10,191 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,191 | INFO | Music 0.762 0.000 0.419 ✓ +2026-06-25 18:11:10,191 | INFO | Mantra 0.115 0.000 0.063 ✗ +2026-06-25 18:11:10,191 | INFO | Singing 0.110 0.000 0.060 ✗ +2026-06-25 18:11:10,191 | INFO | → WINNER: Music (combined=0.419) +2026-06-25 18:11:10,221 | INFO | +[941.60s] AMBIENT | scene='' +2026-06-25 18:11:10,221 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,222 | INFO | Music 0.660 0.000 0.363 ✓ +2026-06-25 18:11:10,222 | INFO | Mantra 0.128 0.000 0.070 ✗ +2026-06-25 18:11:10,222 | INFO | Singing 0.100 0.000 0.055 ✗ +2026-06-25 18:11:10,222 | INFO | Carnatic music 0.098 0.000 0.054 ✗ +2026-06-25 18:11:10,222 | INFO | Music of Bollywood 0.045 0.000 0.025 ✗ +2026-06-25 18:11:10,223 | INFO | → WINNER: Music (combined=0.363) +2026-06-25 18:11:10,252 | INFO | +[941.80s] AMBIENT | scene='' +2026-06-25 18:11:10,253 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,253 | INFO | Music 0.641 0.000 0.352 ✓ +2026-06-25 18:11:10,253 | INFO | Mantra 0.305 0.000 0.168 ✓ +2026-06-25 18:11:10,253 | INFO | Chant 0.201 0.000 0.111 ✗ +2026-06-25 18:11:10,253 | INFO | Carnatic music 0.170 0.000 0.093 ✗ +2026-06-25 18:11:10,253 | INFO | Singing 0.132 0.000 0.073 ✗ +2026-06-25 18:11:10,254 | INFO | Vocal music 0.097 0.000 0.053 ✗ +2026-06-25 18:11:10,254 | INFO | → WINNER: Music (combined=0.352) +2026-06-25 18:11:10,283 | INFO | +[942.00s] AMBIENT | scene='' +2026-06-25 18:11:10,283 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,283 | INFO | Music 0.461 0.000 0.254 ✓ +2026-06-25 18:11:10,283 | INFO | Chant 0.238 0.000 0.131 ✓ +2026-06-25 18:11:10,283 | INFO | Singing 0.232 0.000 0.128 ✓ +2026-06-25 18:11:10,284 | INFO | Mantra 0.136 0.000 0.075 ✗ +2026-06-25 18:11:10,284 | INFO | Vocal music 0.129 0.000 0.071 ✗ +2026-06-25 18:11:10,284 | INFO | Choir 0.102 0.000 0.056 ✗ +2026-06-25 18:11:10,284 | INFO | → WINNER: Music (combined=0.254) +2026-06-25 18:11:10,315 | INFO | +[942.20s] AMBIENT | scene='' +2026-06-25 18:11:10,316 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,317 | INFO | Music 0.340 0.000 0.187 ✓ +2026-06-25 18:11:10,317 | INFO | Chant 0.261 0.000 0.143 ✓ +2026-06-25 18:11:10,318 | INFO | Singing 0.210 0.000 0.115 ✗ +2026-06-25 18:11:10,318 | INFO | Male singing 0.102 0.000 0.056 ✗ +2026-06-25 18:11:10,318 | INFO | Mantra 0.099 0.000 0.054 ✗ +2026-06-25 18:11:10,318 | INFO | A capella 0.087 0.000 0.048 ✗ +2026-06-25 18:11:10,318 | INFO | → WINNER: Music (combined=0.187) +2026-06-25 18:11:10,347 | INFO | +[942.40s] AMBIENT | scene='' +2026-06-25 18:11:10,347 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,347 | INFO | Chant 0.332 0.000 0.182 ✓ +2026-06-25 18:11:10,347 | INFO | Music 0.299 0.000 0.164 ✓ +2026-06-25 18:11:10,348 | INFO | Singing 0.177 0.000 0.097 ✗ +2026-06-25 18:11:10,348 | INFO | Mantra 0.124 0.000 0.068 ✗ +2026-06-25 18:11:10,348 | INFO | Choir 0.101 0.000 0.056 ✗ +2026-06-25 18:11:10,348 | INFO | A capella 0.096 0.000 0.053 ✗ +2026-06-25 18:11:10,348 | INFO | → WINNER: Chant (combined=0.182) +2026-06-25 18:11:10,378 | INFO | +[942.60s] AMBIENT | scene='' +2026-06-25 18:11:10,378 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,379 | INFO | Chant 0.296 0.000 0.163 ✓ +2026-06-25 18:11:10,379 | INFO | Music 0.294 0.000 0.162 ✓ +2026-06-25 18:11:10,379 | INFO | Mantra 0.133 0.000 0.073 ✗ +2026-06-25 18:11:10,379 | INFO | Singing 0.117 0.000 0.065 ✗ +2026-06-25 18:11:10,379 | INFO | Male singing 0.084 0.000 0.046 ✗ +2026-06-25 18:11:10,380 | INFO | Choir 0.054 0.000 0.030 ✗ +2026-06-25 18:11:10,380 | INFO | → WINNER: Chant (combined=0.163) +2026-06-25 18:11:10,409 | INFO | +[942.80s] AMBIENT | scene='' +2026-06-25 18:11:10,409 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,409 | INFO | Music 0.182 0.000 0.100 ✗ +2026-06-25 18:11:10,410 | INFO | Chant 0.139 0.000 0.077 ✗ +2026-06-25 18:11:10,410 | INFO | Mantra 0.093 0.000 0.051 ✗ +2026-06-25 18:11:10,410 | INFO | → no winner +2026-06-25 18:11:10,440 | INFO | +[943.00s] AMBIENT | scene='' +2026-06-25 18:11:10,440 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,440 | INFO | Music 0.636 0.000 0.350 ✓ +2026-06-25 18:11:10,440 | INFO | Mantra 0.190 0.000 0.105 ✗ +2026-06-25 18:11:10,441 | INFO | Singing 0.120 0.000 0.066 ✗ +2026-06-25 18:11:10,441 | INFO | Chant 0.063 0.000 0.035 ✗ +2026-06-25 18:11:10,441 | INFO | → WINNER: Music (combined=0.350) +2026-06-25 18:11:10,472 | INFO | +[943.20s] AMBIENT | scene='' +2026-06-25 18:11:10,472 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,473 | INFO | Music 0.752 0.000 0.414 ✓ +2026-06-25 18:11:10,473 | INFO | Sitar 0.123 0.000 0.068 ✗ +2026-06-25 18:11:10,474 | INFO | Carnatic music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:10,474 | INFO | Mantra 0.114 0.000 0.063 ✗ +2026-06-25 18:11:10,474 | INFO | Singing 0.092 0.000 0.051 ✗ +2026-06-25 18:11:10,475 | INFO | Musical instrument 0.073 0.000 0.040 ✗ +2026-06-25 18:11:10,475 | INFO | → WINNER: Music (combined=0.414) +2026-06-25 18:11:10,505 | INFO | +[943.40s] AMBIENT | scene='' +2026-06-25 18:11:10,505 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,505 | INFO | Music 0.787 0.000 0.433 ✓ +2026-06-25 18:11:10,506 | INFO | Mantra 0.322 0.000 0.177 ✓ +2026-06-25 18:11:10,506 | INFO | Carnatic music 0.170 0.000 0.093 ✗ +2026-06-25 18:11:10,506 | INFO | Singing 0.153 0.000 0.084 ✗ +2026-06-25 18:11:10,506 | INFO | Sitar 0.106 0.000 0.059 ✗ +2026-06-25 18:11:10,509 | INFO | Musical instrument 0.079 0.000 0.043 ✗ +2026-06-25 18:11:10,509 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:10,538 | INFO | +[943.60s] AMBIENT | scene='' +2026-06-25 18:11:10,538 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,538 | INFO | Music 0.770 0.000 0.424 ✓ +2026-06-25 18:11:10,538 | INFO | Mantra 0.137 0.000 0.075 ✗ +2026-06-25 18:11:10,540 | INFO | Singing 0.129 0.000 0.071 ✗ +2026-06-25 18:11:10,540 | INFO | Folk music 0.098 0.000 0.054 ✗ +2026-06-25 18:11:10,540 | INFO | Sitar 0.073 0.000 0.040 ✗ +2026-06-25 18:11:10,540 | INFO | Music of Bollywood 0.067 0.000 0.037 ✗ +2026-06-25 18:11:10,541 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:10,570 | INFO | +[943.80s] AMBIENT | scene='' +2026-06-25 18:11:10,572 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,572 | INFO | Music 0.715 0.000 0.393 ✓ +2026-06-25 18:11:10,573 | INFO | Mantra 0.179 0.000 0.099 ✗ +2026-06-25 18:11:10,573 | INFO | Singing 0.104 0.000 0.057 ✗ +2026-06-25 18:11:10,573 | INFO | Carnatic music 0.104 0.000 0.057 ✗ +2026-06-25 18:11:10,573 | INFO | Music of Bollywood 0.046 0.000 0.025 ✗ +2026-06-25 18:11:10,573 | INFO | → WINNER: Music (combined=0.393) +2026-06-25 18:11:10,603 | INFO | +[944.00s] AMBIENT | scene='' +2026-06-25 18:11:10,605 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,606 | INFO | Music 0.166 0.000 0.091 ✗ +2026-06-25 18:11:10,606 | INFO | → no winner +2026-06-25 18:11:10,641 | INFO | +[944.20s] AMBIENT | scene='' +2026-06-25 18:11:10,643 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,655 | INFO | Music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:10,655 | INFO | → no winner +2026-06-25 18:11:10,694 | INFO | +[944.40s] AMBIENT | scene='' +2026-06-25 18:11:10,694 | INFO | → no winner +2026-06-25 18:11:10,723 | INFO | +[944.60s] AMBIENT | scene='' +2026-06-25 18:11:10,723 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,723 | INFO | Music 0.113 0.000 0.062 ✗ +2026-06-25 18:11:10,724 | INFO | Mantra 0.069 0.000 0.038 ✗ +2026-06-25 18:11:10,724 | INFO | → no winner +2026-06-25 18:11:10,754 | INFO | +[944.80s] AMBIENT | scene='' +2026-06-25 18:11:10,755 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,755 | INFO | Music 0.287 0.000 0.158 ✓ +2026-06-25 18:11:10,755 | INFO | Singing 0.104 0.000 0.057 ✗ +2026-06-25 18:11:10,755 | INFO | Mantra 0.074 0.000 0.041 ✗ +2026-06-25 18:11:10,755 | INFO | → WINNER: Music (combined=0.158) +2026-06-25 18:11:10,784 | INFO | +[945.00s] AMBIENT | scene='' +2026-06-25 18:11:10,785 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,785 | INFO | Music 0.855 0.000 0.470 ✓ +2026-06-25 18:11:10,785 | INFO | Musical instrument 0.253 0.000 0.139 ✓ +2026-06-25 18:11:10,786 | INFO | Singing 0.223 0.000 0.123 ✓ +2026-06-25 18:11:10,786 | INFO | Plucked string instrument 0.138 0.000 0.076 ✗ +2026-06-25 18:11:10,786 | INFO | Guitar 0.134 0.000 0.074 ✗ +2026-06-25 18:11:10,786 | INFO | Acoustic guitar 0.056 0.000 0.031 ✗ +2026-06-25 18:11:10,786 | INFO | → WINNER: Music (combined=0.470) +2026-06-25 18:11:10,816 | INFO | +[945.20s] AMBIENT | scene='' +2026-06-25 18:11:10,817 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,819 | INFO | Music 0.838 0.000 0.461 ✓ +2026-06-25 18:11:10,820 | INFO | Musical instrument 0.246 0.000 0.135 ✓ +2026-06-25 18:11:10,820 | INFO | Singing 0.192 0.000 0.106 ✗ +2026-06-25 18:11:10,820 | INFO | Plucked string instrument 0.095 0.000 0.052 ✗ +2026-06-25 18:11:10,820 | INFO | Guitar 0.094 0.000 0.051 ✗ +2026-06-25 18:11:10,821 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:11:10,854 | INFO | +[945.40s] AMBIENT | scene='' +2026-06-25 18:11:10,854 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,855 | INFO | Music 0.828 0.000 0.456 ✓ +2026-06-25 18:11:10,855 | INFO | Singing 0.197 0.000 0.108 ✗ +2026-06-25 18:11:10,855 | INFO | Musical instrument 0.180 0.000 0.099 ✗ +2026-06-25 18:11:10,855 | INFO | Plucked string instrument 0.055 0.000 0.030 ✗ +2026-06-25 18:11:10,855 | INFO | Guitar 0.053 0.000 0.029 ✗ +2026-06-25 18:11:10,855 | INFO | → WINNER: Music (combined=0.456) +2026-06-25 18:11:10,884 | INFO | +[945.60s] AMBIENT | scene='' +2026-06-25 18:11:10,884 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,885 | INFO | Music 0.781 0.000 0.430 ✓ +2026-06-25 18:11:10,886 | INFO | Singing 0.185 0.000 0.102 ✗ +2026-06-25 18:11:10,886 | INFO | Musical instrument 0.136 0.000 0.075 ✗ +2026-06-25 18:11:10,887 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:11:10,917 | INFO | +[945.80s] AMBIENT | scene='' +2026-06-25 18:11:10,918 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,918 | INFO | Music 0.727 0.000 0.400 ✓ +2026-06-25 18:11:10,918 | INFO | Singing 0.199 0.000 0.110 ✗ +2026-06-25 18:11:10,918 | INFO | → WINNER: Music (combined=0.400) +2026-06-25 18:11:10,948 | INFO | +[946.00s] AMBIENT | scene='' +2026-06-25 18:11:10,948 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,948 | INFO | Music 0.441 0.000 0.242 ✓ +2026-06-25 18:11:10,948 | INFO | Singing 0.114 0.000 0.063 ✗ +2026-06-25 18:11:10,948 | INFO | → WINNER: Music (combined=0.242) +2026-06-25 18:11:10,980 | INFO | +[946.20s] AMBIENT | scene='' +2026-06-25 18:11:10,980 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:10,980 | INFO | Music 0.405 0.000 0.223 ✓ +2026-06-25 18:11:10,980 | INFO | Mantra 0.100 0.000 0.055 ✗ +2026-06-25 18:11:10,980 | INFO | Singing 0.093 0.000 0.051 ✗ +2026-06-25 18:11:10,980 | INFO | Chant 0.060 0.000 0.033 ✗ +2026-06-25 18:11:10,980 | INFO | → WINNER: Music (combined=0.223) +2026-06-25 18:11:11,011 | INFO | +[946.40s] AMBIENT | scene='' +2026-06-25 18:11:11,011 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,012 | INFO | Music 0.185 0.000 0.102 ✗ +2026-06-25 18:11:11,012 | INFO | → no winner +2026-06-25 18:11:11,043 | INFO | +[946.60s] AMBIENT | scene='' +2026-06-25 18:11:11,043 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,043 | INFO | Music 0.153 0.000 0.084 ✗ +2026-06-25 18:11:11,046 | INFO | Mantra 0.116 0.000 0.064 ✗ +2026-06-25 18:11:11,047 | INFO | Chant 0.113 0.000 0.062 ✗ +2026-06-25 18:11:11,047 | INFO | → no winner +2026-06-25 18:11:11,078 | INFO | +[946.80s] AMBIENT | scene='' +2026-06-25 18:11:11,078 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,078 | INFO | Music 0.263 0.000 0.145 ✓ +2026-06-25 18:11:11,078 | INFO | Chant 0.185 0.000 0.102 ✗ +2026-06-25 18:11:11,079 | INFO | A capella 0.149 0.000 0.082 ✗ +2026-06-25 18:11:11,079 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:11:11,079 | INFO | Mantra 0.139 0.000 0.076 ✗ +2026-06-25 18:11:11,079 | INFO | Male singing 0.096 0.000 0.053 ✗ +2026-06-25 18:11:11,079 | INFO | → WINNER: Music (combined=0.145) +2026-06-25 18:11:11,109 | INFO | +[947.00s] AMBIENT | scene='' +2026-06-25 18:11:11,110 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,111 | INFO | Music 0.643 0.000 0.354 ✓ +2026-06-25 18:11:11,112 | INFO | Mantra 0.190 0.000 0.104 ✗ +2026-06-25 18:11:11,112 | INFO | Singing 0.099 0.000 0.054 ✗ +2026-06-25 18:11:11,114 | INFO | Chant 0.091 0.000 0.050 ✗ +2026-06-25 18:11:11,114 | INFO | → WINNER: Music (combined=0.354) +2026-06-25 18:11:11,143 | INFO | +[947.20s] AMBIENT | scene='' +2026-06-25 18:11:11,144 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,144 | INFO | Music 0.668 0.000 0.367 ✓ +2026-06-25 18:11:11,144 | INFO | Mantra 0.277 0.000 0.152 ✓ +2026-06-25 18:11:11,145 | INFO | Chant 0.198 0.000 0.109 ✗ +2026-06-25 18:11:11,145 | INFO | Singing 0.169 0.000 0.093 ✗ +2026-06-25 18:11:11,145 | INFO | A capella 0.061 0.000 0.034 ✗ +2026-06-25 18:11:11,145 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:11:11,174 | INFO | +[947.40s] AMBIENT | scene='' +2026-06-25 18:11:11,175 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,175 | INFO | Music 0.745 0.000 0.410 ✓ +2026-06-25 18:11:11,175 | INFO | Mantra 0.175 0.000 0.096 ✗ +2026-06-25 18:11:11,175 | INFO | Singing 0.114 0.000 0.063 ✗ +2026-06-25 18:11:11,175 | INFO | Chant 0.058 0.000 0.032 ✗ +2026-06-25 18:11:11,175 | INFO | Jingle bell 0.055 0.000 0.030 ✗ +2026-06-25 18:11:11,176 | INFO | → WINNER: Music (combined=0.410) +2026-06-25 18:11:11,205 | INFO | +[947.60s] AMBIENT | scene='' +2026-06-25 18:11:11,206 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,206 | INFO | Music 0.749 0.000 0.412 ✓ +2026-06-25 18:11:11,206 | INFO | Mantra 0.150 0.000 0.082 ✗ +2026-06-25 18:11:11,207 | INFO | Singing 0.139 0.000 0.076 ✗ +2026-06-25 18:11:11,207 | INFO | Jingle bell 0.075 0.000 0.041 ✗ +2026-06-25 18:11:11,207 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:11:11,236 | INFO | +[947.80s] AMBIENT | scene='' +2026-06-25 18:11:11,237 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,237 | INFO | Music 0.628 0.000 0.345 ✓ +2026-06-25 18:11:11,238 | INFO | Singing 0.164 0.000 0.090 ✗ +2026-06-25 18:11:11,238 | INFO | → WINNER: Music (combined=0.345) +2026-06-25 18:11:11,270 | INFO | +[948.00s] AMBIENT | scene='' +2026-06-25 18:11:11,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,272 | INFO | Music 0.441 0.000 0.242 ✓ +2026-06-25 18:11:11,272 | INFO | Singing 0.142 0.000 0.078 ✗ +2026-06-25 18:11:11,273 | INFO | → WINNER: Music (combined=0.242) +2026-06-25 18:11:11,302 | INFO | +[948.20s] AMBIENT | scene='' +2026-06-25 18:11:11,303 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,303 | INFO | Music 0.651 0.000 0.358 ✓ +2026-06-25 18:11:11,304 | INFO | Singing 0.145 0.000 0.080 ✗ +2026-06-25 18:11:11,304 | INFO | Male singing 0.091 0.000 0.050 ✗ +2026-06-25 18:11:11,304 | INFO | → WINNER: Music (combined=0.358) +2026-06-25 18:11:11,333 | INFO | +[948.40s] AMBIENT | scene='' +2026-06-25 18:11:11,334 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,334 | INFO | Music 0.513 0.000 0.282 ✓ +2026-06-25 18:11:11,334 | INFO | Singing 0.085 0.000 0.047 ✗ +2026-06-25 18:11:11,334 | INFO | → WINNER: Music (combined=0.282) +2026-06-25 18:11:11,363 | INFO | +[948.60s] AMBIENT | scene='' +2026-06-25 18:11:11,364 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,364 | INFO | Music 0.306 0.000 0.169 ✓ +2026-06-25 18:11:11,364 | INFO | → WINNER: Music (combined=0.169) +2026-06-25 18:11:11,393 | INFO | +[948.80s] AMBIENT | scene='' +2026-06-25 18:11:11,393 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,393 | INFO | Music 0.763 0.000 0.420 ✓ +2026-06-25 18:11:11,393 | INFO | Mantra 0.157 0.000 0.086 ✗ +2026-06-25 18:11:11,394 | INFO | Singing 0.099 0.000 0.054 ✗ +2026-06-25 18:11:11,394 | INFO | Chant 0.093 0.000 0.051 ✗ +2026-06-25 18:11:11,394 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:11:11,425 | INFO | +[949.00s] AMBIENT | scene='' +2026-06-25 18:11:11,425 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,425 | INFO | Music 0.683 0.000 0.376 ✓ +2026-06-25 18:11:11,426 | INFO | Mantra 0.496 0.000 0.273 ✓ +2026-06-25 18:11:11,426 | INFO | Chant 0.315 0.000 0.173 ✓ +2026-06-25 18:11:11,426 | INFO | → WINNER: Music (combined=0.376) +2026-06-25 18:11:11,455 | INFO | +[949.20s] AMBIENT | scene='' +2026-06-25 18:11:11,456 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,456 | INFO | Music 0.754 0.000 0.415 ✓ +2026-06-25 18:11:11,456 | INFO | Mantra 0.424 0.000 0.233 ✓ +2026-06-25 18:11:11,456 | INFO | Chant 0.184 0.000 0.101 ✗ +2026-06-25 18:11:11,456 | INFO | Singing 0.120 0.000 0.066 ✗ +2026-06-25 18:11:11,456 | INFO | Carnatic music 0.115 0.000 0.063 ✗ +2026-06-25 18:11:11,457 | INFO | Musical instrument 0.065 0.000 0.036 ✗ +2026-06-25 18:11:11,457 | INFO | → WINNER: Music (combined=0.415) +2026-06-25 18:11:11,486 | INFO | +[949.40s] AMBIENT | scene='' +2026-06-25 18:11:11,486 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,487 | INFO | Music 0.659 0.000 0.363 ✓ +2026-06-25 18:11:11,487 | INFO | Mantra 0.638 0.000 0.351 ✓ +2026-06-25 18:11:11,487 | INFO | Chant 0.209 0.000 0.115 ✗ +2026-06-25 18:11:11,487 | INFO | Carnatic music 0.138 0.000 0.076 ✗ +2026-06-25 18:11:11,488 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:11:11,488 | INFO | → WINNER: Music (combined=0.363) +2026-06-25 18:11:11,517 | INFO | +[949.60s] AMBIENT | scene='' +2026-06-25 18:11:11,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,518 | INFO | Music 0.705 0.000 0.388 ✓ +2026-06-25 18:11:11,518 | INFO | Mantra 0.355 0.000 0.195 ✓ +2026-06-25 18:11:11,521 | INFO | Chant 0.205 0.000 0.113 ✗ +2026-06-25 18:11:11,521 | INFO | Singing 0.164 0.000 0.090 ✗ +2026-06-25 18:11:11,521 | INFO | Musical instrument 0.080 0.000 0.044 ✗ +2026-06-25 18:11:11,521 | INFO | Tabla 0.061 0.000 0.034 ✗ +2026-06-25 18:11:11,521 | INFO | → WINNER: Music (combined=0.388) +2026-06-25 18:11:11,550 | INFO | +[949.80s] AMBIENT | scene='' +2026-06-25 18:11:11,551 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,551 | INFO | Music 0.566 0.000 0.311 ✓ +2026-06-25 18:11:11,551 | INFO | Mantra 0.284 0.000 0.156 ✓ +2026-06-25 18:11:11,553 | INFO | Singing 0.167 0.000 0.092 ✗ +2026-06-25 18:11:11,554 | INFO | Carnatic music 0.153 0.000 0.084 ✗ +2026-06-25 18:11:11,554 | INFO | Chant 0.128 0.000 0.070 ✗ +2026-06-25 18:11:11,554 | INFO | Tabla 0.112 0.000 0.062 ✗ +2026-06-25 18:11:11,554 | INFO | → WINNER: Music (combined=0.311) +2026-06-25 18:11:11,584 | INFO | +[950.00s] AMBIENT | scene='' +2026-06-25 18:11:11,585 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,585 | INFO | Chant 0.358 0.000 0.197 ✓ +2026-06-25 18:11:11,585 | INFO | Music 0.295 0.000 0.163 ✓ +2026-06-25 18:11:11,588 | INFO | Singing 0.238 0.000 0.131 ✓ +2026-06-25 18:11:11,588 | INFO | Mantra 0.223 0.000 0.122 ✓ +2026-06-25 18:11:11,588 | INFO | A capella 0.186 0.000 0.102 ✗ +2026-06-25 18:11:11,588 | INFO | Vocal music 0.165 0.000 0.091 ✗ +2026-06-25 18:11:11,589 | INFO | → WINNER: Chant (combined=0.197) +2026-06-25 18:11:11,619 | INFO | +[950.20s] AMBIENT | scene='' +2026-06-25 18:11:11,619 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,620 | INFO | Chant 0.468 0.000 0.258 ✓ +2026-06-25 18:11:11,620 | INFO | Mantra 0.225 0.000 0.124 ✓ +2026-06-25 18:11:11,620 | INFO | Music 0.217 0.000 0.119 ✗ +2026-06-25 18:11:11,621 | INFO | Singing 0.131 0.000 0.072 ✗ +2026-06-25 18:11:11,621 | INFO | A capella 0.066 0.000 0.036 ✗ +2026-06-25 18:11:11,621 | INFO | Choir 0.064 0.000 0.035 ✗ +2026-06-25 18:11:11,621 | INFO | → WINNER: Chant (combined=0.258) +2026-06-25 18:11:11,649 | INFO | +[950.40s] AMBIENT | scene='' +2026-06-25 18:11:11,652 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,652 | INFO | Chant 0.383 0.000 0.211 ✓ +2026-06-25 18:11:11,653 | INFO | Music 0.241 0.000 0.133 ✓ +2026-06-25 18:11:11,653 | INFO | Mantra 0.174 0.000 0.096 ✗ +2026-06-25 18:11:11,653 | INFO | Singing 0.150 0.000 0.082 ✗ +2026-06-25 18:11:11,653 | INFO | → WINNER: Chant (combined=0.211) +2026-06-25 18:11:11,683 | INFO | +[950.60s] AMBIENT | scene='' +2026-06-25 18:11:11,683 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,683 | INFO | Music 0.413 0.000 0.227 ✓ +2026-06-25 18:11:11,683 | INFO | Chant 0.369 0.000 0.203 ✓ +2026-06-25 18:11:11,684 | INFO | Mantra 0.200 0.000 0.110 ✗ +2026-06-25 18:11:11,684 | INFO | Singing 0.175 0.000 0.096 ✗ +2026-06-25 18:11:11,684 | INFO | A capella 0.132 0.000 0.073 ✗ +2026-06-25 18:11:11,684 | INFO | Vocal music 0.113 0.000 0.062 ✗ +2026-06-25 18:11:11,684 | INFO | → WINNER: Music (combined=0.227) +2026-06-25 18:11:11,715 | INFO | +[950.80s] AMBIENT | scene='' +2026-06-25 18:11:11,716 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,716 | INFO | Music 0.750 0.000 0.412 ✓ +2026-06-25 18:11:11,716 | INFO | Mantra 0.266 0.000 0.146 ✓ +2026-06-25 18:11:11,716 | INFO | Chant 0.256 0.000 0.141 ✓ +2026-06-25 18:11:11,716 | INFO | Middle Eastern music 0.246 0.000 0.135 ✓ +2026-06-25 18:11:11,716 | INFO | Carnatic music 0.112 0.000 0.062 ✗ +2026-06-25 18:11:11,716 | INFO | Singing 0.097 0.000 0.053 ✗ +2026-06-25 18:11:11,718 | INFO | → WINNER: Music (combined=0.412) +2026-06-25 18:11:11,746 | INFO | +[951.00s] AMBIENT | scene='' +2026-06-25 18:11:11,748 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,754 | INFO | Music 0.736 0.000 0.405 ✓ +2026-06-25 18:11:11,765 | INFO | Mantra 0.408 0.000 0.224 ✓ +2026-06-25 18:11:11,765 | INFO | Chant 0.247 0.000 0.136 ✓ +2026-06-25 18:11:11,765 | INFO | Middle Eastern music 0.170 0.000 0.094 ✗ +2026-06-25 18:11:11,766 | INFO | Carnatic music 0.117 0.000 0.065 ✗ +2026-06-25 18:11:11,766 | INFO | Singing 0.092 0.000 0.051 ✗ +2026-06-25 18:11:11,766 | INFO | → WINNER: Music (combined=0.405) +2026-06-25 18:11:11,798 | INFO | +[951.20s] AMBIENT | scene='' +2026-06-25 18:11:11,799 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,801 | INFO | Music 0.703 0.000 0.387 ✓ +2026-06-25 18:11:11,801 | INFO | Mantra 0.192 0.000 0.106 ✗ +2026-06-25 18:11:11,802 | INFO | Carnatic music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:11,803 | INFO | Middle Eastern music 0.110 0.000 0.060 ✗ +2026-06-25 18:11:11,804 | INFO | Singing 0.094 0.000 0.052 ✗ +2026-06-25 18:11:11,815 | INFO | Chant 0.075 0.000 0.041 ✗ +2026-06-25 18:11:11,817 | INFO | → WINNER: Music (combined=0.387) +2026-06-25 18:11:11,854 | INFO | +[951.40s] AMBIENT | scene='' +2026-06-25 18:11:11,856 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,856 | INFO | Music 0.709 0.000 0.390 ✓ +2026-06-25 18:11:11,857 | INFO | Mantra 0.185 0.000 0.102 ✗ +2026-06-25 18:11:11,857 | INFO | Singing 0.124 0.000 0.068 ✗ +2026-06-25 18:11:11,857 | INFO | Carnatic music 0.106 0.000 0.059 ✗ +2026-06-25 18:11:11,857 | INFO | Middle Eastern music 0.097 0.000 0.053 ✗ +2026-06-25 18:11:11,859 | INFO | Chant 0.085 0.000 0.047 ✗ +2026-06-25 18:11:11,859 | INFO | → WINNER: Music (combined=0.390) +2026-06-25 18:11:11,895 | INFO | +[951.60s] AMBIENT | scene='' +2026-06-25 18:11:11,895 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,895 | INFO | Music 0.347 0.000 0.191 ✓ +2026-06-25 18:11:11,896 | INFO | Chant 0.140 0.000 0.077 ✗ +2026-06-25 18:11:11,896 | INFO | Mantra 0.133 0.000 0.073 ✗ +2026-06-25 18:11:11,896 | INFO | Singing 0.097 0.000 0.053 ✗ +2026-06-25 18:11:11,896 | INFO | → WINNER: Music (combined=0.191) +2026-06-25 18:11:11,964 | INFO | +[951.80s] AMBIENT | scene='' +2026-06-25 18:11:11,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:11,964 | INFO | Music 0.313 0.000 0.172 ✓ +2026-06-25 18:11:11,964 | INFO | Chant 0.254 0.000 0.140 ✓ +2026-06-25 18:11:11,964 | INFO | Mantra 0.172 0.000 0.094 ✗ +2026-06-25 18:11:11,965 | INFO | Singing 0.110 0.000 0.061 ✗ +2026-06-25 18:11:11,965 | INFO | Male singing 0.106 0.000 0.058 ✗ +2026-06-25 18:11:11,965 | INFO | A capella 0.067 0.000 0.037 ✗ +2026-06-25 18:11:11,965 | INFO | → WINNER: Music (combined=0.172) +2026-06-25 18:11:12,034 | INFO | +[952.00s] AMBIENT | scene='' +2026-06-25 18:11:12,034 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,035 | INFO | Music 0.427 0.000 0.235 ✓ +2026-06-25 18:11:12,035 | INFO | Chant 0.215 0.000 0.118 ✗ +2026-06-25 18:11:12,035 | INFO | Mantra 0.142 0.000 0.078 ✗ +2026-06-25 18:11:12,035 | INFO | Male singing 0.108 0.000 0.059 ✗ +2026-06-25 18:11:12,036 | INFO | Singing 0.098 0.000 0.054 ✗ +2026-06-25 18:11:12,036 | INFO | → WINNER: Music (combined=0.235) +2026-06-25 18:11:12,094 | INFO | +[952.20s] AMBIENT | scene='' +2026-06-25 18:11:12,095 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,095 | INFO | Music 0.388 0.000 0.213 ✓ +2026-06-25 18:11:12,096 | INFO | → WINNER: Music (combined=0.213) +2026-06-25 18:11:12,129 | INFO | +[952.40s] AMBIENT | scene='' +2026-06-25 18:11:12,133 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,135 | INFO | Music 0.283 0.000 0.156 ✓ +2026-06-25 18:11:12,136 | INFO | → WINNER: Music (combined=0.156) +2026-06-25 18:11:12,168 | INFO | +[952.60s] AMBIENT | scene='' +2026-06-25 18:11:12,169 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,169 | INFO | Music 0.810 0.000 0.445 ✓ +2026-06-25 18:11:12,170 | INFO | Singing 0.105 0.000 0.058 ✗ +2026-06-25 18:11:12,170 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:11:12,198 | INFO | +[952.80s] AMBIENT | scene='' +2026-06-25 18:11:12,200 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,202 | INFO | Music 0.788 0.000 0.433 ✓ +2026-06-25 18:11:12,203 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:12,204 | INFO | Music of Bollywood 0.093 0.000 0.051 ✗ +2026-06-25 18:11:12,205 | INFO | Mantra 0.061 0.000 0.034 ✗ +2026-06-25 18:11:12,205 | INFO | Jingle bell 0.057 0.000 0.031 ✗ +2026-06-25 18:11:12,205 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:12,238 | INFO | +[953.00s] AMBIENT | scene='' +2026-06-25 18:11:12,238 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,238 | INFO | Music 0.811 0.000 0.446 ✓ +2026-06-25 18:11:12,238 | INFO | Music of Bollywood 0.348 0.000 0.191 ✓ +2026-06-25 18:11:12,240 | INFO | Singing 0.140 0.000 0.077 ✗ +2026-06-25 18:11:12,240 | INFO | Middle Eastern music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:12,240 | INFO | Folk music 0.117 0.000 0.064 ✗ +2026-06-25 18:11:12,240 | INFO | Song 0.078 0.000 0.043 ✗ +2026-06-25 18:11:12,241 | INFO | → WINNER: Music (combined=0.446) +2026-06-25 18:11:12,271 | INFO | +[953.20s] AMBIENT | scene='' +2026-06-25 18:11:12,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,272 | INFO | Music 0.787 0.000 0.433 ✓ +2026-06-25 18:11:12,272 | INFO | Music of Bollywood 0.296 0.000 0.163 ✓ +2026-06-25 18:11:12,273 | INFO | Mantra 0.217 0.000 0.119 ✗ +2026-06-25 18:11:12,273 | INFO | Singing 0.124 0.000 0.068 ✗ +2026-06-25 18:11:12,273 | INFO | Carnatic music 0.111 0.000 0.061 ✗ +2026-06-25 18:11:12,273 | INFO | → WINNER: Music (combined=0.433) +2026-06-25 18:11:12,304 | INFO | +[953.40s] AMBIENT | scene='' +2026-06-25 18:11:12,305 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,305 | INFO | Music 0.727 0.000 0.400 ✓ +2026-06-25 18:11:12,305 | INFO | Music of Bollywood 0.314 0.000 0.172 ✓ +2026-06-25 18:11:12,308 | INFO | Middle Eastern music 0.184 0.000 0.102 ✗ +2026-06-25 18:11:12,310 | INFO | Singing 0.176 0.000 0.097 ✗ +2026-06-25 18:11:12,310 | INFO | Carnatic music 0.136 0.000 0.074 ✗ +2026-06-25 18:11:12,311 | INFO | Mantra 0.088 0.000 0.048 ✗ +2026-06-25 18:11:12,312 | INFO | → WINNER: Music (combined=0.400) +2026-06-25 18:11:12,342 | INFO | +[953.60s] AMBIENT | scene='' +2026-06-25 18:11:12,342 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,343 | INFO | Music 0.439 0.000 0.241 ✓ +2026-06-25 18:11:12,343 | INFO | Singing 0.199 0.000 0.110 ✗ +2026-06-25 18:11:12,343 | INFO | Carnatic music 0.165 0.000 0.091 ✗ +2026-06-25 18:11:12,343 | INFO | Mantra 0.124 0.000 0.068 ✗ +2026-06-25 18:11:12,343 | INFO | Chant 0.063 0.000 0.035 ✗ +2026-06-25 18:11:12,345 | INFO | Music of Bollywood 0.035 0.000 0.019 ✗ +2026-06-25 18:11:12,345 | INFO | → WINNER: Music (combined=0.241) +2026-06-25 18:11:12,373 | INFO | +[953.80s] AMBIENT | scene='' +2026-06-25 18:11:12,373 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,373 | INFO | Music 0.378 0.000 0.208 ✓ +2026-06-25 18:11:12,375 | INFO | Singing 0.218 0.000 0.120 ✓ +2026-06-25 18:11:12,375 | INFO | A capella 0.151 0.000 0.083 ✗ +2026-06-25 18:11:12,375 | INFO | Vocal music 0.150 0.000 0.082 ✗ +2026-06-25 18:11:12,375 | INFO | Mantra 0.147 0.000 0.081 ✗ +2026-06-25 18:11:12,375 | INFO | Chant 0.123 0.000 0.068 ✗ +2026-06-25 18:11:12,376 | INFO | → WINNER: Music (combined=0.208) +2026-06-25 18:11:12,405 | INFO | +[954.00s] AMBIENT | scene='' +2026-06-25 18:11:12,405 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,405 | INFO | Music 0.406 0.000 0.223 ✓ +2026-06-25 18:11:12,405 | INFO | Mantra 0.346 0.000 0.190 ✓ +2026-06-25 18:11:12,405 | INFO | Chant 0.141 0.000 0.077 ✗ +2026-06-25 18:11:12,405 | INFO | Singing 0.113 0.000 0.062 ✗ +2026-06-25 18:11:12,406 | INFO | → WINNER: Music (combined=0.223) +2026-06-25 18:11:12,435 | INFO | +[954.20s] AMBIENT | scene='' +2026-06-25 18:11:12,435 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,436 | INFO | Music 0.377 0.000 0.207 ✓ +2026-06-25 18:11:12,436 | INFO | Mantra 0.325 0.000 0.179 ✓ +2026-06-25 18:11:12,436 | INFO | Chant 0.072 0.000 0.040 ✗ +2026-06-25 18:11:12,437 | INFO | → WINNER: Music (combined=0.207) +2026-06-25 18:11:12,466 | INFO | +[954.40s] AMBIENT | scene='' +2026-06-25 18:11:12,466 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,466 | INFO | Music 0.631 0.000 0.347 ✓ +2026-06-25 18:11:12,467 | INFO | Tubular bells 0.066 0.000 0.036 ✗ +2026-06-25 18:11:12,467 | INFO | Bell 0.057 0.000 0.031 ✗ +2026-06-25 18:11:12,467 | INFO | → WINNER: Music (combined=0.347) +2026-06-25 18:11:12,495 | INFO | +[954.60s] AMBIENT | scene='' +2026-06-25 18:11:12,496 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,496 | INFO | Music 0.777 0.000 0.428 ✓ +2026-06-25 18:11:12,496 | INFO | Sitar 0.140 0.000 0.077 ✗ +2026-06-25 18:11:12,496 | INFO | Folk music 0.103 0.000 0.057 ✗ +2026-06-25 18:11:12,496 | INFO | Middle Eastern music 0.097 0.000 0.054 ✗ +2026-06-25 18:11:12,498 | INFO | Mantra 0.084 0.000 0.046 ✗ +2026-06-25 18:11:12,498 | INFO | Singing 0.081 0.000 0.045 ✗ +2026-06-25 18:11:12,498 | INFO | → WINNER: Music (combined=0.428) +2026-06-25 18:11:12,527 | INFO | +[954.80s] AMBIENT | scene='' +2026-06-25 18:11:12,527 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,527 | INFO | Music 0.783 0.000 0.431 ✓ +2026-06-25 18:11:12,528 | INFO | Mantra 0.130 0.000 0.072 ✗ +2026-06-25 18:11:12,528 | INFO | Sitar 0.107 0.000 0.059 ✗ +2026-06-25 18:11:12,528 | INFO | Singing 0.105 0.000 0.058 ✗ +2026-06-25 18:11:12,529 | INFO | Musical instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:11:12,529 | INFO | → WINNER: Music (combined=0.431) +2026-06-25 18:11:12,558 | INFO | +[955.00s] AMBIENT | scene='' +2026-06-25 18:11:12,558 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,558 | INFO | Music 0.791 0.000 0.435 ✓ +2026-06-25 18:11:12,559 | INFO | Middle Eastern music 0.186 0.000 0.103 ✗ +2026-06-25 18:11:12,559 | INFO | Mantra 0.149 0.000 0.082 ✗ +2026-06-25 18:11:12,559 | INFO | Music of Bollywood 0.128 0.000 0.070 ✗ +2026-06-25 18:11:12,560 | INFO | Singing 0.127 0.000 0.070 ✗ +2026-06-25 18:11:12,560 | INFO | Folk music 0.114 0.000 0.062 ✗ +2026-06-25 18:11:12,561 | INFO | → WINNER: Music (combined=0.435) +2026-06-25 18:11:12,591 | INFO | +[955.20s] AMBIENT | scene='' +2026-06-25 18:11:12,591 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,591 | INFO | Music 0.643 0.000 0.353 ✓ +2026-06-25 18:11:12,591 | INFO | Mantra 0.174 0.000 0.096 ✗ +2026-06-25 18:11:12,592 | INFO | Carnatic music 0.151 0.000 0.083 ✗ +2026-06-25 18:11:12,592 | INFO | Middle Eastern music 0.144 0.000 0.079 ✗ +2026-06-25 18:11:12,592 | INFO | Singing 0.106 0.000 0.059 ✗ +2026-06-25 18:11:12,592 | INFO | Music of Bollywood 0.080 0.000 0.044 ✗ +2026-06-25 18:11:12,592 | INFO | → WINNER: Music (combined=0.353) +2026-06-25 18:11:12,624 | INFO | +[955.40s] AMBIENT | scene='' +2026-06-25 18:11:12,629 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,630 | INFO | Music 0.501 0.000 0.275 ✓ +2026-06-25 18:11:12,630 | INFO | Singing 0.129 0.000 0.071 ✗ +2026-06-25 18:11:12,631 | INFO | Mantra 0.075 0.000 0.042 ✗ +2026-06-25 18:11:12,631 | INFO | Chant 0.057 0.000 0.031 ✗ +2026-06-25 18:11:12,632 | INFO | → WINNER: Music (combined=0.275) +2026-06-25 18:11:12,675 | INFO | +[955.60s] AMBIENT | scene='' +2026-06-25 18:11:12,687 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,690 | INFO | Music 0.340 0.000 0.187 ✓ +2026-06-25 18:11:12,690 | INFO | Mantra 0.112 0.000 0.061 ✗ +2026-06-25 18:11:12,690 | INFO | Chant 0.081 0.000 0.044 ✗ +2026-06-25 18:11:12,690 | INFO | Singing 0.077 0.000 0.042 ✗ +2026-06-25 18:11:12,691 | INFO | → WINNER: Music (combined=0.187) +2026-06-25 18:11:12,731 | INFO | +[955.80s] AMBIENT | scene='' +2026-06-25 18:11:12,732 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,732 | INFO | Music 0.364 0.000 0.200 ✓ +2026-06-25 18:11:12,732 | INFO | Mantra 0.210 0.000 0.115 ✗ +2026-06-25 18:11:12,733 | INFO | Chant 0.165 0.000 0.090 ✗ +2026-06-25 18:11:12,733 | INFO | Singing 0.090 0.000 0.049 ✗ +2026-06-25 18:11:12,733 | INFO | → WINNER: Music (combined=0.200) +2026-06-25 18:11:12,765 | INFO | +[956.00s] AMBIENT | scene='' +2026-06-25 18:11:12,765 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,765 | INFO | Music 0.378 0.000 0.208 ✓ +2026-06-25 18:11:12,766 | INFO | Singing 0.195 0.000 0.107 ✗ +2026-06-25 18:11:12,766 | INFO | A capella 0.184 0.000 0.101 ✗ +2026-06-25 18:11:12,766 | INFO | Mantra 0.181 0.000 0.100 ✗ +2026-06-25 18:11:12,766 | INFO | Chant 0.143 0.000 0.079 ✗ +2026-06-25 18:11:12,767 | INFO | Vocal music 0.098 0.000 0.054 ✗ +2026-06-25 18:11:12,767 | INFO | → WINNER: Music (combined=0.208) +2026-06-25 18:11:12,814 | INFO | +[956.20s] AMBIENT | scene='' +2026-06-25 18:11:12,814 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:12,815 | INFO | Music 0.468 0.000 0.257 ✓ +2026-06-25 18:11:12,850 | INFO | Mantra 0.243 0.000 0.134 ✓ +2026-06-25 18:11:12,856 | INFO | Singing 0.192 0.000 0.106 ✗ +2026-06-25 18:11:12,872 | INFO | Chant 0.156 0.000 0.086 ✗ +2026-06-25 18:11:12,873 | INFO | A capella 0.149 0.000 0.082 ✗ +2026-06-25 18:11:12,873 | INFO | Vocal music 0.136 0.000 0.075 ✗ +2026-06-25 18:11:12,874 | INFO | → WINNER: Music (combined=0.257) +2026-06-25 18:11:13,093 | INFO | +[956.40s] AMBIENT | scene='' +2026-06-25 18:11:13,094 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,094 | INFO | Music 0.683 0.000 0.376 ✓ +2026-06-25 18:11:13,094 | INFO | Mantra 0.614 0.000 0.338 ✓ +2026-06-25 18:11:13,094 | INFO | Chant 0.249 0.000 0.137 ✓ +2026-06-25 18:11:13,094 | INFO | Carnatic music 0.108 0.000 0.059 ✗ +2026-06-25 18:11:13,094 | INFO | Singing 0.083 0.000 0.046 ✗ +2026-06-25 18:11:13,095 | INFO | → WINNER: Music (combined=0.376) +2026-06-25 18:11:13,130 | INFO | +[956.60s] AMBIENT | scene='' +2026-06-25 18:11:13,130 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,131 | INFO | Music 0.603 0.000 0.332 ✓ +2026-06-25 18:11:13,131 | INFO | Mantra 0.372 0.000 0.204 ✓ +2026-06-25 18:11:13,132 | INFO | Bicycle bell 0.104 0.000 0.057 ✗ +2026-06-25 18:11:13,133 | INFO | Chant 0.099 0.000 0.055 ✗ +2026-06-25 18:11:13,133 | INFO | Jingle, tinkle 0.090 0.000 0.050 ✗ +2026-06-25 18:11:13,133 | INFO | Ding 0.083 0.000 0.046 ✗ +2026-06-25 18:11:13,133 | INFO | → WINNER: Music (combined=0.332) +2026-06-25 18:11:13,168 | INFO | +[956.80s] AMBIENT | scene='' +2026-06-25 18:11:13,168 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,168 | INFO | Music 0.721 0.000 0.397 ✓ +2026-06-25 18:11:13,168 | INFO | Mantra 0.462 0.000 0.254 ✓ +2026-06-25 18:11:13,168 | INFO | Carnatic music 0.278 0.000 0.153 ✓ +2026-06-25 18:11:13,169 | INFO | Bicycle bell 0.107 0.000 0.059 ✗ +2026-06-25 18:11:13,169 | INFO | Chant 0.102 0.000 0.056 ✗ +2026-06-25 18:11:13,169 | INFO | Singing 0.079 0.000 0.043 ✗ +2026-06-25 18:11:13,170 | INFO | → WINNER: Music (combined=0.397) +2026-06-25 18:11:13,202 | INFO | +[957.00s] AMBIENT | scene='' +2026-06-25 18:11:13,203 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,204 | INFO | Music 0.682 0.000 0.375 ✓ +2026-06-25 18:11:13,204 | INFO | Carnatic music 0.390 0.000 0.214 ✓ +2026-06-25 18:11:13,205 | INFO | Mantra 0.338 0.000 0.186 ✓ +2026-06-25 18:11:13,205 | INFO | Tabla 0.107 0.000 0.059 ✗ +2026-06-25 18:11:13,205 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:13,205 | INFO | Bicycle bell 0.096 0.000 0.053 ✗ +2026-06-25 18:11:13,206 | INFO | → WINNER: Music (combined=0.375) +2026-06-25 18:11:13,238 | INFO | +[957.20s] AMBIENT | scene='' +2026-06-25 18:11:13,241 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,241 | INFO | Music 0.599 0.000 0.330 ✓ +2026-06-25 18:11:13,242 | INFO | Mantra 0.309 0.000 0.170 ✓ +2026-06-25 18:11:13,242 | INFO | Carnatic music 0.256 0.000 0.141 ✓ +2026-06-25 18:11:13,248 | INFO | Singing 0.113 0.000 0.062 ✗ +2026-06-25 18:11:13,249 | INFO | Musical instrument 0.088 0.000 0.049 ✗ +2026-06-25 18:11:13,249 | INFO | Bell 0.062 0.000 0.034 ✗ +2026-06-25 18:11:13,250 | INFO | → WINNER: Music (combined=0.330) +2026-06-25 18:11:13,286 | INFO | +[957.40s] AMBIENT | scene='' +2026-06-25 18:11:13,300 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,300 | INFO | Music 0.605 0.000 0.333 ✓ +2026-06-25 18:11:13,301 | INFO | Tabla 0.181 0.000 0.100 ✗ +2026-06-25 18:11:13,308 | INFO | Mantra 0.141 0.000 0.077 ✗ +2026-06-25 18:11:13,326 | INFO | Percussion 0.121 0.000 0.066 ✗ +2026-06-25 18:11:13,329 | INFO | Singing 0.108 0.000 0.059 ✗ +2026-06-25 18:11:13,331 | INFO | Musical instrument 0.100 0.000 0.055 ✗ +2026-06-25 18:11:13,333 | INFO | → WINNER: Music (combined=0.333) +2026-06-25 18:11:13,363 | INFO | +[957.60s] AMBIENT | scene='' +2026-06-25 18:11:13,364 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,364 | INFO | Music 0.286 0.000 0.157 ✓ +2026-06-25 18:11:13,365 | INFO | Gargling 0.210 0.000 0.116 ✗ +2026-06-25 18:11:13,365 | INFO | Chant 0.086 0.000 0.048 ✗ +2026-06-25 18:11:13,365 | INFO | Mantra 0.075 0.000 0.041 ✗ +2026-06-25 18:11:13,365 | INFO | → WINNER: Music (combined=0.157) +2026-06-25 18:11:13,411 | INFO | +[957.80s] AMBIENT | scene='' +2026-06-25 18:11:13,412 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,412 | INFO | Music 0.369 0.000 0.203 ✓ +2026-06-25 18:11:13,413 | INFO | Musical instrument 0.109 0.000 0.060 ✗ +2026-06-25 18:11:13,413 | INFO | Gargling 0.067 0.000 0.037 ✗ +2026-06-25 18:11:13,413 | INFO | → WINNER: Music (combined=0.203) +2026-06-25 18:11:13,442 | INFO | +[958.00s] AMBIENT | scene='' +2026-06-25 18:11:13,443 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,443 | INFO | Music 0.865 0.000 0.476 ✓ +2026-06-25 18:11:13,444 | INFO | Musical instrument 0.486 0.000 0.267 ✓ +2026-06-25 18:11:13,445 | INFO | Guitar 0.380 0.000 0.209 ✓ +2026-06-25 18:11:13,446 | INFO | Plucked string instrument 0.350 0.000 0.192 ✓ +2026-06-25 18:11:13,446 | INFO | Effects unit 0.181 0.000 0.100 ✗ +2026-06-25 18:11:13,446 | INFO | Electric guitar 0.076 0.000 0.042 ✗ +2026-06-25 18:11:13,446 | INFO | → WINNER: Music (combined=0.476) +2026-06-25 18:11:13,477 | INFO | +[958.20s] AMBIENT | scene='' +2026-06-25 18:11:13,477 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,477 | INFO | Music 0.746 0.000 0.410 ✓ +2026-06-25 18:11:13,479 | INFO | Musical instrument 0.222 0.000 0.122 ✓ +2026-06-25 18:11:13,480 | INFO | Doorbell 0.121 0.000 0.067 ✗ +2026-06-25 18:11:13,480 | INFO | Plucked string instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:11:13,480 | INFO | Bell 0.056 0.000 0.031 ✗ +2026-06-25 18:11:13,481 | INFO | → WINNER: Music (combined=0.410) +2026-06-25 18:11:13,575 | INFO | +[958.40s] AMBIENT | scene='' +2026-06-25 18:11:13,575 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,576 | INFO | Music 0.777 0.000 0.427 ✓ +2026-06-25 18:11:13,576 | INFO | Musical instrument 0.099 0.000 0.054 ✗ +2026-06-25 18:11:13,576 | INFO | Jingle, tinkle 0.061 0.000 0.034 ✗ +2026-06-25 18:11:13,576 | INFO | Mantra 0.052 0.000 0.029 ✗ +2026-06-25 18:11:13,577 | INFO | → WINNER: Music (combined=0.427) +2026-06-25 18:11:13,654 | INFO | +[958.60s] AMBIENT | scene='' +2026-06-25 18:11:13,654 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,656 | INFO | Music 0.804 0.000 0.442 ✓ +2026-06-25 18:11:13,656 | INFO | Musical instrument 0.160 0.000 0.088 ✗ +2026-06-25 18:11:13,656 | INFO | Country 0.132 0.000 0.072 ✗ +2026-06-25 18:11:13,657 | INFO | Singing 0.132 0.000 0.072 ✗ +2026-06-25 18:11:13,657 | INFO | Bluegrass 0.084 0.000 0.046 ✗ +2026-06-25 18:11:13,657 | INFO | Banjo 0.079 0.000 0.043 ✗ +2026-06-25 18:11:13,657 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:11:13,700 | INFO | +[958.80s] AMBIENT | scene='' +2026-06-25 18:11:13,701 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,701 | INFO | Music 0.831 0.000 0.457 ✓ +2026-06-25 18:11:13,701 | INFO | Sitar 0.365 0.000 0.201 ✓ +2026-06-25 18:11:13,701 | INFO | Carnatic music 0.237 0.000 0.130 ✓ +2026-06-25 18:11:13,702 | INFO | Musical instrument 0.156 0.000 0.086 ✗ +2026-06-25 18:11:13,702 | INFO | Mantra 0.154 0.000 0.085 ✗ +2026-06-25 18:11:13,702 | INFO | Singing 0.114 0.000 0.062 ✗ +2026-06-25 18:11:13,702 | INFO | → WINNER: Music (combined=0.457) +2026-06-25 18:11:13,733 | INFO | +[959.00s] AMBIENT | scene='' +2026-06-25 18:11:13,734 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,734 | INFO | Music 0.767 0.000 0.422 ✓ +2026-06-25 18:11:13,734 | INFO | Mantra 0.164 0.000 0.090 ✗ +2026-06-25 18:11:13,734 | INFO | Singing 0.130 0.000 0.072 ✗ +2026-06-25 18:11:13,735 | INFO | Folk music 0.127 0.000 0.070 ✗ +2026-06-25 18:11:13,735 | INFO | Carnatic music 0.117 0.000 0.064 ✗ +2026-06-25 18:11:13,735 | INFO | Musical instrument 0.100 0.000 0.055 ✗ +2026-06-25 18:11:13,735 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:11:13,769 | INFO | +[959.20s] AMBIENT | scene='' +2026-06-25 18:11:13,769 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,770 | INFO | Music 0.872 0.000 0.480 ✓ +2026-06-25 18:11:13,770 | INFO | Middle Eastern music 0.257 0.000 0.141 ✓ +2026-06-25 18:11:13,770 | INFO | Folk music 0.182 0.000 0.100 ✗ +2026-06-25 18:11:13,770 | INFO | Singing 0.144 0.000 0.079 ✗ +2026-06-25 18:11:13,770 | INFO | Musical instrument 0.143 0.000 0.079 ✗ +2026-06-25 18:11:13,772 | INFO | Music of Bollywood 0.057 0.000 0.032 ✗ +2026-06-25 18:11:13,772 | INFO | → WINNER: Music (combined=0.480) +2026-06-25 18:11:13,805 | INFO | +[959.40s] AMBIENT | scene='' +2026-06-25 18:11:13,805 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,806 | INFO | Music 0.802 0.000 0.441 ✓ +2026-06-25 18:11:13,807 | INFO | Musical instrument 0.137 0.000 0.075 ✗ +2026-06-25 18:11:13,807 | INFO | Carnatic music 0.123 0.000 0.068 ✗ +2026-06-25 18:11:13,807 | INFO | Middle Eastern music 0.116 0.000 0.064 ✗ +2026-06-25 18:11:13,808 | INFO | Mantra 0.089 0.000 0.049 ✗ +2026-06-25 18:11:13,808 | INFO | Sitar 0.058 0.000 0.032 ✗ +2026-06-25 18:11:13,808 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:11:13,842 | INFO | +[959.60s] AMBIENT | scene='' +2026-06-25 18:11:13,842 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,843 | INFO | Music 0.680 0.000 0.374 ✓ +2026-06-25 18:11:13,843 | INFO | Mantra 0.107 0.000 0.059 ✗ +2026-06-25 18:11:13,843 | INFO | → WINNER: Music (combined=0.374) +2026-06-25 18:11:13,879 | INFO | +[959.80s] AMBIENT | scene='' +2026-06-25 18:11:13,881 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,881 | INFO | Music 0.366 0.000 0.201 ✓ +2026-06-25 18:11:13,882 | INFO | Mantra 0.307 0.000 0.169 ✓ +2026-06-25 18:11:13,882 | INFO | Chant 0.164 0.000 0.090 ✗ +2026-06-25 18:11:13,882 | INFO | Singing 0.099 0.000 0.054 ✗ +2026-06-25 18:11:13,882 | INFO | → WINNER: Music (combined=0.201) +2026-06-25 18:11:13,930 | INFO | +[960.00s] AMBIENT | scene='' +2026-06-25 18:11:13,930 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,931 | INFO | Mantra 0.341 0.000 0.188 ✓ +2026-06-25 18:11:13,931 | INFO | Music 0.299 0.000 0.165 ✓ +2026-06-25 18:11:13,931 | INFO | Chant 0.207 0.000 0.114 ✗ +2026-06-25 18:11:13,931 | INFO | Singing 0.100 0.000 0.055 ✗ +2026-06-25 18:11:13,931 | INFO | A capella 0.069 0.000 0.038 ✗ +2026-06-25 18:11:13,932 | INFO | → WINNER: Mantra (combined=0.188) +2026-06-25 18:11:13,964 | INFO | +[960.20s] AMBIENT | scene='' +2026-06-25 18:11:13,964 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:13,964 | INFO | Music 0.770 0.000 0.424 ✓ +2026-06-25 18:11:13,964 | INFO | Mantra 0.209 0.000 0.115 ✗ +2026-06-25 18:11:13,965 | INFO | Singing 0.130 0.000 0.072 ✗ +2026-06-25 18:11:13,966 | INFO | Chant 0.072 0.000 0.040 ✗ +2026-06-25 18:11:13,966 | INFO | Musical instrument 0.069 0.000 0.038 ✗ +2026-06-25 18:11:13,966 | INFO | → WINNER: Music (combined=0.424) +2026-06-25 18:11:14,031 | INFO | +[960.40s] AMBIENT | scene='' +2026-06-25 18:11:14,033 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,033 | INFO | Music 0.686 0.000 0.378 ✓ +2026-06-25 18:11:14,061 | INFO | Mantra 0.123 0.000 0.068 ✗ +2026-06-25 18:11:14,063 | INFO | Singing 0.093 0.000 0.051 ✗ +2026-06-25 18:11:14,064 | INFO | Bicycle bell 0.073 0.000 0.040 ✗ +2026-06-25 18:11:14,064 | INFO | → WINNER: Music (combined=0.378) +2026-06-25 18:11:14,137 | INFO | +[960.60s] AMBIENT | scene='' +2026-06-25 18:11:14,137 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,137 | INFO | Music 0.672 0.000 0.370 ✓ +2026-06-25 18:11:14,138 | INFO | Mantra 0.404 0.000 0.222 ✓ +2026-06-25 18:11:14,138 | INFO | Carnatic music 0.254 0.000 0.140 ✓ +2026-06-25 18:11:14,138 | INFO | Bicycle bell 0.186 0.000 0.102 ✗ +2026-06-25 18:11:14,138 | INFO | Chant 0.075 0.000 0.042 ✗ +2026-06-25 18:11:14,138 | INFO | → WINNER: Music (combined=0.370) +2026-06-25 18:11:14,225 | INFO | +[960.80s] AMBIENT | scene='' +2026-06-25 18:11:14,226 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,226 | INFO | Music 0.537 0.000 0.295 ✓ +2026-06-25 18:11:14,226 | INFO | Mantra 0.276 0.000 0.151 ✓ +2026-06-25 18:11:14,226 | INFO | Bicycle bell 0.190 0.000 0.104 ✗ +2026-06-25 18:11:14,226 | INFO | Carnatic music 0.104 0.000 0.057 ✗ +2026-06-25 18:11:14,228 | INFO | → WINNER: Music (combined=0.295) +2026-06-25 18:11:14,299 | INFO | +[961.00s] AMBIENT | scene='' +2026-06-25 18:11:14,300 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,300 | INFO | Mantra 0.458 0.000 0.252 ✓ +2026-06-25 18:11:14,300 | INFO | Music 0.292 0.000 0.161 ✓ +2026-06-25 18:11:14,300 | INFO | Chant 0.134 0.000 0.074 ✗ +2026-06-25 18:11:14,300 | INFO | Singing 0.092 0.000 0.051 ✗ +2026-06-25 18:11:14,301 | INFO | → WINNER: Mantra (combined=0.252) +2026-06-25 18:11:14,331 | INFO | +[961.20s] AMBIENT | scene='' +2026-06-25 18:11:14,331 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,331 | INFO | Music 0.347 0.000 0.191 ✓ +2026-06-25 18:11:14,331 | INFO | Mantra 0.205 0.000 0.113 ✗ +2026-06-25 18:11:14,331 | INFO | Singing 0.086 0.000 0.047 ✗ +2026-06-25 18:11:14,332 | INFO | Chant 0.074 0.000 0.041 ✗ +2026-06-25 18:11:14,332 | INFO | → WINNER: Music (combined=0.191) +2026-06-25 18:11:14,363 | INFO | +[961.40s] AMBIENT | scene='' +2026-06-25 18:11:14,364 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,366 | INFO | Music 0.664 0.000 0.365 ✓ +2026-06-25 18:11:14,366 | INFO | Mantra 0.181 0.000 0.099 ✗ +2026-06-25 18:11:14,368 | INFO | Singing 0.133 0.000 0.073 ✗ +2026-06-25 18:11:14,368 | INFO | Chant 0.116 0.000 0.064 ✗ +2026-06-25 18:11:14,368 | INFO | Music of Bollywood 0.054 0.000 0.030 ✗ +2026-06-25 18:11:14,369 | INFO | → WINNER: Music (combined=0.365) +2026-06-25 18:11:14,416 | INFO | +[961.60s] AMBIENT | scene='' +2026-06-25 18:11:14,416 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,416 | INFO | Music 0.737 0.000 0.405 ✓ +2026-06-25 18:11:14,417 | INFO | Carnatic music 0.204 0.000 0.112 ✗ +2026-06-25 18:11:14,417 | INFO | Mantra 0.201 0.000 0.110 ✗ +2026-06-25 18:11:14,418 | INFO | Singing 0.158 0.000 0.087 ✗ +2026-06-25 18:11:14,419 | INFO | Middle Eastern music 0.115 0.000 0.063 ✗ +2026-06-25 18:11:14,420 | INFO | Chant 0.080 0.000 0.044 ✗ +2026-06-25 18:11:14,420 | INFO | → WINNER: Music (combined=0.405) +2026-06-25 18:11:14,460 | INFO | +[961.80s] AMBIENT | scene='' +2026-06-25 18:11:14,460 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,461 | INFO | Music 0.636 0.000 0.350 ✓ +2026-06-25 18:11:14,461 | INFO | Mantra 0.218 0.000 0.120 ✗ +2026-06-25 18:11:14,462 | INFO | Singing 0.108 0.000 0.059 ✗ +2026-06-25 18:11:14,462 | INFO | Middle Eastern music 0.100 0.000 0.055 ✗ +2026-06-25 18:11:14,462 | INFO | Chant 0.071 0.000 0.039 ✗ +2026-06-25 18:11:14,462 | INFO | Music of Bollywood 0.036 0.000 0.020 ✗ +2026-06-25 18:11:14,463 | INFO | → WINNER: Music (combined=0.350) +2026-06-25 18:11:14,496 | INFO | +[962.00s] AMBIENT | scene='' +2026-06-25 18:11:14,497 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,497 | INFO | Music 0.468 0.000 0.257 ✓ +2026-06-25 18:11:14,497 | INFO | Mantra 0.186 0.000 0.102 ✗ +2026-06-25 18:11:14,498 | INFO | Singing 0.124 0.000 0.068 ✗ +2026-06-25 18:11:14,498 | INFO | Chant 0.116 0.000 0.064 ✗ +2026-06-25 18:11:14,498 | INFO | → WINNER: Music (combined=0.257) +2026-06-25 18:11:14,529 | INFO | +[962.20s] AMBIENT | scene='' +2026-06-25 18:11:14,529 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,529 | INFO | Music 0.781 0.000 0.430 ✓ +2026-06-25 18:11:14,529 | INFO | Mantra 0.289 0.000 0.159 ✓ +2026-06-25 18:11:14,529 | INFO | Carnatic music 0.189 0.000 0.104 ✗ +2026-06-25 18:11:14,531 | INFO | Singing 0.102 0.000 0.056 ✗ +2026-06-25 18:11:14,531 | INFO | Chant 0.092 0.000 0.051 ✗ +2026-06-25 18:11:14,531 | INFO | Musical instrument 0.070 0.000 0.038 ✗ +2026-06-25 18:11:14,531 | INFO | → WINNER: Music (combined=0.430) +2026-06-25 18:11:14,562 | INFO | +[962.40s] AMBIENT | scene='' +2026-06-25 18:11:14,564 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,564 | INFO | Music 0.651 0.000 0.358 ✓ +2026-06-25 18:11:14,565 | INFO | Mantra 0.294 0.000 0.162 ✓ +2026-06-25 18:11:14,567 | INFO | Chant 0.200 0.000 0.110 ✗ +2026-06-25 18:11:14,573 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:11:14,577 | INFO | → WINNER: Music (combined=0.358) +2026-06-25 18:11:14,609 | INFO | +[962.60s] AMBIENT | scene='' +2026-06-25 18:11:14,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,610 | INFO | Music 0.532 0.000 0.293 ✓ +2026-06-25 18:11:14,610 | INFO | Mantra 0.362 0.000 0.199 ✓ +2026-06-25 18:11:14,611 | INFO | Chant 0.228 0.000 0.125 ✓ +2026-06-25 18:11:14,611 | INFO | Singing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:14,611 | INFO | → WINNER: Music (combined=0.293) +2026-06-25 18:11:14,641 | INFO | +[962.80s] AMBIENT | scene='' +2026-06-25 18:11:14,644 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,645 | INFO | Music 0.341 0.000 0.188 ✓ +2026-06-25 18:11:14,645 | INFO | Mantra 0.289 0.000 0.159 ✓ +2026-06-25 18:11:14,646 | INFO | Chant 0.128 0.000 0.070 ✗ +2026-06-25 18:11:14,646 | INFO | → WINNER: Music (combined=0.188) +2026-06-25 18:11:14,681 | INFO | +[963.00s] AMBIENT | scene='' +2026-06-25 18:11:14,681 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,681 | INFO | Music 0.363 0.000 0.200 ✓ +2026-06-25 18:11:14,681 | INFO | Singing 0.160 0.000 0.088 ✗ +2026-06-25 18:11:14,682 | INFO | Male singing 0.091 0.000 0.050 ✗ +2026-06-25 18:11:14,682 | INFO | Mantra 0.053 0.000 0.029 ✗ +2026-06-25 18:11:14,682 | INFO | → WINNER: Music (combined=0.200) +2026-06-25 18:11:14,711 | INFO | +[963.20s] AMBIENT | scene='' +2026-06-25 18:11:14,712 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,712 | INFO | Music 0.297 0.000 0.163 ✓ +2026-06-25 18:11:14,712 | INFO | Singing 0.110 0.000 0.060 ✗ +2026-06-25 18:11:14,712 | INFO | Male singing 0.091 0.000 0.050 ✗ +2026-06-25 18:11:14,713 | INFO | Mantra 0.071 0.000 0.039 ✗ +2026-06-25 18:11:14,713 | INFO | → WINNER: Music (combined=0.163) +2026-06-25 18:11:14,742 | INFO | +[963.40s] AMBIENT | scene='' +2026-06-25 18:11:14,743 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,745 | INFO | Music 0.240 0.000 0.132 ✓ +2026-06-25 18:11:14,745 | INFO | Singing 0.080 0.000 0.044 ✗ +2026-06-25 18:11:14,745 | INFO | → WINNER: Music (combined=0.132) +2026-06-25 18:11:14,775 | INFO | +[963.60s] AMBIENT | scene='' +2026-06-25 18:11:14,775 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,775 | INFO | Music 0.121 0.000 0.066 ✗ +2026-06-25 18:11:14,775 | INFO | → no winner +2026-06-25 18:11:14,805 | INFO | +[963.80s] AMBIENT | scene='' +2026-06-25 18:11:14,805 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,806 | INFO | Music 0.274 0.000 0.151 ✓ +2026-06-25 18:11:14,806 | INFO | → WINNER: Music (combined=0.151) +2026-06-25 18:11:14,836 | INFO | +[964.00s] AMBIENT | scene='' +2026-06-25 18:11:14,836 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,836 | INFO | Music 0.338 0.000 0.186 ✓ +2026-06-25 18:11:14,836 | INFO | → WINNER: Music (combined=0.186) +2026-06-25 18:11:14,866 | INFO | +[964.20s] AMBIENT | scene='' +2026-06-25 18:11:14,866 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,867 | INFO | Music 0.478 0.000 0.263 ✓ +2026-06-25 18:11:14,867 | INFO | Vehicle 0.054 0.000 0.030 ✗ +2026-06-25 18:11:14,867 | INFO | Television 0.054 0.000 0.030 ✗ +2026-06-25 18:11:14,867 | INFO | → WINNER: Music (combined=0.263) +2026-06-25 18:11:14,900 | INFO | +[964.40s] AMBIENT | scene='' +2026-06-25 18:11:14,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,901 | INFO | Vehicle 0.188 0.000 0.103 ✗ +2026-06-25 18:11:14,902 | INFO | Printer 0.184 0.000 0.101 ✗ +2026-06-25 18:11:14,902 | INFO | Mechanisms 0.122 0.000 0.067 ✗ +2026-06-25 18:11:14,902 | INFO | → no winner +2026-06-25 18:11:14,942 | INFO | +[964.60s] AMBIENT | scene='' +2026-06-25 18:11:14,943 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,944 | INFO | Printer 0.289 0.000 0.159 ✓ +2026-06-25 18:11:14,944 | INFO | Vehicle 0.089 0.000 0.049 ✗ +2026-06-25 18:11:14,945 | INFO | → WINNER: Printer (combined=0.159) +2026-06-25 18:11:14,980 | INFO | +[964.80s] AMBIENT | scene='' +2026-06-25 18:11:14,981 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:14,982 | INFO | Mechanisms 0.197 0.000 0.108 ✗ +2026-06-25 18:11:14,982 | INFO | Printer 0.104 0.000 0.057 ✗ +2026-06-25 18:11:14,982 | INFO | Vehicle 0.083 0.000 0.046 ✗ +2026-06-25 18:11:14,983 | INFO | → no winner +2026-06-25 18:11:15,014 | INFO | +[965.00s] AMBIENT | scene='' +2026-06-25 18:11:15,015 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,016 | INFO | Animal 0.115 0.000 0.063 ✗ +2026-06-25 18:11:15,017 | INFO | Vehicle 0.108 0.000 0.059 ✗ +2026-06-25 18:11:15,017 | INFO | Printer 0.067 0.000 0.037 ✗ +2026-06-25 18:11:15,018 | INFO | Mechanisms 0.055 0.000 0.030 ✗ +2026-06-25 18:11:15,018 | INFO | Boat, Water vehicle 0.047 0.000 0.026 ✗ +2026-06-25 18:11:15,018 | INFO | → no winner +2026-06-25 18:11:15,049 | INFO | +[965.20s] AMBIENT | scene='' +2026-06-25 18:11:15,049 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,050 | INFO | Vehicle 0.204 0.000 0.112 ✗ +2026-06-25 18:11:15,050 | INFO | Animal 0.093 0.000 0.051 ✗ +2026-06-25 18:11:15,051 | INFO | Boat, Water vehicle 0.076 0.000 0.042 ✗ +2026-06-25 18:11:15,051 | INFO | Wood 0.033 0.000 0.018 ✗ +2026-06-25 18:11:15,051 | INFO | → no winner +2026-06-25 18:11:15,090 | INFO | +[965.40s] AMBIENT | scene='' +2026-06-25 18:11:15,090 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,090 | INFO | Vehicle 0.437 0.000 0.240 ✓ +2026-06-25 18:11:15,091 | INFO | Car 0.146 0.000 0.081 ✗ +2026-06-25 18:11:15,091 | INFO | Power windows, electric windows 0.065 0.000 0.036 ✗ +2026-06-25 18:11:15,092 | INFO | Outside, urban or manmade 0.064 0.000 0.035 ✗ +2026-06-25 18:11:15,092 | INFO | Outside, rural or natural 0.057 0.000 0.031 ✗ +2026-06-25 18:11:15,092 | INFO | Wood 0.035 0.000 0.019 ✗ +2026-06-25 18:11:15,092 | INFO | → WINNER: Vehicle (combined=0.240) +2026-06-25 18:11:15,154 | INFO | +[969.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,157 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,157 | INFO | Animal 0.112 0.000 0.062 ✗ +2026-06-25 18:11:15,157 | INFO | Vehicle 0.088 0.000 0.048 ✗ +2026-06-25 18:11:15,158 | INFO | → no winner +2026-06-25 18:11:15,225 | INFO | +[969.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,225 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,227 | INFO | Animal 0.070 0.000 0.038 ✗ +2026-06-25 18:11:15,227 | INFO | Vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:11:15,227 | INFO | Bird 0.036 0.000 0.020 ✗ +2026-06-25 18:11:15,228 | INFO | → no winner +2026-06-25 18:11:15,285 | INFO | +[969.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,287 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,287 | INFO | Insect 0.052 0.309 0.168 ✓ +2026-06-25 18:11:15,287 | INFO | Bird vocalization, bird call, bird song 0.047 0.306 0.163 ✓ +2026-06-25 18:11:15,288 | INFO | Cricket 0.045 0.290 0.155 ✓ +2026-06-25 18:11:15,288 | INFO | Animal 0.169 0.000 0.093 ✗ +2026-06-25 18:11:15,288 | INFO | Bird 0.111 0.000 0.061 ✗ +2026-06-25 18:11:15,288 | INFO | → WINNER: Insect (combined=0.168) +2026-06-25 18:11:15,325 | INFO | +[969.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,325 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,326 | INFO | Bird vocalization, bird call, bird song 0.080 0.306 0.182 ✓ +2026-06-25 18:11:15,327 | INFO | Environmental noise 0.052 0.287 0.158 ✓ +2026-06-25 18:11:15,327 | INFO | Cricket 0.038 0.290 0.152 ✓ +2026-06-25 18:11:15,328 | INFO | Animal 0.258 0.000 0.142 ✓ +2026-06-25 18:11:15,328 | INFO | Bird 0.164 0.000 0.090 ✗ +2026-06-25 18:11:15,329 | INFO | Chirp, tweet 0.084 0.000 0.046 ✗ +2026-06-25 18:11:15,329 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.182) +2026-06-25 18:11:15,358 | INFO | +[970.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,358 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,358 | INFO | Bird vocalization, bird call, bird song 0.138 0.306 0.213 ✓ +2026-06-25 18:11:15,360 | INFO | Insect 0.056 0.309 0.170 ✓ +2026-06-25 18:11:15,360 | INFO | Environmental noise 0.054 0.287 0.159 ✓ +2026-06-25 18:11:15,361 | INFO | Cricket 0.047 0.290 0.156 ✓ +2026-06-25 18:11:15,361 | INFO | Bird 0.251 0.000 0.138 ✓ +2026-06-25 18:11:15,361 | INFO | Animal 0.195 0.000 0.107 ✗ +2026-06-25 18:11:15,362 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.213) +2026-06-25 18:11:15,392 | INFO | +[970.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,392 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,392 | INFO | Bird vocalization, bird call, bird song 0.069 0.306 0.176 ✓ +2026-06-25 18:11:15,392 | INFO | Bird 0.249 0.000 0.137 ✓ +2026-06-25 18:11:15,393 | INFO | Animal 0.155 0.000 0.086 ✗ +2026-06-25 18:11:15,395 | INFO | Squawk 0.085 0.000 0.047 ✗ +2026-06-25 18:11:15,395 | INFO | Owl 0.068 0.000 0.037 ✗ +2026-06-25 18:11:15,396 | INFO | Duck 0.061 0.000 0.034 ✗ +2026-06-25 18:11:15,396 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.176) +2026-06-25 18:11:15,425 | INFO | +[970.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,425 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,425 | INFO | Bird vocalization, bird call, bird song 0.053 0.306 0.167 ✓ +2026-06-25 18:11:15,427 | INFO | Bird 0.136 0.000 0.075 ✗ +2026-06-25 18:11:15,427 | INFO | Animal 0.093 0.000 0.051 ✗ +2026-06-25 18:11:15,427 | INFO | Owl 0.063 0.000 0.035 ✗ +2026-06-25 18:11:15,427 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.167) +2026-06-25 18:11:15,457 | INFO | +[970.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,465 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,469 | INFO | Animal 0.171 0.000 0.094 ✗ +2026-06-25 18:11:15,470 | INFO | Bird 0.100 0.000 0.055 ✗ +2026-06-25 18:11:15,472 | INFO | Duck 0.072 0.000 0.040 ✗ +2026-06-25 18:11:15,474 | INFO | Domestic animals, pets 0.040 0.000 0.022 ✗ +2026-06-25 18:11:15,474 | INFO | → no winner +2026-06-25 18:11:15,531 | INFO | +[970.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,531 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,532 | INFO | Animal 0.172 0.000 0.094 ✗ +2026-06-25 18:11:15,532 | INFO | Outside, rural or natural 0.071 0.000 0.039 ✗ +2026-06-25 18:11:15,533 | INFO | Vehicle 0.070 0.000 0.038 ✗ +2026-06-25 18:11:15,533 | INFO | Bird 0.066 0.000 0.036 ✗ +2026-06-25 18:11:15,534 | INFO | Wild animals 0.045 0.000 0.025 ✗ +2026-06-25 18:11:15,534 | INFO | → no winner +2026-06-25 18:11:15,598 | INFO | +[971.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,599 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,600 | INFO | Animal 0.303 0.000 0.167 ✓ +2026-06-25 18:11:15,600 | INFO | Vehicle 0.168 0.000 0.092 ✗ +2026-06-25 18:11:15,601 | INFO | Outside, rural or natural 0.148 0.000 0.082 ✗ +2026-06-25 18:11:15,601 | INFO | Bird 0.070 0.000 0.038 ✗ +2026-06-25 18:11:15,602 | INFO | Wild animals 0.053 0.000 0.029 ✗ +2026-06-25 18:11:15,607 | INFO | → WINNER: Animal (combined=0.167) +2026-06-25 18:11:15,680 | INFO | +[971.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,680 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,680 | INFO | Bird vocalization, bird call, bird song 0.038 0.306 0.159 ✓ +2026-06-25 18:11:15,681 | INFO | Animal 0.248 0.000 0.136 ✓ +2026-06-25 18:11:15,681 | INFO | Bird 0.128 0.000 0.070 ✗ +2026-06-25 18:11:15,682 | INFO | Outside, rural or natural 0.115 0.000 0.063 ✗ +2026-06-25 18:11:15,682 | INFO | Vehicle 0.114 0.000 0.062 ✗ +2026-06-25 18:11:15,682 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.159) +2026-06-25 18:11:15,713 | INFO | +[971.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,714 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,714 | INFO | Animal 0.321 0.000 0.177 ✓ +2026-06-25 18:11:15,714 | INFO | Bird vocalization, bird call, bird song 0.048 0.306 0.164 ✓ +2026-06-25 18:11:15,715 | INFO | Bird 0.170 0.000 0.093 ✗ +2026-06-25 18:11:15,715 | INFO | Outside, rural or natural 0.098 0.000 0.054 ✗ +2026-06-25 18:11:15,715 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:11:15,715 | INFO | Wild animals 0.054 0.000 0.030 ✗ +2026-06-25 18:11:15,716 | INFO | → WINNER: Animal (combined=0.177) +2026-06-25 18:11:15,748 | INFO | +[971.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,749 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,749 | INFO | Bird vocalization, bird call, bird song 0.096 0.306 0.190 ✓ +2026-06-25 18:11:15,749 | INFO | Environmental noise 0.100 0.287 0.184 ✓ +2026-06-25 18:11:15,750 | INFO | Insect 0.059 0.309 0.172 ✓ +2026-06-25 18:11:15,750 | INFO | Animal 0.292 0.000 0.161 ✓ +2026-06-25 18:11:15,750 | INFO | Cricket 0.037 0.290 0.150 ✓ +2026-06-25 18:11:15,750 | INFO | Bird 0.212 0.000 0.116 ✗ +2026-06-25 18:11:15,751 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.190) +2026-06-25 18:11:15,781 | INFO | +[971.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,781 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,782 | INFO | Animal 0.326 0.000 0.179 ✓ +2026-06-25 18:11:15,782 | INFO | Bird vocalization, bird call, bird song 0.075 0.306 0.179 ✓ +2026-06-25 18:11:15,782 | INFO | Environmental noise 0.085 0.287 0.176 ✓ +2026-06-25 18:11:15,783 | INFO | Insect 0.065 0.309 0.175 ✓ +2026-06-25 18:11:15,783 | INFO | Cricket 0.043 0.290 0.154 ✓ +2026-06-25 18:11:15,783 | INFO | Bird 0.182 0.000 0.100 ✗ +2026-06-25 18:11:15,783 | INFO | → WINNER: Animal (combined=0.179) +2026-06-25 18:11:15,814 | INFO | +[972.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,814 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,814 | INFO | Insect 0.289 0.309 0.298 ✓ +2026-06-25 18:11:15,814 | INFO | Cricket 0.270 0.290 0.279 ✓ +2026-06-25 18:11:15,815 | INFO | Bird vocalization, bird call, bird song 0.085 0.306 0.184 ✓ +2026-06-25 18:11:15,815 | INFO | Environmental noise 0.054 0.287 0.159 ✓ +2026-06-25 18:11:15,815 | INFO | Animal 0.275 0.000 0.151 ✓ +2026-06-25 18:11:15,815 | INFO | Bird 0.179 0.000 0.099 ✗ +2026-06-25 18:11:15,815 | INFO | → WINNER: Insect (combined=0.298) +2026-06-25 18:11:15,845 | INFO | +[972.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,845 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,846 | INFO | Insect 0.242 0.309 0.272 ✓ +2026-06-25 18:11:15,846 | INFO | Cricket 0.256 0.290 0.271 ✓ +2026-06-25 18:11:15,846 | INFO | Bird vocalization, bird call, bird song 0.044 0.306 0.162 ✓ +2026-06-25 18:11:15,846 | INFO | Animal 0.277 0.000 0.152 ✓ +2026-06-25 18:11:15,846 | INFO | Bird 0.103 0.000 0.057 ✗ +2026-06-25 18:11:15,848 | INFO | Domestic animals, pets 0.054 0.000 0.030 ✗ +2026-06-25 18:11:15,848 | INFO | → WINNER: Insect (combined=0.272) +2026-06-25 18:11:15,880 | INFO | +[972.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,880 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,881 | INFO | Animal 0.346 0.000 0.190 ✓ +2026-06-25 18:11:15,881 | INFO | Cricket 0.038 0.290 0.151 ✓ +2026-06-25 18:11:15,882 | INFO | Domestic animals, pets 0.111 0.000 0.061 ✗ +2026-06-25 18:11:15,882 | INFO | Dog 0.045 0.000 0.025 ✗ +2026-06-25 18:11:15,882 | INFO | Bird 0.045 0.000 0.025 ✗ +2026-06-25 18:11:15,882 | INFO | → WINNER: Animal (combined=0.190) +2026-06-25 18:11:15,913 | INFO | +[972.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,913 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,914 | INFO | Animal 0.412 0.000 0.227 ✓ +2026-06-25 18:11:15,914 | INFO | Bird vocalization, bird call, bird song 0.079 0.306 0.181 ✓ +2026-06-25 18:11:15,914 | INFO | Environmental noise 0.059 0.287 0.161 ✓ +2026-06-25 18:11:15,914 | INFO | Wild animals 0.151 0.000 0.083 ✗ +2026-06-25 18:11:15,914 | INFO | Bird 0.145 0.000 0.080 ✗ +2026-06-25 18:11:15,916 | INFO | Chirp, tweet 0.104 0.000 0.057 ✗ +2026-06-25 18:11:15,916 | INFO | → WINNER: Animal (combined=0.227) +2026-06-25 18:11:15,945 | INFO | +[972.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,946 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,946 | INFO | Animal 0.462 0.000 0.254 ✓ +2026-06-25 18:11:15,946 | INFO | Bird vocalization, bird call, bird song 0.114 0.306 0.200 ✓ +2026-06-25 18:11:15,947 | INFO | Environmental noise 0.093 0.287 0.180 ✓ +2026-06-25 18:11:15,947 | INFO | Bird 0.192 0.000 0.105 ✗ +2026-06-25 18:11:15,947 | INFO | Wild animals 0.183 0.000 0.101 ✗ +2026-06-25 18:11:15,947 | INFO | Chirp, tweet 0.153 0.000 0.084 ✗ +2026-06-25 18:11:15,947 | INFO | → WINNER: Animal (combined=0.254) +2026-06-25 18:11:15,981 | INFO | +[973.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:15,982 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:15,991 | INFO | Bird vocalization, bird call, bird song 0.267 0.306 0.285 ✓ +2026-06-25 18:11:16,000 | INFO | Environmental noise 0.112 0.287 0.191 ✓ +2026-06-25 18:11:16,005 | INFO | Bird 0.339 0.000 0.186 ✓ +2026-06-25 18:11:16,006 | INFO | Chirp, tweet 0.319 0.000 0.175 ✓ +2026-06-25 18:11:16,006 | INFO | Animal 0.216 0.000 0.119 ✗ +2026-06-25 18:11:16,006 | INFO | Outside, rural or natural 0.096 0.000 0.053 ✗ +2026-06-25 18:11:16,007 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.285) +2026-06-25 18:11:16,053 | INFO | +[973.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,053 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,053 | INFO | Bird vocalization, bird call, bird song 0.146 0.306 0.218 ✓ +2026-06-25 18:11:16,054 | INFO | Environmental noise 0.129 0.287 0.200 ✓ +2026-06-25 18:11:16,054 | INFO | Animal 0.258 0.000 0.142 ✓ +2026-06-25 18:11:16,054 | INFO | Bird 0.252 0.000 0.139 ✓ +2026-06-25 18:11:16,054 | INFO | Chirp, tweet 0.147 0.000 0.081 ✗ +2026-06-25 18:11:16,054 | INFO | Duck 0.084 0.000 0.046 ✗ +2026-06-25 18:11:16,054 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.218) +2026-06-25 18:11:16,090 | INFO | +[973.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,090 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,090 | INFO | Environmental noise 0.219 0.287 0.249 ✓ +2026-06-25 18:11:16,091 | INFO | Bird vocalization, bird call, bird song 0.146 0.306 0.218 ✓ +2026-06-25 18:11:16,091 | INFO | Insect 0.049 0.309 0.166 ✓ +2026-06-25 18:11:16,091 | INFO | Bird 0.233 0.000 0.128 ✓ +2026-06-25 18:11:16,091 | INFO | Animal 0.220 0.000 0.121 ✓ +2026-06-25 18:11:16,091 | INFO | Chirp, tweet 0.147 0.000 0.081 ✗ +2026-06-25 18:11:16,091 | INFO | → WINNER: Environmental noise (combined=0.249) +2026-06-25 18:11:16,160 | INFO | +[973.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,162 | INFO | Bird vocalization, bird call, bird song 0.085 0.306 0.184 ✓ +2026-06-25 18:11:16,163 | INFO | Environmental noise 0.075 0.287 0.170 ✓ +2026-06-25 18:11:16,163 | INFO | Animal 0.257 0.000 0.141 ✓ +2026-06-25 18:11:16,163 | INFO | Bird 0.208 0.000 0.115 ✗ +2026-06-25 18:11:16,163 | INFO | Duck 0.164 0.000 0.090 ✗ +2026-06-25 18:11:16,164 | INFO | Chirp, tweet 0.084 0.000 0.046 ✗ +2026-06-25 18:11:16,164 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.184) +2026-06-25 18:11:16,233 | INFO | +[973.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,235 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,235 | INFO | Bird vocalization, bird call, bird song 0.124 0.306 0.206 ✓ +2026-06-25 18:11:16,235 | INFO | Environmental noise 0.116 0.287 0.193 ✓ +2026-06-25 18:11:16,235 | INFO | Animal 0.323 0.000 0.177 ✓ +2026-06-25 18:11:16,235 | INFO | Duck 0.303 0.000 0.167 ✓ +2026-06-25 18:11:16,235 | INFO | Cricket 0.029 0.290 0.146 ✓ +2026-06-25 18:11:16,236 | INFO | Bird 0.265 0.000 0.146 ✓ +2026-06-25 18:11:16,236 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.206) +2026-06-25 18:11:16,292 | INFO | +[974.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,292 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,293 | INFO | Duck 0.344 0.000 0.189 ✓ +2026-06-25 18:11:16,293 | INFO | Animal 0.328 0.000 0.180 ✓ +2026-06-25 18:11:16,294 | INFO | Bird vocalization, bird call, bird song 0.055 0.306 0.168 ✓ +2026-06-25 18:11:16,294 | INFO | Bird 0.176 0.000 0.097 ✗ +2026-06-25 18:11:16,294 | INFO | Quack 0.161 0.000 0.089 ✗ +2026-06-25 18:11:16,294 | INFO | Fowl 0.138 0.000 0.076 ✗ +2026-06-25 18:11:16,295 | INFO | → WINNER: Duck (combined=0.189) +2026-06-25 18:11:16,328 | INFO | +[974.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,328 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,329 | INFO | Duck 0.462 0.000 0.254 ✓ +2026-06-25 18:11:16,329 | INFO | Bird vocalization, bird call, bird song 0.120 0.306 0.204 ✓ +2026-06-25 18:11:16,329 | INFO | Bird 0.332 0.000 0.183 ✓ +2026-06-25 18:11:16,331 | INFO | Animal 0.312 0.000 0.172 ✓ +2026-06-25 18:11:16,332 | INFO | Quack 0.212 0.000 0.117 ✗ +2026-06-25 18:11:16,332 | INFO | Chirp, tweet 0.106 0.000 0.058 ✗ +2026-06-25 18:11:16,332 | INFO | → WINNER: Duck (combined=0.254) +2026-06-25 18:11:16,363 | INFO | +[974.40s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,363 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,364 | INFO | Bird vocalization, bird call, bird song 0.112 0.306 0.199 ✓ +2026-06-25 18:11:16,364 | INFO | Bird 0.344 0.000 0.189 ✓ +2026-06-25 18:11:16,364 | INFO | Squawk 0.320 0.000 0.176 ✓ +2026-06-25 18:11:16,365 | INFO | Duck 0.277 0.000 0.152 ✓ +2026-06-25 18:11:16,365 | INFO | Animal 0.174 0.000 0.096 ✗ +2026-06-25 18:11:16,365 | INFO | Quack 0.137 0.000 0.075 ✗ +2026-06-25 18:11:16,365 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.199) +2026-06-25 18:11:16,408 | INFO | +[974.60s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,408 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,408 | INFO | Bird vocalization, bird call, bird song 0.241 0.306 0.270 ✓ +2026-06-25 18:11:16,410 | INFO | Bird 0.448 0.000 0.246 ✓ +2026-06-25 18:11:16,410 | INFO | Chirp, tweet 0.337 0.000 0.185 ✓ +2026-06-25 18:11:16,410 | INFO | Animal 0.125 0.000 0.069 ✗ +2026-06-25 18:11:16,411 | INFO | Duck 0.062 0.000 0.034 ✗ +2026-06-25 18:11:16,411 | INFO | Domestic animals, pets 0.046 0.000 0.026 ✗ +2026-06-25 18:11:16,411 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.270) +2026-06-25 18:11:16,445 | INFO | +[974.80s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,445 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,446 | INFO | Bird 0.515 0.000 0.283 ✓ +2026-06-25 18:11:16,446 | INFO | Bird vocalization, bird call, bird song 0.176 0.306 0.234 ✓ +2026-06-25 18:11:16,447 | INFO | Chirp, tweet 0.213 0.000 0.117 ✗ +2026-06-25 18:11:16,447 | INFO | Squawk 0.134 0.000 0.074 ✗ +2026-06-25 18:11:16,447 | INFO | Animal 0.134 0.000 0.074 ✗ +2026-06-25 18:11:16,447 | INFO | Duck 0.104 0.000 0.057 ✗ +2026-06-25 18:11:16,447 | INFO | → WINNER: Bird (combined=0.283) +2026-06-25 18:11:16,482 | INFO | +[975.00s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,483 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,483 | INFO | Bird 0.506 0.000 0.279 ✓ +2026-06-25 18:11:16,483 | INFO | Bird vocalization, bird call, bird song 0.202 0.306 0.248 ✓ +2026-06-25 18:11:16,483 | INFO | Chirp, tweet 0.283 0.000 0.156 ✓ +2026-06-25 18:11:16,484 | INFO | Animal 0.185 0.000 0.102 ✗ +2026-06-25 18:11:16,484 | INFO | Duck 0.167 0.000 0.092 ✗ +2026-06-25 18:11:16,484 | INFO | Chicken, rooster 0.086 0.000 0.047 ✗ +2026-06-25 18:11:16,484 | INFO | → WINNER: Bird (combined=0.279) +2026-06-25 18:11:16,518 | INFO | +[975.20s] AMBIENT | scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows' +2026-06-25 18:11:16,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,518 | INFO | Bird vocalization, bird call, bird song 0.185 0.306 0.239 ✓ +2026-06-25 18:11:16,520 | INFO | Bird 0.370 0.000 0.204 ✓ +2026-06-25 18:11:16,520 | INFO | Chirp, tweet 0.215 0.000 0.118 ✗ +2026-06-25 18:11:16,520 | INFO | Animal 0.162 0.000 0.089 ✗ +2026-06-25 18:11:16,520 | INFO | Duck 0.094 0.000 0.052 ✗ +2026-06-25 18:11:16,521 | INFO | Squawk 0.083 0.000 0.046 ✗ +2026-06-25 18:11:16,521 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.239) +2026-06-25 18:11:16,562 | INFO | +[999.40s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,563 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,563 | INFO | Bird vocalization, bird call, bird song 0.033 0.277 0.142 ✓ +2026-06-25 18:11:16,563 | INFO | Bird flight, flapping wings 0.102 0.000 0.056 ✗ +2026-06-25 18:11:16,564 | INFO | Bird 0.082 0.000 0.045 ✗ +2026-06-25 18:11:16,564 | INFO | Vehicle 0.062 0.000 0.034 ✗ +2026-06-25 18:11:16,564 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:16,565 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.142) +2026-06-25 18:11:16,601 | INFO | +[999.60s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,601 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,602 | INFO | Animal 0.108 0.000 0.060 ✗ +2026-06-25 18:11:16,602 | INFO | Patter 0.085 0.000 0.047 ✗ +2026-06-25 18:11:16,603 | INFO | Bird 0.079 0.000 0.044 ✗ +2026-06-25 18:11:16,604 | INFO | Mouse 0.058 0.000 0.032 ✗ +2026-06-25 18:11:16,604 | INFO | Rodents, rats, mice 0.053 0.000 0.029 ✗ +2026-06-25 18:11:16,604 | INFO | → no winner +2026-06-25 18:11:16,637 | INFO | +[999.80s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,637 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,637 | INFO | Bird vocalization, bird call, bird song 0.037 0.277 0.145 ✓ +2026-06-25 18:11:16,638 | INFO | Wild animals 0.041 0.271 0.144 ✓ +2026-06-25 18:11:16,638 | INFO | Animal 0.159 0.000 0.087 ✗ +2026-06-25 18:11:16,638 | INFO | Bird 0.104 0.000 0.057 ✗ +2026-06-25 18:11:16,638 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:11:16,638 | INFO | Vehicle 0.054 0.000 0.029 ✗ +2026-06-25 18:11:16,640 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.145) +2026-06-25 18:11:16,668 | INFO | +[1000.00s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,670 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,670 | INFO | Arrow 0.199 0.000 0.110 ✗ +2026-06-25 18:11:16,670 | INFO | Chop 0.096 0.000 0.053 ✗ +2026-06-25 18:11:16,670 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:11:16,670 | INFO | → no winner +2026-06-25 18:11:16,699 | INFO | +[1000.20s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,700 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,700 | INFO | Chop 0.333 0.000 0.183 ✓ +2026-06-25 18:11:16,700 | INFO | Animal 0.105 0.000 0.058 ✗ +2026-06-25 18:11:16,700 | INFO | → WINNER: Chop (combined=0.183) +2026-06-25 18:11:16,730 | INFO | +[1000.40s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,730 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,730 | INFO | Wild animals 0.072 0.271 0.162 ✓ +2026-06-25 18:11:16,731 | INFO | Animal 0.126 0.000 0.069 ✗ +2026-06-25 18:11:16,731 | INFO | Chainsaw 0.118 0.000 0.065 ✗ +2026-06-25 18:11:16,731 | INFO | Scrape 0.093 0.000 0.051 ✗ +2026-06-25 18:11:16,731 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:11:16,731 | INFO | Engine starting 0.058 0.000 0.032 ✗ +2026-06-25 18:11:16,731 | INFO | → WINNER: Wild animals (combined=0.162) +2026-06-25 18:11:16,761 | INFO | +[1000.60s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,761 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,761 | INFO | Vehicle 0.231 0.000 0.127 ✓ +2026-06-25 18:11:16,761 | INFO | Engine 0.062 0.000 0.034 ✗ +2026-06-25 18:11:16,762 | INFO | Car 0.061 0.000 0.034 ✗ +2026-06-25 18:11:16,762 | INFO | Scrape 0.057 0.000 0.031 ✗ +2026-06-25 18:11:16,762 | INFO | → WINNER: Vehicle (combined=0.127) +2026-06-25 18:11:16,797 | INFO | +[1000.80s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:16,830 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:16,837 | INFO | Wood 0.289 0.000 0.159 ✓ +2026-06-25 18:11:16,842 | INFO | Rub 0.190 0.000 0.105 ✗ +2026-06-25 18:11:16,854 | INFO | Scrape 0.123 0.000 0.068 ✗ +2026-06-25 18:11:16,858 | INFO | Sawing 0.094 0.000 0.052 ✗ +2026-06-25 18:11:16,875 | INFO | Filing (rasp) 0.066 0.000 0.036 ✗ +2026-06-25 18:11:16,887 | INFO | Crushing 0.059 0.000 0.032 ✗ +2026-06-25 18:11:16,911 | INFO | → WINNER: Wood (combined=0.159) +2026-06-25 18:11:17,008 | INFO | +[1001.00s] AMBIENT | scene='The image shows two men standing in a field with a hill in the backgro' +2026-06-25 18:11:17,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,050 | INFO | Vehicle 0.176 0.000 0.097 ✗ +2026-06-25 18:11:17,054 | INFO | Engine 0.065 0.000 0.036 ✗ +2026-06-25 18:11:17,079 | INFO | Scrape 0.061 0.000 0.034 ✗ +2026-06-25 18:11:17,086 | INFO | Wood 0.036 0.000 0.020 ✗ +2026-06-25 18:11:17,090 | INFO | → no winner +2026-06-25 18:11:17,259 | INFO | +[1001.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,260 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,260 | INFO | Vehicle 0.163 0.000 0.090 ✗ +2026-06-25 18:11:17,261 | INFO | Mechanisms 0.093 0.000 0.051 ✗ +2026-06-25 18:11:17,261 | INFO | Boat, Water vehicle 0.050 0.000 0.028 ✗ +2026-06-25 18:11:17,261 | INFO | Wood 0.044 0.000 0.024 ✗ +2026-06-25 18:11:17,262 | INFO | → no winner +2026-06-25 18:11:17,310 | INFO | +[1001.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,313 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,314 | INFO | Vehicle 0.114 0.000 0.063 ✗ +2026-06-25 18:11:17,315 | INFO | Mechanisms 0.109 0.000 0.060 ✗ +2026-06-25 18:11:17,315 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:11:17,315 | INFO | Horse 0.057 0.000 0.031 ✗ +2026-06-25 18:11:17,315 | INFO | Clip-clop 0.052 0.000 0.029 ✗ +2026-06-25 18:11:17,317 | INFO | Boat, Water vehicle 0.041 0.000 0.023 ✗ +2026-06-25 18:11:17,317 | INFO | → no winner +2026-06-25 18:11:17,357 | INFO | +[1001.60s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,357 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,357 | INFO | Vehicle 0.125 0.000 0.069 ✗ +2026-06-25 18:11:17,358 | INFO | Animal 0.089 0.000 0.049 ✗ +2026-06-25 18:11:17,358 | INFO | → no winner +2026-06-25 18:11:17,388 | INFO | +[1001.80s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,388 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,390 | INFO | Wood 0.082 0.000 0.045 ✗ +2026-06-25 18:11:17,390 | INFO | Vehicle 0.068 0.000 0.037 ✗ +2026-06-25 18:11:17,390 | INFO | Animal 0.053 0.000 0.029 ✗ +2026-06-25 18:11:17,390 | INFO | Chop 0.052 0.000 0.029 ✗ +2026-06-25 18:11:17,391 | INFO | → no winner +2026-06-25 18:11:17,422 | INFO | +[1002.00s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,423 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,424 | INFO | Wood 0.314 0.000 0.173 ✓ +2026-06-25 18:11:17,424 | INFO | Rub 0.282 0.000 0.155 ✓ +2026-06-25 18:11:17,424 | INFO | Vehicle 0.125 0.000 0.069 ✗ +2026-06-25 18:11:17,424 | INFO | Filing (rasp) 0.072 0.000 0.040 ✗ +2026-06-25 18:11:17,426 | INFO | Scrape 0.065 0.000 0.036 ✗ +2026-06-25 18:11:17,427 | INFO | Keys jangling 0.052 0.000 0.029 ✗ +2026-06-25 18:11:17,428 | INFO | → WINNER: Wood (combined=0.173) +2026-06-25 18:11:17,458 | INFO | +[1002.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,462 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,462 | INFO | Patter 0.087 0.000 0.048 ✗ +2026-06-25 18:11:17,463 | INFO | Vehicle 0.069 0.000 0.038 ✗ +2026-06-25 18:11:17,464 | INFO | Animal 0.040 0.000 0.022 ✗ +2026-06-25 18:11:17,464 | INFO | → no winner +2026-06-25 18:11:17,537 | INFO | +[1002.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,538 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,539 | INFO | Bird 0.065 0.000 0.036 ✗ +2026-06-25 18:11:17,539 | INFO | Crackle 0.062 0.000 0.034 ✗ +2026-06-25 18:11:17,540 | INFO | Animal 0.042 0.000 0.023 ✗ +2026-06-25 18:11:17,541 | INFO | → no winner +2026-06-25 18:11:17,606 | INFO | +[1002.60s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,607 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,608 | INFO | Animal 0.119 0.000 0.066 ✗ +2026-06-25 18:11:17,609 | INFO | Vehicle 0.066 0.000 0.036 ✗ +2026-06-25 18:11:17,610 | INFO | Crackle 0.062 0.000 0.034 ✗ +2026-06-25 18:11:17,610 | INFO | Horse 0.056 0.000 0.031 ✗ +2026-06-25 18:11:17,611 | INFO | Patter 0.055 0.000 0.030 ✗ +2026-06-25 18:11:17,612 | INFO | → no winner +2026-06-25 18:11:17,684 | INFO | +[1002.80s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,684 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,685 | INFO | Animal 0.184 0.000 0.101 ✗ +2026-06-25 18:11:17,685 | INFO | Clip-clop 0.169 0.000 0.093 ✗ +2026-06-25 18:11:17,686 | INFO | Horse 0.166 0.000 0.091 ✗ +2026-06-25 18:11:17,686 | INFO | Vehicle 0.057 0.000 0.032 ✗ +2026-06-25 18:11:17,686 | INFO | → no winner +2026-06-25 18:11:17,735 | INFO | +[1037.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,736 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,736 | INFO | Vehicle 0.088 0.000 0.048 ✗ +2026-06-25 18:11:17,736 | INFO | Wood 0.055 0.000 0.030 ✗ +2026-06-25 18:11:17,736 | INFO | → no winner +2026-06-25 18:11:17,766 | INFO | +[1037.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,766 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,767 | INFO | Wood 0.135 0.000 0.074 ✗ +2026-06-25 18:11:17,767 | INFO | Crushing 0.107 0.000 0.059 ✗ +2026-06-25 18:11:17,767 | INFO | Splinter 0.075 0.000 0.041 ✗ +2026-06-25 18:11:17,767 | INFO | → no winner +2026-06-25 18:11:17,797 | INFO | +[1037.60s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,797 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,798 | INFO | Vehicle 0.070 0.000 0.038 ✗ +2026-06-25 18:11:17,798 | INFO | Drawer open or close 0.067 0.000 0.037 ✗ +2026-06-25 18:11:17,798 | INFO | → no winner +2026-06-25 18:11:17,841 | INFO | +[1058.80s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,841 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,842 | INFO | Animal 0.115 0.000 0.063 ✗ +2026-06-25 18:11:17,842 | INFO | Patter 0.073 0.000 0.040 ✗ +2026-06-25 18:11:17,842 | INFO | Chewing, mastication 0.060 0.000 0.033 ✗ +2026-06-25 18:11:17,843 | INFO | Inside, small room 0.056 0.000 0.031 ✗ +2026-06-25 18:11:17,843 | INFO | → no winner +2026-06-25 18:11:17,875 | INFO | +[1059.00s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,876 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,876 | INFO | Water 0.068 0.259 0.154 ✓ +2026-06-25 18:11:17,876 | INFO | Squish 0.074 0.000 0.041 ✗ +2026-06-25 18:11:17,877 | INFO | Liquid 0.068 0.000 0.037 ✗ +2026-06-25 18:11:17,877 | INFO | Drip 0.064 0.000 0.035 ✗ +2026-06-25 18:11:17,877 | INFO | Boat, Water vehicle 0.046 0.000 0.025 ✗ +2026-06-25 18:11:17,878 | INFO | Chewing, mastication 0.044 0.000 0.024 ✗ +2026-06-25 18:11:17,878 | INFO | → WINNER: Water (combined=0.154) +2026-06-25 18:11:17,946 | INFO | +[1059.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:17,946 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:17,946 | INFO | Animal 0.138 0.000 0.076 ✗ +2026-06-25 18:11:17,947 | INFO | Chewing, mastication 0.125 0.000 0.069 ✗ +2026-06-25 18:11:17,947 | INFO | Biting 0.078 0.000 0.043 ✗ +2026-06-25 18:11:17,947 | INFO | Patter 0.068 0.000 0.037 ✗ +2026-06-25 18:11:17,947 | INFO | Mouse 0.065 0.000 0.036 ✗ +2026-06-25 18:11:17,947 | INFO | Squish 0.053 0.000 0.029 ✗ +2026-06-25 18:11:17,949 | INFO | → no winner +2026-06-25 18:11:18,010 | INFO | +[1059.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:18,012 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,012 | INFO | Animal 0.184 0.000 0.101 ✗ +2026-06-25 18:11:18,013 | INFO | Chewing, mastication 0.092 0.000 0.051 ✗ +2026-06-25 18:11:18,013 | INFO | Walk, footsteps 0.030 0.000 0.016 ✗ +2026-06-25 18:11:18,014 | INFO | → no winner +2026-06-25 18:11:18,077 | INFO | +[1059.60s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:18,077 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,078 | INFO | Animal 0.368 0.000 0.203 ✓ +2026-06-25 18:11:18,078 | INFO | Bird 0.071 0.271 0.161 ✓ +2026-06-25 18:11:18,079 | INFO | Clip-clop 0.085 0.000 0.047 ✗ +2026-06-25 18:11:18,081 | INFO | Horse 0.085 0.000 0.047 ✗ +2026-06-25 18:11:18,081 | INFO | Outside, rural or natural 0.072 0.000 0.040 ✗ +2026-06-25 18:11:18,082 | INFO | → WINNER: Animal (combined=0.203) +2026-06-25 18:11:18,117 | INFO | +[1059.80s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:18,120 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,124 | INFO | Animal 0.754 0.000 0.415 ✓ +2026-06-25 18:11:18,130 | INFO | Horse 0.499 0.000 0.274 ✓ +2026-06-25 18:11:18,146 | INFO | Clip-clop 0.411 0.000 0.226 ✓ +2026-06-25 18:11:18,147 | INFO | Environmental noise 0.060 0.277 0.158 ✓ +2026-06-25 18:11:18,150 | INFO | Bird 0.046 0.271 0.147 ✓ +2026-06-25 18:11:18,157 | INFO | Outside, rural or natural 0.120 0.000 0.066 ✗ +2026-06-25 18:11:18,159 | INFO | → WINNER: Animal (combined=0.415) +2026-06-25 18:11:18,196 | INFO | +[1060.00s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:18,197 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,197 | INFO | Animal 0.640 0.000 0.352 ✓ +2026-06-25 18:11:18,197 | INFO | Horse 0.401 0.000 0.220 ✓ +2026-06-25 18:11:18,197 | INFO | Clip-clop 0.344 0.000 0.190 ✓ +2026-06-25 18:11:18,198 | INFO | Environmental noise 0.072 0.277 0.164 ✓ +2026-06-25 18:11:18,198 | INFO | Bird 0.072 0.271 0.162 ✓ +2026-06-25 18:11:18,199 | INFO | Outside, rural or natural 0.133 0.000 0.073 ✗ +2026-06-25 18:11:18,199 | INFO | → WINNER: Animal (combined=0.352) +2026-06-25 18:11:18,228 | INFO | +[1060.20s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:18,230 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,231 | INFO | Animal 0.514 0.000 0.283 ✓ +2026-06-25 18:11:18,231 | INFO | Bird 0.081 0.271 0.166 ✓ +2026-06-25 18:11:18,231 | INFO | Horse 0.288 0.000 0.159 ✓ +2026-06-25 18:11:18,232 | INFO | Clip-clop 0.263 0.000 0.144 ✓ +2026-06-25 18:11:18,232 | INFO | Outside, rural or natural 0.112 0.000 0.062 ✗ +2026-06-25 18:11:18,234 | INFO | Walk, footsteps 0.055 0.000 0.030 ✗ +2026-06-25 18:11:18,234 | INFO | → WINNER: Animal (combined=0.283) +2026-06-25 18:11:18,264 | INFO | +[1060.40s] AMBIENT | scene='The image shows two men standing in a field with tall grass and bushes' +2026-06-25 18:11:18,264 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,264 | INFO | Animal 0.345 0.000 0.190 ✓ +2026-06-25 18:11:18,265 | INFO | Bird 0.101 0.271 0.178 ✓ +2026-06-25 18:11:18,265 | INFO | Horse 0.146 0.000 0.081 ✗ +2026-06-25 18:11:18,265 | INFO | Clip-clop 0.127 0.000 0.070 ✗ +2026-06-25 18:11:18,265 | INFO | Livestock, farm animals, working animals 0.046 0.000 0.025 ✗ +2026-06-25 18:11:18,266 | INFO | → WINNER: Animal (combined=0.190) +2026-06-25 18:11:18,322 | INFO | +[1060.60s] AMBIENT | scene='' +2026-06-25 18:11:18,323 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,325 | INFO | Animal 0.249 0.000 0.137 ✓ +2026-06-25 18:11:18,325 | INFO | Bird 0.121 0.000 0.067 ✗ +2026-06-25 18:11:18,326 | INFO | Duck 0.111 0.000 0.061 ✗ +2026-06-25 18:11:18,327 | INFO | Chicken, rooster 0.095 0.000 0.052 ✗ +2026-06-25 18:11:18,327 | INFO | Fowl 0.053 0.000 0.029 ✗ +2026-06-25 18:11:18,329 | INFO | → WINNER: Animal (combined=0.137) +2026-06-25 18:11:18,405 | INFO | +[1060.80s] AMBIENT | scene='' +2026-06-25 18:11:18,405 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,406 | INFO | Animal 0.202 0.000 0.111 ✗ +2026-06-25 18:11:18,406 | INFO | Bird 0.100 0.000 0.055 ✗ +2026-06-25 18:11:18,406 | INFO | Chicken, rooster 0.075 0.000 0.041 ✗ +2026-06-25 18:11:18,406 | INFO | Duck 0.069 0.000 0.038 ✗ +2026-06-25 18:11:18,406 | INFO | Cluck 0.060 0.000 0.033 ✗ +2026-06-25 18:11:18,412 | INFO | Fowl 0.054 0.000 0.030 ✗ +2026-06-25 18:11:18,412 | INFO | → no winner +2026-06-25 18:11:18,485 | INFO | +[1061.00s] AMBIENT | scene='' +2026-06-25 18:11:18,486 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,486 | INFO | Animal 0.336 0.000 0.185 ✓ +2026-06-25 18:11:18,487 | INFO | Bird 0.087 0.000 0.048 ✗ +2026-06-25 18:11:18,487 | INFO | Horse 0.062 0.000 0.034 ✗ +2026-06-25 18:11:18,487 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:11:18,487 | INFO | Clip-clop 0.059 0.000 0.033 ✗ +2026-06-25 18:11:18,487 | INFO | → WINNER: Animal (combined=0.185) +2026-06-25 18:11:18,518 | INFO | +[1061.20s] AMBIENT | scene='' +2026-06-25 18:11:18,518 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,518 | INFO | Animal 0.330 0.000 0.181 ✓ +2026-06-25 18:11:18,518 | INFO | Bird 0.183 0.000 0.101 ✗ +2026-06-25 18:11:18,518 | INFO | Outside, rural or natural 0.108 0.000 0.060 ✗ +2026-06-25 18:11:18,518 | INFO | Environmental noise 0.095 0.000 0.052 ✗ +2026-06-25 18:11:18,520 | INFO | Bird vocalization, bird call, bird song 0.065 0.000 0.036 ✗ +2026-06-25 18:11:18,520 | INFO | Cricket 0.029 0.000 0.016 ✗ +2026-06-25 18:11:18,520 | INFO | → WINNER: Animal (combined=0.181) +2026-06-25 18:11:18,550 | INFO | +[1061.40s] AMBIENT | scene='' +2026-06-25 18:11:18,551 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,551 | INFO | Animal 0.304 0.000 0.167 ✓ +2026-06-25 18:11:18,551 | INFO | Bird 0.210 0.000 0.115 ✗ +2026-06-25 18:11:18,551 | INFO | Outside, rural or natural 0.116 0.000 0.064 ✗ +2026-06-25 18:11:18,552 | INFO | Environmental noise 0.082 0.000 0.045 ✗ +2026-06-25 18:11:18,552 | INFO | Bird vocalization, bird call, bird song 0.081 0.000 0.044 ✗ +2026-06-25 18:11:18,552 | INFO | Chirp, tweet 0.067 0.000 0.037 ✗ +2026-06-25 18:11:18,552 | INFO | → WINNER: Animal (combined=0.167) +2026-06-25 18:11:18,581 | INFO | +[1061.60s] AMBIENT | scene='' +2026-06-25 18:11:18,583 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,583 | INFO | Animal 0.350 0.000 0.193 ✓ +2026-06-25 18:11:18,583 | INFO | Bird 0.156 0.000 0.086 ✗ +2026-06-25 18:11:18,583 | INFO | Outside, rural or natural 0.132 0.000 0.072 ✗ +2026-06-25 18:11:18,584 | INFO | Environmental noise 0.079 0.000 0.043 ✗ +2026-06-25 18:11:18,585 | INFO | Bird vocalization, bird call, bird song 0.062 0.000 0.034 ✗ +2026-06-25 18:11:18,585 | INFO | Horse 0.055 0.000 0.030 ✗ +2026-06-25 18:11:18,586 | INFO | → WINNER: Animal (combined=0.193) +2026-06-25 18:11:18,615 | INFO | +[1061.80s] AMBIENT | scene='' +2026-06-25 18:11:18,618 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,618 | INFO | Animal 0.289 0.000 0.159 ✓ +2026-06-25 18:11:18,618 | INFO | Bird 0.181 0.000 0.100 ✗ +2026-06-25 18:11:18,618 | INFO | Outside, rural or natural 0.110 0.000 0.060 ✗ +2026-06-25 18:11:18,618 | INFO | Environmental noise 0.072 0.000 0.040 ✗ +2026-06-25 18:11:18,619 | INFO | Bird vocalization, bird call, bird song 0.072 0.000 0.040 ✗ +2026-06-25 18:11:18,619 | INFO | Chirp, tweet 0.071 0.000 0.039 ✗ +2026-06-25 18:11:18,619 | INFO | → WINNER: Animal (combined=0.159) +2026-06-25 18:11:18,658 | INFO | +[1062.00s] AMBIENT | scene='' +2026-06-25 18:11:18,658 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,659 | INFO | Animal 0.680 0.000 0.374 ✓ +2026-06-25 18:11:18,659 | INFO | Horse 0.538 0.000 0.296 ✓ +2026-06-25 18:11:18,660 | INFO | Clip-clop 0.518 0.000 0.285 ✓ +2026-06-25 18:11:18,660 | INFO | Patter 0.134 0.000 0.074 ✗ +2026-06-25 18:11:18,660 | INFO | Outside, rural or natural 0.097 0.000 0.053 ✗ +2026-06-25 18:11:18,660 | INFO | Livestock, farm animals, working animals 0.079 0.000 0.043 ✗ +2026-06-25 18:11:18,661 | INFO | → WINNER: Animal (combined=0.374) +2026-06-25 18:11:18,690 | INFO | +[1062.20s] AMBIENT | scene='' +2026-06-25 18:11:18,692 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,692 | INFO | Animal 0.211 0.000 0.116 ✗ +2026-06-25 18:11:18,693 | INFO | Bird 0.123 0.000 0.068 ✗ +2026-06-25 18:11:18,695 | INFO | Environmental noise 0.069 0.000 0.038 ✗ +2026-06-25 18:11:18,695 | INFO | Bird vocalization, bird call, bird song 0.064 0.000 0.035 ✗ +2026-06-25 18:11:18,695 | INFO | Chirp, tweet 0.062 0.000 0.034 ✗ +2026-06-25 18:11:18,695 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:11:18,696 | INFO | → no winner +2026-06-25 18:11:18,728 | INFO | +[1062.40s] AMBIENT | scene='' +2026-06-25 18:11:18,728 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,728 | INFO | Animal 0.221 0.000 0.121 ✓ +2026-06-25 18:11:18,728 | INFO | Bird 0.126 0.000 0.069 ✗ +2026-06-25 18:11:18,730 | INFO | Bird vocalization, bird call, bird song 0.074 0.000 0.041 ✗ +2026-06-25 18:11:18,730 | INFO | Chirp, tweet 0.073 0.000 0.040 ✗ +2026-06-25 18:11:18,730 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:11:18,732 | INFO | Environmental noise 0.059 0.000 0.032 ✗ +2026-06-25 18:11:18,732 | INFO | → WINNER: Animal (combined=0.121) +2026-06-25 18:11:18,768 | INFO | +[1062.60s] AMBIENT | scene='' +2026-06-25 18:11:18,769 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,769 | INFO | Drip 0.162 0.000 0.089 ✗ +2026-06-25 18:11:18,769 | INFO | Squish 0.118 0.000 0.065 ✗ +2026-06-25 18:11:18,769 | INFO | Water 0.061 0.000 0.033 ✗ +2026-06-25 18:11:18,769 | INFO | Liquid 0.058 0.000 0.032 ✗ +2026-06-25 18:11:18,769 | INFO | Animal 0.044 0.000 0.024 ✗ +2026-06-25 18:11:18,769 | INFO | → no winner +2026-06-25 18:11:18,800 | INFO | +[1062.80s] AMBIENT | scene='' +2026-06-25 18:11:18,800 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,800 | INFO | Drip 0.253 0.000 0.139 ✓ +2026-06-25 18:11:18,800 | INFO | Squish 0.217 0.000 0.119 ✗ +2026-06-25 18:11:18,801 | INFO | Water 0.102 0.000 0.056 ✗ +2026-06-25 18:11:18,801 | INFO | Liquid 0.088 0.000 0.049 ✗ +2026-06-25 18:11:18,801 | INFO | Fill (with liquid) 0.069 0.000 0.038 ✗ +2026-06-25 18:11:18,801 | INFO | → WINNER: Drip (combined=0.139) +2026-06-25 18:11:18,831 | INFO | +[1063.00s] AMBIENT | scene='' +2026-06-25 18:11:18,831 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,832 | INFO | Squish 0.793 0.000 0.436 ✓ +2026-06-25 18:11:18,832 | INFO | Drip 0.359 0.000 0.198 ✓ +2026-06-25 18:11:18,832 | INFO | Chewing, mastication 0.135 0.000 0.074 ✗ +2026-06-25 18:11:18,832 | INFO | Liquid 0.082 0.000 0.045 ✗ +2026-06-25 18:11:18,832 | INFO | Biting 0.081 0.000 0.044 ✗ +2026-06-25 18:11:18,832 | INFO | Fill (with liquid) 0.071 0.000 0.039 ✗ +2026-06-25 18:11:18,833 | INFO | → WINNER: Squish (combined=0.436) +2026-06-25 18:11:18,864 | INFO | +[1063.20s] AMBIENT | scene='' +2026-06-25 18:11:18,864 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,864 | INFO | Patter 0.135 0.000 0.074 ✗ +2026-06-25 18:11:18,864 | INFO | Silence 0.064 0.000 0.035 ✗ +2026-06-25 18:11:18,864 | INFO | Stomach rumble 0.062 0.000 0.034 ✗ +2026-06-25 18:11:18,865 | INFO | Zipper (clothing) 0.053 0.000 0.029 ✗ +2026-06-25 18:11:18,865 | INFO | → no winner +2026-06-25 18:11:18,898 | INFO | +[1063.40s] AMBIENT | scene='' +2026-06-25 18:11:18,899 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,899 | INFO | Patter 0.160 0.000 0.088 ✗ +2026-06-25 18:11:18,899 | INFO | Squish 0.083 0.000 0.046 ✗ +2026-06-25 18:11:18,899 | INFO | Inside, small room 0.075 0.000 0.041 ✗ +2026-06-25 18:11:18,900 | INFO | Biting 0.055 0.000 0.030 ✗ +2026-06-25 18:11:18,900 | INFO | Mouse 0.053 0.000 0.029 ✗ +2026-06-25 18:11:18,900 | INFO | Chewing, mastication 0.048 0.000 0.026 ✗ +2026-06-25 18:11:18,900 | INFO | → no winner +2026-06-25 18:11:18,936 | INFO | +[1063.60s] AMBIENT | scene='' +2026-06-25 18:11:18,937 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,937 | INFO | Patter 0.208 0.000 0.114 ✗ +2026-06-25 18:11:18,937 | INFO | Mouse 0.100 0.000 0.055 ✗ +2026-06-25 18:11:18,937 | INFO | Static 0.074 0.000 0.041 ✗ +2026-06-25 18:11:18,939 | INFO | Boiling 0.070 0.000 0.038 ✗ +2026-06-25 18:11:18,939 | INFO | Animal 0.069 0.000 0.038 ✗ +2026-06-25 18:11:18,939 | INFO | Squish 0.069 0.000 0.038 ✗ +2026-06-25 18:11:18,940 | INFO | → no winner +2026-06-25 18:11:18,976 | INFO | +[1063.80s] AMBIENT | scene='' +2026-06-25 18:11:18,976 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:18,977 | INFO | Patter 0.105 0.000 0.058 ✗ +2026-06-25 18:11:18,977 | INFO | Animal 0.073 0.000 0.040 ✗ +2026-06-25 18:11:18,978 | INFO | Mouse 0.064 0.000 0.035 ✗ +2026-06-25 18:11:18,978 | INFO | Boiling 0.053 0.000 0.029 ✗ +2026-06-25 18:11:18,978 | INFO | → no winner +2026-06-25 18:11:19,013 | INFO | +[1064.00s] AMBIENT | scene='' +2026-06-25 18:11:19,013 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,013 | INFO | Patter 0.432 0.000 0.238 ✓ +2026-06-25 18:11:19,014 | INFO | Mouse 0.425 0.000 0.234 ✓ +2026-06-25 18:11:19,014 | INFO | Rodents, rats, mice 0.264 0.000 0.145 ✓ +2026-06-25 18:11:19,014 | INFO | Animal 0.131 0.000 0.072 ✗ +2026-06-25 18:11:19,014 | INFO | Inside, small room 0.060 0.000 0.033 ✗ +2026-06-25 18:11:19,014 | INFO | → WINNER: Patter (combined=0.238) +2026-06-25 18:11:19,047 | INFO | +[1064.20s] AMBIENT | scene='' +2026-06-25 18:11:19,048 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,048 | INFO | Patter 0.177 0.000 0.097 ✗ +2026-06-25 18:11:19,048 | INFO | Inside, small room 0.088 0.000 0.048 ✗ +2026-06-25 18:11:19,048 | INFO | Mouse 0.073 0.000 0.040 ✗ +2026-06-25 18:11:19,048 | INFO | Animal 0.050 0.000 0.028 ✗ +2026-06-25 18:11:19,048 | INFO | → no winner +2026-06-25 18:11:19,083 | INFO | +[1064.40s] AMBIENT | scene='' +2026-06-25 18:11:19,083 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,084 | INFO | Patter 0.136 0.000 0.075 ✗ +2026-06-25 18:11:19,084 | INFO | Animal 0.062 0.000 0.034 ✗ +2026-06-25 18:11:19,084 | INFO | Inside, small room 0.053 0.000 0.029 ✗ +2026-06-25 18:11:19,086 | INFO | → no winner +2026-06-25 18:11:19,116 | INFO | +[1064.60s] AMBIENT | scene='' +2026-06-25 18:11:19,117 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,118 | INFO | Patter 0.074 0.000 0.041 ✗ +2026-06-25 18:11:19,118 | INFO | Animal 0.057 0.000 0.031 ✗ +2026-06-25 18:11:19,118 | INFO | Mouse 0.055 0.000 0.030 ✗ +2026-06-25 18:11:19,118 | INFO | → no winner +2026-06-25 18:11:19,150 | INFO | +[1064.80s] AMBIENT | scene='' +2026-06-25 18:11:19,150 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,152 | INFO | Music 0.111 0.000 0.061 ✗ +2026-06-25 18:11:19,152 | INFO | Static 0.076 0.000 0.042 ✗ +2026-06-25 18:11:19,153 | INFO | → no winner +2026-06-25 18:11:19,182 | INFO | +[1065.00s] AMBIENT | scene='' +2026-06-25 18:11:19,183 | INFO | → no winner +2026-06-25 18:11:19,213 | INFO | +[1065.20s] AMBIENT | scene='' +2026-06-25 18:11:19,213 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,214 | INFO | Music 0.162 0.000 0.089 ✗ +2026-06-25 18:11:19,214 | INFO | Vehicle 0.078 0.000 0.043 ✗ +2026-06-25 18:11:19,214 | INFO | Animal 0.051 0.000 0.028 ✗ +2026-06-25 18:11:19,214 | INFO | → no winner +2026-06-25 18:11:19,248 | INFO | +[1065.40s] AMBIENT | scene='' +2026-06-25 18:11:19,249 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,249 | INFO | Music 0.111 0.000 0.061 ✗ +2026-06-25 18:11:19,249 | INFO | Vehicle 0.101 0.000 0.056 ✗ +2026-06-25 18:11:19,250 | INFO | → no winner +2026-06-25 18:11:19,280 | INFO | +[1065.60s] AMBIENT | scene='' +2026-06-25 18:11:19,280 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,281 | INFO | Vehicle 0.130 0.000 0.072 ✗ +2026-06-25 18:11:19,281 | INFO | Animal 0.052 0.000 0.029 ✗ +2026-06-25 18:11:19,281 | INFO | → no winner +2026-06-25 18:11:19,311 | INFO | +[1065.80s] AMBIENT | scene='' +2026-06-25 18:11:19,311 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,311 | INFO | Bird 0.227 0.000 0.125 ✓ +2026-06-25 18:11:19,312 | INFO | Animal 0.191 0.000 0.105 ✗ +2026-06-25 18:11:19,312 | INFO | Outside, rural or natural 0.115 0.000 0.063 ✗ +2026-06-25 18:11:19,312 | INFO | Pigeon, dove 0.115 0.000 0.063 ✗ +2026-06-25 18:11:19,312 | INFO | Vehicle 0.102 0.000 0.056 ✗ +2026-06-25 18:11:19,312 | INFO | Coo 0.067 0.000 0.037 ✗ +2026-06-25 18:11:19,312 | INFO | → WINNER: Bird (combined=0.125) +2026-06-25 18:11:19,341 | INFO | +[1066.00s] AMBIENT | scene='' +2026-06-25 18:11:19,342 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,344 | INFO | Animal 0.146 0.000 0.081 ✗ +2026-06-25 18:11:19,344 | INFO | Vehicle 0.083 0.000 0.045 ✗ +2026-06-25 18:11:19,345 | INFO | Bird 0.064 0.000 0.035 ✗ +2026-06-25 18:11:19,346 | INFO | → no winner +2026-06-25 18:11:19,376 | INFO | +[1066.20s] AMBIENT | scene='' +2026-06-25 18:11:19,376 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,377 | INFO | Animal 0.145 0.000 0.080 ✗ +2026-06-25 18:11:19,377 | INFO | Bird 0.108 0.000 0.059 ✗ +2026-06-25 18:11:19,377 | INFO | Vehicle 0.097 0.000 0.053 ✗ +2026-06-25 18:11:19,377 | INFO | Outside, rural or natural 0.072 0.000 0.039 ✗ +2026-06-25 18:11:19,377 | INFO | Siren 0.058 0.000 0.032 ✗ +2026-06-25 18:11:19,378 | INFO | Civil defense siren 0.058 0.000 0.032 ✗ +2026-06-25 18:11:19,378 | INFO | → no winner +2026-06-25 18:11:19,407 | INFO | +[1066.40s] AMBIENT | scene='' +2026-06-25 18:11:19,408 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,408 | INFO | Vehicle 0.175 0.000 0.097 ✗ +2026-06-25 18:11:19,409 | INFO | Animal 0.111 0.000 0.061 ✗ +2026-06-25 18:11:19,410 | INFO | Outside, rural or natural 0.072 0.000 0.040 ✗ +2026-06-25 18:11:19,410 | INFO | Boat, Water vehicle 0.065 0.000 0.036 ✗ +2026-06-25 18:11:19,410 | INFO | Clip-clop 0.052 0.000 0.029 ✗ +2026-06-25 18:11:19,410 | INFO | Train 0.047 0.000 0.026 ✗ +2026-06-25 18:11:19,410 | INFO | → no winner +2026-06-25 18:11:19,441 | INFO | +[1066.60s] AMBIENT | scene='' +2026-06-25 18:11:19,441 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,442 | INFO | Animal 0.457 0.000 0.252 ✓ +2026-06-25 18:11:19,442 | INFO | Dog 0.187 0.000 0.103 ✗ +2026-06-25 18:11:19,442 | INFO | Domestic animals, pets 0.173 0.000 0.095 ✗ +2026-06-25 18:11:19,443 | INFO | Bow-wow 0.111 0.000 0.061 ✗ +2026-06-25 18:11:19,443 | INFO | Howl 0.075 0.000 0.042 ✗ +2026-06-25 18:11:19,444 | INFO | Vehicle 0.066 0.000 0.036 ✗ +2026-06-25 18:11:19,444 | INFO | → WINNER: Animal (combined=0.252) +2026-06-25 18:11:19,474 | INFO | +[1066.80s] AMBIENT | scene='' +2026-06-25 18:11:19,474 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,475 | INFO | Animal 0.177 0.000 0.098 ✗ +2026-06-25 18:11:19,475 | INFO | Vehicle 0.130 0.000 0.072 ✗ +2026-06-25 18:11:19,477 | INFO | Boat, Water vehicle 0.107 0.000 0.059 ✗ +2026-06-25 18:11:19,477 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:11:19,477 | INFO | → no winner +2026-06-25 18:11:19,507 | INFO | +[1067.00s] AMBIENT | scene='' +2026-06-25 18:11:19,507 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,507 | INFO | Animal 0.249 0.000 0.137 ✓ +2026-06-25 18:11:19,508 | INFO | Vehicle 0.079 0.000 0.044 ✗ +2026-06-25 18:11:19,508 | INFO | Boat, Water vehicle 0.048 0.000 0.026 ✗ +2026-06-25 18:11:19,508 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:11:19,509 | INFO | Bird 0.036 0.000 0.020 ✗ +2026-06-25 18:11:19,510 | INFO | → WINNER: Animal (combined=0.137) +2026-06-25 18:11:19,542 | INFO | +[1067.20s] AMBIENT | scene='' +2026-06-25 18:11:19,543 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,546 | INFO | Animal 0.342 0.000 0.188 ✓ +2026-06-25 18:11:19,547 | INFO | Domestic animals, pets 0.094 0.000 0.052 ✗ +2026-06-25 18:11:19,549 | INFO | Dog 0.082 0.000 0.045 ✗ +2026-06-25 18:11:19,553 | INFO | Vehicle 0.082 0.000 0.045 ✗ +2026-06-25 18:11:19,554 | INFO | Bird 0.042 0.000 0.023 ✗ +2026-06-25 18:11:19,555 | INFO | → WINNER: Animal (combined=0.188) +2026-06-25 18:11:19,600 | INFO | +[1067.40s] AMBIENT | scene='' +2026-06-25 18:11:19,601 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,602 | INFO | Boat, Water vehicle 0.194 0.000 0.107 ✗ +2026-06-25 18:11:19,605 | INFO | Vehicle 0.142 0.000 0.078 ✗ +2026-06-25 18:11:19,605 | INFO | Whale vocalization 0.081 0.000 0.045 ✗ +2026-06-25 18:11:19,605 | INFO | Pour 0.079 0.000 0.043 ✗ +2026-06-25 18:11:19,606 | INFO | Water 0.068 0.000 0.038 ✗ +2026-06-25 18:11:19,606 | INFO | Rowboat, canoe, kayak 0.062 0.000 0.034 ✗ +2026-06-25 18:11:19,606 | INFO | → no winner +2026-06-25 18:11:19,644 | INFO | +[1067.60s] AMBIENT | scene='' +2026-06-25 18:11:19,645 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,646 | INFO | Boat, Water vehicle 0.292 0.000 0.161 ✓ +2026-06-25 18:11:19,647 | INFO | Vehicle 0.216 0.000 0.119 ✗ +2026-06-25 18:11:19,647 | INFO | Rowboat, canoe, kayak 0.102 0.000 0.056 ✗ +2026-06-25 18:11:19,649 | INFO | Stream 0.077 0.000 0.042 ✗ +2026-06-25 18:11:19,649 | INFO | Water 0.048 0.000 0.027 ✗ +2026-06-25 18:11:19,649 | INFO | → WINNER: Boat, Water vehicle (combined=0.161) +2026-06-25 18:11:19,678 | INFO | +[1067.80s] AMBIENT | scene='' +2026-06-25 18:11:19,678 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,678 | INFO | Animal 0.256 0.000 0.141 ✓ +2026-06-25 18:11:19,680 | INFO | Boat, Water vehicle 0.138 0.000 0.076 ✗ +2026-06-25 18:11:19,680 | INFO | Vehicle 0.137 0.000 0.075 ✗ +2026-06-25 18:11:19,680 | INFO | Outside, rural or natural 0.055 0.000 0.030 ✗ +2026-06-25 18:11:19,680 | INFO | Wild animals 0.054 0.000 0.030 ✗ +2026-06-25 18:11:19,680 | INFO | Domestic animals, pets 0.043 0.000 0.024 ✗ +2026-06-25 18:11:19,681 | INFO | → WINNER: Animal (combined=0.141) +2026-06-25 18:11:19,746 | INFO | +[1068.00s] AMBIENT | scene='' +2026-06-25 18:11:19,747 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,747 | INFO | Boat, Water vehicle 0.398 0.000 0.219 ✓ +2026-06-25 18:11:19,747 | INFO | Vehicle 0.254 0.000 0.140 ✓ +2026-06-25 18:11:19,748 | INFO | Whale vocalization 0.196 0.000 0.108 ✗ +2026-06-25 18:11:19,748 | INFO | Rowboat, canoe, kayak 0.134 0.000 0.074 ✗ +2026-06-25 18:11:19,748 | INFO | Stream 0.091 0.000 0.050 ✗ +2026-06-25 18:11:19,748 | INFO | Ocean 0.084 0.000 0.046 ✗ +2026-06-25 18:11:19,748 | INFO | → WINNER: Boat, Water vehicle (combined=0.219) +2026-06-25 18:11:19,814 | INFO | +[1068.20s] AMBIENT | scene='' +2026-06-25 18:11:19,815 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,815 | INFO | Animal 0.565 0.000 0.311 ✓ +2026-06-25 18:11:19,815 | INFO | Whale vocalization 0.261 0.000 0.144 ✓ +2026-06-25 18:11:19,815 | INFO | Wild animals 0.230 0.000 0.126 ✓ +2026-06-25 18:11:19,816 | INFO | Cattle, bovinae 0.158 0.000 0.087 ✗ +2026-06-25 18:11:19,816 | INFO | Roaring cats (lions, tigers) 0.132 0.000 0.073 ✗ +2026-06-25 18:11:19,816 | INFO | Livestock, farm animals, working animals 0.111 0.000 0.061 ✗ +2026-06-25 18:11:19,817 | INFO | → WINNER: Animal (combined=0.311) +2026-06-25 18:11:19,882 | INFO | +[1068.40s] AMBIENT | scene='' +2026-06-25 18:11:19,885 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,885 | INFO | Animal 0.720 0.000 0.396 ✓ +2026-06-25 18:11:19,885 | INFO | Wild animals 0.465 0.000 0.256 ✓ +2026-06-25 18:11:19,885 | INFO | Roaring cats (lions, tigers) 0.374 0.000 0.206 ✓ +2026-06-25 18:11:19,885 | INFO | Roar 0.220 0.000 0.121 ✓ +2026-06-25 18:11:19,886 | INFO | Cattle, bovinae 0.065 0.000 0.036 ✗ +2026-06-25 18:11:19,886 | INFO | Whale vocalization 0.052 0.000 0.029 ✗ +2026-06-25 18:11:19,886 | INFO | → WINNER: Animal (combined=0.396) +2026-06-25 18:11:19,916 | INFO | +[1068.60s] AMBIENT | scene='' +2026-06-25 18:11:19,916 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,918 | INFO | Animal 0.724 0.000 0.398 ✓ +2026-06-25 18:11:19,918 | INFO | Wild animals 0.474 0.000 0.261 ✓ +2026-06-25 18:11:19,918 | INFO | Roaring cats (lions, tigers) 0.444 0.000 0.244 ✓ +2026-06-25 18:11:19,918 | INFO | Roar 0.203 0.000 0.111 ✗ +2026-06-25 18:11:19,918 | INFO | Whale vocalization 0.073 0.000 0.040 ✗ +2026-06-25 18:11:19,919 | INFO | Cattle, bovinae 0.040 0.000 0.022 ✗ +2026-06-25 18:11:19,919 | INFO | → WINNER: Animal (combined=0.398) +2026-06-25 18:11:19,948 | INFO | +[1068.80s] AMBIENT | scene='' +2026-06-25 18:11:19,948 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,948 | INFO | Animal 0.650 0.000 0.357 ✓ +2026-06-25 18:11:19,948 | INFO | Hoot 0.374 0.000 0.206 ✓ +2026-06-25 18:11:19,950 | INFO | Wild animals 0.344 0.000 0.189 ✓ +2026-06-25 18:11:19,950 | INFO | Howl 0.227 0.000 0.125 ✓ +2026-06-25 18:11:19,950 | INFO | Roaring cats (lions, tigers) 0.197 0.000 0.108 ✗ +2026-06-25 18:11:19,951 | INFO | Owl 0.178 0.000 0.098 ✗ +2026-06-25 18:11:19,951 | INFO | → WINNER: Animal (combined=0.357) +2026-06-25 18:11:19,981 | INFO | +[1069.00s] AMBIENT | scene='' +2026-06-25 18:11:19,981 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:19,982 | INFO | Hoot 0.537 0.000 0.295 ✓ +2026-06-25 18:11:19,982 | INFO | Owl 0.477 0.000 0.262 ✓ +2026-06-25 18:11:19,982 | INFO | Animal 0.316 0.000 0.174 ✓ +2026-06-25 18:11:19,982 | INFO | Wild animals 0.133 0.000 0.073 ✗ +2026-06-25 18:11:19,983 | INFO | Domestic animals, pets 0.081 0.000 0.044 ✗ +2026-06-25 18:11:19,983 | INFO | Dog 0.070 0.000 0.039 ✗ +2026-06-25 18:11:19,983 | INFO | → WINNER: Hoot (combined=0.295) +2026-06-25 18:11:20,013 | INFO | +[1069.20s] AMBIENT | scene='' +2026-06-25 18:11:20,013 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,014 | INFO | Owl 0.653 0.000 0.359 ✓ +2026-06-25 18:11:20,014 | INFO | Hoot 0.650 0.000 0.358 ✓ +2026-06-25 18:11:20,014 | INFO | Animal 0.235 0.000 0.129 ✓ +2026-06-25 18:11:20,014 | INFO | Wild animals 0.167 0.000 0.092 ✗ +2026-06-25 18:11:20,014 | INFO | Roaring cats (lions, tigers) 0.162 0.000 0.089 ✗ +2026-06-25 18:11:20,015 | INFO | Bird 0.046 0.000 0.026 ✗ +2026-06-25 18:11:20,015 | INFO | → WINNER: Owl (combined=0.359) +2026-06-25 18:11:20,045 | INFO | +[1069.40s] AMBIENT | scene='' +2026-06-25 18:11:20,045 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,045 | INFO | Animal 0.402 0.000 0.221 ✓ +2026-06-25 18:11:20,046 | INFO | Hoot 0.272 0.000 0.149 ✓ +2026-06-25 18:11:20,046 | INFO | Owl 0.257 0.000 0.141 ✓ +2026-06-25 18:11:20,046 | INFO | Wild animals 0.219 0.000 0.120 ✓ +2026-06-25 18:11:20,047 | INFO | Roaring cats (lions, tigers) 0.141 0.000 0.077 ✗ +2026-06-25 18:11:20,047 | INFO | Bird 0.049 0.000 0.027 ✗ +2026-06-25 18:11:20,047 | INFO | → WINNER: Animal (combined=0.221) +2026-06-25 18:11:20,076 | INFO | +[1069.60s] AMBIENT | scene='' +2026-06-25 18:11:20,077 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,078 | INFO | Animal 0.411 0.000 0.226 ✓ +2026-06-25 18:11:20,078 | INFO | Wild animals 0.151 0.000 0.083 ✗ +2026-06-25 18:11:20,078 | INFO | Roaring cats (lions, tigers) 0.132 0.000 0.073 ✗ +2026-06-25 18:11:20,078 | INFO | Bird 0.080 0.000 0.044 ✗ +2026-06-25 18:11:20,078 | INFO | Hoot 0.066 0.000 0.036 ✗ +2026-06-25 18:11:20,078 | INFO | Owl 0.064 0.000 0.035 ✗ +2026-06-25 18:11:20,078 | INFO | → WINNER: Animal (combined=0.226) +2026-06-25 18:11:20,113 | INFO | +[1069.80s] AMBIENT | scene='' +2026-06-25 18:11:20,113 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,114 | INFO | Animal 0.406 0.000 0.224 ✓ +2026-06-25 18:11:20,114 | INFO | Clip-clop 0.240 0.000 0.132 ✓ +2026-06-25 18:11:20,115 | INFO | Horse 0.231 0.000 0.127 ✓ +2026-06-25 18:11:20,115 | INFO | Vehicle 0.092 0.000 0.051 ✗ +2026-06-25 18:11:20,115 | INFO | Outside, rural or natural 0.076 0.000 0.042 ✗ +2026-06-25 18:11:20,115 | INFO | → WINNER: Animal (combined=0.224) +2026-06-25 18:11:20,146 | INFO | +[1070.00s] AMBIENT | scene='' +2026-06-25 18:11:20,147 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,147 | INFO | Animal 0.535 0.000 0.294 ✓ +2026-06-25 18:11:20,147 | INFO | Horse 0.248 0.000 0.137 ✓ +2026-06-25 18:11:20,147 | INFO | Clip-clop 0.243 0.000 0.134 ✓ +2026-06-25 18:11:20,147 | INFO | Sheep 0.126 0.000 0.069 ✗ +2026-06-25 18:11:20,148 | INFO | Vehicle 0.113 0.000 0.062 ✗ +2026-06-25 18:11:20,148 | INFO | Bleat 0.081 0.000 0.045 ✗ +2026-06-25 18:11:20,148 | INFO | → WINNER: Animal (combined=0.294) +2026-06-25 18:11:20,180 | INFO | +[1070.20s] AMBIENT | scene='' +2026-06-25 18:11:20,181 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,182 | INFO | Animal 0.251 0.000 0.138 ✓ +2026-06-25 18:11:20,182 | INFO | Clip-clop 0.181 0.000 0.099 ✗ +2026-06-25 18:11:20,182 | INFO | Vehicle 0.144 0.000 0.079 ✗ +2026-06-25 18:11:20,183 | INFO | Horse 0.122 0.000 0.067 ✗ +2026-06-25 18:11:20,183 | INFO | Outside, urban or manmade 0.059 0.000 0.032 ✗ +2026-06-25 18:11:20,183 | INFO | Boat, Water vehicle 0.056 0.000 0.031 ✗ +2026-06-25 18:11:20,184 | INFO | → WINNER: Animal (combined=0.138) +2026-06-25 18:11:20,213 | INFO | +[1070.40s] AMBIENT | scene='' +2026-06-25 18:11:20,213 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,214 | INFO | Animal 0.187 0.000 0.103 ✗ +2026-06-25 18:11:20,214 | INFO | Vehicle 0.119 0.000 0.066 ✗ +2026-06-25 18:11:20,214 | INFO | Children playing 0.105 0.000 0.058 ✗ +2026-06-25 18:11:20,215 | INFO | Outside, urban or manmade 0.090 0.000 0.049 ✗ +2026-06-25 18:11:20,215 | INFO | Clip-clop 0.088 0.000 0.048 ✗ +2026-06-25 18:11:20,215 | INFO | Outside, rural or natural 0.058 0.000 0.032 ✗ +2026-06-25 18:11:20,215 | INFO | → no winner +2026-06-25 18:11:20,252 | INFO | +[1070.60s] AMBIENT | scene='' +2026-06-25 18:11:20,252 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,253 | INFO | Vehicle 0.134 0.000 0.074 ✗ +2026-06-25 18:11:20,254 | INFO | Animal 0.104 0.000 0.057 ✗ +2026-06-25 18:11:20,254 | INFO | Outside, urban or manmade 0.058 0.000 0.032 ✗ +2026-06-25 18:11:20,255 | INFO | Boat, Water vehicle 0.050 0.000 0.028 ✗ +2026-06-25 18:11:20,255 | INFO | → no winner +2026-06-25 18:11:20,284 | INFO | +[1070.80s] AMBIENT | scene='' +2026-06-25 18:11:20,285 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,285 | INFO | Vehicle 0.161 0.000 0.088 ✗ +2026-06-25 18:11:20,285 | INFO | Animal 0.076 0.000 0.042 ✗ +2026-06-25 18:11:20,286 | INFO | Boat, Water vehicle 0.048 0.000 0.026 ✗ +2026-06-25 18:11:20,286 | INFO | → no winner +2026-06-25 18:11:20,315 | INFO | +[1071.00s] AMBIENT | scene='' +2026-06-25 18:11:20,316 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,316 | INFO | Animal 0.142 0.000 0.078 ✗ +2026-06-25 18:11:20,316 | INFO | Vehicle 0.063 0.000 0.035 ✗ +2026-06-25 18:11:20,318 | INFO | → no winner +2026-06-25 18:11:20,346 | INFO | +[1071.20s] AMBIENT | scene='' +2026-06-25 18:11:20,347 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,347 | INFO | Animal 0.194 0.000 0.106 ✗ +2026-06-25 18:11:20,348 | INFO | Bird 0.057 0.000 0.031 ✗ +2026-06-25 18:11:20,348 | INFO | → no winner +2026-06-25 18:11:20,378 | INFO | +[1071.40s] AMBIENT | scene='' +2026-06-25 18:11:20,385 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,391 | INFO | Animal 0.203 0.000 0.112 ✗ +2026-06-25 18:11:20,397 | INFO | Bird 0.087 0.000 0.048 ✗ +2026-06-25 18:11:20,400 | INFO | → no winner +2026-06-25 18:11:20,435 | INFO | +[1071.60s] AMBIENT | scene='' +2026-06-25 18:11:20,437 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,437 | INFO | Frog 0.242 0.000 0.133 ✓ +2026-06-25 18:11:20,437 | INFO | Animal 0.193 0.000 0.106 ✗ +2026-06-25 18:11:20,438 | INFO | Bird 0.068 0.000 0.037 ✗ +2026-06-25 18:11:20,438 | INFO | Outside, rural or natural 0.056 0.000 0.030 ✗ +2026-06-25 18:11:20,438 | INFO | Croak 0.052 0.000 0.029 ✗ +2026-06-25 18:11:20,438 | INFO | → WINNER: Frog (combined=0.133) +2026-06-25 18:11:20,469 | INFO | +[1071.80s] AMBIENT | scene='' +2026-06-25 18:11:20,470 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,472 | INFO | Radio 0.098 0.000 0.054 ✗ +2026-06-25 18:11:20,472 | INFO | Vehicle 0.084 0.000 0.046 ✗ +2026-06-25 18:11:20,472 | INFO | Animal 0.069 0.000 0.038 ✗ +2026-06-25 18:11:20,472 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:11:20,472 | INFO | Bird 0.035 0.000 0.019 ✗ +2026-06-25 18:11:20,472 | INFO | Fire 0.033 0.000 0.018 ✗ +2026-06-25 18:11:20,472 | INFO | → no winner +2026-06-25 18:11:20,538 | INFO | +[1072.00s] AMBIENT | scene='' +2026-06-25 18:11:20,538 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,538 | INFO | Animal 0.114 0.000 0.063 ✗ +2026-06-25 18:11:20,538 | INFO | Vehicle 0.068 0.000 0.038 ✗ +2026-06-25 18:11:20,538 | INFO | Car alarm 0.062 0.000 0.034 ✗ +2026-06-25 18:11:20,538 | INFO | Outside, rural or natural 0.058 0.000 0.032 ✗ +2026-06-25 18:11:20,538 | INFO | Bird 0.054 0.000 0.030 ✗ +2026-06-25 18:11:20,538 | INFO | Fire 0.050 0.000 0.028 ✗ +2026-06-25 18:11:20,539 | INFO | → no winner +2026-06-25 18:11:20,600 | INFO | +[1072.20s] AMBIENT | scene='' +2026-06-25 18:11:20,601 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,601 | INFO | Animal 0.168 0.000 0.092 ✗ +2026-06-25 18:11:20,601 | INFO | Vehicle 0.080 0.000 0.044 ✗ +2026-06-25 18:11:20,602 | INFO | Outside, rural or natural 0.068 0.000 0.038 ✗ +2026-06-25 18:11:20,602 | INFO | Bird 0.050 0.000 0.028 ✗ +2026-06-25 18:11:20,602 | INFO | → no winner +2026-06-25 18:11:20,663 | INFO | +[1072.40s] AMBIENT | scene='' +2026-06-25 18:11:20,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,666 | INFO | Animal 0.218 0.000 0.120 ✓ +2026-06-25 18:11:20,673 | INFO | Bird 0.076 0.000 0.042 ✗ +2026-06-25 18:11:20,675 | INFO | Outside, rural or natural 0.057 0.000 0.032 ✗ +2026-06-25 18:11:20,675 | INFO | → WINNER: Animal (combined=0.120) +2026-06-25 18:11:20,710 | INFO | +[1072.60s] AMBIENT | scene='' +2026-06-25 18:11:20,711 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,711 | INFO | Animal 0.280 0.000 0.154 ✓ +2026-06-25 18:11:20,711 | INFO | Bird 0.220 0.000 0.121 ✓ +2026-06-25 18:11:20,711 | INFO | Pigeon, dove 0.122 0.000 0.067 ✗ +2026-06-25 18:11:20,711 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:11:20,712 | INFO | Coo 0.059 0.000 0.033 ✗ +2026-06-25 18:11:20,712 | INFO | Bird vocalization, bird call, bird song 0.034 0.000 0.018 ✗ +2026-06-25 18:11:20,712 | INFO | → WINNER: Animal (combined=0.154) +2026-06-25 18:11:20,742 | INFO | +[1072.80s] AMBIENT | scene='' +2026-06-25 18:11:20,743 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,745 | INFO | Animal 0.113 0.000 0.062 ✗ +2026-06-25 18:11:20,745 | INFO | Bird 0.038 0.000 0.021 ✗ +2026-06-25 18:11:20,748 | INFO | → no winner +2026-06-25 18:11:20,779 | INFO | +[1073.00s] AMBIENT | scene='' +2026-06-25 18:11:20,780 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,780 | INFO | Animal 0.227 0.000 0.125 ✓ +2026-06-25 18:11:20,780 | INFO | Livestock, farm animals, working animals 0.218 0.000 0.120 ✓ +2026-06-25 18:11:20,780 | INFO | Cattle, bovinae 0.171 0.000 0.094 ✗ +2026-06-25 18:11:20,780 | INFO | Moo 0.147 0.000 0.081 ✗ +2026-06-25 18:11:20,781 | INFO | Wild animals 0.106 0.000 0.058 ✗ +2026-06-25 18:11:20,781 | INFO | Roaring cats (lions, tigers) 0.101 0.000 0.055 ✗ +2026-06-25 18:11:20,781 | INFO | → WINNER: Animal (combined=0.125) +2026-06-25 18:11:20,812 | INFO | +[1073.20s] AMBIENT | scene='' +2026-06-25 18:11:20,812 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,812 | INFO | Livestock, farm animals, working animals 0.777 0.000 0.428 ✓ +2026-06-25 18:11:20,812 | INFO | Moo 0.753 0.000 0.414 ✓ +2026-06-25 18:11:20,814 | INFO | Cattle, bovinae 0.728 0.000 0.401 ✓ +2026-06-25 18:11:20,814 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:11:20,814 | INFO | Roaring cats (lions, tigers) 0.044 0.000 0.024 ✗ +2026-06-25 18:11:20,814 | INFO | Wild animals 0.040 0.000 0.022 ✗ +2026-06-25 18:11:20,814 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.428) +2026-06-25 18:11:20,843 | INFO | +[1073.40s] AMBIENT | scene='' +2026-06-25 18:11:20,844 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,844 | INFO | Cattle, bovinae 0.653 0.000 0.359 ✓ +2026-06-25 18:11:20,844 | INFO | Livestock, farm animals, working animals 0.640 0.000 0.352 ✓ +2026-06-25 18:11:20,844 | INFO | Moo 0.594 0.000 0.327 ✓ +2026-06-25 18:11:20,844 | INFO | Animal 0.248 0.000 0.137 ✓ +2026-06-25 18:11:20,844 | INFO | Wild animals 0.098 0.000 0.054 ✗ +2026-06-25 18:11:20,845 | INFO | Roaring cats (lions, tigers) 0.091 0.000 0.050 ✗ +2026-06-25 18:11:20,845 | INFO | → WINNER: Cattle, bovinae (combined=0.359) +2026-06-25 18:11:20,874 | INFO | +[1073.60s] AMBIENT | scene='' +2026-06-25 18:11:20,874 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,875 | INFO | Moo 0.808 0.000 0.444 ✓ +2026-06-25 18:11:20,875 | INFO | Livestock, farm animals, working animals 0.804 0.000 0.442 ✓ +2026-06-25 18:11:20,875 | INFO | Cattle, bovinae 0.803 0.000 0.442 ✓ +2026-06-25 18:11:20,875 | INFO | → WINNER: Moo (combined=0.444) +2026-06-25 18:11:20,904 | INFO | +[1073.80s] AMBIENT | scene='' +2026-06-25 18:11:20,904 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,905 | INFO | Moo 0.884 0.000 0.486 ✓ +2026-06-25 18:11:20,905 | INFO | Cattle, bovinae 0.883 0.000 0.485 ✓ +2026-06-25 18:11:20,905 | INFO | Livestock, farm animals, working animals 0.834 0.000 0.459 ✓ +2026-06-25 18:11:20,905 | INFO | → WINNER: Moo (combined=0.486) +2026-06-25 18:11:20,935 | INFO | +[1074.00s] AMBIENT | scene='' +2026-06-25 18:11:20,937 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,937 | INFO | Cattle, bovinae 0.573 0.000 0.315 ✓ +2026-06-25 18:11:20,938 | INFO | Livestock, farm animals, working animals 0.571 0.000 0.314 ✓ +2026-06-25 18:11:20,938 | INFO | Moo 0.507 0.000 0.279 ✓ +2026-06-25 18:11:20,938 | INFO | Animal 0.069 0.000 0.038 ✗ +2026-06-25 18:11:20,940 | INFO | → WINNER: Cattle, bovinae (combined=0.315) +2026-06-25 18:11:20,976 | INFO | +[1074.20s] AMBIENT | scene='' +2026-06-25 18:11:20,976 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:20,977 | INFO | Animal 0.179 0.000 0.099 ✗ +2026-06-25 18:11:20,977 | INFO | Clip-clop 0.154 0.000 0.085 ✗ +2026-06-25 18:11:20,977 | INFO | Horse 0.112 0.000 0.062 ✗ +2026-06-25 18:11:20,977 | INFO | Outside, urban or manmade 0.084 0.000 0.046 ✗ +2026-06-25 18:11:20,977 | INFO | Vehicle 0.068 0.000 0.037 ✗ +2026-06-25 18:11:20,977 | INFO | Run 0.066 0.000 0.036 ✗ +2026-06-25 18:11:20,979 | INFO | → no winner +2026-06-25 18:11:21,008 | INFO | +[1074.40s] AMBIENT | scene='' +2026-06-25 18:11:21,008 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,010 | INFO | Clip-clop 0.207 0.000 0.114 ✗ +2026-06-25 18:11:21,010 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:11:21,010 | INFO | Horse 0.151 0.000 0.083 ✗ +2026-06-25 18:11:21,010 | INFO | Vehicle 0.129 0.000 0.071 ✗ +2026-06-25 18:11:21,010 | INFO | Outside, urban or manmade 0.058 0.000 0.032 ✗ +2026-06-25 18:11:21,010 | INFO | Run 0.043 0.000 0.024 ✗ +2026-06-25 18:11:21,010 | INFO | → no winner +2026-06-25 18:11:21,040 | INFO | +[1074.60s] AMBIENT | scene='' +2026-06-25 18:11:21,040 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,041 | INFO | Clip-clop 0.331 0.000 0.182 ✓ +2026-06-25 18:11:21,041 | INFO | Horse 0.263 0.000 0.145 ✓ +2026-06-25 18:11:21,041 | INFO | Animal 0.182 0.000 0.100 ✗ +2026-06-25 18:11:21,041 | INFO | Vehicle 0.148 0.000 0.081 ✗ +2026-06-25 18:11:21,041 | INFO | Boat, Water vehicle 0.094 0.000 0.052 ✗ +2026-06-25 18:11:21,042 | INFO | Run 0.085 0.000 0.047 ✗ +2026-06-25 18:11:21,043 | INFO | → WINNER: Clip-clop (combined=0.182) +2026-06-25 18:11:21,073 | INFO | +[1074.80s] AMBIENT | scene='' +2026-06-25 18:11:21,073 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,073 | INFO | Boat, Water vehicle 0.140 0.000 0.077 ✗ +2026-06-25 18:11:21,073 | INFO | Vehicle 0.135 0.000 0.074 ✗ +2026-06-25 18:11:21,074 | INFO | Clip-clop 0.118 0.000 0.065 ✗ +2026-06-25 18:11:21,074 | INFO | Animal 0.102 0.000 0.056 ✗ +2026-06-25 18:11:21,074 | INFO | Horse 0.090 0.000 0.050 ✗ +2026-06-25 18:11:21,074 | INFO | Rowboat, canoe, kayak 0.068 0.000 0.038 ✗ +2026-06-25 18:11:21,074 | INFO | → no winner +2026-06-25 18:11:21,103 | INFO | +[1075.00s] AMBIENT | scene='' +2026-06-25 18:11:21,103 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,104 | INFO | Vehicle 0.074 0.000 0.041 ✗ +2026-06-25 18:11:21,104 | INFO | Animal 0.066 0.000 0.036 ✗ +2026-06-25 18:11:21,104 | INFO | Boat, Water vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:11:21,104 | INFO | Water 0.056 0.000 0.031 ✗ +2026-06-25 18:11:21,105 | INFO | → no winner +2026-06-25 18:11:21,133 | INFO | +[1075.20s] AMBIENT | scene='' +2026-06-25 18:11:21,136 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,136 | INFO | Vehicle 0.087 0.000 0.048 ✗ +2026-06-25 18:11:21,136 | INFO | Water 0.044 0.000 0.025 ✗ +2026-06-25 18:11:21,136 | INFO | → no winner +2026-06-25 18:11:21,165 | INFO | +[1075.40s] AMBIENT | scene='' +2026-06-25 18:11:21,166 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,166 | INFO | Animal 0.157 0.000 0.086 ✗ +2026-06-25 18:11:21,166 | INFO | Domestic animals, pets 0.048 0.000 0.026 ✗ +2026-06-25 18:11:21,166 | INFO | → no winner +2026-06-25 18:11:21,195 | INFO | +[1075.60s] AMBIENT | scene='' +2026-06-25 18:11:21,200 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,205 | INFO | Animal 0.195 0.000 0.107 ✗ +2026-06-25 18:11:21,207 | INFO | Vehicle 0.096 0.000 0.053 ✗ +2026-06-25 18:11:21,207 | INFO | Boat, Water vehicle 0.066 0.000 0.036 ✗ +2026-06-25 18:11:21,207 | INFO | → no winner +2026-06-25 18:11:21,239 | INFO | +[1075.80s] AMBIENT | scene='' +2026-06-25 18:11:21,241 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,241 | INFO | Quack 0.180 0.000 0.099 ✗ +2026-06-25 18:11:21,242 | INFO | Duck 0.178 0.000 0.098 ✗ +2026-06-25 18:11:21,243 | INFO | Honk 0.131 0.000 0.072 ✗ +2026-06-25 18:11:21,243 | INFO | Animal 0.126 0.000 0.070 ✗ +2026-06-25 18:11:21,243 | INFO | Goose 0.094 0.000 0.052 ✗ +2026-06-25 18:11:21,243 | INFO | Fowl 0.068 0.000 0.037 ✗ +2026-06-25 18:11:21,244 | INFO | → no winner +2026-06-25 18:11:21,273 | INFO | +[1076.00s] AMBIENT | scene='' +2026-06-25 18:11:21,274 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,274 | INFO | Quack 0.317 0.000 0.174 ✓ +2026-06-25 18:11:21,274 | INFO | Duck 0.302 0.000 0.166 ✓ +2026-06-25 18:11:21,276 | INFO | Animal 0.188 0.000 0.103 ✗ +2026-06-25 18:11:21,276 | INFO | Honk 0.183 0.000 0.101 ✗ +2026-06-25 18:11:21,276 | INFO | Goose 0.132 0.000 0.072 ✗ +2026-06-25 18:11:21,276 | INFO | Fowl 0.071 0.000 0.039 ✗ +2026-06-25 18:11:21,277 | INFO | → WINNER: Quack (combined=0.174) +2026-06-25 18:11:21,310 | INFO | +[1076.20s] AMBIENT | scene='' +2026-06-25 18:11:21,310 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,310 | INFO | Vehicle 0.134 0.000 0.073 ✗ +2026-06-25 18:11:21,310 | INFO | Boat, Water vehicle 0.097 0.000 0.053 ✗ +2026-06-25 18:11:21,310 | INFO | Animal 0.096 0.000 0.053 ✗ +2026-06-25 18:11:21,311 | INFO | → no winner +2026-06-25 18:11:21,340 | INFO | +[1076.40s] AMBIENT | scene='' +2026-06-25 18:11:21,344 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,345 | INFO | Music 0.225 0.000 0.124 ✓ +2026-06-25 18:11:21,347 | INFO | Vehicle 0.132 0.000 0.073 ✗ +2026-06-25 18:11:21,348 | INFO | Animal 0.113 0.000 0.062 ✗ +2026-06-25 18:11:21,356 | INFO | Boat, Water vehicle 0.099 0.000 0.055 ✗ +2026-06-25 18:11:21,363 | INFO | → WINNER: Music (combined=0.124) +2026-06-25 18:11:21,396 | INFO | +[1076.60s] AMBIENT | scene='' +2026-06-25 18:11:21,396 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,396 | INFO | Music 0.343 0.000 0.189 ✓ +2026-06-25 18:11:21,396 | INFO | Radio 0.119 0.000 0.066 ✗ +2026-06-25 18:11:21,396 | INFO | Animal 0.071 0.000 0.039 ✗ +2026-06-25 18:11:21,397 | INFO | → WINNER: Music (combined=0.189) +2026-06-25 18:11:21,426 | INFO | +[1076.80s] AMBIENT | scene='' +2026-06-25 18:11:21,426 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,426 | INFO | Whale vocalization 0.213 0.000 0.117 ✗ +2026-06-25 18:11:21,427 | INFO | Music 0.198 0.000 0.109 ✗ +2026-06-25 18:11:21,427 | INFO | Gargling 0.070 0.000 0.038 ✗ +2026-06-25 18:11:21,427 | INFO | Radio 0.058 0.000 0.032 ✗ +2026-06-25 18:11:21,427 | INFO | Animal 0.054 0.000 0.030 ✗ +2026-06-25 18:11:21,427 | INFO | → no winner +2026-06-25 18:11:21,456 | INFO | +[1077.00s] AMBIENT | scene='' +2026-06-25 18:11:21,457 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,457 | INFO | Whale vocalization 0.333 0.000 0.183 ✓ +2026-06-25 18:11:21,457 | INFO | Music 0.152 0.000 0.084 ✗ +2026-06-25 18:11:21,458 | INFO | → WINNER: Whale vocalization (combined=0.183) +2026-06-25 18:11:21,496 | INFO | +[1077.20s] AMBIENT | scene='' +2026-06-25 18:11:21,497 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,497 | INFO | Whale vocalization 0.124 0.000 0.068 ✗ +2026-06-25 18:11:21,498 | INFO | Music 0.105 0.000 0.058 ✗ +2026-06-25 18:11:21,498 | INFO | Animal 0.044 0.000 0.024 ✗ +2026-06-25 18:11:21,498 | INFO | → no winner +2026-06-25 18:11:21,556 | INFO | +[1077.40s] AMBIENT | scene='' +2026-06-25 18:11:21,558 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,558 | INFO | Whale vocalization 0.201 0.000 0.110 ✗ +2026-06-25 18:11:21,558 | INFO | Animal 0.046 0.000 0.025 ✗ +2026-06-25 18:11:21,558 | INFO | → no winner +2026-06-25 18:11:21,617 | INFO | +[1077.60s] AMBIENT | scene='' +2026-06-25 18:11:21,618 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,618 | INFO | Radio 0.265 0.000 0.146 ✓ +2026-06-25 18:11:21,619 | INFO | Vehicle 0.066 0.000 0.036 ✗ +2026-06-25 18:11:21,619 | INFO | Animal 0.051 0.000 0.028 ✗ +2026-06-25 18:11:21,619 | INFO | → WINNER: Radio (combined=0.146) +2026-06-25 18:11:21,678 | INFO | +[1077.80s] AMBIENT | scene='' +2026-06-25 18:11:21,678 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,678 | INFO | Radio 0.074 0.000 0.041 ✗ +2026-06-25 18:11:21,679 | INFO | Vehicle 0.067 0.000 0.037 ✗ +2026-06-25 18:11:21,679 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:21,679 | INFO | → no winner +2026-06-25 18:11:21,710 | INFO | +[1078.00s] AMBIENT | scene='' +2026-06-25 18:11:21,711 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,711 | INFO | Vehicle 0.111 0.000 0.061 ✗ +2026-06-25 18:11:21,712 | INFO | Animal 0.088 0.000 0.048 ✗ +2026-06-25 18:11:21,712 | INFO | → no winner +2026-06-25 18:11:21,740 | INFO | +[1078.20s] AMBIENT | scene='' +2026-06-25 18:11:21,741 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,741 | INFO | Animal 0.116 0.000 0.064 ✗ +2026-06-25 18:11:21,741 | INFO | Vehicle 0.092 0.000 0.051 ✗ +2026-06-25 18:11:21,741 | INFO | Boat, Water vehicle 0.038 0.000 0.021 ✗ +2026-06-25 18:11:21,743 | INFO | → no winner +2026-06-25 18:11:21,789 | INFO | +[1078.40s] AMBIENT | scene='' +2026-06-25 18:11:21,796 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,798 | INFO | Animal 0.114 0.000 0.062 ✗ +2026-06-25 18:11:21,801 | INFO | Vehicle 0.087 0.000 0.048 ✗ +2026-06-25 18:11:21,806 | INFO | Boat, Water vehicle 0.050 0.000 0.028 ✗ +2026-06-25 18:11:21,806 | INFO | → no winner +2026-06-25 18:11:21,845 | INFO | +[1078.60s] AMBIENT | scene='' +2026-06-25 18:11:21,854 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,854 | INFO | Whale vocalization 0.728 0.000 0.401 ✓ +2026-06-25 18:11:21,854 | INFO | Livestock, farm animals, working animals 0.463 0.000 0.254 ✓ +2026-06-25 18:11:21,856 | INFO | Animal 0.420 0.000 0.231 ✓ +2026-06-25 18:11:21,856 | INFO | Cattle, bovinae 0.410 0.000 0.226 ✓ +2026-06-25 18:11:21,856 | INFO | Moo 0.372 0.000 0.205 ✓ +2026-06-25 18:11:21,856 | INFO | Wild animals 0.202 0.000 0.111 ✗ +2026-06-25 18:11:21,857 | INFO | → WINNER: Whale vocalization (combined=0.401) +2026-06-25 18:11:21,960 | INFO | +[1078.80s] AMBIENT | scene='' +2026-06-25 18:11:21,967 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:21,971 | INFO | Livestock, farm animals, working animals 0.706 0.000 0.389 ✓ +2026-06-25 18:11:21,973 | INFO | Cattle, bovinae 0.697 0.000 0.384 ✓ +2026-06-25 18:11:21,978 | INFO | Moo 0.691 0.000 0.380 ✓ +2026-06-25 18:11:21,985 | INFO | Whale vocalization 0.223 0.000 0.122 ✓ +2026-06-25 18:11:21,994 | INFO | Animal 0.157 0.000 0.087 ✗ +2026-06-25 18:11:21,995 | INFO | Wild animals 0.052 0.000 0.028 ✗ +2026-06-25 18:11:21,995 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.389) +2026-06-25 18:11:22,082 | INFO | +[1079.00s] AMBIENT | scene='' +2026-06-25 18:11:22,084 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,084 | INFO | Livestock, farm animals, working animals 0.822 0.000 0.452 ✓ +2026-06-25 18:11:22,084 | INFO | Moo 0.818 0.000 0.450 ✓ +2026-06-25 18:11:22,085 | INFO | Cattle, bovinae 0.792 0.000 0.436 ✓ +2026-06-25 18:11:22,086 | INFO | Animal 0.067 0.000 0.037 ✗ +2026-06-25 18:11:22,087 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.452) +2026-06-25 18:11:22,246 | INFO | +[1079.20s] AMBIENT | scene='' +2026-06-25 18:11:22,246 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,246 | INFO | Livestock, farm animals, working animals 0.811 0.000 0.446 ✓ +2026-06-25 18:11:22,248 | INFO | Moo 0.805 0.000 0.443 ✓ +2026-06-25 18:11:22,248 | INFO | Cattle, bovinae 0.754 0.000 0.415 ✓ +2026-06-25 18:11:22,248 | INFO | Animal 0.048 0.000 0.026 ✗ +2026-06-25 18:11:22,248 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.446) +2026-06-25 18:11:22,307 | INFO | +[1079.40s] AMBIENT | scene='' +2026-06-25 18:11:22,308 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,310 | INFO | Moo 0.901 0.000 0.496 ✓ +2026-06-25 18:11:22,310 | INFO | Cattle, bovinae 0.880 0.000 0.484 ✓ +2026-06-25 18:11:22,312 | INFO | Livestock, farm animals, working animals 0.863 0.000 0.474 ✓ +2026-06-25 18:11:22,312 | INFO | → WINNER: Moo (combined=0.496) +2026-06-25 18:11:22,344 | INFO | +[1079.60s] AMBIENT | scene='' +2026-06-25 18:11:22,351 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,352 | INFO | Moo 0.899 0.000 0.495 ✓ +2026-06-25 18:11:22,355 | INFO | Cattle, bovinae 0.897 0.000 0.493 ✓ +2026-06-25 18:11:22,355 | INFO | Livestock, farm animals, working animals 0.829 0.000 0.456 ✓ +2026-06-25 18:11:22,355 | INFO | → WINNER: Moo (combined=0.495) +2026-06-25 18:11:22,387 | INFO | +[1079.80s] AMBIENT | scene='' +2026-06-25 18:11:22,388 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,388 | INFO | Cattle, bovinae 0.796 0.000 0.438 ✓ +2026-06-25 18:11:22,390 | INFO | Moo 0.789 0.000 0.434 ✓ +2026-06-25 18:11:22,390 | INFO | Livestock, farm animals, working animals 0.708 0.000 0.390 ✓ +2026-06-25 18:11:22,392 | INFO | → WINNER: Cattle, bovinae (combined=0.438) +2026-06-25 18:11:22,426 | INFO | +[1080.00s] AMBIENT | scene='' +2026-06-25 18:11:22,427 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,427 | INFO | Cattle, bovinae 0.581 0.000 0.320 ✓ +2026-06-25 18:11:22,429 | INFO | Moo 0.560 0.000 0.308 ✓ +2026-06-25 18:11:22,429 | INFO | Livestock, farm animals, working animals 0.490 0.000 0.270 ✓ +2026-06-25 18:11:22,429 | INFO | Vehicle 0.056 0.000 0.031 ✗ +2026-06-25 18:11:22,435 | INFO | → WINNER: Cattle, bovinae (combined=0.320) +2026-06-25 18:11:22,478 | INFO | +[1080.20s] AMBIENT | scene='' +2026-06-25 18:11:22,480 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,481 | INFO | Animal 0.077 0.000 0.043 ✗ +2026-06-25 18:11:22,481 | INFO | Vehicle 0.062 0.000 0.034 ✗ +2026-06-25 18:11:22,481 | INFO | → no winner +2026-06-25 18:11:22,550 | INFO | +[1080.40s] AMBIENT | scene='' +2026-06-25 18:11:22,550 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,550 | INFO | Vehicle 0.310 0.000 0.171 ✓ +2026-06-25 18:11:22,550 | INFO | Boat, Water vehicle 0.150 0.000 0.083 ✗ +2026-06-25 18:11:22,552 | INFO | Motorboat, speedboat 0.086 0.000 0.047 ✗ +2026-06-25 18:11:22,552 | INFO | Car 0.060 0.000 0.033 ✗ +2026-06-25 18:11:22,552 | INFO | → WINNER: Vehicle (combined=0.171) +2026-06-25 18:11:22,620 | INFO | +[1080.60s] AMBIENT | scene='' +2026-06-25 18:11:22,620 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,621 | INFO | Vehicle 0.179 0.000 0.099 ✗ +2026-06-25 18:11:22,622 | INFO | Boat, Water vehicle 0.048 0.000 0.026 ✗ +2026-06-25 18:11:22,623 | INFO | → no winner +2026-06-25 18:11:22,684 | INFO | +[1080.80s] AMBIENT | scene='' +2026-06-25 18:11:22,684 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,685 | INFO | Livestock, farm animals, working animals 0.257 0.000 0.141 ✓ +2026-06-25 18:11:22,685 | INFO | Cattle, bovinae 0.243 0.000 0.134 ✓ +2026-06-25 18:11:22,686 | INFO | Moo 0.241 0.000 0.132 ✓ +2026-06-25 18:11:22,688 | INFO | Animal 0.093 0.000 0.051 ✗ +2026-06-25 18:11:22,688 | INFO | Wild animals 0.043 0.000 0.023 ✗ +2026-06-25 18:11:22,688 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.141) +2026-06-25 18:11:22,718 | INFO | +[1081.00s] AMBIENT | scene='' +2026-06-25 18:11:22,718 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,718 | INFO | Civil defense siren 0.446 0.000 0.245 ✓ +2026-06-25 18:11:22,718 | INFO | Siren 0.301 0.000 0.166 ✓ +2026-06-25 18:11:22,720 | INFO | Livestock, farm animals, working animals 0.230 0.000 0.126 ✓ +2026-06-25 18:11:22,720 | INFO | Cattle, bovinae 0.159 0.000 0.087 ✗ +2026-06-25 18:11:22,720 | INFO | Moo 0.154 0.000 0.085 ✗ +2026-06-25 18:11:22,720 | INFO | → WINNER: Civil defense siren (combined=0.245) +2026-06-25 18:11:22,750 | INFO | +[1081.20s] AMBIENT | scene='' +2026-06-25 18:11:22,750 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,750 | INFO | Civil defense siren 0.462 0.000 0.254 ✓ +2026-06-25 18:11:22,750 | INFO | Siren 0.285 0.000 0.157 ✓ +2026-06-25 18:11:22,751 | INFO | Livestock, farm animals, working animals 0.173 0.000 0.095 ✗ +2026-06-25 18:11:22,751 | INFO | Moo 0.126 0.000 0.069 ✗ +2026-06-25 18:11:22,751 | INFO | Cattle, bovinae 0.123 0.000 0.068 ✗ +2026-06-25 18:11:22,751 | INFO | → WINNER: Civil defense siren (combined=0.254) +2026-06-25 18:11:22,782 | INFO | +[1081.40s] AMBIENT | scene='' +2026-06-25 18:11:22,782 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,783 | INFO | Civil defense siren 0.520 0.000 0.286 ✓ +2026-06-25 18:11:22,783 | INFO | Siren 0.331 0.000 0.182 ✓ +2026-06-25 18:11:22,783 | INFO | Livestock, farm animals, working animals 0.044 0.000 0.024 ✗ +2026-06-25 18:11:22,783 | INFO | → WINNER: Civil defense siren (combined=0.286) +2026-06-25 18:11:22,812 | INFO | +[1081.60s] AMBIENT | scene='' +2026-06-25 18:11:22,812 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,812 | INFO | Livestock, farm animals, working animals 0.544 0.000 0.299 ✓ +2026-06-25 18:11:22,813 | INFO | Moo 0.521 0.000 0.287 ✓ +2026-06-25 18:11:22,813 | INFO | Cattle, bovinae 0.488 0.000 0.268 ✓ +2026-06-25 18:11:22,813 | INFO | Animal 0.068 0.000 0.037 ✗ +2026-06-25 18:11:22,813 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.299) +2026-06-25 18:11:22,842 | INFO | +[1081.80s] AMBIENT | scene='' +2026-06-25 18:11:22,843 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,843 | INFO | Livestock, farm animals, working animals 0.642 0.000 0.353 ✓ +2026-06-25 18:11:22,844 | INFO | Moo 0.588 0.000 0.323 ✓ +2026-06-25 18:11:22,844 | INFO | Cattle, bovinae 0.580 0.000 0.319 ✓ +2026-06-25 18:11:22,844 | INFO | Animal 0.114 0.000 0.063 ✗ +2026-06-25 18:11:22,844 | INFO | Domestic animals, pets 0.058 0.000 0.032 ✗ +2026-06-25 18:11:22,845 | INFO | Inside, small room 0.054 0.000 0.030 ✗ +2026-06-25 18:11:22,845 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.353) +2026-06-25 18:11:22,875 | INFO | +[1082.00s] AMBIENT | scene='' +2026-06-25 18:11:22,878 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,879 | INFO | Livestock, farm animals, working animals 0.503 0.000 0.277 ✓ +2026-06-25 18:11:22,879 | INFO | Moo 0.405 0.000 0.223 ✓ +2026-06-25 18:11:22,885 | INFO | Cattle, bovinae 0.389 0.000 0.214 ✓ +2026-06-25 18:11:22,885 | INFO | Whale vocalization 0.061 0.000 0.034 ✗ +2026-06-25 18:11:22,887 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:22,887 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.277) +2026-06-25 18:11:22,917 | INFO | +[1082.20s] AMBIENT | scene='' +2026-06-25 18:11:22,918 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,919 | INFO | Livestock, farm animals, working animals 0.484 0.000 0.266 ✓ +2026-06-25 18:11:22,919 | INFO | Cattle, bovinae 0.436 0.000 0.240 ✓ +2026-06-25 18:11:22,920 | INFO | Moo 0.434 0.000 0.239 ✓ +2026-06-25 18:11:22,920 | INFO | Whale vocalization 0.100 0.000 0.055 ✗ +2026-06-25 18:11:22,920 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.266) +2026-06-25 18:11:22,950 | INFO | +[1082.40s] AMBIENT | scene='' +2026-06-25 18:11:22,951 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,951 | INFO | Animal 0.090 0.000 0.050 ✗ +2026-06-25 18:11:22,951 | INFO | Water 0.081 0.000 0.044 ✗ +2026-06-25 18:11:22,951 | INFO | Whale vocalization 0.077 0.000 0.042 ✗ +2026-06-25 18:11:22,951 | INFO | Gargling 0.061 0.000 0.034 ✗ +2026-06-25 18:11:22,953 | INFO | Boat, Water vehicle 0.042 0.000 0.023 ✗ +2026-06-25 18:11:22,953 | INFO | → no winner +2026-06-25 18:11:22,982 | INFO | +[1082.60s] AMBIENT | scene='' +2026-06-25 18:11:22,982 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:22,982 | INFO | Boat, Water vehicle 0.323 0.000 0.177 ✓ +2026-06-25 18:11:22,982 | INFO | Rowboat, canoe, kayak 0.226 0.000 0.124 ✓ +2026-06-25 18:11:22,982 | INFO | Vehicle 0.148 0.000 0.082 ✗ +2026-06-25 18:11:22,984 | INFO | Water 0.108 0.000 0.059 ✗ +2026-06-25 18:11:22,984 | INFO | Stream 0.104 0.000 0.057 ✗ +2026-06-25 18:11:22,984 | INFO | Gurgling 0.077 0.000 0.043 ✗ +2026-06-25 18:11:22,984 | INFO | → WINNER: Boat, Water vehicle (combined=0.177) +2026-06-25 18:11:23,014 | INFO | +[1082.80s] AMBIENT | scene='' +2026-06-25 18:11:23,015 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,016 | INFO | Boat, Water vehicle 0.267 0.000 0.147 ✓ +2026-06-25 18:11:23,017 | INFO | Vehicle 0.175 0.000 0.097 ✗ +2026-06-25 18:11:23,017 | INFO | Rowboat, canoe, kayak 0.116 0.000 0.064 ✗ +2026-06-25 18:11:23,018 | INFO | Water 0.075 0.000 0.041 ✗ +2026-06-25 18:11:23,020 | INFO | Stream 0.071 0.000 0.039 ✗ +2026-06-25 18:11:23,021 | INFO | Animal 0.038 0.000 0.021 ✗ +2026-06-25 18:11:23,022 | INFO | → WINNER: Boat, Water vehicle (combined=0.147) +2026-06-25 18:11:23,061 | INFO | +[1087.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,062 | INFO | Toothbrush 0.129 0.000 0.071 ✗ +2026-06-25 18:11:23,062 | INFO | Scrape 0.108 0.000 0.059 ✗ +2026-06-25 18:11:23,062 | INFO | Scratch 0.085 0.000 0.047 ✗ +2026-06-25 18:11:23,062 | INFO | Chewing, mastication 0.040 0.000 0.022 ✗ +2026-06-25 18:11:23,063 | INFO | → no winner +2026-06-25 18:11:23,106 | INFO | +[1087.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,107 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,107 | INFO | Scratch 0.238 0.000 0.131 ✓ +2026-06-25 18:11:23,107 | INFO | Toothbrush 0.087 0.000 0.048 ✗ +2026-06-25 18:11:23,107 | INFO | Scrape 0.086 0.000 0.047 ✗ +2026-06-25 18:11:23,108 | INFO | Patter 0.053 0.000 0.029 ✗ +2026-06-25 18:11:23,108 | INFO | → WINNER: Scratch (combined=0.131) +2026-06-25 18:11:23,170 | INFO | +[1087.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,171 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,171 | INFO | Scrape 0.134 0.000 0.074 ✗ +2026-06-25 18:11:23,171 | INFO | Scratch 0.057 0.000 0.031 ✗ +2026-06-25 18:11:23,172 | INFO | Chewing, mastication 0.047 0.000 0.026 ✗ +2026-06-25 18:11:23,172 | INFO | Crunch 0.044 0.000 0.024 ✗ +2026-06-25 18:11:23,172 | INFO | → no winner +2026-06-25 18:11:23,233 | INFO | +[1088.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,233 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,234 | INFO | Animal 0.047 0.374 0.194 ✓ +2026-06-25 18:11:23,234 | INFO | Patter 0.160 0.000 0.088 ✗ +2026-06-25 18:11:23,234 | INFO | Scrape 0.094 0.000 0.052 ✗ +2026-06-25 18:11:23,234 | INFO | Inside, small room 0.070 0.000 0.039 ✗ +2026-06-25 18:11:23,234 | INFO | Rodents, rats, mice 0.064 0.000 0.035 ✗ +2026-06-25 18:11:23,234 | INFO | → WINNER: Animal (combined=0.194) +2026-06-25 18:11:23,287 | INFO | +[1088.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,287 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,288 | INFO | Animal 0.056 0.374 0.199 ✓ +2026-06-25 18:11:23,288 | INFO | Scrape 0.157 0.000 0.086 ✗ +2026-06-25 18:11:23,288 | INFO | Vehicle 0.140 0.000 0.077 ✗ +2026-06-25 18:11:23,288 | INFO | Boat, Water vehicle 0.043 0.000 0.023 ✗ +2026-06-25 18:11:23,289 | INFO | → WINNER: Animal (combined=0.199) +2026-06-25 18:11:23,319 | INFO | +[1088.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,320 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,322 | INFO | Animal 0.048 0.374 0.195 ✓ +2026-06-25 18:11:23,331 | INFO | Scratch 0.116 0.000 0.064 ✗ +2026-06-25 18:11:23,333 | INFO | Vehicle 0.074 0.000 0.041 ✗ +2026-06-25 18:11:23,335 | INFO | Scrape 0.070 0.000 0.038 ✗ +2026-06-25 18:11:23,335 | INFO | → WINNER: Animal (combined=0.195) +2026-06-25 18:11:23,371 | INFO | +[1088.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,373 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,375 | INFO | Animal 0.082 0.374 0.213 ✓ +2026-06-25 18:11:23,377 | INFO | Vehicle 0.076 0.000 0.042 ✗ +2026-06-25 18:11:23,377 | INFO | Boat, Water vehicle 0.047 0.000 0.026 ✗ +2026-06-25 18:11:23,377 | INFO | → WINNER: Animal (combined=0.213) +2026-06-25 18:11:23,425 | INFO | +[1090.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,425 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,426 | INFO | Animal 0.105 0.374 0.226 ✓ +2026-06-25 18:11:23,427 | INFO | Bird 0.056 0.314 0.172 ✓ +2026-06-25 18:11:23,430 | INFO | Vehicle 0.140 0.000 0.077 ✗ +2026-06-25 18:11:23,438 | INFO | Boat, Water vehicle 0.051 0.000 0.028 ✗ +2026-06-25 18:11:23,438 | INFO | → WINNER: Animal (combined=0.226) +2026-06-25 18:11:23,478 | INFO | +[1090.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,482 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,482 | INFO | Animal 0.197 0.374 0.277 ✓ +2026-06-25 18:11:23,483 | INFO | Bird 0.073 0.314 0.181 ✓ +2026-06-25 18:11:23,483 | INFO | Outside, rural or natural 0.061 0.301 0.169 ✓ +2026-06-25 18:11:23,506 | INFO | Vehicle 0.105 0.000 0.058 ✗ +2026-06-25 18:11:23,518 | INFO | Boat, Water vehicle 0.045 0.000 0.025 ✗ +2026-06-25 18:11:23,520 | INFO | → WINNER: Animal (combined=0.277) +2026-06-25 18:11:23,582 | INFO | +[1091.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,583 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,583 | INFO | Animal 0.367 0.374 0.370 ✓ +2026-06-25 18:11:23,584 | INFO | Wild animals 0.087 0.445 0.248 ✓ +2026-06-25 18:11:23,584 | INFO | Bird 0.088 0.314 0.190 ✓ +2026-06-25 18:11:23,584 | INFO | Outside, rural or natural 0.091 0.301 0.185 ✓ +2026-06-25 18:11:23,585 | INFO | Roaring cats (lions, tigers) 0.039 0.292 0.153 ✓ +2026-06-25 18:11:23,585 | INFO | Bird vocalization, bird call, bird song 0.031 0.000 0.017 ✗ +2026-06-25 18:11:23,585 | INFO | → WINNER: Animal (combined=0.370) +2026-06-25 18:11:23,648 | INFO | +[1091.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,649 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,649 | INFO | Animal 0.190 0.374 0.273 ✓ +2026-06-25 18:11:23,649 | INFO | Wild animals 0.044 0.445 0.225 ✓ +2026-06-25 18:11:23,650 | INFO | Outside, rural or natural 0.062 0.301 0.169 ✓ +2026-06-25 18:11:23,650 | INFO | Bird 0.034 0.314 0.160 ✓ +2026-06-25 18:11:23,650 | INFO | Vehicle 0.074 0.000 0.041 ✗ +2026-06-25 18:11:23,650 | INFO | → WINNER: Animal (combined=0.273) +2026-06-25 18:11:23,694 | INFO | +[1091.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,695 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,696 | INFO | Animal 0.380 0.374 0.377 ✓ +2026-06-25 18:11:23,696 | INFO | Wild animals 0.106 0.445 0.258 ✓ +2026-06-25 18:11:23,697 | INFO | Outside, rural or natural 0.104 0.301 0.193 ✓ +2026-06-25 18:11:23,697 | INFO | Frog 0.066 0.000 0.036 ✗ +2026-06-25 18:11:23,697 | INFO | Cricket 0.037 0.000 0.021 ✗ +2026-06-25 18:11:23,697 | INFO | → WINNER: Animal (combined=0.377) +2026-06-25 18:11:23,728 | INFO | +[1091.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,729 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,730 | INFO | Animal 0.593 0.374 0.494 ✓ +2026-06-25 18:11:23,730 | INFO | Wild animals 0.218 0.445 0.320 ✓ +2026-06-25 18:11:23,730 | INFO | Outside, rural or natural 0.125 0.301 0.204 ✓ +2026-06-25 18:11:23,730 | INFO | Roaring cats (lions, tigers) 0.075 0.292 0.173 ✓ +2026-06-25 18:11:23,730 | INFO | Bird 0.039 0.314 0.163 ✓ +2026-06-25 18:11:23,731 | INFO | → WINNER: Animal (combined=0.494) +2026-06-25 18:11:23,762 | INFO | +[1091.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,762 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,762 | INFO | Animal 0.917 0.374 0.672 ✓ +2026-06-25 18:11:23,762 | INFO | Wild animals 0.587 0.445 0.523 ✓ +2026-06-25 18:11:23,763 | INFO | Roaring cats (lions, tigers) 0.376 0.292 0.338 ✓ +2026-06-25 18:11:23,763 | INFO | Domestic animals, pets 0.258 0.304 0.278 ✓ +2026-06-25 18:11:23,763 | INFO | Outside, rural or natural 0.164 0.301 0.226 ✓ +2026-06-25 18:11:23,763 | INFO | Livestock, farm animals, working animals 0.043 0.405 0.206 ✓ +2026-06-25 18:11:23,763 | INFO | → WINNER: Animal (combined=0.672) +2026-06-25 18:11:23,794 | INFO | +[1092.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,794 | INFO | Animal 0.771 0.374 0.593 ✓ +2026-06-25 18:11:23,795 | INFO | Wild animals 0.465 0.445 0.456 ✓ +2026-06-25 18:11:23,795 | INFO | Roaring cats (lions, tigers) 0.257 0.292 0.273 ✓ +2026-06-25 18:11:23,795 | INFO | Livestock, farm animals, working animals 0.042 0.405 0.205 ✓ +2026-06-25 18:11:23,795 | INFO | Domestic animals, pets 0.124 0.304 0.205 ✓ +2026-06-25 18:11:23,796 | INFO | Outside, rural or natural 0.068 0.301 0.173 ✓ +2026-06-25 18:11:23,796 | INFO | → WINNER: Animal (combined=0.593) +2026-06-25 18:11:23,832 | INFO | +[1092.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,834 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,835 | INFO | Animal 0.851 0.374 0.636 ✓ +2026-06-25 18:11:23,835 | INFO | Wild animals 0.339 0.445 0.386 ✓ +2026-06-25 18:11:23,835 | INFO | Domestic animals, pets 0.312 0.304 0.309 ✓ +2026-06-25 18:11:23,836 | INFO | Roaring cats (lions, tigers) 0.184 0.292 0.232 ✓ +2026-06-25 18:11:23,836 | INFO | Dog 0.324 0.000 0.178 ✓ +2026-06-25 18:11:23,837 | INFO | Outside, rural or natural 0.064 0.301 0.170 ✓ +2026-06-25 18:11:23,837 | INFO | → WINNER: Animal (combined=0.636) +2026-06-25 18:11:23,867 | INFO | +[1092.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,867 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,867 | INFO | Animal 0.340 0.374 0.355 ✓ +2026-06-25 18:11:23,867 | INFO | Wild animals 0.175 0.445 0.296 ✓ +2026-06-25 18:11:23,868 | INFO | Roaring cats (lions, tigers) 0.105 0.292 0.189 ✓ +2026-06-25 18:11:23,868 | INFO | Music 0.128 0.000 0.071 ✗ +2026-06-25 18:11:23,868 | INFO | → WINNER: Animal (combined=0.355) +2026-06-25 18:11:23,897 | INFO | +[1092.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,898 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,899 | INFO | Animal 0.060 0.374 0.201 ✓ +2026-06-25 18:11:23,900 | INFO | Music 0.151 0.000 0.083 ✗ +2026-06-25 18:11:23,900 | INFO | → WINNER: Animal (combined=0.201) +2026-06-25 18:11:23,929 | INFO | +[1092.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,930 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,930 | INFO | Animal 0.058 0.374 0.200 ✓ +2026-06-25 18:11:23,930 | INFO | Vehicle 0.363 0.000 0.200 ✓ +2026-06-25 18:11:23,930 | INFO | Outside, rural or natural 0.062 0.301 0.169 ✓ +2026-06-25 18:11:23,931 | INFO | Car 0.141 0.000 0.078 ✗ +2026-06-25 18:11:23,931 | INFO | Boat, Water vehicle 0.059 0.000 0.032 ✗ +2026-06-25 18:11:23,931 | INFO | → WINNER: Animal (combined=0.200) +2026-06-25 18:11:23,960 | INFO | +[1093.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,961 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,961 | INFO | Animal 0.086 0.374 0.216 ✓ +2026-06-25 18:11:23,961 | INFO | Vehicle 0.298 0.000 0.164 ✓ +2026-06-25 18:11:23,962 | INFO | Car 0.075 0.000 0.041 ✗ +2026-06-25 18:11:23,962 | INFO | Motorcycle 0.068 0.000 0.037 ✗ +2026-06-25 18:11:23,963 | INFO | → WINNER: Animal (combined=0.216) +2026-06-25 18:11:23,996 | INFO | +[1094.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:23,996 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:23,996 | INFO | Animal 0.285 0.374 0.325 ✓ +2026-06-25 18:11:23,996 | INFO | Bird 0.202 0.314 0.252 ✓ +2026-06-25 18:11:23,998 | INFO | Livestock, farm animals, working animals 0.079 0.405 0.226 ✓ +2026-06-25 18:11:23,998 | INFO | Domestic animals, pets 0.068 0.304 0.174 ✓ +2026-06-25 18:11:23,998 | INFO | Chicken, rooster 0.247 0.000 0.136 ✓ +2026-06-25 18:11:23,998 | INFO | Fowl 0.149 0.000 0.082 ✗ +2026-06-25 18:11:23,998 | INFO | → WINNER: Animal (combined=0.325) +2026-06-25 18:11:24,028 | INFO | +[1095.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,028 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,028 | INFO | Animal 0.230 0.374 0.295 ✓ +2026-06-25 18:11:24,028 | INFO | Bird 0.152 0.314 0.225 ✓ +2026-06-25 18:11:24,030 | INFO | Livestock, farm animals, working animals 0.043 0.405 0.206 ✓ +2026-06-25 18:11:24,030 | INFO | Chicken, rooster 0.093 0.000 0.051 ✗ +2026-06-25 18:11:24,031 | INFO | Pigeon, dove 0.055 0.000 0.030 ✗ +2026-06-25 18:11:24,031 | INFO | Cluck 0.053 0.000 0.029 ✗ +2026-06-25 18:11:24,031 | INFO | → WINNER: Animal (combined=0.295) +2026-06-25 18:11:24,061 | INFO | +[1095.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,065 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,066 | INFO | Animal 0.232 0.374 0.296 ✓ +2026-06-25 18:11:24,066 | INFO | Bird 0.195 0.314 0.249 ✓ +2026-06-25 18:11:24,066 | INFO | Livestock, farm animals, working animals 0.064 0.405 0.217 ✓ +2026-06-25 18:11:24,068 | INFO | Domestic animals, pets 0.038 0.304 0.158 ✓ +2026-06-25 18:11:24,068 | INFO | Chicken, rooster 0.204 0.000 0.113 ✗ +2026-06-25 18:11:24,069 | INFO | Fowl 0.115 0.000 0.063 ✗ +2026-06-25 18:11:24,069 | INFO | → WINNER: Animal (combined=0.296) +2026-06-25 18:11:24,106 | INFO | +[1095.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,108 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,110 | INFO | Animal 0.299 0.374 0.333 ✓ +2026-06-25 18:11:24,110 | INFO | Bird 0.080 0.314 0.185 ✓ +2026-06-25 18:11:24,110 | INFO | Outside, rural or natural 0.080 0.301 0.179 ✓ +2026-06-25 18:11:24,110 | INFO | Radio 0.059 0.000 0.032 ✗ +2026-06-25 18:11:24,111 | INFO | → WINNER: Animal (combined=0.333) +2026-06-25 18:11:24,140 | INFO | +[1095.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,141 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,141 | INFO | Animal 0.171 0.374 0.263 ✓ +2026-06-25 18:11:24,141 | INFO | Outside, rural or natural 0.107 0.301 0.195 ✓ +2026-06-25 18:11:24,141 | INFO | Bird 0.033 0.314 0.160 ✓ +2026-06-25 18:11:24,143 | INFO | Vehicle 0.068 0.000 0.037 ✗ +2026-06-25 18:11:24,144 | INFO | Radio 0.052 0.000 0.029 ✗ +2026-06-25 18:11:24,144 | INFO | → WINNER: Animal (combined=0.263) +2026-06-25 18:11:24,176 | INFO | +[1095.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,177 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,177 | INFO | Animal 0.080 0.374 0.212 ✓ +2026-06-25 18:11:24,177 | INFO | Outside, rural or natural 0.086 0.301 0.183 ✓ +2026-06-25 18:11:24,178 | INFO | Vehicle 0.075 0.000 0.041 ✗ +2026-06-25 18:11:24,178 | INFO | Radio 0.053 0.000 0.029 ✗ +2026-06-25 18:11:24,178 | INFO | → WINNER: Animal (combined=0.212) +2026-06-25 18:11:24,209 | INFO | +[1096.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,209 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,209 | INFO | Animal 0.103 0.374 0.225 ✓ +2026-06-25 18:11:24,210 | INFO | Outside, rural or natural 0.077 0.301 0.178 ✓ +2026-06-25 18:11:24,210 | INFO | Bird 0.037 0.314 0.162 ✓ +2026-06-25 18:11:24,210 | INFO | → WINNER: Animal (combined=0.225) +2026-06-25 18:11:24,239 | INFO | +[1096.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,240 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,240 | INFO | Animal 0.097 0.374 0.222 ✓ +2026-06-25 18:11:24,240 | INFO | Bird 0.040 0.314 0.163 ✓ +2026-06-25 18:11:24,241 | INFO | Inside, small room 0.065 0.000 0.036 ✗ +2026-06-25 18:11:24,241 | INFO | → WINNER: Animal (combined=0.222) +2026-06-25 18:11:24,270 | INFO | +[1096.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,271 | INFO | Animal 0.067 0.374 0.205 ✓ +2026-06-25 18:11:24,271 | INFO | → WINNER: Animal (combined=0.205) +2026-06-25 18:11:24,302 | INFO | +[1096.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,303 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,303 | INFO | Animal 0.117 0.374 0.233 ✓ +2026-06-25 18:11:24,305 | INFO | Bird 0.053 0.314 0.171 ✓ +2026-06-25 18:11:24,305 | INFO | → WINNER: Animal (combined=0.233) +2026-06-25 18:11:24,342 | INFO | +[1096.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,343 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,343 | INFO | Animal 0.156 0.374 0.254 ✓ +2026-06-25 18:11:24,344 | INFO | Outside, rural or natural 0.066 0.301 0.172 ✓ +2026-06-25 18:11:24,344 | INFO | Bird 0.036 0.314 0.161 ✓ +2026-06-25 18:11:24,344 | INFO | Snake 0.056 0.000 0.031 ✗ +2026-06-25 18:11:24,344 | INFO | → WINNER: Animal (combined=0.254) +2026-06-25 18:11:24,375 | INFO | +[1097.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,375 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,376 | INFO | Animal 0.227 0.374 0.293 ✓ +2026-06-25 18:11:24,376 | INFO | Outside, rural or natural 0.059 0.301 0.168 ✓ +2026-06-25 18:11:24,376 | INFO | Bird 0.040 0.314 0.163 ✓ +2026-06-25 18:11:24,376 | INFO | Snake 0.063 0.000 0.035 ✗ +2026-06-25 18:11:24,376 | INFO | Fire 0.045 0.000 0.025 ✗ +2026-06-25 18:11:24,376 | INFO | → WINNER: Animal (combined=0.293) +2026-06-25 18:11:24,409 | INFO | +[1101.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,410 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,410 | INFO | Bird 0.046 0.321 0.170 ✓ +2026-06-25 18:11:24,410 | INFO | → WINNER: Bird (combined=0.170) +2026-06-25 18:11:24,440 | INFO | +[1101.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,440 | INFO | → no winner +2026-06-25 18:11:24,470 | INFO | +[1101.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,471 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,471 | INFO | Animal 0.055 0.361 0.193 ✓ +2026-06-25 18:11:24,471 | INFO | Radio 0.088 0.000 0.048 ✗ +2026-06-25 18:11:24,471 | INFO | Vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:11:24,472 | INFO | → WINNER: Animal (combined=0.193) +2026-06-25 18:11:24,503 | INFO | +[1101.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,503 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,503 | INFO | Animal 0.098 0.361 0.216 ✓ +2026-06-25 18:11:24,503 | INFO | Vehicle 0.083 0.000 0.045 ✗ +2026-06-25 18:11:24,503 | INFO | → WINNER: Animal (combined=0.216) +2026-06-25 18:11:24,541 | INFO | +[1101.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,541 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,543 | INFO | Animal 0.090 0.361 0.212 ✓ +2026-06-25 18:11:24,543 | INFO | Patter 0.069 0.000 0.038 ✗ +2026-06-25 18:11:24,543 | INFO | Vehicle 0.063 0.000 0.035 ✗ +2026-06-25 18:11:24,544 | INFO | Outside, rural or natural 0.060 0.000 0.033 ✗ +2026-06-25 18:11:24,544 | INFO | Fire 0.046 0.000 0.025 ✗ +2026-06-25 18:11:24,544 | INFO | → WINNER: Animal (combined=0.212) +2026-06-25 18:11:24,575 | INFO | +[1102.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,576 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,576 | INFO | Animal 0.125 0.361 0.232 ✓ +2026-06-25 18:11:24,576 | INFO | Insect 0.087 0.338 0.200 ✓ +2026-06-25 18:11:24,576 | INFO | Vehicle 0.096 0.000 0.053 ✗ +2026-06-25 18:11:24,577 | INFO | Patter 0.088 0.000 0.048 ✗ +2026-06-25 18:11:24,577 | INFO | Snake 0.069 0.000 0.038 ✗ +2026-06-25 18:11:24,577 | INFO | Cricket 0.042 0.000 0.023 ✗ +2026-06-25 18:11:24,577 | INFO | → WINNER: Animal (combined=0.232) +2026-06-25 18:11:24,607 | INFO | +[1102.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,608 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,608 | INFO | Animal 0.132 0.361 0.235 ✓ +2026-06-25 18:11:24,608 | INFO | Rodents, rats, mice 0.416 0.000 0.229 ✓ +2026-06-25 18:11:24,608 | INFO | Patter 0.381 0.000 0.209 ✓ +2026-06-25 18:11:24,608 | INFO | Bird 0.059 0.321 0.177 ✓ +2026-06-25 18:11:24,608 | INFO | Mouse 0.088 0.000 0.048 ✗ +2026-06-25 18:11:24,608 | INFO | → WINNER: Animal (combined=0.235) +2026-06-25 18:11:24,638 | INFO | +[1102.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,640 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,641 | INFO | Animal 0.329 0.361 0.344 ✓ +2026-06-25 18:11:24,641 | INFO | Bird 0.040 0.321 0.167 ✓ +2026-06-25 18:11:24,641 | INFO | Rodents, rats, mice 0.112 0.000 0.061 ✗ +2026-06-25 18:11:24,642 | INFO | Patter 0.104 0.000 0.057 ✗ +2026-06-25 18:11:24,642 | INFO | Duck 0.089 0.000 0.049 ✗ +2026-06-25 18:11:24,642 | INFO | → WINNER: Animal (combined=0.344) +2026-06-25 18:11:24,671 | INFO | +[1102.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,671 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,673 | INFO | Animal 0.252 0.361 0.301 ✓ +2026-06-25 18:11:24,673 | INFO | Bird 0.048 0.321 0.171 ✓ +2026-06-25 18:11:24,673 | INFO | Rodents, rats, mice 0.091 0.000 0.050 ✗ +2026-06-25 18:11:24,673 | INFO | Patter 0.074 0.000 0.041 ✗ +2026-06-25 18:11:24,673 | INFO | Mouse 0.056 0.000 0.031 ✗ +2026-06-25 18:11:24,673 | INFO | → WINNER: Animal (combined=0.301) +2026-06-25 18:11:24,704 | INFO | +[1102.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,704 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,705 | INFO | Animal 0.405 0.361 0.385 ✓ +2026-06-25 18:11:24,705 | INFO | Bird 0.064 0.321 0.180 ✓ +2026-06-25 18:11:24,705 | INFO | Duck 0.093 0.000 0.051 ✗ +2026-06-25 18:11:24,705 | INFO | Livestock, farm animals, working animals 0.076 0.000 0.042 ✗ +2026-06-25 18:11:24,706 | INFO | Sheep 0.064 0.000 0.035 ✗ +2026-06-25 18:11:24,707 | INFO | Goat 0.060 0.000 0.033 ✗ +2026-06-25 18:11:24,708 | INFO | → WINNER: Animal (combined=0.385) +2026-06-25 18:11:24,739 | INFO | +[1103.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,739 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,740 | INFO | Animal 0.175 0.361 0.259 ✓ +2026-06-25 18:11:24,740 | INFO | Bird 0.035 0.321 0.164 ✓ +2026-06-25 18:11:24,740 | INFO | → WINNER: Animal (combined=0.259) +2026-06-25 18:11:24,770 | INFO | +[1103.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,771 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,771 | INFO | Animal 0.104 0.361 0.220 ✓ +2026-06-25 18:11:24,771 | INFO | Vehicle 0.062 0.000 0.034 ✗ +2026-06-25 18:11:24,772 | INFO | → WINNER: Animal (combined=0.220) +2026-06-25 18:11:24,801 | INFO | +[1103.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,801 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,802 | INFO | Animal 0.095 0.361 0.215 ✓ +2026-06-25 18:11:24,802 | INFO | Vehicle 0.062 0.000 0.034 ✗ +2026-06-25 18:11:24,802 | INFO | → WINNER: Animal (combined=0.215) +2026-06-25 18:11:24,833 | INFO | +[1103.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,833 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,833 | INFO | Animal 0.138 0.361 0.239 ✓ +2026-06-25 18:11:24,834 | INFO | Bird 0.061 0.321 0.178 ✓ +2026-06-25 18:11:24,834 | INFO | Rodents, rats, mice 0.088 0.000 0.048 ✗ +2026-06-25 18:11:24,834 | INFO | → WINNER: Animal (combined=0.239) +2026-06-25 18:11:24,862 | INFO | +[1103.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,863 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,863 | INFO | Animal 0.170 0.361 0.256 ✓ +2026-06-25 18:11:24,863 | INFO | Bird 0.173 0.321 0.239 ✓ +2026-06-25 18:11:24,865 | INFO | Bird vocalization, bird call, bird song 0.055 0.336 0.182 ✓ +2026-06-25 18:11:24,865 | INFO | Rodents, rats, mice 0.067 0.000 0.037 ✗ +2026-06-25 18:11:24,865 | INFO | Outside, rural or natural 0.053 0.000 0.029 ✗ +2026-06-25 18:11:24,865 | INFO | → WINNER: Animal (combined=0.256) +2026-06-25 18:11:24,894 | INFO | +[1104.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,906 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,910 | INFO | Rodents, rats, mice 0.525 0.000 0.289 ✓ +2026-06-25 18:11:24,911 | INFO | Bird vocalization, bird call, bird song 0.037 0.309 0.159 ✓ +2026-06-25 18:11:24,911 | INFO | Patter 0.257 0.000 0.141 ✓ +2026-06-25 18:11:24,912 | INFO | Animal 0.147 0.000 0.081 ✗ +2026-06-25 18:11:24,913 | INFO | Bird 0.097 0.000 0.053 ✗ +2026-06-25 18:11:24,913 | INFO | Mouse 0.054 0.000 0.030 ✗ +2026-06-25 18:11:24,913 | INFO | → WINNER: Rodents, rats, mice (combined=0.289) +2026-06-25 18:11:24,941 | INFO | +[1104.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,946 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,947 | INFO | Bird vocalization, bird call, bird song 0.047 0.309 0.165 ✓ +2026-06-25 18:11:24,947 | INFO | Animal 0.138 0.000 0.076 ✗ +2026-06-25 18:11:24,948 | INFO | Bird 0.132 0.000 0.072 ✗ +2026-06-25 18:11:24,948 | INFO | Rodents, rats, mice 0.106 0.000 0.058 ✗ +2026-06-25 18:11:24,948 | INFO | Owl 0.067 0.000 0.037 ✗ +2026-06-25 18:11:24,948 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.165) +2026-06-25 18:11:24,979 | INFO | +[1104.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:24,979 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:24,980 | INFO | Bird vocalization, bird call, bird song 0.048 0.309 0.165 ✓ +2026-06-25 18:11:24,980 | INFO | Bird 0.195 0.000 0.107 ✗ +2026-06-25 18:11:24,980 | INFO | Animal 0.182 0.000 0.100 ✗ +2026-06-25 18:11:24,980 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.165) +2026-06-25 18:11:25,011 | INFO | +[1104.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,011 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,012 | INFO | Radio 0.056 0.000 0.031 ✗ +2026-06-25 18:11:25,012 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:25,012 | INFO | → no winner +2026-06-25 18:11:25,041 | INFO | +[1104.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,041 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,042 | INFO | Telephone 0.137 0.000 0.075 ✗ +2026-06-25 18:11:25,042 | INFO | Telephone dialing, DTMF 0.095 0.000 0.052 ✗ +2026-06-25 18:11:25,042 | INFO | Animal 0.056 0.000 0.031 ✗ +2026-06-25 18:11:25,042 | INFO | Radio 0.053 0.000 0.029 ✗ +2026-06-25 18:11:25,043 | INFO | → no winner +2026-06-25 18:11:25,072 | INFO | +[1105.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,073 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,073 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:11:25,073 | INFO | Vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:11:25,074 | INFO | Telephone 0.054 0.000 0.030 ✗ +2026-06-25 18:11:25,074 | INFO | → no winner +2026-06-25 18:11:25,104 | INFO | +[1105.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,105 | INFO | Animal 0.209 0.000 0.115 ✗ +2026-06-25 18:11:25,105 | INFO | Bird 0.084 0.000 0.046 ✗ +2026-06-25 18:11:25,105 | INFO | Outside, rural or natural 0.060 0.000 0.033 ✗ +2026-06-25 18:11:25,105 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:11:25,106 | INFO | → no winner +2026-06-25 18:11:25,134 | INFO | +[1105.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,135 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,135 | INFO | Insect 0.067 0.312 0.177 ✓ +2026-06-25 18:11:25,135 | INFO | Animal 0.148 0.000 0.081 ✗ +2026-06-25 18:11:25,135 | INFO | Vehicle 0.079 0.000 0.044 ✗ +2026-06-25 18:11:25,135 | INFO | Outside, rural or natural 0.057 0.000 0.032 ✗ +2026-06-25 18:11:25,137 | INFO | → WINNER: Insect (combined=0.177) +2026-06-25 18:11:25,166 | INFO | +[1105.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,167 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,167 | INFO | Insect 0.066 0.312 0.177 ✓ +2026-06-25 18:11:25,167 | INFO | Animal 0.174 0.000 0.096 ✗ +2026-06-25 18:11:25,168 | INFO | Vehicle 0.092 0.000 0.051 ✗ +2026-06-25 18:11:25,168 | INFO | Outside, rural or natural 0.070 0.000 0.039 ✗ +2026-06-25 18:11:25,168 | INFO | Bird 0.039 0.000 0.021 ✗ +2026-06-25 18:11:25,168 | INFO | → WINNER: Insect (combined=0.177) +2026-06-25 18:11:25,197 | INFO | +[1105.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,198 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,198 | INFO | Insect 0.090 0.312 0.190 ✓ +2026-06-25 18:11:25,198 | INFO | Animal 0.149 0.000 0.082 ✗ +2026-06-25 18:11:25,199 | INFO | Vehicle 0.068 0.000 0.037 ✗ +2026-06-25 18:11:25,200 | INFO | Bee, wasp, etc. 0.065 0.000 0.036 ✗ +2026-06-25 18:11:25,200 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:11:25,200 | INFO | Bird 0.034 0.000 0.019 ✗ +2026-06-25 18:11:25,200 | INFO | → WINNER: Insect (combined=0.190) +2026-06-25 18:11:25,227 | INFO | +[1106.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,231 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,233 | INFO | Rustling leaves 0.038 0.337 0.172 ✓ +2026-06-25 18:11:25,234 | INFO | Animal 0.160 0.000 0.088 ✗ +2026-06-25 18:11:25,234 | INFO | Outside, rural or natural 0.097 0.000 0.053 ✗ +2026-06-25 18:11:25,234 | INFO | Vehicle 0.068 0.000 0.038 ✗ +2026-06-25 18:11:25,235 | INFO | Bird 0.043 0.000 0.024 ✗ +2026-06-25 18:11:25,235 | INFO | → WINNER: Rustling leaves (combined=0.172) +2026-06-25 18:11:25,266 | INFO | +[1106.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,267 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,270 | INFO | Animal 0.114 0.000 0.062 ✗ +2026-06-25 18:11:25,270 | INFO | Outside, rural or natural 0.054 0.000 0.030 ✗ +2026-06-25 18:11:25,270 | INFO | → no winner +2026-06-25 18:11:25,302 | INFO | +[1106.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,303 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,303 | INFO | Animal 0.073 0.000 0.040 ✗ +2026-06-25 18:11:25,303 | INFO | → no winner +2026-06-25 18:11:25,332 | INFO | +[1106.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,333 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,334 | INFO | Silence 0.058 0.000 0.032 ✗ +2026-06-25 18:11:25,334 | INFO | → no winner +2026-06-25 18:11:25,364 | INFO | +[1106.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,365 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,365 | INFO | Silence 0.058 0.000 0.032 ✗ +2026-06-25 18:11:25,365 | INFO | → no winner +2026-06-25 18:11:25,394 | INFO | +[1107.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,395 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,395 | INFO | Animal 0.086 0.000 0.047 ✗ +2026-06-25 18:11:25,395 | INFO | → no winner +2026-06-25 18:11:25,426 | INFO | +[1107.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,427 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,427 | INFO | Animal 0.084 0.000 0.046 ✗ +2026-06-25 18:11:25,428 | INFO | Bird 0.053 0.000 0.029 ✗ +2026-06-25 18:11:25,428 | INFO | Run 0.044 0.000 0.024 ✗ +2026-06-25 18:11:25,428 | INFO | → no winner +2026-06-25 18:11:25,458 | INFO | +[1107.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,460 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,460 | INFO | Animal 0.186 0.000 0.102 ✗ +2026-06-25 18:11:25,461 | INFO | Clip-clop 0.071 0.000 0.039 ✗ +2026-06-25 18:11:25,461 | INFO | Bird 0.066 0.000 0.036 ✗ +2026-06-25 18:11:25,461 | INFO | → no winner +2026-06-25 18:11:25,493 | INFO | +[1107.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,493 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,493 | INFO | Animal 0.223 0.000 0.123 ✓ +2026-06-25 18:11:25,493 | INFO | Bird 0.096 0.000 0.053 ✗ +2026-06-25 18:11:25,494 | INFO | Vehicle 0.085 0.000 0.047 ✗ +2026-06-25 18:11:25,494 | INFO | Clip-clop 0.057 0.000 0.031 ✗ +2026-06-25 18:11:25,494 | INFO | Outside, rural or natural 0.053 0.000 0.029 ✗ +2026-06-25 18:11:25,494 | INFO | → WINNER: Animal (combined=0.123) +2026-06-25 18:11:25,522 | INFO | +[1107.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,523 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,523 | INFO | Animal 0.240 0.000 0.132 ✓ +2026-06-25 18:11:25,524 | INFO | Bird 0.153 0.000 0.084 ✗ +2026-06-25 18:11:25,524 | INFO | Vehicle 0.106 0.000 0.058 ✗ +2026-06-25 18:11:25,524 | INFO | Pigeon, dove 0.079 0.000 0.043 ✗ +2026-06-25 18:11:25,526 | INFO | Outside, rural or natural 0.072 0.000 0.040 ✗ +2026-06-25 18:11:25,526 | INFO | Clip-clop 0.052 0.000 0.029 ✗ +2026-06-25 18:11:25,526 | INFO | → WINNER: Animal (combined=0.132) +2026-06-25 18:11:25,556 | INFO | +[1108.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,556 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,556 | INFO | Animal 0.241 0.000 0.133 ✓ +2026-06-25 18:11:25,556 | INFO | Vehicle 0.102 0.000 0.056 ✗ +2026-06-25 18:11:25,557 | INFO | Clip-clop 0.093 0.000 0.051 ✗ +2026-06-25 18:11:25,557 | INFO | Outside, rural or natural 0.080 0.000 0.044 ✗ +2026-06-25 18:11:25,557 | INFO | Horse 0.055 0.000 0.030 ✗ +2026-06-25 18:11:25,558 | INFO | → WINNER: Animal (combined=0.133) +2026-06-25 18:11:25,587 | INFO | +[1108.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,587 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,587 | INFO | Vehicle 0.164 0.000 0.090 ✗ +2026-06-25 18:11:25,587 | INFO | Animal 0.151 0.000 0.083 ✗ +2026-06-25 18:11:25,588 | INFO | Clip-clop 0.080 0.000 0.044 ✗ +2026-06-25 18:11:25,588 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:11:25,588 | INFO | Boat, Water vehicle 0.039 0.000 0.022 ✗ +2026-06-25 18:11:25,588 | INFO | → no winner +2026-06-25 18:11:25,619 | INFO | +[1108.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,644 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,647 | INFO | Animal 0.157 0.000 0.086 ✗ +2026-06-25 18:11:25,652 | INFO | Vehicle 0.090 0.000 0.050 ✗ +2026-06-25 18:11:25,655 | INFO | Outside, rural or natural 0.070 0.000 0.038 ✗ +2026-06-25 18:11:25,655 | INFO | Clip-clop 0.058 0.000 0.032 ✗ +2026-06-25 18:11:25,656 | INFO | → no winner +2026-06-25 18:11:25,708 | INFO | +[1108.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,710 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,712 | INFO | Animal 0.111 0.000 0.061 ✗ +2026-06-25 18:11:25,712 | INFO | Vehicle 0.070 0.000 0.038 ✗ +2026-06-25 18:11:25,712 | INFO | Outside, rural or natural 0.061 0.000 0.034 ✗ +2026-06-25 18:11:25,712 | INFO | → no winner +2026-06-25 18:11:25,790 | INFO | +[1108.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,791 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,791 | INFO | Animal 0.512 0.000 0.281 ✓ +2026-06-25 18:11:25,792 | INFO | Sheep 0.303 0.000 0.167 ✓ +2026-06-25 18:11:25,792 | INFO | Bleat 0.275 0.000 0.151 ✓ +2026-06-25 18:11:25,792 | INFO | Goat 0.195 0.000 0.107 ✗ +2026-06-25 18:11:25,792 | INFO | Livestock, farm animals, working animals 0.102 0.000 0.056 ✗ +2026-06-25 18:11:25,793 | INFO | Bird 0.066 0.000 0.036 ✗ +2026-06-25 18:11:25,793 | INFO | → WINNER: Animal (combined=0.281) +2026-06-25 18:11:25,861 | INFO | +[1109.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,862 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,862 | INFO | Animal 0.196 0.000 0.108 ✗ +2026-06-25 18:11:25,862 | INFO | Bird 0.125 0.000 0.069 ✗ +2026-06-25 18:11:25,862 | INFO | Mouse 0.072 0.000 0.040 ✗ +2026-06-25 18:11:25,862 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:11:25,863 | INFO | → no winner +2026-06-25 18:11:25,900 | INFO | +[1109.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,901 | INFO | Animal 0.309 0.000 0.170 ✓ +2026-06-25 18:11:25,901 | INFO | Domestic animals, pets 0.081 0.000 0.044 ✗ +2026-06-25 18:11:25,901 | INFO | Cat 0.050 0.000 0.028 ✗ +2026-06-25 18:11:25,901 | INFO | → WINNER: Animal (combined=0.170) +2026-06-25 18:11:25,930 | INFO | +[1109.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,930 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,930 | INFO | Animal 0.079 0.000 0.043 ✗ +2026-06-25 18:11:25,930 | INFO | Inside, small room 0.060 0.000 0.033 ✗ +2026-06-25 18:11:25,932 | INFO | → no winner +2026-06-25 18:11:25,961 | INFO | +[1109.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,961 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,962 | INFO | Bird vocalization, bird call, bird song 0.049 0.309 0.166 ✓ +2026-06-25 18:11:25,962 | INFO | Animal 0.179 0.000 0.098 ✗ +2026-06-25 18:11:25,962 | INFO | Bird 0.144 0.000 0.079 ✗ +2026-06-25 18:11:25,962 | INFO | Music 0.098 0.000 0.054 ✗ +2026-06-25 18:11:25,962 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.166) +2026-06-25 18:11:25,993 | INFO | +[1109.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:25,994 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:25,998 | INFO | Environmental noise 0.056 0.381 0.202 ✓ +2026-06-25 18:11:25,998 | INFO | Bird vocalization, bird call, bird song 0.044 0.309 0.163 ✓ +2026-06-25 18:11:25,999 | INFO | Animal 0.281 0.000 0.155 ✓ +2026-06-25 18:11:26,000 | INFO | Bird 0.128 0.000 0.070 ✗ +2026-06-25 18:11:26,000 | INFO | Outside, rural or natural 0.098 0.000 0.054 ✗ +2026-06-25 18:11:26,000 | INFO | → WINNER: Environmental noise (combined=0.202) +2026-06-25 18:11:26,030 | INFO | +[1110.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,030 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,031 | INFO | Bird vocalization, bird call, bird song 0.035 0.346 0.175 ✓ +2026-06-25 18:11:26,032 | INFO | Animal 0.172 0.000 0.094 ✗ +2026-06-25 18:11:26,032 | INFO | Bird 0.138 0.000 0.076 ✗ +2026-06-25 18:11:26,035 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.175) +2026-06-25 18:11:26,065 | INFO | +[1110.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,066 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,066 | INFO | Animal 0.119 0.000 0.065 ✗ +2026-06-25 18:11:26,066 | INFO | Frog 0.064 0.000 0.035 ✗ +2026-06-25 18:11:26,067 | INFO | Bird 0.041 0.000 0.023 ✗ +2026-06-25 18:11:26,067 | INFO | → no winner +2026-06-25 18:11:26,096 | INFO | +[1110.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,096 | INFO | Frog 0.134 0.000 0.074 ✗ +2026-06-25 18:11:26,097 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:11:26,097 | INFO | Bird 0.042 0.000 0.023 ✗ +2026-06-25 18:11:26,097 | INFO | → no winner +2026-06-25 18:11:26,127 | INFO | +[1110.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,127 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,127 | INFO | Animal 0.083 0.000 0.045 ✗ +2026-06-25 18:11:26,128 | INFO | → no winner +2026-06-25 18:11:26,157 | INFO | +[1110.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,157 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,157 | INFO | Animal 0.057 0.000 0.031 ✗ +2026-06-25 18:11:26,158 | INFO | → no winner +2026-06-25 18:11:26,186 | INFO | +[1111.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,186 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,186 | INFO | Animal 0.100 0.000 0.055 ✗ +2026-06-25 18:11:26,186 | INFO | → no winner +2026-06-25 18:11:26,220 | INFO | +[1111.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,220 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,220 | INFO | Whistle 0.073 0.000 0.040 ✗ +2026-06-25 18:11:26,220 | INFO | Whistling 0.057 0.000 0.032 ✗ +2026-06-25 18:11:26,221 | INFO | Animal 0.042 0.000 0.023 ✗ +2026-06-25 18:11:26,225 | INFO | → no winner +2026-06-25 18:11:26,258 | INFO | +[1111.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,258 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,258 | INFO | Whistle 0.086 0.000 0.047 ✗ +2026-06-25 18:11:26,258 | INFO | Whistling 0.063 0.000 0.035 ✗ +2026-06-25 18:11:26,260 | INFO | Animal 0.062 0.000 0.034 ✗ +2026-06-25 18:11:26,260 | INFO | → no winner +2026-06-25 18:11:26,288 | INFO | +[1111.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,292 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,292 | INFO | Animal 0.090 0.000 0.050 ✗ +2026-06-25 18:11:26,292 | INFO | Bird 0.045 0.000 0.025 ✗ +2026-06-25 18:11:26,293 | INFO | → no winner +2026-06-25 18:11:26,324 | INFO | +[1111.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,324 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,324 | INFO | Animal 0.108 0.000 0.059 ✗ +2026-06-25 18:11:26,324 | INFO | Whistling 0.107 0.000 0.059 ✗ +2026-06-25 18:11:26,325 | INFO | Bird 0.069 0.000 0.038 ✗ +2026-06-25 18:11:26,325 | INFO | → no winner +2026-06-25 18:11:26,355 | INFO | +[1112.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,355 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,356 | INFO | Whistling 0.271 0.000 0.149 ✓ +2026-06-25 18:11:26,356 | INFO | Whistle 0.193 0.000 0.106 ✗ +2026-06-25 18:11:26,356 | INFO | Animal 0.073 0.000 0.040 ✗ +2026-06-25 18:11:26,356 | INFO | Bird 0.036 0.000 0.020 ✗ +2026-06-25 18:11:26,357 | INFO | → WINNER: Whistling (combined=0.149) +2026-06-25 18:11:26,387 | INFO | +[1112.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,387 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,387 | INFO | Whistling 0.159 0.000 0.087 ✗ +2026-06-25 18:11:26,388 | INFO | Animal 0.110 0.000 0.060 ✗ +2026-06-25 18:11:26,388 | INFO | Bird 0.069 0.000 0.038 ✗ +2026-06-25 18:11:26,388 | INFO | Whistle 0.066 0.000 0.036 ✗ +2026-06-25 18:11:26,388 | INFO | → no winner +2026-06-25 18:11:26,419 | INFO | +[1112.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,420 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,420 | INFO | Animal 0.168 0.000 0.092 ✗ +2026-06-25 18:11:26,420 | INFO | Whistling 0.105 0.000 0.058 ✗ +2026-06-25 18:11:26,420 | INFO | Bird 0.083 0.000 0.046 ✗ +2026-06-25 18:11:26,420 | INFO | Whistle 0.059 0.000 0.032 ✗ +2026-06-25 18:11:26,421 | INFO | Pigeon, dove 0.057 0.000 0.031 ✗ +2026-06-25 18:11:26,421 | INFO | → no winner +2026-06-25 18:11:26,450 | INFO | +[1112.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,451 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,451 | INFO | Animal 0.172 0.000 0.095 ✗ +2026-06-25 18:11:26,451 | INFO | Vehicle 0.065 0.000 0.036 ✗ +2026-06-25 18:11:26,452 | INFO | Outside, rural or natural 0.063 0.000 0.034 ✗ +2026-06-25 18:11:26,452 | INFO | Fire 0.043 0.000 0.024 ✗ +2026-06-25 18:11:26,452 | INFO | → no winner +2026-06-25 18:11:26,481 | INFO | +[1112.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,482 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,482 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:11:26,482 | INFO | Vehicle 0.085 0.000 0.047 ✗ +2026-06-25 18:11:26,483 | INFO | Outside, rural or natural 0.058 0.000 0.032 ✗ +2026-06-25 18:11:26,483 | INFO | → no winner +2026-06-25 18:11:26,512 | INFO | +[1113.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,512 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,512 | INFO | Animal 0.196 0.000 0.108 ✗ +2026-06-25 18:11:26,514 | INFO | Clip-clop 0.086 0.000 0.047 ✗ +2026-06-25 18:11:26,514 | INFO | Vehicle 0.083 0.000 0.045 ✗ +2026-06-25 18:11:26,514 | INFO | Outside, rural or natural 0.069 0.000 0.038 ✗ +2026-06-25 18:11:26,516 | INFO | Horse 0.056 0.000 0.031 ✗ +2026-06-25 18:11:26,516 | INFO | Outside, urban or manmade 0.055 0.000 0.030 ✗ +2026-06-25 18:11:26,516 | INFO | → no winner +2026-06-25 18:11:26,545 | INFO | +[1113.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,546 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,547 | INFO | Animal 0.134 0.000 0.074 ✗ +2026-06-25 18:11:26,547 | INFO | Vehicle 0.129 0.000 0.071 ✗ +2026-06-25 18:11:26,547 | INFO | Clip-clop 0.073 0.000 0.040 ✗ +2026-06-25 18:11:26,548 | INFO | Fire 0.048 0.000 0.026 ✗ +2026-06-25 18:11:26,548 | INFO | → no winner +2026-06-25 18:11:26,578 | INFO | +[1113.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,578 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,579 | INFO | Animal 0.115 0.000 0.063 ✗ +2026-06-25 18:11:26,579 | INFO | Vehicle 0.113 0.000 0.062 ✗ +2026-06-25 18:11:26,579 | INFO | Fire 0.042 0.000 0.023 ✗ +2026-06-25 18:11:26,579 | INFO | → no winner +2026-06-25 18:11:26,608 | INFO | +[1113.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,610 | INFO | Vehicle 0.146 0.000 0.080 ✗ +2026-06-25 18:11:26,610 | INFO | Animal 0.079 0.000 0.043 ✗ +2026-06-25 18:11:26,610 | INFO | Radio 0.061 0.000 0.034 ✗ +2026-06-25 18:11:26,610 | INFO | Fire 0.046 0.000 0.025 ✗ +2026-06-25 18:11:26,610 | INFO | → no winner +2026-06-25 18:11:26,640 | INFO | +[1113.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,642 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,643 | INFO | Radio 0.125 0.000 0.069 ✗ +2026-06-25 18:11:26,643 | INFO | Telephone 0.090 0.000 0.050 ✗ +2026-06-25 18:11:26,644 | INFO | Vehicle 0.087 0.000 0.048 ✗ +2026-06-25 18:11:26,644 | INFO | Animal 0.071 0.000 0.039 ✗ +2026-06-25 18:11:26,644 | INFO | Fire 0.035 0.000 0.019 ✗ +2026-06-25 18:11:26,644 | INFO | → no winner +2026-06-25 18:11:26,674 | INFO | +[1114.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,676 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,676 | INFO | Telephone 0.107 0.000 0.059 ✗ +2026-06-25 18:11:26,676 | INFO | Radio 0.090 0.000 0.049 ✗ +2026-06-25 18:11:26,679 | INFO | Vehicle 0.078 0.000 0.043 ✗ +2026-06-25 18:11:26,683 | INFO | Animal 0.067 0.000 0.037 ✗ +2026-06-25 18:11:26,685 | INFO | → no winner +2026-06-25 18:11:26,716 | INFO | +[1114.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,717 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,718 | INFO | Animal 0.273 0.000 0.150 ✓ +2026-06-25 18:11:26,719 | INFO | Frog 0.218 0.000 0.120 ✓ +2026-06-25 18:11:26,720 | INFO | Duck 0.071 0.000 0.039 ✗ +2026-06-25 18:11:26,720 | INFO | Bird 0.065 0.000 0.036 ✗ +2026-06-25 18:11:26,720 | INFO | Radio 0.054 0.000 0.029 ✗ +2026-06-25 18:11:26,722 | INFO | → WINNER: Animal (combined=0.150) +2026-06-25 18:11:26,752 | INFO | +[1114.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,753 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,753 | INFO | Insect 0.056 0.346 0.186 ✓ +2026-06-25 18:11:26,754 | INFO | Animal 0.293 0.000 0.161 ✓ +2026-06-25 18:11:26,754 | INFO | Snake 0.077 0.000 0.042 ✗ +2026-06-25 18:11:26,754 | INFO | Frog 0.068 0.000 0.037 ✗ +2026-06-25 18:11:26,754 | INFO | Vehicle 0.063 0.000 0.035 ✗ +2026-06-25 18:11:26,754 | INFO | Outside, rural or natural 0.059 0.000 0.033 ✗ +2026-06-25 18:11:26,755 | INFO | → WINNER: Insect (combined=0.186) +2026-06-25 18:11:26,785 | INFO | +[1114.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,785 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,785 | INFO | Animal 0.351 0.000 0.193 ✓ +2026-06-25 18:11:26,785 | INFO | Duck 0.148 0.000 0.082 ✗ +2026-06-25 18:11:26,786 | INFO | Frog 0.110 0.000 0.061 ✗ +2026-06-25 18:11:26,786 | INFO | Bird 0.090 0.000 0.049 ✗ +2026-06-25 18:11:26,786 | INFO | Fowl 0.066 0.000 0.036 ✗ +2026-06-25 18:11:26,787 | INFO | Quack 0.060 0.000 0.033 ✗ +2026-06-25 18:11:26,787 | INFO | → WINNER: Animal (combined=0.193) +2026-06-25 18:11:26,817 | INFO | +[1114.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,824 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,826 | INFO | Animal 0.206 0.000 0.113 ✗ +2026-06-25 18:11:26,831 | INFO | Radio 0.081 0.000 0.044 ✗ +2026-06-25 18:11:26,833 | INFO | Vehicle 0.053 0.000 0.029 ✗ +2026-06-25 18:11:26,834 | INFO | Fire 0.035 0.000 0.019 ✗ +2026-06-25 18:11:26,835 | INFO | → no winner +2026-06-25 18:11:26,886 | INFO | +[1115.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:26,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:26,902 | INFO | Radio 0.259 0.000 0.142 ✓ +2026-06-25 18:11:26,903 | INFO | Telephone 0.078 0.000 0.043 ✗ +2026-06-25 18:11:26,908 | INFO | Animal 0.077 0.000 0.043 ✗ +2026-06-25 18:11:26,920 | INFO | Vehicle 0.074 0.000 0.041 ✗ +2026-06-25 18:11:26,925 | INFO | → WINNER: Radio (combined=0.142) +2026-06-25 18:11:27,037 | INFO | +[1115.20s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:27,037 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,038 | INFO | Radio 0.161 0.000 0.088 ✗ +2026-06-25 18:11:27,041 | INFO | Animal 0.071 0.000 0.039 ✗ +2026-06-25 18:11:27,048 | INFO | Vehicle 0.067 0.000 0.037 ✗ +2026-06-25 18:11:27,053 | INFO | Telephone 0.063 0.000 0.035 ✗ +2026-06-25 18:11:27,055 | INFO | → no winner +2026-06-25 18:11:27,127 | INFO | +[1115.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:27,128 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,128 | INFO | Animal 0.138 0.000 0.076 ✗ +2026-06-25 18:11:27,128 | INFO | Radio 0.132 0.000 0.072 ✗ +2026-06-25 18:11:27,128 | INFO | Vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:11:27,129 | INFO | → no winner +2026-06-25 18:11:27,194 | INFO | +[1115.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:27,194 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,195 | INFO | Animal 0.280 0.000 0.154 ✓ +2026-06-25 18:11:27,195 | INFO | Bird 0.101 0.000 0.056 ✗ +2026-06-25 18:11:27,195 | INFO | Outside, rural or natural 0.075 0.000 0.041 ✗ +2026-06-25 18:11:27,195 | INFO | Pigeon, dove 0.054 0.000 0.030 ✗ +2026-06-25 18:11:27,195 | INFO | → WINNER: Animal (combined=0.154) +2026-06-25 18:11:27,260 | INFO | +[1115.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:27,261 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,261 | INFO | Bird vocalization, bird call, bird song 0.032 0.346 0.173 ✓ +2026-06-25 18:11:27,262 | INFO | Bird 0.151 0.000 0.083 ✗ +2026-06-25 18:11:27,262 | INFO | Pigeon, dove 0.107 0.000 0.059 ✗ +2026-06-25 18:11:27,262 | INFO | Arrow 0.096 0.000 0.053 ✗ +2026-06-25 18:11:27,262 | INFO | Vehicle 0.065 0.000 0.036 ✗ +2026-06-25 18:11:27,262 | INFO | Door 0.059 0.000 0.032 ✗ +2026-06-25 18:11:27,262 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.173) +2026-06-25 18:11:27,300 | INFO | +[1116.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,300 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,300 | INFO | Bird 0.121 0.332 0.216 ✓ +2026-06-25 18:11:27,301 | INFO | Animal 0.042 0.320 0.167 ✓ +2026-06-25 18:11:27,301 | INFO | Bird vocalization, bird call, bird song 0.029 0.330 0.164 ✓ +2026-06-25 18:11:27,301 | INFO | Pigeon, dove 0.091 0.000 0.050 ✗ +2026-06-25 18:11:27,301 | INFO | Printer 0.066 0.000 0.036 ✗ +2026-06-25 18:11:27,302 | INFO | Vehicle 0.056 0.000 0.031 ✗ +2026-06-25 18:11:27,302 | INFO | → WINNER: Bird (combined=0.216) +2026-06-25 18:11:27,330 | INFO | +[1116.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,333 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,334 | INFO | Bird 0.274 0.332 0.300 ✓ +2026-06-25 18:11:27,334 | INFO | Bird vocalization, bird call, bird song 0.071 0.330 0.188 ✓ +2026-06-25 18:11:27,334 | INFO | Animal 0.042 0.320 0.167 ✓ +2026-06-25 18:11:27,334 | INFO | Pigeon, dove 0.249 0.000 0.137 ✓ +2026-06-25 18:11:27,334 | INFO | Printer 0.205 0.000 0.113 ✗ +2026-06-25 18:11:27,334 | INFO | Coo 0.118 0.000 0.065 ✗ +2026-06-25 18:11:27,334 | INFO | → WINNER: Bird (combined=0.300) +2026-06-25 18:11:27,365 | INFO | +[1116.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,365 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,365 | INFO | Bird 0.061 0.332 0.183 ✓ +2026-06-25 18:11:27,365 | INFO | Mechanisms 0.195 0.000 0.107 ✗ +2026-06-25 18:11:27,365 | INFO | Printer 0.095 0.000 0.052 ✗ +2026-06-25 18:11:27,366 | INFO | Vehicle 0.069 0.000 0.038 ✗ +2026-06-25 18:11:27,366 | INFO | Pigeon, dove 0.067 0.000 0.037 ✗ +2026-06-25 18:11:27,366 | INFO | Pulleys 0.062 0.000 0.034 ✗ +2026-06-25 18:11:27,366 | INFO | → WINNER: Bird (combined=0.183) +2026-06-25 18:11:27,396 | INFO | +[1116.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,398 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,399 | INFO | Animal 0.092 0.320 0.194 ✓ +2026-06-25 18:11:27,399 | INFO | Bird 0.057 0.332 0.181 ✓ +2026-06-25 18:11:27,399 | INFO | Mechanisms 0.208 0.000 0.115 ✗ +2026-06-25 18:11:27,399 | INFO | Ratchet, pawl 0.106 0.000 0.059 ✗ +2026-06-25 18:11:27,400 | INFO | Gears 0.058 0.000 0.032 ✗ +2026-06-25 18:11:27,400 | INFO | Pigeon, dove 0.057 0.000 0.031 ✗ +2026-06-25 18:11:27,400 | INFO | → WINNER: Animal (combined=0.194) +2026-06-25 18:11:27,430 | INFO | +[1116.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,431 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,431 | INFO | Animal 0.247 0.320 0.280 ✓ +2026-06-25 18:11:27,432 | INFO | Bird 0.079 0.332 0.193 ✓ +2026-06-25 18:11:27,432 | INFO | Outside, rural or natural 0.052 0.308 0.167 ✓ +2026-06-25 18:11:27,432 | INFO | Radio 0.062 0.000 0.034 ✗ +2026-06-25 18:11:27,432 | INFO | → WINNER: Animal (combined=0.280) +2026-06-25 18:11:27,463 | INFO | +[1117.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,464 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,465 | INFO | Animal 0.164 0.320 0.234 ✓ +2026-06-25 18:11:27,465 | INFO | Bird 0.041 0.332 0.172 ✓ +2026-06-25 18:11:27,475 | INFO | Frog 0.079 0.000 0.043 ✗ +2026-06-25 18:11:27,478 | INFO | Radio 0.065 0.000 0.036 ✗ +2026-06-25 18:11:27,479 | INFO | → WINNER: Animal (combined=0.234) +2026-06-25 18:11:27,508 | INFO | +[1117.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,508 | INFO | Frog 0.120 0.000 0.066 ✗ +2026-06-25 18:11:27,510 | INFO | → no winner +2026-06-25 18:11:27,541 | INFO | +[1117.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,541 | INFO | → no winner +2026-06-25 18:11:27,570 | INFO | +[1117.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,571 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,571 | INFO | Animal 0.083 0.320 0.190 ✓ +2026-06-25 18:11:27,571 | INFO | → WINNER: Animal (combined=0.190) +2026-06-25 18:11:27,599 | INFO | +[1117.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,600 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,600 | INFO | Animal 0.118 0.320 0.209 ✓ +2026-06-25 18:11:27,600 | INFO | Owl 0.058 0.333 0.182 ✓ +2026-06-25 18:11:27,602 | INFO | Bird 0.036 0.332 0.169 ✓ +2026-06-25 18:11:27,602 | INFO | → WINNER: Animal (combined=0.209) +2026-06-25 18:11:27,631 | INFO | +[1118.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,631 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,631 | INFO | Animal 0.167 0.320 0.236 ✓ +2026-06-25 18:11:27,631 | INFO | Bird 0.092 0.332 0.200 ✓ +2026-06-25 18:11:27,631 | INFO | Bird vocalization, bird call, bird song 0.031 0.330 0.166 ✓ +2026-06-25 18:11:27,632 | INFO | → WINNER: Animal (combined=0.236) +2026-06-25 18:11:27,663 | INFO | +[1118.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,663 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,664 | INFO | Animal 0.218 0.320 0.264 ✓ +2026-06-25 18:11:27,664 | INFO | Bird 0.104 0.332 0.207 ✓ +2026-06-25 18:11:27,664 | INFO | Vehicle 0.058 0.000 0.032 ✗ +2026-06-25 18:11:27,664 | INFO | → WINNER: Animal (combined=0.264) +2026-06-25 18:11:27,694 | INFO | +[1118.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,696 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,696 | INFO | Animal 0.390 0.320 0.358 ✓ +2026-06-25 18:11:27,696 | INFO | Bird 0.045 0.332 0.174 ✓ +2026-06-25 18:11:27,697 | INFO | Outside, rural or natural 0.062 0.308 0.173 ✓ +2026-06-25 18:11:27,697 | INFO | Clip-clop 0.108 0.000 0.059 ✗ +2026-06-25 18:11:27,697 | INFO | Horse 0.090 0.000 0.050 ✗ +2026-06-25 18:11:27,699 | INFO | Vehicle 0.081 0.000 0.044 ✗ +2026-06-25 18:11:27,699 | INFO | → WINNER: Animal (combined=0.358) +2026-06-25 18:11:27,728 | INFO | +[1118.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,729 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,729 | INFO | Animal 0.210 0.320 0.260 ✓ +2026-06-25 18:11:27,729 | INFO | Wind 0.064 0.329 0.183 ✓ +2026-06-25 18:11:27,730 | INFO | Outside, rural or natural 0.057 0.308 0.170 ✓ +2026-06-25 18:11:27,730 | INFO | Vehicle 0.204 0.000 0.112 ✗ +2026-06-25 18:11:27,730 | INFO | Boat, Water vehicle 0.140 0.000 0.077 ✗ +2026-06-25 18:11:27,730 | INFO | Clip-clop 0.110 0.000 0.061 ✗ +2026-06-25 18:11:27,730 | INFO | → WINNER: Animal (combined=0.260) +2026-06-25 18:11:27,758 | INFO | +[1118.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,758 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,760 | INFO | Animal 0.133 0.320 0.217 ✓ +2026-06-25 18:11:27,760 | INFO | Wind 0.122 0.329 0.215 ✓ +2026-06-25 18:11:27,760 | INFO | Boat, Water vehicle 0.314 0.000 0.173 ✓ +2026-06-25 18:11:27,760 | INFO | Vehicle 0.282 0.000 0.155 ✓ +2026-06-25 18:11:27,760 | INFO | Rowboat, canoe, kayak 0.180 0.000 0.099 ✗ +2026-06-25 18:11:27,760 | INFO | Clip-clop 0.112 0.000 0.061 ✗ +2026-06-25 18:11:27,760 | INFO | → WINNER: Animal (combined=0.217) +2026-06-25 18:11:27,801 | INFO | +[1119.00s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,802 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,811 | INFO | Animal 0.194 0.320 0.250 ✓ +2026-06-25 18:11:27,817 | INFO | Bird 0.151 0.332 0.232 ✓ +2026-06-25 18:11:27,825 | INFO | Vehicle 0.140 0.000 0.077 ✗ +2026-06-25 18:11:27,825 | INFO | Boat, Water vehicle 0.091 0.000 0.050 ✗ +2026-06-25 18:11:27,827 | INFO | Pigeon, dove 0.071 0.000 0.039 ✗ +2026-06-25 18:11:27,832 | INFO | → WINNER: Animal (combined=0.250) +2026-06-25 18:11:27,865 | INFO | +[1119.20s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,866 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,866 | INFO | Animal 0.358 0.320 0.341 ✓ +2026-06-25 18:11:27,866 | INFO | Bird 0.117 0.332 0.213 ✓ +2026-06-25 18:11:27,866 | INFO | Outside, rural or natural 0.053 0.308 0.168 ✓ +2026-06-25 18:11:27,866 | INFO | Vehicle 0.111 0.000 0.061 ✗ +2026-06-25 18:11:27,866 | INFO | Sheep 0.096 0.000 0.053 ✗ +2026-06-25 18:11:27,866 | INFO | Bleat 0.067 0.000 0.037 ✗ +2026-06-25 18:11:27,868 | INFO | → WINNER: Animal (combined=0.341) +2026-06-25 18:11:27,925 | INFO | +[1119.40s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,925 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,926 | INFO | Animal 0.169 0.320 0.237 ✓ +2026-06-25 18:11:27,926 | INFO | Bird 0.153 0.332 0.233 ✓ +2026-06-25 18:11:27,926 | INFO | Vehicle 0.084 0.000 0.046 ✗ +2026-06-25 18:11:27,926 | INFO | Pigeon, dove 0.065 0.000 0.035 ✗ +2026-06-25 18:11:27,926 | INFO | Boat, Water vehicle 0.055 0.000 0.030 ✗ +2026-06-25 18:11:27,927 | INFO | → WINNER: Animal (combined=0.237) +2026-06-25 18:11:27,995 | INFO | +[1119.60s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:27,996 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:27,996 | INFO | Animal 0.182 0.320 0.244 ✓ +2026-06-25 18:11:27,996 | INFO | Bird 0.065 0.332 0.185 ✓ +2026-06-25 18:11:28,002 | INFO | Music 0.121 0.000 0.066 ✗ +2026-06-25 18:11:28,002 | INFO | Vehicle 0.079 0.000 0.043 ✗ +2026-06-25 18:11:28,003 | INFO | → WINNER: Animal (combined=0.244) +2026-06-25 18:11:28,074 | INFO | +[1119.80s] AMBIENT | scene='The image shows a group of people sitting on the ground in a forested ' +2026-06-25 18:11:28,074 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,075 | INFO | Animal 0.277 0.320 0.296 ✓ +2026-06-25 18:11:28,075 | INFO | Bird 0.129 0.332 0.220 ✓ +2026-06-25 18:11:28,075 | INFO | Bird vocalization, bird call, bird song 0.039 0.330 0.170 ✓ +2026-06-25 18:11:28,075 | INFO | Domestic animals, pets 0.042 0.000 0.023 ✗ +2026-06-25 18:11:28,076 | INFO | → WINNER: Animal (combined=0.296) +2026-06-25 18:11:28,107 | INFO | +[1123.40s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:28,107 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,107 | INFO | Insect 0.107 0.321 0.203 ✓ +2026-06-25 18:11:28,109 | INFO | Patter 0.178 0.000 0.098 ✗ +2026-06-25 18:11:28,109 | INFO | Rodents, rats, mice 0.142 0.000 0.078 ✗ +2026-06-25 18:11:28,109 | INFO | Cricket 0.133 0.000 0.073 ✗ +2026-06-25 18:11:28,109 | INFO | Animal 0.122 0.000 0.067 ✗ +2026-06-25 18:11:28,109 | INFO | Mouse 0.093 0.000 0.051 ✗ +2026-06-25 18:11:28,109 | INFO | → WINNER: Insect (combined=0.203) +2026-06-25 18:11:28,138 | INFO | +[1123.60s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:28,138 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,138 | INFO | Insect 0.197 0.321 0.253 ✓ +2026-06-25 18:11:28,138 | INFO | Cricket 0.217 0.000 0.119 ✗ +2026-06-25 18:11:28,139 | INFO | Patter 0.191 0.000 0.105 ✗ +2026-06-25 18:11:28,139 | INFO | Animal 0.171 0.000 0.094 ✗ +2026-06-25 18:11:28,139 | INFO | Rodents, rats, mice 0.153 0.000 0.084 ✗ +2026-06-25 18:11:28,139 | INFO | Mouse 0.106 0.000 0.058 ✗ +2026-06-25 18:11:28,139 | INFO | → WINNER: Insect (combined=0.253) +2026-06-25 18:11:28,170 | INFO | +[1123.80s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:28,170 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,170 | INFO | Patter 0.284 0.000 0.156 ✓ +2026-06-25 18:11:28,170 | INFO | Mouse 0.220 0.000 0.121 ✓ +2026-06-25 18:11:28,171 | INFO | Rodents, rats, mice 0.197 0.000 0.108 ✗ +2026-06-25 18:11:28,171 | INFO | Animal 0.148 0.000 0.081 ✗ +2026-06-25 18:11:28,171 | INFO | Vehicle 0.055 0.000 0.030 ✗ +2026-06-25 18:11:28,171 | INFO | Cricket 0.040 0.000 0.022 ✗ +2026-06-25 18:11:28,171 | INFO | → WINNER: Patter (combined=0.156) +2026-06-25 18:11:28,200 | INFO | +[1124.00s] AMBIENT | scene='The image shows a group of people sitting on the ground under a wooden' +2026-06-25 18:11:28,201 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,201 | INFO | Writing 0.176 0.000 0.097 ✗ +2026-06-25 18:11:28,201 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:11:28,201 | INFO | Patter 0.101 0.000 0.055 ✗ +2026-06-25 18:11:28,202 | INFO | Inside, small room 0.069 0.000 0.038 ✗ +2026-06-25 18:11:28,202 | INFO | Scratch 0.055 0.000 0.030 ✗ +2026-06-25 18:11:28,202 | INFO | → no winner +2026-06-25 18:11:28,232 | INFO | +[1132.60s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,232 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,232 | INFO | Inside, small room 0.103 0.000 0.057 ✗ +2026-06-25 18:11:28,232 | INFO | Patter 0.087 0.000 0.048 ✗ +2026-06-25 18:11:28,233 | INFO | Writing 0.074 0.000 0.041 ✗ +2026-06-25 18:11:28,233 | INFO | Animal 0.073 0.000 0.040 ✗ +2026-06-25 18:11:28,233 | INFO | → no winner +2026-06-25 18:11:28,262 | INFO | +[1132.80s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,263 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,263 | INFO | Patter 0.091 0.000 0.050 ✗ +2026-06-25 18:11:28,263 | INFO | Inside, small room 0.077 0.000 0.042 ✗ +2026-06-25 18:11:28,263 | INFO | Animal 0.044 0.000 0.024 ✗ +2026-06-25 18:11:28,263 | INFO | → no winner +2026-06-25 18:11:28,292 | INFO | +[1133.00s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,293 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,294 | INFO | Inside, small room 0.079 0.000 0.043 ✗ +2026-06-25 18:11:28,328 | INFO | Patter 0.055 0.000 0.030 ✗ +2026-06-25 18:11:28,332 | INFO | → no winner +2026-06-25 18:11:28,361 | INFO | +[1133.20s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,364 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,365 | INFO | Inside, small room 0.067 0.000 0.037 ✗ +2026-06-25 18:11:28,365 | INFO | → no winner +2026-06-25 18:11:28,395 | INFO | +[1133.40s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,395 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,395 | INFO | Mouse 0.132 0.000 0.073 ✗ +2026-06-25 18:11:28,395 | INFO | Animal 0.047 0.000 0.026 ✗ +2026-06-25 18:11:28,395 | INFO | Cricket 0.030 0.000 0.017 ✗ +2026-06-25 18:11:28,395 | INFO | → no winner +2026-06-25 18:11:28,425 | INFO | +[1133.60s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,425 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,425 | INFO | Mouse 0.144 0.000 0.079 ✗ +2026-06-25 18:11:28,425 | INFO | Animal 0.092 0.000 0.051 ✗ +2026-06-25 18:11:28,426 | INFO | Patter 0.084 0.000 0.046 ✗ +2026-06-25 18:11:28,426 | INFO | Cricket 0.083 0.000 0.046 ✗ +2026-06-25 18:11:28,426 | INFO | Insect 0.072 0.000 0.040 ✗ +2026-06-25 18:11:28,426 | INFO | Bird 0.055 0.000 0.030 ✗ +2026-06-25 18:11:28,426 | INFO | → no winner +2026-06-25 18:11:28,455 | INFO | +[1133.80s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,456 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,456 | INFO | Bird vocalization, bird call, bird song 0.043 0.313 0.165 ✓ +2026-06-25 18:11:28,456 | INFO | Animal 0.148 0.000 0.082 ✗ +2026-06-25 18:11:28,456 | INFO | Mouse 0.114 0.000 0.063 ✗ +2026-06-25 18:11:28,458 | INFO | Bird 0.098 0.000 0.054 ✗ +2026-06-25 18:11:28,458 | INFO | Patter 0.098 0.000 0.054 ✗ +2026-06-25 18:11:28,458 | INFO | Cricket 0.095 0.000 0.052 ✗ +2026-06-25 18:11:28,458 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.165) +2026-06-25 18:11:28,498 | INFO | +[1134.00s] AMBIENT | scene='The image shows a group of people sitting under a wooden structure in ' +2026-06-25 18:11:28,500 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,500 | INFO | Bird vocalization, bird call, bird song 0.034 0.313 0.160 ✓ +2026-06-25 18:11:28,501 | INFO | Animal 0.145 0.000 0.080 ✗ +2026-06-25 18:11:28,501 | INFO | Cricket 0.129 0.000 0.071 ✗ +2026-06-25 18:11:28,501 | INFO | Mouse 0.120 0.000 0.066 ✗ +2026-06-25 18:11:28,501 | INFO | Bird 0.091 0.000 0.050 ✗ +2026-06-25 18:11:28,501 | INFO | Patter 0.087 0.000 0.048 ✗ +2026-06-25 18:11:28,502 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.160) +2026-06-25 18:11:28,570 | INFO | +[1143.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,570 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,570 | INFO | Frog 0.295 0.000 0.162 ✓ +2026-06-25 18:11:28,571 | INFO | Whistle 0.082 0.000 0.045 ✗ +2026-06-25 18:11:28,571 | INFO | Croak 0.068 0.000 0.037 ✗ +2026-06-25 18:11:28,571 | INFO | Animal 0.061 0.000 0.034 ✗ +2026-06-25 18:11:28,571 | INFO | → WINNER: Frog (combined=0.162) +2026-06-25 18:11:28,637 | INFO | +[1143.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,638 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,638 | INFO | Frog 0.103 0.000 0.057 ✗ +2026-06-25 18:11:28,639 | INFO | Whistle 0.081 0.000 0.045 ✗ +2026-06-25 18:11:28,639 | INFO | Animal 0.047 0.000 0.026 ✗ +2026-06-25 18:11:28,640 | INFO | → no winner +2026-06-25 18:11:28,689 | INFO | +[1143.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,690 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,690 | INFO | Whistle 0.116 0.000 0.064 ✗ +2026-06-25 18:11:28,690 | INFO | Animal 0.090 0.000 0.049 ✗ +2026-06-25 18:11:28,690 | INFO | → no winner +2026-06-25 18:11:28,718 | INFO | +[1143.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,720 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,720 | INFO | Animal 0.050 0.000 0.028 ✗ +2026-06-25 18:11:28,720 | INFO | → no winner +2026-06-25 18:11:28,750 | INFO | +[1143.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,750 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,751 | INFO | Animal 0.219 0.000 0.120 ✓ +2026-06-25 18:11:28,751 | INFO | Domestic animals, pets 0.075 0.000 0.041 ✗ +2026-06-25 18:11:28,751 | INFO | Dog 0.055 0.000 0.030 ✗ +2026-06-25 18:11:28,751 | INFO | Bird 0.032 0.000 0.018 ✗ +2026-06-25 18:11:28,752 | INFO | → WINNER: Animal (combined=0.120) +2026-06-25 18:11:28,781 | INFO | +[1144.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,783 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,783 | INFO | Animal 0.270 0.000 0.148 ✓ +2026-06-25 18:11:28,785 | INFO | Domestic animals, pets 0.119 0.000 0.066 ✗ +2026-06-25 18:11:28,785 | INFO | Dog 0.065 0.000 0.036 ✗ +2026-06-25 18:11:28,785 | INFO | Bird 0.060 0.000 0.033 ✗ +2026-06-25 18:11:28,786 | INFO | → WINNER: Animal (combined=0.148) +2026-06-25 18:11:28,820 | INFO | +[1144.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,820 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,820 | INFO | Animal 0.134 0.000 0.074 ✗ +2026-06-25 18:11:28,820 | INFO | Mouse 0.091 0.000 0.050 ✗ +2026-06-25 18:11:28,822 | INFO | Rodents, rats, mice 0.083 0.000 0.046 ✗ +2026-06-25 18:11:28,822 | INFO | Domestic animals, pets 0.053 0.000 0.029 ✗ +2026-06-25 18:11:28,822 | INFO | Chewing, mastication 0.044 0.000 0.024 ✗ +2026-06-25 18:11:28,822 | INFO | Bird 0.033 0.000 0.018 ✗ +2026-06-25 18:11:28,822 | INFO | → no winner +2026-06-25 18:11:28,852 | INFO | +[1144.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,855 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,858 | INFO | Animal 0.066 0.000 0.036 ✗ +2026-06-25 18:11:28,864 | INFO | → no winner +2026-06-25 18:11:28,897 | INFO | +[1144.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,902 | INFO | Inside, small room 0.092 0.000 0.051 ✗ +2026-06-25 18:11:28,910 | INFO | Tick 0.089 0.000 0.049 ✗ +2026-06-25 18:11:28,914 | INFO | Tick-tock 0.085 0.000 0.047 ✗ +2026-06-25 18:11:28,915 | INFO | → no winner +2026-06-25 18:11:28,951 | INFO | +[1144.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,952 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,952 | INFO | Patter 0.089 0.000 0.049 ✗ +2026-06-25 18:11:28,953 | INFO | Inside, small room 0.068 0.000 0.037 ✗ +2026-06-25 18:11:28,953 | INFO | Animal 0.056 0.000 0.031 ✗ +2026-06-25 18:11:28,953 | INFO | → no winner +2026-06-25 18:11:28,983 | INFO | +[1145.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:28,983 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:28,983 | INFO | Patter 0.063 0.000 0.035 ✗ +2026-06-25 18:11:28,983 | INFO | Squish 0.061 0.000 0.034 ✗ +2026-06-25 18:11:28,983 | INFO | Mouse 0.056 0.000 0.031 ✗ +2026-06-25 18:11:28,985 | INFO | Animal 0.053 0.000 0.029 ✗ +2026-06-25 18:11:28,985 | INFO | → no winner +2026-06-25 18:11:29,014 | INFO | +[1145.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,015 | INFO | Patter 0.119 0.000 0.066 ✗ +2026-06-25 18:11:29,015 | INFO | Animal 0.096 0.000 0.053 ✗ +2026-06-25 18:11:29,015 | INFO | Mouse 0.083 0.000 0.045 ✗ +2026-06-25 18:11:29,015 | INFO | Squish 0.081 0.000 0.045 ✗ +2026-06-25 18:11:29,015 | INFO | Rodents, rats, mice 0.066 0.000 0.036 ✗ +2026-06-25 18:11:29,016 | INFO | Inside, small room 0.056 0.000 0.031 ✗ +2026-06-25 18:11:29,016 | INFO | → no winner +2026-06-25 18:11:29,046 | INFO | +[1145.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,047 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,047 | INFO | Animal 0.119 0.000 0.066 ✗ +2026-06-25 18:11:29,047 | INFO | Patter 0.087 0.000 0.048 ✗ +2026-06-25 18:11:29,047 | INFO | Mouse 0.073 0.000 0.040 ✗ +2026-06-25 18:11:29,047 | INFO | Rodents, rats, mice 0.066 0.000 0.036 ✗ +2026-06-25 18:11:29,048 | INFO | Domestic animals, pets 0.038 0.000 0.021 ✗ +2026-06-25 18:11:29,048 | INFO | → no winner +2026-06-25 18:11:29,077 | INFO | +[1145.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,079 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,079 | INFO | Animal 0.193 0.000 0.106 ✗ +2026-06-25 18:11:29,081 | INFO | Fowl 0.120 0.000 0.066 ✗ +2026-06-25 18:11:29,081 | INFO | Turkey 0.106 0.000 0.058 ✗ +2026-06-25 18:11:29,081 | INFO | Bird 0.092 0.000 0.050 ✗ +2026-06-25 18:11:29,082 | INFO | Rodents, rats, mice 0.086 0.000 0.048 ✗ +2026-06-25 18:11:29,082 | INFO | Gobble 0.075 0.000 0.041 ✗ +2026-06-25 18:11:29,082 | INFO | → no winner +2026-06-25 18:11:29,112 | INFO | +[1145.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,114 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,114 | INFO | Bird vocalization, bird call, bird song 0.057 0.321 0.175 ✓ +2026-06-25 18:11:29,115 | INFO | Animal 0.279 0.000 0.153 ✓ +2026-06-25 18:11:29,115 | INFO | Rodents, rats, mice 0.174 0.000 0.096 ✗ +2026-06-25 18:11:29,115 | INFO | Bird 0.136 0.000 0.075 ✗ +2026-06-25 18:11:29,115 | INFO | Patter 0.107 0.000 0.059 ✗ +2026-06-25 18:11:29,117 | INFO | Cricket 0.075 0.000 0.042 ✗ +2026-06-25 18:11:29,117 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.175) +2026-06-25 18:11:29,148 | INFO | +[1146.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,149 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,149 | INFO | Bird vocalization, bird call, bird song 0.095 0.321 0.196 ✓ +2026-06-25 18:11:29,149 | INFO | Cricket 0.180 0.000 0.099 ✗ +2026-06-25 18:11:29,150 | INFO | Bird 0.170 0.000 0.093 ✗ +2026-06-25 18:11:29,150 | INFO | Insect 0.157 0.000 0.086 ✗ +2026-06-25 18:11:29,150 | INFO | Animal 0.153 0.000 0.084 ✗ +2026-06-25 18:11:29,150 | INFO | Chirp, tweet 0.084 0.000 0.046 ✗ +2026-06-25 18:11:29,153 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.196) +2026-06-25 18:11:29,184 | INFO | +[1146.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,184 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,187 | INFO | Bird vocalization, bird call, bird song 0.073 0.321 0.184 ✓ +2026-06-25 18:11:29,187 | INFO | Animal 0.232 0.000 0.128 ✓ +2026-06-25 18:11:29,188 | INFO | Bird 0.185 0.000 0.102 ✗ +2026-06-25 18:11:29,195 | INFO | Cricket 0.092 0.000 0.051 ✗ +2026-06-25 18:11:29,195 | INFO | Rodents, rats, mice 0.077 0.000 0.043 ✗ +2026-06-25 18:11:29,200 | INFO | Insect 0.071 0.000 0.039 ✗ +2026-06-25 18:11:29,202 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.184) +2026-06-25 18:11:29,232 | INFO | +[1146.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,235 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,235 | INFO | Bird vocalization, bird call, bird song 0.092 0.321 0.195 ✓ +2026-06-25 18:11:29,235 | INFO | Bird 0.208 0.000 0.114 ✗ +2026-06-25 18:11:29,236 | INFO | Animal 0.186 0.000 0.102 ✗ +2026-06-25 18:11:29,236 | INFO | Chirp, tweet 0.086 0.000 0.048 ✗ +2026-06-25 18:11:29,236 | INFO | Outside, rural or natural 0.064 0.000 0.035 ✗ +2026-06-25 18:11:29,236 | INFO | Cricket 0.031 0.000 0.017 ✗ +2026-06-25 18:11:29,237 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.195) +2026-06-25 18:11:29,267 | INFO | +[1146.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,268 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,268 | INFO | Bird vocalization, bird call, bird song 0.071 0.321 0.183 ✓ +2026-06-25 18:11:29,268 | INFO | Bird 0.198 0.000 0.109 ✗ +2026-06-25 18:11:29,268 | INFO | Animal 0.190 0.000 0.104 ✗ +2026-06-25 18:11:29,268 | INFO | Chirp, tweet 0.069 0.000 0.038 ✗ +2026-06-25 18:11:29,268 | INFO | Chicken, rooster 0.064 0.000 0.035 ✗ +2026-06-25 18:11:29,269 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.183) +2026-06-25 18:11:29,321 | INFO | +[1146.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,322 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,322 | INFO | Bird vocalization, bird call, bird song 0.074 0.321 0.185 ✓ +2026-06-25 18:11:29,323 | INFO | Bird 0.222 0.000 0.122 ✓ +2026-06-25 18:11:29,323 | INFO | Animal 0.197 0.000 0.108 ✗ +2026-06-25 18:11:29,323 | INFO | Chicken, rooster 0.100 0.000 0.055 ✗ +2026-06-25 18:11:29,323 | INFO | Chirp, tweet 0.068 0.000 0.037 ✗ +2026-06-25 18:11:29,324 | INFO | Fowl 0.057 0.000 0.031 ✗ +2026-06-25 18:11:29,324 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.185) +2026-06-25 18:11:29,388 | INFO | +[1147.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,391 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,396 | INFO | Bird vocalization, bird call, bird song 0.045 0.321 0.169 ✓ +2026-06-25 18:11:29,401 | INFO | Animal 0.258 0.000 0.142 ✓ +2026-06-25 18:11:29,402 | INFO | Chicken, rooster 0.219 0.000 0.120 ✓ +2026-06-25 18:11:29,405 | INFO | Bird 0.205 0.000 0.113 ✗ +2026-06-25 18:11:29,405 | INFO | Cluck 0.137 0.000 0.075 ✗ +2026-06-25 18:11:29,406 | INFO | Fowl 0.114 0.000 0.063 ✗ +2026-06-25 18:11:29,407 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.169) +2026-06-25 18:11:29,470 | INFO | +[1147.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,470 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,470 | INFO | Bird vocalization, bird call, bird song 0.077 0.321 0.187 ✓ +2026-06-25 18:11:29,471 | INFO | Animal 0.291 0.000 0.160 ✓ +2026-06-25 18:11:29,471 | INFO | Bird 0.238 0.000 0.131 ✓ +2026-06-25 18:11:29,471 | INFO | Chirp, tweet 0.078 0.000 0.043 ✗ +2026-06-25 18:11:29,472 | INFO | Outside, rural or natural 0.065 0.000 0.036 ✗ +2026-06-25 18:11:29,472 | INFO | Domestic animals, pets 0.046 0.000 0.025 ✗ +2026-06-25 18:11:29,472 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.187) +2026-06-25 18:11:29,504 | INFO | +[1147.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,505 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,505 | INFO | Bird vocalization, bird call, bird song 0.076 0.321 0.186 ✓ +2026-06-25 18:11:29,505 | INFO | Animal 0.268 0.000 0.147 ✓ +2026-06-25 18:11:29,505 | INFO | Bird 0.210 0.000 0.116 ✗ +2026-06-25 18:11:29,505 | INFO | Outside, rural or natural 0.088 0.000 0.048 ✗ +2026-06-25 18:11:29,505 | INFO | Chirp, tweet 0.078 0.000 0.043 ✗ +2026-06-25 18:11:29,505 | INFO | Vehicle 0.057 0.000 0.031 ✗ +2026-06-25 18:11:29,507 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.186) +2026-06-25 18:11:29,537 | INFO | +[1147.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,540 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,540 | INFO | Bird vocalization, bird call, bird song 0.063 0.321 0.179 ✓ +2026-06-25 18:11:29,542 | INFO | Animal 0.219 0.000 0.121 ✓ +2026-06-25 18:11:29,543 | INFO | Bird 0.159 0.000 0.087 ✗ +2026-06-25 18:11:29,546 | INFO | Outside, rural or natural 0.067 0.000 0.037 ✗ +2026-06-25 18:11:29,550 | INFO | Chirp, tweet 0.063 0.000 0.034 ✗ +2026-06-25 18:11:29,565 | INFO | Insect 0.050 0.000 0.028 ✗ +2026-06-25 18:11:29,568 | INFO | → WINNER: Bird vocalization, bird call, bird song (combined=0.179) +2026-06-25 18:11:29,601 | INFO | +[1147.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,602 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,608 | INFO | Animal 0.140 0.000 0.077 ✗ +2026-06-25 18:11:29,609 | INFO | Bird 0.057 0.000 0.031 ✗ +2026-06-25 18:11:29,609 | INFO | → no winner +2026-06-25 18:11:29,642 | INFO | +[1148.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,642 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,642 | INFO | Animal 0.140 0.000 0.077 ✗ +2026-06-25 18:11:29,644 | INFO | Mouse 0.055 0.000 0.030 ✗ +2026-06-25 18:11:29,644 | INFO | Bird 0.053 0.000 0.029 ✗ +2026-06-25 18:11:29,652 | INFO | → no winner +2026-06-25 18:11:29,709 | INFO | +[1148.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,710 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,710 | INFO | Frog 0.321 0.000 0.176 ✓ +2026-06-25 18:11:29,712 | INFO | Animal 0.130 0.000 0.071 ✗ +2026-06-25 18:11:29,712 | INFO | → WINNER: Frog (combined=0.176) +2026-06-25 18:11:29,787 | INFO | +[1148.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,787 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,788 | INFO | Frog 0.202 0.000 0.111 ✗ +2026-06-25 18:11:29,788 | INFO | Animal 0.194 0.000 0.107 ✗ +2026-06-25 18:11:29,788 | INFO | Bird 0.054 0.000 0.030 ✗ +2026-06-25 18:11:29,788 | INFO | Cricket 0.036 0.000 0.020 ✗ +2026-06-25 18:11:29,789 | INFO | → no winner +2026-06-25 18:11:29,862 | INFO | +[1148.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,862 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,863 | INFO | Animal 0.102 0.000 0.056 ✗ +2026-06-25 18:11:29,863 | INFO | Cricket 0.064 0.000 0.035 ✗ +2026-06-25 18:11:29,863 | INFO | Bird 0.036 0.000 0.020 ✗ +2026-06-25 18:11:29,863 | INFO | → no winner +2026-06-25 18:11:29,900 | INFO | +[1148.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,901 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,901 | INFO | Inside, small room 0.074 0.000 0.041 ✗ +2026-06-25 18:11:29,902 | INFO | Telephone 0.065 0.000 0.036 ✗ +2026-06-25 18:11:29,902 | INFO | Animal 0.061 0.000 0.034 ✗ +2026-06-25 18:11:29,902 | INFO | → no winner +2026-06-25 18:11:29,943 | INFO | +[1149.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,946 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,946 | INFO | Telephone 0.131 0.000 0.072 ✗ +2026-06-25 18:11:29,948 | INFO | Animal 0.109 0.000 0.060 ✗ +2026-06-25 18:11:29,950 | INFO | Inside, small room 0.071 0.000 0.039 ✗ +2026-06-25 18:11:29,953 | INFO | Telephone dialing, DTMF 0.055 0.000 0.030 ✗ +2026-06-25 18:11:29,954 | INFO | → no winner +2026-06-25 18:11:29,985 | INFO | +[1149.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:29,986 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:29,990 | INFO | Animal 0.150 0.000 0.082 ✗ +2026-06-25 18:11:29,990 | INFO | Telephone 0.137 0.000 0.075 ✗ +2026-06-25 18:11:29,990 | INFO | Inside, small room 0.076 0.000 0.042 ✗ +2026-06-25 18:11:29,991 | INFO | Telephone dialing, DTMF 0.068 0.000 0.037 ✗ +2026-06-25 18:11:29,992 | INFO | Domestic animals, pets 0.049 0.000 0.027 ✗ +2026-06-25 18:11:29,992 | INFO | Bird 0.036 0.000 0.020 ✗ +2026-06-25 18:11:29,992 | INFO | → no winner +2026-06-25 18:11:30,023 | INFO | +[1149.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,023 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,024 | INFO | Animal 0.142 0.000 0.078 ✗ +2026-06-25 18:11:30,024 | INFO | Inside, small room 0.056 0.000 0.031 ✗ +2026-06-25 18:11:30,024 | INFO | Bird 0.052 0.000 0.029 ✗ +2026-06-25 18:11:30,024 | INFO | Domestic animals, pets 0.043 0.000 0.024 ✗ +2026-06-25 18:11:30,026 | INFO | → no winner +2026-06-25 18:11:30,055 | INFO | +[1149.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,056 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,056 | INFO | Animal 0.110 0.000 0.060 ✗ +2026-06-25 18:11:30,056 | INFO | Bird 0.092 0.000 0.051 ✗ +2026-06-25 18:11:30,056 | INFO | Cricket 0.070 0.000 0.038 ✗ +2026-06-25 18:11:30,057 | INFO | Owl 0.069 0.000 0.038 ✗ +2026-06-25 18:11:30,057 | INFO | → no winner +2026-06-25 18:11:30,100 | INFO | +[1149.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,101 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,101 | INFO | Inside, small room 0.058 0.000 0.032 ✗ +2026-06-25 18:11:30,101 | INFO | Bird 0.051 0.000 0.028 ✗ +2026-06-25 18:11:30,101 | INFO | Animal 0.049 0.000 0.027 ✗ +2026-06-25 18:11:30,101 | INFO | → no winner +2026-06-25 18:11:30,162 | INFO | +[1150.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,162 | INFO | Inside, small room 0.065 0.000 0.036 ✗ +2026-06-25 18:11:30,162 | INFO | Boiling 0.052 0.000 0.029 ✗ +2026-06-25 18:11:30,163 | INFO | → no winner +2026-06-25 18:11:30,223 | INFO | +[1150.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,224 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,224 | INFO | Squish 0.104 0.000 0.057 ✗ +2026-06-25 18:11:30,224 | INFO | Inside, small room 0.094 0.000 0.051 ✗ +2026-06-25 18:11:30,224 | INFO | Patter 0.059 0.000 0.032 ✗ +2026-06-25 18:11:30,224 | INFO | Water 0.039 0.000 0.021 ✗ +2026-06-25 18:11:30,225 | INFO | → no winner +2026-06-25 18:11:30,282 | INFO | +[1150.40s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,282 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,283 | INFO | Typing 0.127 0.000 0.070 ✗ +2026-06-25 18:11:30,288 | INFO | Computer keyboard 0.089 0.000 0.049 ✗ +2026-06-25 18:11:30,289 | INFO | Animal 0.080 0.000 0.044 ✗ +2026-06-25 18:11:30,292 | INFO | Inside, small room 0.056 0.000 0.030 ✗ +2026-06-25 18:11:30,293 | INFO | → no winner +2026-06-25 18:11:30,325 | INFO | +[1150.60s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,326 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,327 | INFO | Animal 0.082 0.000 0.045 ✗ +2026-06-25 18:11:30,328 | INFO | Patter 0.060 0.000 0.033 ✗ +2026-06-25 18:11:30,328 | INFO | Inside, small room 0.053 0.000 0.029 ✗ +2026-06-25 18:11:30,328 | INFO | → no winner +2026-06-25 18:11:30,359 | INFO | +[1150.80s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,359 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,359 | INFO | Animal 0.237 0.000 0.130 ✓ +2026-06-25 18:11:30,360 | INFO | Clip-clop 0.146 0.000 0.080 ✗ +2026-06-25 18:11:30,360 | INFO | Horse 0.087 0.000 0.048 ✗ +2026-06-25 18:11:30,360 | INFO | Typing 0.072 0.000 0.039 ✗ +2026-06-25 18:11:30,360 | INFO | → WINNER: Animal (combined=0.130) +2026-06-25 18:11:30,390 | INFO | +[1151.00s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,391 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,391 | INFO | Animal 0.120 0.000 0.066 ✗ +2026-06-25 18:11:30,391 | INFO | Clip-clop 0.055 0.000 0.030 ✗ +2026-06-25 18:11:30,391 | INFO | → no winner +2026-06-25 18:11:30,421 | INFO | +[1151.20s] AMBIENT | scene='The image shows two women, one wearing a white headscarf and the other' +2026-06-25 18:11:30,422 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,422 | INFO | Arrow 0.198 0.000 0.109 ✗ +2026-06-25 18:11:30,422 | INFO | Animal 0.043 0.000 0.024 ✗ +2026-06-25 18:11:30,422 | INFO | → no winner +2026-06-25 18:11:30,465 | INFO | +[1200.40s] AMBIENT | scene='The image is a still from a movie or TV show. He has a tattoo on his c' +2026-06-25 18:11:30,466 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,468 | INFO | Music 0.248 0.000 0.137 ✓ +2026-06-25 18:11:30,469 | INFO | Singing bowl 0.156 0.000 0.086 ✗ +2026-06-25 18:11:30,469 | INFO | Gong 0.146 0.000 0.081 ✗ +2026-06-25 18:11:30,470 | INFO | Musical instrument 0.082 0.000 0.045 ✗ +2026-06-25 18:11:30,470 | INFO | → WINNER: Music (combined=0.137) +2026-06-25 18:11:30,534 | INFO | +[1200.60s] AMBIENT | scene='The image is a still from a movie or TV show. He has a tattoo on his c' +2026-06-25 18:11:30,536 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,536 | INFO | Music 0.371 0.000 0.204 ✓ +2026-06-25 18:11:30,537 | INFO | Gong 0.243 0.000 0.134 ✓ +2026-06-25 18:11:30,537 | INFO | Singing bowl 0.163 0.000 0.089 ✗ +2026-06-25 18:11:30,537 | INFO | Musical instrument 0.118 0.000 0.065 ✗ +2026-06-25 18:11:30,538 | INFO | → WINNER: Music (combined=0.204) +2026-06-25 18:11:30,631 | INFO | +[1233.40s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-06-25 18:11:30,632 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,632 | INFO | Music 0.628 0.000 0.345 ✓ +2026-06-25 18:11:30,632 | INFO | Singing bowl 0.129 0.000 0.071 ✗ +2026-06-25 18:11:30,632 | INFO | Musical instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:11:30,633 | INFO | → WINNER: Music (combined=0.345) +2026-06-25 18:11:30,720 | INFO | +[1233.60s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-06-25 18:11:30,727 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,728 | INFO | Music 0.494 0.000 0.272 ✓ +2026-06-25 18:11:30,728 | INFO | Singing bowl 0.367 0.000 0.202 ✓ +2026-06-25 18:11:30,728 | INFO | Musical instrument 0.076 0.000 0.042 ✗ +2026-06-25 18:11:30,728 | INFO | → WINNER: Music (combined=0.272) +2026-06-25 18:11:30,850 | INFO | +[1233.80s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-06-25 18:11:30,852 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,852 | INFO | Singing bowl 0.415 0.000 0.228 ✓ +2026-06-25 18:11:30,852 | INFO | Music 0.397 0.000 0.219 ✓ +2026-06-25 18:11:30,853 | INFO | Musical instrument 0.067 0.000 0.037 ✗ +2026-06-25 18:11:30,853 | INFO | → WINNER: Singing bowl (combined=0.228) +2026-06-25 18:11:30,901 | INFO | +[1234.00s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-06-25 18:11:30,902 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,902 | INFO | Music 0.467 0.000 0.257 ✓ +2026-06-25 18:11:30,903 | INFO | Singing bowl 0.302 0.000 0.166 ✓ +2026-06-25 18:11:30,903 | INFO | Musical instrument 0.070 0.000 0.038 ✗ +2026-06-25 18:11:30,903 | INFO | → WINNER: Music (combined=0.257) +2026-06-25 18:11:30,933 | INFO | +[1234.20s] AMBIENT | scene='The image is a still from a movie or TV show. She is standing in front' +2026-06-25 18:11:30,933 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,933 | INFO | Singing bowl 0.347 0.000 0.191 ✓ +2026-06-25 18:11:30,934 | INFO | Chirp tone 0.061 0.314 0.175 ✓ +2026-06-25 18:11:30,934 | INFO | Music 0.192 0.000 0.106 ✗ +2026-06-25 18:11:30,934 | INFO | Tuning fork 0.055 0.000 0.030 ✗ +2026-06-25 18:11:30,934 | INFO | → WINNER: Singing bowl (combined=0.191) +2026-06-25 18:11:30,978 | INFO | +[1277.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:30,979 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:30,979 | INFO | Whale vocalization 0.213 0.278 0.242 ✓ +2026-06-25 18:11:30,980 | INFO | Animal 0.064 0.283 0.162 ✓ +2026-06-25 18:11:30,981 | INFO | Music 0.114 0.000 0.063 ✗ +2026-06-25 18:11:30,982 | INFO | Vehicle 0.078 0.000 0.043 ✗ +2026-06-25 18:11:30,982 | INFO | Boat, Water vehicle 0.070 0.000 0.039 ✗ +2026-06-25 18:11:30,983 | INFO | → WINNER: Whale vocalization (combined=0.242) +2026-06-25 18:11:31,040 | INFO | +[1277.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,042 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,045 | INFO | Whale vocalization 0.296 0.278 0.288 ✓ +2026-06-25 18:11:31,045 | INFO | Animal 0.041 0.283 0.150 ✓ +2026-06-25 18:11:31,047 | INFO | Boat, Water vehicle 0.119 0.000 0.066 ✗ +2026-06-25 18:11:31,049 | INFO | Vehicle 0.113 0.000 0.062 ✗ +2026-06-25 18:11:31,052 | INFO | Civil defense siren 0.079 0.000 0.043 ✗ +2026-06-25 18:11:31,054 | INFO | Siren 0.056 0.000 0.030 ✗ +2026-06-25 18:11:31,054 | INFO | → WINNER: Whale vocalization (combined=0.288) +2026-06-25 18:11:31,094 | INFO | +[1277.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,096 | INFO | Animal 0.104 0.283 0.184 ✓ +2026-06-25 18:11:31,096 | INFO | Whale vocalization 0.068 0.278 0.162 ✓ +2026-06-25 18:11:31,096 | INFO | → WINNER: Animal (combined=0.184) +2026-06-25 18:11:31,166 | INFO | +[1278.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,167 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,171 | INFO | Animal 0.106 0.283 0.185 ✓ +2026-06-25 18:11:31,171 | INFO | Music 0.123 0.000 0.068 ✗ +2026-06-25 18:11:31,171 | INFO | Bird 0.038 0.000 0.021 ✗ +2026-06-25 18:11:31,171 | INFO | → WINNER: Animal (combined=0.185) +2026-06-25 18:11:31,242 | INFO | +[1278.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,242 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,242 | INFO | Whale vocalization 0.174 0.278 0.221 ✓ +2026-06-25 18:11:31,242 | INFO | Music 0.343 0.000 0.189 ✓ +2026-06-25 18:11:31,243 | INFO | Animal 0.069 0.283 0.165 ✓ +2026-06-25 18:11:31,243 | INFO | Theremin 0.102 0.000 0.056 ✗ +2026-06-25 18:11:31,243 | INFO | → WINNER: Whale vocalization (combined=0.221) +2026-06-25 18:11:31,293 | INFO | +[1278.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,293 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,293 | INFO | Music 0.765 0.000 0.420 ✓ +2026-06-25 18:11:31,293 | INFO | Theremin 0.308 0.000 0.170 ✓ +2026-06-25 18:11:31,296 | INFO | Musical instrument 0.064 0.000 0.035 ✗ +2026-06-25 18:11:31,296 | INFO | Flute 0.063 0.000 0.035 ✗ +2026-06-25 18:11:31,296 | INFO | → WINNER: Music (combined=0.420) +2026-06-25 18:11:31,325 | INFO | +[1278.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,326 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,326 | INFO | Music 0.508 0.000 0.280 ✓ +2026-06-25 18:11:31,326 | INFO | Whale vocalization 0.193 0.278 0.231 ✓ +2026-06-25 18:11:31,326 | INFO | Animal 0.063 0.283 0.162 ✓ +2026-06-25 18:11:31,326 | INFO | Theremin 0.293 0.000 0.161 ✓ +2026-06-25 18:11:31,327 | INFO | Howl 0.054 0.000 0.029 ✗ +2026-06-25 18:11:31,327 | INFO | → WINNER: Music (combined=0.280) +2026-06-25 18:11:31,356 | INFO | +[1278.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,356 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,356 | INFO | Whale vocalization 0.137 0.278 0.200 ✓ +2026-06-25 18:11:31,358 | INFO | Animal 0.056 0.283 0.158 ✓ +2026-06-25 18:11:31,358 | INFO | Music 0.189 0.000 0.104 ✗ +2026-06-25 18:11:31,358 | INFO | → WINNER: Whale vocalization (combined=0.200) +2026-06-25 18:11:31,387 | INFO | +[1279.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,387 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,387 | INFO | Animal 0.080 0.283 0.172 ✓ +2026-06-25 18:11:31,388 | INFO | Whale vocalization 0.069 0.278 0.163 ✓ +2026-06-25 18:11:31,388 | INFO | Music 0.147 0.000 0.081 ✗ +2026-06-25 18:11:31,388 | INFO | Howl 0.102 0.000 0.056 ✗ +2026-06-25 18:11:31,389 | INFO | → WINNER: Animal (combined=0.172) +2026-06-25 18:11:31,418 | INFO | +[1279.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,418 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,420 | INFO | Animal 0.069 0.283 0.165 ✓ +2026-06-25 18:11:31,422 | INFO | Whale vocalization 0.070 0.278 0.163 ✓ +2026-06-25 18:11:31,422 | INFO | Music 0.164 0.000 0.090 ✗ +2026-06-25 18:11:31,422 | INFO | Howl 0.069 0.000 0.038 ✗ +2026-06-25 18:11:31,422 | INFO | Civil defense siren 0.054 0.000 0.029 ✗ +2026-06-25 18:11:31,422 | INFO | → WINNER: Animal (combined=0.165) +2026-06-25 18:11:31,452 | INFO | +[1279.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,452 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,452 | INFO | Animal 0.043 0.283 0.151 ✓ +2026-06-25 18:11:31,452 | INFO | Inside, small room 0.056 0.000 0.031 ✗ +2026-06-25 18:11:31,453 | INFO | → WINNER: Animal (combined=0.151) +2026-06-25 18:11:31,483 | INFO | +[1279.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,483 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,484 | INFO | Animal 0.073 0.283 0.167 ✓ +2026-06-25 18:11:31,484 | INFO | Music 0.187 0.000 0.103 ✗ +2026-06-25 18:11:31,484 | INFO | Howl 0.071 0.000 0.039 ✗ +2026-06-25 18:11:31,484 | INFO | Inside, small room 0.064 0.000 0.035 ✗ +2026-06-25 18:11:31,484 | INFO | Theremin 0.054 0.000 0.030 ✗ +2026-06-25 18:11:31,485 | INFO | → WINNER: Animal (combined=0.167) +2026-06-25 18:11:31,513 | INFO | +[1279.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,513 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,514 | INFO | Music 0.669 0.000 0.368 ✓ +2026-06-25 18:11:31,514 | INFO | Theremin 0.387 0.000 0.213 ✓ +2026-06-25 18:11:31,514 | INFO | Musical instrument 0.131 0.000 0.072 ✗ +2026-06-25 18:11:31,514 | INFO | Inside, small room 0.062 0.000 0.034 ✗ +2026-06-25 18:11:31,514 | INFO | → WINNER: Music (combined=0.368) +2026-06-25 18:11:31,543 | INFO | +[1280.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,544 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,544 | INFO | Music 0.838 0.000 0.461 ✓ +2026-06-25 18:11:31,545 | INFO | Theremin 0.449 0.000 0.247 ✓ +2026-06-25 18:11:31,545 | INFO | Whale vocalization 0.052 0.278 0.154 ✓ +2026-06-25 18:11:31,545 | INFO | Musical instrument 0.187 0.000 0.103 ✗ +2026-06-25 18:11:31,545 | INFO | Guitar 0.063 0.000 0.035 ✗ +2026-06-25 18:11:31,545 | INFO | → WINNER: Music (combined=0.461) +2026-06-25 18:11:31,574 | INFO | +[1280.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,577 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,577 | INFO | Music 0.646 0.000 0.355 ✓ +2026-06-25 18:11:31,578 | INFO | Animal 0.043 0.283 0.151 ✓ +2026-06-25 18:11:31,578 | INFO | Theremin 0.250 0.000 0.137 ✓ +2026-06-25 18:11:31,578 | INFO | → WINNER: Music (combined=0.355) +2026-06-25 18:11:31,607 | INFO | +[1280.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,607 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,608 | INFO | Music 0.794 0.000 0.437 ✓ +2026-06-25 18:11:31,608 | INFO | Animal 0.051 0.283 0.155 ✓ +2026-06-25 18:11:31,608 | INFO | Musical instrument 0.162 0.000 0.089 ✗ +2026-06-25 18:11:31,609 | INFO | Brass instrument 0.124 0.000 0.068 ✗ +2026-06-25 18:11:31,609 | INFO | Theremin 0.057 0.000 0.031 ✗ +2026-06-25 18:11:31,609 | INFO | Flute 0.055 0.000 0.030 ✗ +2026-06-25 18:11:31,609 | INFO | → WINNER: Music (combined=0.437) +2026-06-25 18:11:31,638 | INFO | +[1280.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,640 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,642 | INFO | Music 0.770 0.000 0.423 ✓ +2026-06-25 18:11:31,642 | INFO | Brass instrument 0.352 0.000 0.193 ✓ +2026-06-25 18:11:31,643 | INFO | French horn 0.240 0.000 0.132 ✓ +2026-06-25 18:11:31,643 | INFO | Musical instrument 0.188 0.000 0.103 ✗ +2026-06-25 18:11:31,643 | INFO | Orchestra 0.121 0.000 0.067 ✗ +2026-06-25 18:11:31,651 | INFO | Trombone 0.075 0.000 0.042 ✗ +2026-06-25 18:11:31,653 | INFO | → WINNER: Music (combined=0.423) +2026-06-25 18:11:31,690 | INFO | +[1280.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,690 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,690 | INFO | Music 0.682 0.000 0.375 ✓ +2026-06-25 18:11:31,690 | INFO | Brass instrument 0.219 0.000 0.120 ✓ +2026-06-25 18:11:31,691 | INFO | Musical instrument 0.178 0.000 0.098 ✗ +2026-06-25 18:11:31,691 | INFO | French horn 0.095 0.000 0.052 ✗ +2026-06-25 18:11:31,691 | INFO | Flute 0.085 0.000 0.047 ✗ +2026-06-25 18:11:31,691 | INFO | Wind instrument, woodwind instrument 0.084 0.000 0.046 ✗ +2026-06-25 18:11:31,692 | INFO | → WINNER: Music (combined=0.375) +2026-06-25 18:11:31,721 | INFO | +[1281.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,724 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,726 | INFO | Music 0.514 0.000 0.283 ✓ +2026-06-25 18:11:31,733 | INFO | Brass instrument 0.286 0.000 0.157 ✓ +2026-06-25 18:11:31,734 | INFO | French horn 0.180 0.000 0.099 ✗ +2026-06-25 18:11:31,735 | INFO | Wind instrument, woodwind instrument 0.164 0.000 0.090 ✗ +2026-06-25 18:11:31,735 | INFO | Musical instrument 0.149 0.000 0.082 ✗ +2026-06-25 18:11:31,736 | INFO | Trumpet 0.096 0.000 0.053 ✗ +2026-06-25 18:11:31,736 | INFO | → WINNER: Music (combined=0.283) +2026-06-25 18:11:31,793 | INFO | +[1281.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,795 | INFO | Animal 0.103 0.283 0.184 ✓ +2026-06-25 18:11:31,795 | INFO | Music 0.331 0.000 0.182 ✓ +2026-06-25 18:11:31,795 | INFO | Musical instrument 0.063 0.000 0.034 ✗ +2026-06-25 18:11:31,796 | INFO | Wind instrument, woodwind instrument 0.054 0.000 0.030 ✗ +2026-06-25 18:11:31,796 | INFO | → WINNER: Animal (combined=0.184) +2026-06-25 18:11:31,827 | INFO | +[1281.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,827 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,828 | INFO | Animal 0.203 0.283 0.239 ✓ +2026-06-25 18:11:31,828 | INFO | Whale vocalization 0.073 0.278 0.165 ✓ +2026-06-25 18:11:31,828 | INFO | Music 0.224 0.000 0.123 ✓ +2026-06-25 18:11:31,829 | INFO | Horse 0.053 0.000 0.029 ✗ +2026-06-25 18:11:31,829 | INFO | → WINNER: Animal (combined=0.239) +2026-06-25 18:11:31,860 | INFO | +[1281.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,860 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,860 | INFO | Animal 0.146 0.283 0.207 ✓ +2026-06-25 18:11:31,861 | INFO | Outside, rural or natural 0.061 0.310 0.173 ✓ +2026-06-25 18:11:31,861 | INFO | Vehicle 0.097 0.000 0.053 ✗ +2026-06-25 18:11:31,861 | INFO | Civil defense siren 0.060 0.000 0.033 ✗ +2026-06-25 18:11:31,862 | INFO | Boat, Water vehicle 0.049 0.000 0.027 ✗ +2026-06-25 18:11:31,862 | INFO | → WINNER: Animal (combined=0.207) +2026-06-25 18:11:31,921 | INFO | +[1281.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,921 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,921 | INFO | Animal 0.190 0.283 0.232 ✓ +2026-06-25 18:11:31,921 | INFO | Music 0.166 0.000 0.091 ✗ +2026-06-25 18:11:31,921 | INFO | Horse 0.063 0.000 0.035 ✗ +2026-06-25 18:11:31,923 | INFO | Vehicle 0.061 0.000 0.034 ✗ +2026-06-25 18:11:31,923 | INFO | Clip-clop 0.054 0.000 0.030 ✗ +2026-06-25 18:11:31,923 | INFO | Patter 0.054 0.000 0.030 ✗ +2026-06-25 18:11:31,923 | INFO | → WINNER: Animal (combined=0.232) +2026-06-25 18:11:31,990 | INFO | +[1282.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:31,990 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:31,990 | INFO | Music 0.329 0.000 0.181 ✓ +2026-06-25 18:11:31,990 | INFO | Animal 0.039 0.283 0.149 ✓ +2026-06-25 18:11:31,992 | INFO | Wind instrument, woodwind instrument 0.179 0.000 0.098 ✗ +2026-06-25 18:11:31,992 | INFO | Flute 0.167 0.000 0.092 ✗ +2026-06-25 18:11:31,992 | INFO | Musical instrument 0.075 0.000 0.042 ✗ +2026-06-25 18:11:31,992 | INFO | → WINNER: Music (combined=0.181) +2026-06-25 18:11:32,062 | INFO | +[1282.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,062 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,063 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:11:32,063 | INFO | Animal 0.042 0.283 0.150 ✓ +2026-06-25 18:11:32,063 | INFO | Flute 0.088 0.000 0.048 ✗ +2026-06-25 18:11:32,063 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:11:32,099 | INFO | +[1282.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,099 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,100 | INFO | Music 0.861 0.000 0.473 ✓ +2026-06-25 18:11:32,100 | INFO | Flute 0.175 0.000 0.096 ✗ +2026-06-25 18:11:32,100 | INFO | Wind instrument, woodwind instrument 0.039 0.000 0.021 ✗ +2026-06-25 18:11:32,100 | INFO | → WINNER: Music (combined=0.473) +2026-06-25 18:11:32,131 | INFO | +[1282.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,132 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,133 | INFO | Music 0.820 0.000 0.451 ✓ +2026-06-25 18:11:32,133 | INFO | Flute 0.131 0.000 0.072 ✗ +2026-06-25 18:11:32,133 | INFO | Musical instrument 0.060 0.000 0.033 ✗ +2026-06-25 18:11:32,133 | INFO | Theremin 0.052 0.000 0.029 ✗ +2026-06-25 18:11:32,133 | INFO | Wind instrument, woodwind instrument 0.032 0.000 0.018 ✗ +2026-06-25 18:11:32,133 | INFO | → WINNER: Music (combined=0.451) +2026-06-25 18:11:32,164 | INFO | +[1282.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,165 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,172 | INFO | Music 0.858 0.000 0.472 ✓ +2026-06-25 18:11:32,173 | INFO | Theremin 0.168 0.000 0.092 ✗ +2026-06-25 18:11:32,174 | INFO | → WINNER: Music (combined=0.472) +2026-06-25 18:11:32,204 | INFO | +[1283.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,205 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,205 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:11:32,205 | INFO | Flute 0.130 0.000 0.072 ✗ +2026-06-25 18:11:32,205 | INFO | Theremin 0.106 0.000 0.059 ✗ +2026-06-25 18:11:32,206 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:11:32,236 | INFO | +[1283.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,236 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,237 | INFO | Music 0.879 0.000 0.483 ✓ +2026-06-25 18:11:32,237 | INFO | Theremin 0.275 0.000 0.151 ✓ +2026-06-25 18:11:32,237 | INFO | Flute 0.101 0.000 0.055 ✗ +2026-06-25 18:11:32,238 | INFO | Musical instrument 0.081 0.000 0.045 ✗ +2026-06-25 18:11:32,238 | INFO | → WINNER: Music (combined=0.483) +2026-06-25 18:11:32,271 | INFO | +[1283.40s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,271 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,272 | INFO | Music 0.796 0.000 0.438 ✓ +2026-06-25 18:11:32,272 | INFO | Theremin 0.232 0.000 0.127 ✓ +2026-06-25 18:11:32,272 | INFO | Musical instrument 0.224 0.000 0.123 ✓ +2026-06-25 18:11:32,272 | INFO | Flute 0.218 0.000 0.120 ✗ +2026-06-25 18:11:32,273 | INFO | Wind instrument, woodwind instrument 0.093 0.000 0.051 ✗ +2026-06-25 18:11:32,273 | INFO | → WINNER: Music (combined=0.438) +2026-06-25 18:11:32,302 | INFO | +[1283.60s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,305 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,305 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:11:32,306 | INFO | Musical instrument 0.278 0.000 0.153 ✓ +2026-06-25 18:11:32,306 | INFO | Theremin 0.257 0.000 0.141 ✓ +2026-06-25 18:11:32,306 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:11:32,335 | INFO | +[1283.80s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,337 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,337 | INFO | Music 0.508 0.000 0.279 ✓ +2026-06-25 18:11:32,337 | INFO | Theremin 0.111 0.000 0.061 ✗ +2026-06-25 18:11:32,338 | INFO | Musical instrument 0.078 0.000 0.043 ✗ +2026-06-25 18:11:32,338 | INFO | → WINNER: Music (combined=0.279) +2026-06-25 18:11:32,368 | INFO | +[1284.00s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,373 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,374 | INFO | Music 0.321 0.000 0.176 ✓ +2026-06-25 18:11:32,374 | INFO | Wind instrument, woodwind instrument 0.173 0.000 0.095 ✗ +2026-06-25 18:11:32,375 | INFO | Shofar 0.125 0.000 0.069 ✗ +2026-06-25 18:11:32,375 | INFO | Theremin 0.083 0.000 0.046 ✗ +2026-06-25 18:11:32,376 | INFO | Musical instrument 0.080 0.000 0.044 ✗ +2026-06-25 18:11:32,376 | INFO | Flute 0.058 0.000 0.032 ✗ +2026-06-25 18:11:32,376 | INFO | → WINNER: Music (combined=0.176) +2026-06-25 18:11:32,406 | INFO | +[1284.20s] AMBIENT | scene='The image shows a group of four women sitting on the ground in a rural' +2026-06-25 18:11:32,407 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,407 | INFO | Music 0.637 0.000 0.350 ✓ +2026-06-25 18:11:32,407 | INFO | Musical instrument 0.178 0.000 0.098 ✗ +2026-06-25 18:11:32,408 | INFO | Wind instrument, woodwind instrument 0.163 0.000 0.090 ✗ +2026-06-25 18:11:32,408 | INFO | Flute 0.100 0.000 0.055 ✗ +2026-06-25 18:11:32,408 | INFO | Theremin 0.096 0.000 0.053 ✗ +2026-06-25 18:11:32,408 | INFO | Shofar 0.062 0.000 0.034 ✗ +2026-06-25 18:11:32,408 | INFO | → WINNER: Music (combined=0.350) +2026-06-25 18:11:32,439 | INFO | +[1284.40s] AMBIENT | scene='' +2026-06-25 18:11:32,439 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,440 | INFO | Music 0.790 0.000 0.434 ✓ +2026-06-25 18:11:32,440 | INFO | Musical instrument 0.332 0.000 0.182 ✓ +2026-06-25 18:11:32,440 | INFO | Theremin 0.250 0.000 0.137 ✓ +2026-06-25 18:11:32,440 | INFO | Wind instrument, woodwind instrument 0.179 0.000 0.099 ✗ +2026-06-25 18:11:32,440 | INFO | Flute 0.131 0.000 0.072 ✗ +2026-06-25 18:11:32,440 | INFO | Brass instrument 0.063 0.000 0.035 ✗ +2026-06-25 18:11:32,440 | INFO | → WINNER: Music (combined=0.434) +2026-06-25 18:11:32,471 | INFO | +[1284.60s] AMBIENT | scene='' +2026-06-25 18:11:32,472 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,472 | INFO | Music 0.808 0.000 0.445 ✓ +2026-06-25 18:11:32,472 | INFO | Theremin 0.356 0.000 0.196 ✓ +2026-06-25 18:11:32,472 | INFO | Musical instrument 0.316 0.000 0.174 ✓ +2026-06-25 18:11:32,473 | INFO | Flute 0.255 0.000 0.140 ✓ +2026-06-25 18:11:32,473 | INFO | Wind instrument, woodwind instrument 0.186 0.000 0.102 ✗ +2026-06-25 18:11:32,473 | INFO | Brass instrument 0.054 0.000 0.030 ✗ +2026-06-25 18:11:32,473 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:11:32,502 | INFO | +[1284.80s] AMBIENT | scene='' +2026-06-25 18:11:32,503 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,503 | INFO | Music 0.803 0.000 0.442 ✓ +2026-06-25 18:11:32,505 | INFO | Flute 0.394 0.000 0.216 ✓ +2026-06-25 18:11:32,505 | INFO | Musical instrument 0.235 0.000 0.129 ✓ +2026-06-25 18:11:32,505 | INFO | Wind instrument, woodwind instrument 0.156 0.000 0.086 ✗ +2026-06-25 18:11:32,505 | INFO | Theremin 0.068 0.000 0.037 ✗ +2026-06-25 18:11:32,506 | INFO | → WINNER: Music (combined=0.442) +2026-06-25 18:11:32,536 | INFO | +[1285.00s] AMBIENT | scene='' +2026-06-25 18:11:32,536 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,536 | INFO | Music 0.800 0.000 0.440 ✓ +2026-06-25 18:11:32,536 | INFO | Flute 0.272 0.000 0.150 ✓ +2026-06-25 18:11:32,537 | INFO | Musical instrument 0.169 0.000 0.093 ✗ +2026-06-25 18:11:32,537 | INFO | Theremin 0.151 0.000 0.083 ✗ +2026-06-25 18:11:32,537 | INFO | Wind instrument, woodwind instrument 0.117 0.000 0.065 ✗ +2026-06-25 18:11:32,537 | INFO | → WINNER: Music (combined=0.440) +2026-06-25 18:11:32,566 | INFO | +[1285.20s] AMBIENT | scene='' +2026-06-25 18:11:32,566 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,567 | INFO | Music 0.775 0.000 0.426 ✓ +2026-06-25 18:11:32,567 | INFO | Flute 0.385 0.000 0.211 ✓ +2026-06-25 18:11:32,568 | INFO | Musical instrument 0.154 0.000 0.085 ✗ +2026-06-25 18:11:32,568 | INFO | Wind instrument, woodwind instrument 0.143 0.000 0.079 ✗ +2026-06-25 18:11:32,569 | INFO | Theremin 0.088 0.000 0.048 ✗ +2026-06-25 18:11:32,569 | INFO | → WINNER: Music (combined=0.426) +2026-06-25 18:11:32,600 | INFO | +[1285.40s] AMBIENT | scene='' +2026-06-25 18:11:32,600 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,602 | INFO | Music 0.583 0.000 0.321 ✓ +2026-06-25 18:11:32,602 | INFO | Flute 0.285 0.000 0.157 ✓ +2026-06-25 18:11:32,602 | INFO | Wind instrument, woodwind instrument 0.141 0.000 0.077 ✗ +2026-06-25 18:11:32,602 | INFO | Musical instrument 0.094 0.000 0.051 ✗ +2026-06-25 18:11:32,602 | INFO | → WINNER: Music (combined=0.321) +2026-06-25 18:11:32,633 | INFO | +[1285.60s] AMBIENT | scene='' +2026-06-25 18:11:32,652 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,657 | INFO | Music 0.251 0.000 0.138 ✓ +2026-06-25 18:11:32,665 | INFO | Howl 0.131 0.000 0.072 ✗ +2026-06-25 18:11:32,665 | INFO | Animal 0.100 0.000 0.055 ✗ +2026-06-25 18:11:32,665 | INFO | Humming 0.079 0.000 0.043 ✗ +2026-06-25 18:11:32,665 | INFO | Inside, small room 0.070 0.000 0.038 ✗ +2026-06-25 18:11:32,666 | INFO | Theremin 0.069 0.000 0.038 ✗ +2026-06-25 18:11:32,666 | INFO | → WINNER: Music (combined=0.138) +2026-06-25 18:11:32,721 | INFO | +[1285.80s] AMBIENT | scene='' +2026-06-25 18:11:32,722 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,722 | INFO | Music 0.264 0.000 0.145 ✓ +2026-06-25 18:11:32,722 | INFO | Theremin 0.126 0.000 0.069 ✗ +2026-06-25 18:11:32,723 | INFO | Howl 0.116 0.000 0.064 ✗ +2026-06-25 18:11:32,723 | INFO | Animal 0.083 0.000 0.046 ✗ +2026-06-25 18:11:32,723 | INFO | Humming 0.061 0.000 0.034 ✗ +2026-06-25 18:11:32,723 | INFO | → WINNER: Music (combined=0.145) +2026-06-25 18:11:32,787 | INFO | +[1286.00s] AMBIENT | scene='' +2026-06-25 18:11:32,808 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:32,810 | INFO | Music 0.549 0.000 0.302 ✓ +2026-06-25 18:11:32,811 | INFO | Howl 0.408 0.000 0.224 ✓ +2026-06-25 18:11:32,818 | INFO | Animal 0.201 0.000 0.110 ✗ +2026-06-25 18:11:32,819 | INFO | Theremin 0.155 0.000 0.086 ✗ +2026-06-25 18:11:32,819 | INFO | Dog 0.119 0.000 0.065 ✗ +2026-06-25 18:11:32,819 | INFO | Canidae, dogs, wolves 0.112 0.000 0.062 ✗ +2026-06-25 18:11:32,819 | INFO | → WINNER: Music (combined=0.302) +2026-06-25 18:11:33,032 | INFO | +[1286.20s] AMBIENT | scene='' +2026-06-25 18:11:33,034 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,036 | INFO | Music 0.563 0.000 0.310 ✓ +2026-06-25 18:11:33,036 | INFO | Howl 0.532 0.000 0.293 ✓ +2026-06-25 18:11:33,037 | INFO | Animal 0.303 0.000 0.167 ✓ +2026-06-25 18:11:33,037 | INFO | Dog 0.223 0.000 0.123 ✓ +2026-06-25 18:11:33,037 | INFO | Domestic animals, pets 0.209 0.000 0.115 ✗ +2026-06-25 18:11:33,038 | INFO | Canidae, dogs, wolves 0.172 0.000 0.095 ✗ +2026-06-25 18:11:33,038 | INFO | → WINNER: Music (combined=0.310) +2026-06-25 18:11:33,103 | INFO | +[1286.40s] AMBIENT | scene='' +2026-06-25 18:11:33,104 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,105 | INFO | Music 0.691 0.000 0.380 ✓ +2026-06-25 18:11:33,105 | INFO | Musical instrument 0.176 0.000 0.097 ✗ +2026-06-25 18:11:33,105 | INFO | Plucked string instrument 0.119 0.000 0.065 ✗ +2026-06-25 18:11:33,106 | INFO | Guitar 0.093 0.000 0.051 ✗ +2026-06-25 18:11:33,106 | INFO | Zither 0.069 0.000 0.038 ✗ +2026-06-25 18:11:33,107 | INFO | → WINNER: Music (combined=0.380) +2026-06-25 18:11:33,137 | INFO | +[1286.60s] AMBIENT | scene='' +2026-06-25 18:11:33,141 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,141 | INFO | Music 0.503 0.000 0.276 ✓ +2026-06-25 18:11:33,143 | INFO | Musical instrument 0.124 0.000 0.068 ✗ +2026-06-25 18:11:33,143 | INFO | Wind instrument, woodwind instrument 0.070 0.000 0.038 ✗ +2026-06-25 18:11:33,143 | INFO | Shofar 0.054 0.000 0.030 ✗ +2026-06-25 18:11:33,144 | INFO | Animal 0.045 0.000 0.025 ✗ +2026-06-25 18:11:33,164 | INFO | → WINNER: Music (combined=0.276) +2026-06-25 18:11:33,579 | INFO | +[1286.80s] AMBIENT | scene='' +2026-06-25 18:11:33,580 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,580 | INFO | Music 0.512 0.000 0.282 ✓ +2026-06-25 18:11:33,580 | INFO | Musical instrument 0.130 0.000 0.071 ✗ +2026-06-25 18:11:33,581 | INFO | Guitar 0.080 0.000 0.044 ✗ +2026-06-25 18:11:33,581 | INFO | Plucked string instrument 0.077 0.000 0.042 ✗ +2026-06-25 18:11:33,581 | INFO | Animal 0.068 0.000 0.037 ✗ +2026-06-25 18:11:33,581 | INFO | Domestic animals, pets 0.044 0.000 0.024 ✗ +2026-06-25 18:11:33,581 | INFO | → WINNER: Music (combined=0.282) +2026-06-25 18:11:33,614 | INFO | +[1287.00s] AMBIENT | scene='' +2026-06-25 18:11:33,614 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,616 | INFO | Music 0.707 0.000 0.389 ✓ +2026-06-25 18:11:33,617 | INFO | Musical instrument 0.211 0.000 0.116 ✗ +2026-06-25 18:11:33,617 | INFO | Animal 0.086 0.000 0.048 ✗ +2026-06-25 18:11:33,618 | INFO | Theremin 0.063 0.000 0.035 ✗ +2026-06-25 18:11:33,618 | INFO | Domestic animals, pets 0.062 0.000 0.034 ✗ +2026-06-25 18:11:33,618 | INFO | Plucked string instrument 0.056 0.000 0.031 ✗ +2026-06-25 18:11:33,623 | INFO | → WINNER: Music (combined=0.389) +2026-06-25 18:11:33,659 | INFO | +[1287.20s] AMBIENT | scene='' +2026-06-25 18:11:33,663 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,666 | INFO | Music 0.858 0.000 0.472 ✓ +2026-06-25 18:11:33,671 | INFO | Musical instrument 0.249 0.000 0.137 ✓ +2026-06-25 18:11:33,672 | INFO | Theremin 0.162 0.000 0.089 ✗ +2026-06-25 18:11:33,673 | INFO | Plucked string instrument 0.058 0.000 0.032 ✗ +2026-06-25 18:11:33,673 | INFO | Flute 0.052 0.000 0.029 ✗ +2026-06-25 18:11:33,674 | INFO | → WINNER: Music (combined=0.472) +2026-06-25 18:11:33,703 | INFO | +[1287.40s] AMBIENT | scene='' +2026-06-25 18:11:33,706 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,706 | INFO | Music 0.869 0.000 0.478 ✓ +2026-06-25 18:11:33,706 | INFO | Theremin 0.288 0.000 0.159 ✓ +2026-06-25 18:11:33,706 | INFO | Musical instrument 0.190 0.000 0.104 ✗ +2026-06-25 18:11:33,706 | INFO | Animal 0.049 0.000 0.027 ✗ +2026-06-25 18:11:33,707 | INFO | → WINNER: Music (combined=0.478) +2026-06-25 18:11:33,737 | INFO | +[1287.60s] AMBIENT | scene='' +2026-06-25 18:11:33,737 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,737 | INFO | Music 0.823 0.000 0.453 ✓ +2026-06-25 18:11:33,738 | INFO | Theremin 0.125 0.000 0.069 ✗ +2026-06-25 18:11:33,738 | INFO | Musical instrument 0.112 0.000 0.062 ✗ +2026-06-25 18:11:33,738 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:11:33,768 | INFO | +[1287.80s] AMBIENT | scene='' +2026-06-25 18:11:33,770 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,771 | INFO | Music 0.760 0.000 0.418 ✓ +2026-06-25 18:11:33,771 | INFO | Theremin 0.194 0.000 0.107 ✗ +2026-06-25 18:11:33,772 | INFO | Musical instrument 0.114 0.000 0.063 ✗ +2026-06-25 18:11:33,774 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:11:33,840 | INFO | +[1288.00s] AMBIENT | scene='' +2026-06-25 18:11:33,843 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,848 | INFO | Music 0.329 0.000 0.181 ✓ +2026-06-25 18:11:33,866 | INFO | → WINNER: Music (combined=0.181) +2026-06-25 18:11:33,957 | INFO | +[1288.20s] AMBIENT | scene='' +2026-06-25 18:11:33,962 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:33,962 | INFO | Music 0.203 0.000 0.112 ✗ +2026-06-25 18:11:33,962 | INFO | Musical instrument 0.063 0.000 0.035 ✗ +2026-06-25 18:11:33,963 | INFO | Animal 0.041 0.000 0.022 ✗ +2026-06-25 18:11:33,963 | INFO | → no winner +2026-06-25 18:11:34,046 | INFO | +[1288.40s] AMBIENT | scene='' +2026-06-25 18:11:34,048 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,048 | INFO | Music 0.259 0.000 0.142 ✓ +2026-06-25 18:11:34,050 | INFO | Musical instrument 0.156 0.000 0.086 ✗ +2026-06-25 18:11:34,050 | INFO | Guitar 0.103 0.000 0.057 ✗ +2026-06-25 18:11:34,050 | INFO | Plucked string instrument 0.076 0.000 0.042 ✗ +2026-06-25 18:11:34,052 | INFO | Theremin 0.057 0.000 0.031 ✗ +2026-06-25 18:11:34,065 | INFO | Inside, small room 0.056 0.000 0.031 ✗ +2026-06-25 18:11:34,070 | INFO | → WINNER: Music (combined=0.142) +2026-06-25 18:11:34,103 | INFO | +[1288.60s] AMBIENT | scene='' +2026-06-25 18:11:34,106 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,106 | INFO | Music 0.510 0.000 0.280 ✓ +2026-06-25 18:11:34,108 | INFO | Musical instrument 0.287 0.000 0.158 ✓ +2026-06-25 18:11:34,120 | INFO | Theremin 0.261 0.000 0.143 ✓ +2026-06-25 18:11:34,124 | INFO | Guitar 0.142 0.000 0.078 ✗ +2026-06-25 18:11:34,124 | INFO | Plucked string instrument 0.119 0.000 0.066 ✗ +2026-06-25 18:11:34,125 | INFO | Inside, small room 0.093 0.000 0.051 ✗ +2026-06-25 18:11:34,126 | INFO | → WINNER: Music (combined=0.280) +2026-06-25 18:11:34,183 | INFO | +[1288.80s] AMBIENT | scene='' +2026-06-25 18:11:34,187 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,190 | INFO | Music 0.756 0.000 0.416 ✓ +2026-06-25 18:11:34,192 | INFO | Musical instrument 0.367 0.000 0.202 ✓ +2026-06-25 18:11:34,198 | INFO | Theremin 0.239 0.000 0.131 ✓ +2026-06-25 18:11:34,201 | INFO | Plucked string instrument 0.114 0.000 0.063 ✗ +2026-06-25 18:11:34,202 | INFO | Inside, small room 0.114 0.000 0.062 ✗ +2026-06-25 18:11:34,204 | INFO | Guitar 0.111 0.000 0.061 ✗ +2026-06-25 18:11:34,209 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:11:34,241 | INFO | +[1289.00s] AMBIENT | scene='' +2026-06-25 18:11:34,242 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,242 | INFO | Music 0.836 0.000 0.460 ✓ +2026-06-25 18:11:34,242 | INFO | Theremin 0.293 0.000 0.161 ✓ +2026-06-25 18:11:34,243 | INFO | Musical instrument 0.281 0.000 0.155 ✓ +2026-06-25 18:11:34,243 | INFO | Inside, small room 0.055 0.000 0.030 ✗ +2026-06-25 18:11:34,244 | INFO | Animal 0.050 0.000 0.028 ✗ +2026-06-25 18:11:34,244 | INFO | → WINNER: Music (combined=0.460) +2026-06-25 18:11:34,273 | INFO | +[1289.20s] AMBIENT | scene='' +2026-06-25 18:11:34,273 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,274 | INFO | Music 0.914 0.000 0.503 ✓ +2026-06-25 18:11:34,274 | INFO | Theremin 0.394 0.000 0.216 ✓ +2026-06-25 18:11:34,274 | INFO | Musical instrument 0.356 0.000 0.196 ✓ +2026-06-25 18:11:34,274 | INFO | Inside, small room 0.062 0.000 0.034 ✗ +2026-06-25 18:11:34,275 | INFO | Flute 0.053 0.000 0.029 ✗ +2026-06-25 18:11:34,276 | INFO | → WINNER: Music (combined=0.503) +2026-06-25 18:11:34,359 | INFO | +[1289.40s] AMBIENT | scene='' +2026-06-25 18:11:34,360 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,361 | INFO | Music 0.877 0.000 0.483 ✓ +2026-06-25 18:11:34,361 | INFO | Musical instrument 0.236 0.000 0.130 ✓ +2026-06-25 18:11:34,361 | INFO | Theremin 0.219 0.000 0.121 ✓ +2026-06-25 18:11:34,363 | INFO | Animal 0.196 0.000 0.108 ✗ +2026-06-25 18:11:34,370 | INFO | Howl 0.182 0.000 0.100 ✗ +2026-06-25 18:11:34,372 | INFO | Domestic animals, pets 0.151 0.000 0.083 ✗ +2026-06-25 18:11:34,372 | INFO | → WINNER: Music (combined=0.483) +2026-06-25 18:11:34,462 | INFO | +[1289.60s] AMBIENT | scene='' +2026-06-25 18:11:34,464 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,467 | INFO | Music 0.760 0.000 0.418 ✓ +2026-06-25 18:11:34,467 | INFO | Musical instrument 0.317 0.000 0.174 ✓ +2026-06-25 18:11:34,468 | INFO | Theremin 0.265 0.000 0.145 ✓ +2026-06-25 18:11:34,468 | INFO | Wind instrument, woodwind instrument 0.185 0.000 0.102 ✗ +2026-06-25 18:11:34,469 | INFO | Flute 0.147 0.000 0.081 ✗ +2026-06-25 18:11:34,469 | INFO | Shofar 0.053 0.000 0.029 ✗ +2026-06-25 18:11:34,469 | INFO | → WINNER: Music (combined=0.418) +2026-06-25 18:11:34,501 | INFO | +[1289.80s] AMBIENT | scene='' +2026-06-25 18:11:34,520 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,520 | INFO | Music 0.618 0.000 0.340 ✓ +2026-06-25 18:11:34,520 | INFO | Musical instrument 0.340 0.000 0.187 ✓ +2026-06-25 18:11:34,522 | INFO | Wind instrument, woodwind instrument 0.228 0.000 0.126 ✓ +2026-06-25 18:11:34,522 | INFO | Shofar 0.089 0.000 0.049 ✗ +2026-06-25 18:11:34,522 | INFO | Flute 0.085 0.000 0.047 ✗ +2026-06-25 18:11:34,522 | INFO | Theremin 0.080 0.000 0.044 ✗ +2026-06-25 18:11:34,522 | INFO | → WINNER: Music (combined=0.340) +2026-06-25 18:11:34,560 | INFO | +[1290.00s] AMBIENT | scene='' +2026-06-25 18:11:34,561 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,563 | INFO | Music 0.286 0.000 0.157 ✓ +2026-06-25 18:11:34,563 | INFO | Singing bowl 0.172 0.000 0.095 ✗ +2026-06-25 18:11:34,564 | INFO | Theremin 0.108 0.000 0.060 ✗ +2026-06-25 18:11:34,564 | INFO | Musical instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:11:34,564 | INFO | Howl 0.055 0.000 0.030 ✗ +2026-06-25 18:11:34,564 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:34,565 | INFO | → WINNER: Music (combined=0.157) +2026-06-25 18:11:34,609 | INFO | +[1290.20s] AMBIENT | scene='' +2026-06-25 18:11:34,610 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,622 | INFO | Music 0.328 0.000 0.181 ✓ +2026-06-25 18:11:34,627 | INFO | Theremin 0.197 0.000 0.108 ✗ +2026-06-25 18:11:34,630 | INFO | Howl 0.120 0.000 0.066 ✗ +2026-06-25 18:11:34,643 | INFO | Musical instrument 0.106 0.000 0.058 ✗ +2026-06-25 18:11:34,646 | INFO | Animal 0.069 0.000 0.038 ✗ +2026-06-25 18:11:34,650 | INFO | Wind instrument, woodwind instrument 0.065 0.000 0.036 ✗ +2026-06-25 18:11:34,662 | INFO | → WINNER: Music (combined=0.181) +2026-06-25 18:11:34,752 | INFO | +[1290.40s] AMBIENT | scene='' +2026-06-25 18:11:34,753 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,755 | INFO | Music 0.319 0.000 0.175 ✓ +2026-06-25 18:11:34,759 | INFO | Theremin 0.291 0.000 0.160 ✓ +2026-06-25 18:11:34,762 | INFO | Singing bowl 0.111 0.000 0.061 ✗ +2026-06-25 18:11:34,763 | INFO | Howl 0.093 0.000 0.051 ✗ +2026-06-25 18:11:34,764 | INFO | Musical instrument 0.088 0.000 0.049 ✗ +2026-06-25 18:11:34,764 | INFO | Animal 0.070 0.000 0.038 ✗ +2026-06-25 18:11:34,765 | INFO | → WINNER: Music (combined=0.175) +2026-06-25 18:11:34,866 | INFO | +[1290.60s] AMBIENT | scene='' +2026-06-25 18:11:34,867 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,867 | INFO | Music 0.668 0.000 0.367 ✓ +2026-06-25 18:11:34,867 | INFO | Wind instrument, woodwind instrument 0.323 0.000 0.178 ✓ +2026-06-25 18:11:34,868 | INFO | Flute 0.299 0.000 0.165 ✓ +2026-06-25 18:11:34,868 | INFO | Musical instrument 0.232 0.000 0.127 ✓ +2026-06-25 18:11:34,868 | INFO | Theremin 0.087 0.000 0.048 ✗ +2026-06-25 18:11:34,869 | INFO | Shofar 0.080 0.000 0.044 ✗ +2026-06-25 18:11:34,869 | INFO | → WINNER: Music (combined=0.367) +2026-06-25 18:11:34,904 | INFO | +[1290.80s] AMBIENT | scene='' +2026-06-25 18:11:34,909 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:34,916 | INFO | Wind instrument, woodwind instrument 0.536 0.000 0.295 ✓ +2026-06-25 18:11:34,918 | INFO | Music 0.372 0.000 0.205 ✓ +2026-06-25 18:11:34,920 | INFO | Shofar 0.303 0.000 0.167 ✓ +2026-06-25 18:11:34,920 | INFO | Flute 0.253 0.000 0.139 ✓ +2026-06-25 18:11:34,920 | INFO | Musical instrument 0.164 0.000 0.090 ✗ +2026-06-25 18:11:34,921 | INFO | Animal 0.072 0.000 0.040 ✗ +2026-06-25 18:11:34,923 | INFO | → WINNER: Wind instrument, woodwind instrument (combined=0.295) +2026-06-25 18:11:35,054 | INFO | +[1291.00s] AMBIENT | scene='' +2026-06-25 18:11:35,055 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,055 | INFO | Music 0.396 0.000 0.218 ✓ +2026-06-25 18:11:35,057 | INFO | Wind instrument, woodwind instrument 0.393 0.000 0.216 ✓ +2026-06-25 18:11:35,059 | INFO | Shofar 0.250 0.000 0.138 ✓ +2026-06-25 18:11:35,062 | INFO | Musical instrument 0.130 0.000 0.072 ✗ +2026-06-25 18:11:35,062 | INFO | Flute 0.123 0.000 0.068 ✗ +2026-06-25 18:11:35,062 | INFO | Brass instrument 0.061 0.000 0.034 ✗ +2026-06-25 18:11:35,062 | INFO | → WINNER: Music (combined=0.218) +2026-06-25 18:11:35,095 | INFO | +[1291.20s] AMBIENT | scene='' +2026-06-25 18:11:35,098 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,114 | INFO | Music 0.322 0.000 0.177 ✓ +2026-06-25 18:11:35,116 | INFO | Wind instrument, woodwind instrument 0.306 0.000 0.168 ✓ +2026-06-25 18:11:35,118 | INFO | Shofar 0.238 0.000 0.131 ✓ +2026-06-25 18:11:35,118 | INFO | Musical instrument 0.109 0.000 0.060 ✗ +2026-06-25 18:11:35,118 | INFO | Theremin 0.065 0.000 0.036 ✗ +2026-06-25 18:11:35,118 | INFO | → WINNER: Music (combined=0.177) +2026-06-25 18:11:35,160 | INFO | +[1291.40s] AMBIENT | scene='' +2026-06-25 18:11:35,162 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,164 | INFO | Music 0.329 0.000 0.181 ✓ +2026-06-25 18:11:35,164 | INFO | Musical instrument 0.113 0.000 0.062 ✗ +2026-06-25 18:11:35,165 | INFO | Wind instrument, woodwind instrument 0.100 0.000 0.055 ✗ +2026-06-25 18:11:35,169 | INFO | Shofar 0.099 0.000 0.054 ✗ +2026-06-25 18:11:35,172 | INFO | Animal 0.049 0.000 0.027 ✗ +2026-06-25 18:11:35,172 | INFO | → WINNER: Music (combined=0.181) +2026-06-25 18:11:35,215 | INFO | +[1291.60s] AMBIENT | scene='' +2026-06-25 18:11:35,220 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,222 | INFO | Music 0.548 0.000 0.301 ✓ +2026-06-25 18:11:35,224 | INFO | Theremin 0.257 0.000 0.141 ✓ +2026-06-25 18:11:35,230 | INFO | Musical instrument 0.146 0.000 0.081 ✗ +2026-06-25 18:11:35,232 | INFO | Wind instrument, woodwind instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:11:35,234 | INFO | Shofar 0.079 0.000 0.043 ✗ +2026-06-25 18:11:35,234 | INFO | → WINNER: Music (combined=0.301) +2026-06-25 18:11:35,330 | INFO | +[1291.80s] AMBIENT | scene='' +2026-06-25 18:11:35,332 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,333 | INFO | Music 0.612 0.000 0.336 ✓ +2026-06-25 18:11:35,334 | INFO | Theremin 0.166 0.000 0.091 ✗ +2026-06-25 18:11:35,335 | INFO | Whale vocalization 0.140 0.000 0.077 ✗ +2026-06-25 18:11:35,335 | INFO | Musical instrument 0.080 0.000 0.044 ✗ +2026-06-25 18:11:35,336 | INFO | → WINNER: Music (combined=0.336) +2026-06-25 18:11:35,434 | INFO | +[1292.00s] AMBIENT | scene='' +2026-06-25 18:11:35,434 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,435 | INFO | Music 0.498 0.000 0.274 ✓ +2026-06-25 18:11:35,436 | INFO | Whale vocalization 0.142 0.000 0.078 ✗ +2026-06-25 18:11:35,436 | INFO | Animal 0.083 0.000 0.046 ✗ +2026-06-25 18:11:35,436 | INFO | Howl 0.077 0.000 0.043 ✗ +2026-06-25 18:11:35,436 | INFO | Theremin 0.058 0.000 0.032 ✗ +2026-06-25 18:11:35,436 | INFO | → WINNER: Music (combined=0.274) +2026-06-25 18:11:35,494 | INFO | +[1292.20s] AMBIENT | scene='' +2026-06-25 18:11:35,497 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,499 | INFO | Music 0.382 0.000 0.210 ✓ +2026-06-25 18:11:35,507 | INFO | Whale vocalization 0.117 0.000 0.065 ✗ +2026-06-25 18:11:35,511 | INFO | Howl 0.081 0.000 0.045 ✗ +2026-06-25 18:11:35,523 | INFO | Animal 0.066 0.000 0.036 ✗ +2026-06-25 18:11:35,523 | INFO | → WINNER: Music (combined=0.210) +2026-06-25 18:11:35,557 | INFO | +[1292.40s] AMBIENT | scene='' +2026-06-25 18:11:35,558 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,558 | INFO | Music 0.638 0.000 0.351 ✓ +2026-06-25 18:11:35,558 | INFO | Flute 0.267 0.000 0.147 ✓ +2026-06-25 18:11:35,561 | INFO | Wind instrument, woodwind instrument 0.221 0.000 0.122 ✓ +2026-06-25 18:11:35,565 | INFO | Musical instrument 0.135 0.000 0.074 ✗ +2026-06-25 18:11:35,574 | INFO | Theremin 0.073 0.000 0.040 ✗ +2026-06-25 18:11:35,578 | INFO | Shofar 0.062 0.000 0.034 ✗ +2026-06-25 18:11:35,581 | INFO | → WINNER: Music (combined=0.351) +2026-06-25 18:11:35,620 | INFO | +[1292.60s] AMBIENT | scene='' +2026-06-25 18:11:35,621 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,623 | INFO | Music 0.577 0.000 0.317 ✓ +2026-06-25 18:11:35,626 | INFO | Musical instrument 0.083 0.000 0.045 ✗ +2026-06-25 18:11:35,633 | INFO | Howl 0.061 0.000 0.034 ✗ +2026-06-25 18:11:35,634 | INFO | Flute 0.057 0.000 0.031 ✗ +2026-06-25 18:11:35,634 | INFO | Animal 0.040 0.000 0.022 ✗ +2026-06-25 18:11:35,635 | INFO | Wind instrument, woodwind instrument 0.040 0.000 0.022 ✗ +2026-06-25 18:11:35,635 | INFO | → WINNER: Music (combined=0.317) +2026-06-25 18:11:35,692 | INFO | +[1292.80s] AMBIENT | scene='' +2026-06-25 18:11:35,693 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,693 | INFO | Music 0.768 0.000 0.422 ✓ +2026-06-25 18:11:35,693 | INFO | Musical instrument 0.223 0.000 0.122 ✓ +2026-06-25 18:11:35,694 | INFO | Singing 0.101 0.000 0.056 ✗ +2026-06-25 18:11:35,694 | INFO | Flute 0.077 0.000 0.042 ✗ +2026-06-25 18:11:35,695 | INFO | Guitar 0.055 0.000 0.030 ✗ +2026-06-25 18:11:35,695 | INFO | Plucked string instrument 0.055 0.000 0.030 ✗ +2026-06-25 18:11:35,695 | INFO | → WINNER: Music (combined=0.422) +2026-06-25 18:11:35,789 | INFO | +[1293.00s] AMBIENT | scene='' +2026-06-25 18:11:35,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,805 | INFO | Music 0.821 0.000 0.452 ✓ +2026-06-25 18:11:35,807 | INFO | Theremin 0.327 0.000 0.180 ✓ +2026-06-25 18:11:35,808 | INFO | Musical instrument 0.177 0.000 0.098 ✗ +2026-06-25 18:11:35,809 | INFO | Singing 0.095 0.000 0.052 ✗ +2026-06-25 18:11:35,809 | INFO | Humming 0.082 0.000 0.045 ✗ +2026-06-25 18:11:35,809 | INFO | Inside, small room 0.078 0.000 0.043 ✗ +2026-06-25 18:11:35,809 | INFO | → WINNER: Music (combined=0.452) +2026-06-25 18:11:35,888 | INFO | +[1300.40s] AMBIENT | scene='' +2026-06-25 18:11:35,892 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,903 | INFO | Music 0.349 0.000 0.192 ✓ +2026-06-25 18:11:35,903 | INFO | Singing 0.119 0.000 0.066 ✗ +2026-06-25 18:11:35,908 | INFO | Synthetic singing 0.117 0.000 0.064 ✗ +2026-06-25 18:11:35,914 | INFO | Yodeling 0.102 0.000 0.056 ✗ +2026-06-25 18:11:35,919 | INFO | Female singing 0.094 0.000 0.052 ✗ +2026-06-25 18:11:35,922 | INFO | → WINNER: Music (combined=0.192) +2026-06-25 18:11:35,962 | INFO | +[1300.60s] AMBIENT | scene='' +2026-06-25 18:11:35,962 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,962 | INFO | Music 0.216 0.000 0.119 ✗ +2026-06-25 18:11:35,962 | INFO | Singing 0.106 0.000 0.058 ✗ +2026-06-25 18:11:35,962 | INFO | Yodeling 0.059 0.000 0.033 ✗ +2026-06-25 18:11:35,962 | INFO | → no winner +2026-06-25 18:11:35,992 | INFO | +[1300.80s] AMBIENT | scene='' +2026-06-25 18:11:35,992 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:35,993 | INFO | Animal 0.127 0.000 0.070 ✗ +2026-06-25 18:11:35,993 | INFO | Music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:35,993 | INFO | Howl 0.077 0.000 0.043 ✗ +2026-06-25 18:11:35,993 | INFO | Domestic animals, pets 0.070 0.000 0.038 ✗ +2026-06-25 18:11:35,993 | INFO | Inside, small room 0.067 0.000 0.037 ✗ +2026-06-25 18:11:35,993 | INFO | Dog 0.058 0.000 0.032 ✗ +2026-06-25 18:11:35,994 | INFO | → no winner +2026-06-25 18:11:36,024 | INFO | +[1301.00s] AMBIENT | scene='' +2026-06-25 18:11:36,024 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,024 | INFO | Music 0.756 0.000 0.416 ✓ +2026-06-25 18:11:36,024 | INFO | Flute 0.430 0.000 0.237 ✓ +2026-06-25 18:11:36,024 | INFO | Wind instrument, woodwind instrument 0.288 0.000 0.158 ✓ +2026-06-25 18:11:36,025 | INFO | Musical instrument 0.238 0.000 0.131 ✓ +2026-06-25 18:11:36,025 | INFO | Theremin 0.073 0.000 0.040 ✗ +2026-06-25 18:11:36,025 | INFO | → WINNER: Music (combined=0.416) +2026-06-25 18:11:36,055 | INFO | +[1301.20s] AMBIENT | scene='' +2026-06-25 18:11:36,056 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,058 | INFO | Music 0.804 0.000 0.443 ✓ +2026-06-25 18:11:36,058 | INFO | Flute 0.317 0.000 0.174 ✓ +2026-06-25 18:11:36,058 | INFO | Wind instrument, woodwind instrument 0.165 0.000 0.091 ✗ +2026-06-25 18:11:36,059 | INFO | Musical instrument 0.111 0.000 0.061 ✗ +2026-06-25 18:11:36,059 | INFO | Animal 0.048 0.000 0.026 ✗ +2026-06-25 18:11:36,059 | INFO | → WINNER: Music (combined=0.443) +2026-06-25 18:11:36,106 | INFO | +[1301.40s] AMBIENT | scene='' +2026-06-25 18:11:36,108 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,108 | INFO | Music 0.785 0.000 0.432 ✓ +2026-06-25 18:11:36,108 | INFO | Flute 0.562 0.000 0.309 ✓ +2026-06-25 18:11:36,108 | INFO | Wind instrument, woodwind instrument 0.300 0.000 0.165 ✓ +2026-06-25 18:11:36,110 | INFO | Musical instrument 0.231 0.000 0.127 ✓ +2026-06-25 18:11:36,110 | INFO | Animal 0.040 0.000 0.022 ✗ +2026-06-25 18:11:36,110 | INFO | → WINNER: Music (combined=0.432) +2026-06-25 18:11:36,180 | INFO | +[1301.60s] AMBIENT | scene='' +2026-06-25 18:11:36,182 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,182 | INFO | Music 0.572 0.000 0.315 ✓ +2026-06-25 18:11:36,182 | INFO | Flute 0.224 0.000 0.123 ✓ +2026-06-25 18:11:36,183 | INFO | Wind instrument, woodwind instrument 0.131 0.000 0.072 ✗ +2026-06-25 18:11:36,183 | INFO | Musical instrument 0.124 0.000 0.068 ✗ +2026-06-25 18:11:36,183 | INFO | Animal 0.092 0.000 0.051 ✗ +2026-06-25 18:11:36,184 | INFO | → WINNER: Music (combined=0.315) +2026-06-25 18:11:36,251 | INFO | +[1301.80s] AMBIENT | scene='' +2026-06-25 18:11:36,251 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,251 | INFO | Animal 0.433 0.000 0.238 ✓ +2026-06-25 18:11:36,268 | INFO | Howl 0.349 0.000 0.192 ✓ +2026-06-25 18:11:36,269 | INFO | Dog 0.274 0.000 0.151 ✓ +2026-06-25 18:11:36,269 | INFO | Domestic animals, pets 0.225 0.000 0.124 ✓ +2026-06-25 18:11:36,270 | INFO | Music 0.166 0.000 0.091 ✗ +2026-06-25 18:11:36,271 | INFO | Canidae, dogs, wolves 0.118 0.000 0.065 ✗ +2026-06-25 18:11:36,272 | INFO | → WINNER: Animal (combined=0.238) +2026-06-25 18:11:36,304 | INFO | +[1302.00s] AMBIENT | scene='' +2026-06-25 18:11:36,306 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,307 | INFO | Music 0.249 0.000 0.137 ✓ +2026-06-25 18:11:36,308 | INFO | Animal 0.145 0.000 0.080 ✗ +2026-06-25 18:11:36,312 | INFO | → WINNER: Music (combined=0.137) +2026-06-25 18:11:36,352 | INFO | +[1302.20s] AMBIENT | scene='' +2026-06-25 18:11:36,354 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,354 | INFO | Music 0.808 0.000 0.445 ✓ +2026-06-25 18:11:36,357 | INFO | Humming 0.210 0.000 0.116 ✗ +2026-06-25 18:11:36,358 | INFO | Theremin 0.194 0.000 0.107 ✗ +2026-06-25 18:11:36,370 | INFO | → WINNER: Music (combined=0.445) +2026-06-25 18:11:36,403 | INFO | +[1302.40s] AMBIENT | scene='' +2026-06-25 18:11:36,403 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,404 | INFO | Music 0.828 0.000 0.455 ✓ +2026-06-25 18:11:36,404 | INFO | Singing 0.112 0.000 0.061 ✗ +2026-06-25 18:11:36,404 | INFO | Theremin 0.109 0.000 0.060 ✗ +2026-06-25 18:11:36,404 | INFO | Humming 0.107 0.000 0.059 ✗ +2026-06-25 18:11:36,406 | INFO | → WINNER: Music (combined=0.455) +2026-06-25 18:11:36,440 | INFO | +[1302.60s] AMBIENT | scene='' +2026-06-25 18:11:36,440 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,441 | INFO | Music 0.662 0.000 0.364 ✓ +2026-06-25 18:11:36,442 | INFO | Animal 0.209 0.000 0.115 ✗ +2026-06-25 18:11:36,444 | INFO | Humming 0.121 0.000 0.067 ✗ +2026-06-25 18:11:36,445 | INFO | Domestic animals, pets 0.092 0.000 0.051 ✗ +2026-06-25 18:11:36,446 | INFO | Howl 0.067 0.000 0.037 ✗ +2026-06-25 18:11:36,449 | INFO | → WINNER: Music (combined=0.364) +2026-06-25 18:11:36,494 | INFO | +[1302.80s] AMBIENT | scene='' +2026-06-25 18:11:36,494 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,495 | INFO | Music 0.316 0.000 0.174 ✓ +2026-06-25 18:11:36,495 | INFO | Animal 0.189 0.000 0.104 ✗ +2026-06-25 18:11:36,496 | INFO | Howl 0.071 0.000 0.039 ✗ +2026-06-25 18:11:36,496 | INFO | Humming 0.069 0.000 0.038 ✗ +2026-06-25 18:11:36,497 | INFO | Domestic animals, pets 0.061 0.000 0.034 ✗ +2026-06-25 18:11:36,497 | INFO | Inside, small room 0.059 0.000 0.032 ✗ +2026-06-25 18:11:36,497 | INFO | → WINNER: Music (combined=0.174) +2026-06-25 18:11:36,568 | INFO | +[1304.80s] AMBIENT | scene='' +2026-06-25 18:11:36,568 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,570 | INFO | Sine wave 0.356 0.000 0.196 ✓ +2026-06-25 18:11:36,570 | INFO | Chirp tone 0.215 0.000 0.118 ✗ +2026-06-25 18:11:36,570 | INFO | Animal 0.164 0.000 0.090 ✗ +2026-06-25 18:11:36,570 | INFO | Howl 0.073 0.000 0.040 ✗ +2026-06-25 18:11:36,570 | INFO | Domestic animals, pets 0.050 0.000 0.028 ✗ +2026-06-25 18:11:36,571 | INFO | → WINNER: Sine wave (combined=0.196) +2026-06-25 18:11:36,645 | INFO | +[1305.00s] AMBIENT | scene='' +2026-06-25 18:11:36,648 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,649 | INFO | Sine wave 0.420 0.000 0.231 ✓ +2026-06-25 18:11:36,655 | INFO | Chirp tone 0.214 0.000 0.117 ✗ +2026-06-25 18:11:36,660 | INFO | Owl 0.127 0.000 0.070 ✗ +2026-06-25 18:11:36,662 | INFO | Hoot 0.114 0.000 0.063 ✗ +2026-06-25 18:11:36,662 | INFO | Animal 0.070 0.000 0.038 ✗ +2026-06-25 18:11:36,667 | INFO | → WINNER: Sine wave (combined=0.231) +2026-06-25 18:11:36,713 | INFO | +[1305.20s] AMBIENT | scene='' +2026-06-25 18:11:36,714 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,714 | INFO | Chirp tone 0.537 0.000 0.295 ✓ +2026-06-25 18:11:36,715 | INFO | Sine wave 0.491 0.000 0.270 ✓ +2026-06-25 18:11:36,715 | INFO | Singing bowl 0.204 0.000 0.112 ✗ +2026-06-25 18:11:36,715 | INFO | → WINNER: Chirp tone (combined=0.295) +2026-06-25 18:11:36,750 | INFO | +[1305.40s] AMBIENT | scene='' +2026-06-25 18:11:36,750 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,751 | INFO | Chirp tone 0.526 0.000 0.289 ✓ +2026-06-25 18:11:36,751 | INFO | Sine wave 0.492 0.000 0.271 ✓ +2026-06-25 18:11:36,751 | INFO | Singing bowl 0.416 0.000 0.229 ✓ +2026-06-25 18:11:36,752 | INFO | Music 0.174 0.000 0.096 ✗ +2026-06-25 18:11:36,753 | INFO | → WINNER: Chirp tone (combined=0.289) +2026-06-25 18:11:36,789 | INFO | +[1305.60s] AMBIENT | scene='' +2026-06-25 18:11:36,794 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,795 | INFO | Music 0.343 0.000 0.188 ✓ +2026-06-25 18:11:36,795 | INFO | Singing bowl 0.289 0.000 0.159 ✓ +2026-06-25 18:11:36,795 | INFO | Chirp tone 0.239 0.000 0.131 ✓ +2026-06-25 18:11:36,798 | INFO | Sine wave 0.158 0.000 0.087 ✗ +2026-06-25 18:11:36,801 | INFO | Theremin 0.076 0.000 0.042 ✗ +2026-06-25 18:11:36,802 | INFO | → WINNER: Music (combined=0.188) +2026-06-25 18:11:36,835 | INFO | +[1305.80s] AMBIENT | scene='' +2026-06-25 18:11:36,835 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,835 | INFO | Music 0.588 0.000 0.323 ✓ +2026-06-25 18:11:36,836 | INFO | Singing bowl 0.355 0.000 0.196 ✓ +2026-06-25 18:11:36,838 | INFO | Theremin 0.302 0.000 0.166 ✓ +2026-06-25 18:11:36,838 | INFO | Chirp tone 0.120 0.000 0.066 ✗ +2026-06-25 18:11:36,838 | INFO | Musical instrument 0.075 0.000 0.041 ✗ +2026-06-25 18:11:36,838 | INFO | Sine wave 0.072 0.000 0.040 ✗ +2026-06-25 18:11:36,839 | INFO | → WINNER: Music (combined=0.323) +2026-06-25 18:11:36,870 | INFO | +[1306.00s] AMBIENT | scene='' +2026-06-25 18:11:36,872 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,872 | INFO | Theremin 0.370 0.000 0.203 ✓ +2026-06-25 18:11:36,873 | INFO | Music 0.283 0.000 0.155 ✓ +2026-06-25 18:11:36,873 | INFO | Howl 0.101 0.000 0.056 ✗ +2026-06-25 18:11:36,873 | INFO | Humming 0.071 0.000 0.039 ✗ +2026-06-25 18:11:36,873 | INFO | Animal 0.069 0.000 0.038 ✗ +2026-06-25 18:11:36,873 | INFO | → WINNER: Theremin (combined=0.203) +2026-06-25 18:11:36,941 | INFO | +[1306.20s] AMBIENT | scene='' +2026-06-25 18:11:36,943 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:36,945 | INFO | Theremin 0.244 0.000 0.134 ✓ +2026-06-25 18:11:36,945 | INFO | Music 0.187 0.000 0.103 ✗ +2026-06-25 18:11:36,947 | INFO | Whale vocalization 0.151 0.000 0.083 ✗ +2026-06-25 18:11:36,949 | INFO | Animal 0.110 0.000 0.061 ✗ +2026-06-25 18:11:36,949 | INFO | Howl 0.093 0.000 0.051 ✗ +2026-06-25 18:11:36,949 | INFO | Humming 0.057 0.000 0.031 ✗ +2026-06-25 18:11:36,949 | INFO | → WINNER: Theremin (combined=0.134) +2026-06-25 18:11:37,020 | INFO | +[1306.40s] AMBIENT | scene='' +2026-06-25 18:11:37,022 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,036 | INFO | Howl 0.457 0.000 0.251 ✓ +2026-06-25 18:11:37,046 | INFO | Animal 0.281 0.000 0.154 ✓ +2026-06-25 18:11:37,047 | INFO | Canidae, dogs, wolves 0.227 0.000 0.125 ✓ +2026-06-25 18:11:37,048 | INFO | Dog 0.162 0.000 0.089 ✗ +2026-06-25 18:11:37,048 | INFO | Music 0.141 0.000 0.078 ✗ +2026-06-25 18:11:37,048 | INFO | Domestic animals, pets 0.127 0.000 0.070 ✗ +2026-06-25 18:11:37,050 | INFO | → WINNER: Howl (combined=0.251) +2026-06-25 18:11:37,176 | INFO | +[1306.60s] AMBIENT | scene='' +2026-06-25 18:11:37,177 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,177 | INFO | Howl 0.507 0.000 0.279 ✓ +2026-06-25 18:11:37,178 | INFO | Animal 0.247 0.000 0.136 ✓ +2026-06-25 18:11:37,178 | INFO | Canidae, dogs, wolves 0.234 0.000 0.129 ✓ +2026-06-25 18:11:37,179 | INFO | Dog 0.174 0.000 0.096 ✗ +2026-06-25 18:11:37,179 | INFO | Music 0.169 0.000 0.093 ✗ +2026-06-25 18:11:37,180 | INFO | Domestic animals, pets 0.132 0.000 0.073 ✗ +2026-06-25 18:11:37,180 | INFO | → WINNER: Howl (combined=0.279) +2026-06-25 18:11:37,289 | INFO | +[1306.80s] AMBIENT | scene='' +2026-06-25 18:11:37,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,290 | INFO | Music 0.744 0.000 0.409 ✓ +2026-06-25 18:11:37,291 | INFO | Theremin 0.404 0.000 0.222 ✓ +2026-06-25 18:11:37,291 | INFO | Musical instrument 0.098 0.000 0.054 ✗ +2026-06-25 18:11:37,291 | INFO | → WINNER: Music (combined=0.409) +2026-06-25 18:11:37,323 | INFO | +[1307.00s] AMBIENT | scene='' +2026-06-25 18:11:37,324 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,324 | INFO | Music 0.864 0.000 0.475 ✓ +2026-06-25 18:11:37,324 | INFO | Theremin 0.765 0.000 0.421 ✓ +2026-06-25 18:11:37,325 | INFO | Musical instrument 0.138 0.000 0.076 ✗ +2026-06-25 18:11:37,325 | INFO | → WINNER: Music (combined=0.475) +2026-06-25 18:11:37,355 | INFO | +[1307.20s] AMBIENT | scene='' +2026-06-25 18:11:37,355 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,355 | INFO | Theremin 0.866 0.000 0.476 ✓ +2026-06-25 18:11:37,356 | INFO | Music 0.854 0.000 0.470 ✓ +2026-06-25 18:11:37,356 | INFO | Musical instrument 0.212 0.000 0.117 ✗ +2026-06-25 18:11:37,356 | INFO | → WINNER: Theremin (combined=0.476) +2026-06-25 18:11:37,385 | INFO | +[1307.40s] AMBIENT | scene='' +2026-06-25 18:11:37,385 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,385 | INFO | Theremin 0.917 0.000 0.504 ✓ +2026-06-25 18:11:37,386 | INFO | Music 0.912 0.000 0.502 ✓ +2026-06-25 18:11:37,386 | INFO | Musical instrument 0.273 0.000 0.150 ✓ +2026-06-25 18:11:37,387 | INFO | Inside, small room 0.107 0.000 0.059 ✗ +2026-06-25 18:11:37,387 | INFO | → WINNER: Theremin (combined=0.504) +2026-06-25 18:11:37,418 | INFO | +[1307.60s] AMBIENT | scene='' +2026-06-25 18:11:37,426 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,430 | INFO | Music 0.895 0.000 0.492 ✓ +2026-06-25 18:11:37,430 | INFO | Theremin 0.832 0.000 0.457 ✓ +2026-06-25 18:11:37,432 | INFO | Musical instrument 0.125 0.000 0.069 ✗ +2026-06-25 18:11:37,436 | INFO | Inside, small room 0.095 0.000 0.052 ✗ +2026-06-25 18:11:37,438 | INFO | Humming 0.061 0.000 0.034 ✗ +2026-06-25 18:11:37,444 | INFO | → WINNER: Music (combined=0.492) +2026-06-25 18:11:37,513 | INFO | +[1307.80s] AMBIENT | scene='' +2026-06-25 18:11:37,514 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,514 | INFO | Music 0.547 0.000 0.301 ✓ +2026-06-25 18:11:37,514 | INFO | Theremin 0.270 0.000 0.148 ✓ +2026-06-25 18:11:37,514 | INFO | Flute 0.070 0.000 0.038 ✗ +2026-06-25 18:11:37,515 | INFO | Musical instrument 0.065 0.000 0.036 ✗ +2026-06-25 18:11:37,515 | INFO | → WINNER: Music (combined=0.301) +2026-06-25 18:11:37,584 | INFO | +[1308.00s] AMBIENT | scene='' +2026-06-25 18:11:37,585 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,585 | INFO | Music 0.576 0.000 0.317 ✓ +2026-06-25 18:11:37,586 | INFO | Theremin 0.123 0.000 0.068 ✗ +2026-06-25 18:11:37,586 | INFO | → WINNER: Music (combined=0.317) +2026-06-25 18:11:37,656 | INFO | +[1308.20s] AMBIENT | scene='' +2026-06-25 18:11:37,657 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,657 | INFO | Music 0.182 0.000 0.100 ✗ +2026-06-25 18:11:37,657 | INFO | Singing 0.126 0.000 0.069 ✗ +2026-06-25 18:11:37,658 | INFO | Humming 0.074 0.000 0.041 ✗ +2026-06-25 18:11:37,658 | INFO | Animal 0.063 0.000 0.035 ✗ +2026-06-25 18:11:37,658 | INFO | → no winner +2026-06-25 18:11:37,697 | INFO | +[1308.40s] AMBIENT | scene='' +2026-06-25 18:11:37,697 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,697 | INFO | Music 0.372 0.000 0.204 ✓ +2026-06-25 18:11:37,697 | INFO | Singing 0.128 0.000 0.070 ✗ +2026-06-25 18:11:37,698 | INFO | Mantra 0.124 0.000 0.068 ✗ +2026-06-25 18:11:37,698 | INFO | Humming 0.102 0.000 0.056 ✗ +2026-06-25 18:11:37,698 | INFO | → WINNER: Music (combined=0.204) +2026-06-25 18:11:37,729 | INFO | +[1308.60s] AMBIENT | scene='' +2026-06-25 18:11:37,733 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,733 | INFO | Animal 0.597 0.000 0.328 ✓ +2026-06-25 18:11:37,733 | INFO | Dog 0.564 0.000 0.310 ✓ +2026-06-25 18:11:37,733 | INFO | Domestic animals, pets 0.508 0.000 0.279 ✓ +2026-06-25 18:11:37,734 | INFO | Howl 0.332 0.000 0.183 ✓ +2026-06-25 18:11:37,734 | INFO | Bow-wow 0.261 0.000 0.144 ✓ +2026-06-25 18:11:37,734 | INFO | Music 0.252 0.000 0.138 ✓ +2026-06-25 18:11:37,734 | INFO | → WINNER: Animal (combined=0.328) +2026-06-25 18:11:37,768 | INFO | +[1308.80s] AMBIENT | scene='' +2026-06-25 18:11:37,770 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,770 | INFO | Music 0.474 0.000 0.261 ✓ +2026-06-25 18:11:37,771 | INFO | Dog 0.349 0.000 0.192 ✓ +2026-06-25 18:11:37,771 | INFO | Animal 0.310 0.000 0.171 ✓ +2026-06-25 18:11:37,772 | INFO | Domestic animals, pets 0.291 0.000 0.160 ✓ +2026-06-25 18:11:37,772 | INFO | Bow-wow 0.247 0.000 0.136 ✓ +2026-06-25 18:11:37,772 | INFO | Bark 0.168 0.000 0.092 ✗ +2026-06-25 18:11:37,772 | INFO | → WINNER: Music (combined=0.261) +2026-06-25 18:11:37,802 | INFO | +[1309.00s] AMBIENT | scene='' +2026-06-25 18:11:37,802 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,803 | INFO | Music 0.444 0.000 0.244 ✓ +2026-06-25 18:11:37,803 | INFO | Animal 0.252 0.000 0.139 ✓ +2026-06-25 18:11:37,803 | INFO | Dog 0.224 0.000 0.123 ✓ +2026-06-25 18:11:37,803 | INFO | Domestic animals, pets 0.189 0.000 0.104 ✗ +2026-06-25 18:11:37,804 | INFO | Bow-wow 0.167 0.000 0.092 ✗ +2026-06-25 18:11:37,804 | INFO | Yip 0.075 0.000 0.041 ✗ +2026-06-25 18:11:37,804 | INFO | → WINNER: Music (combined=0.244) +2026-06-25 18:11:37,842 | INFO | +[1309.20s] AMBIENT | scene='' +2026-06-25 18:11:37,843 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,844 | INFO | Animal 0.425 0.000 0.234 ✓ +2026-06-25 18:11:37,845 | INFO | Dog 0.408 0.000 0.225 ✓ +2026-06-25 18:11:37,845 | INFO | Domestic animals, pets 0.392 0.000 0.215 ✓ +2026-06-25 18:11:37,845 | INFO | Music 0.307 0.000 0.169 ✓ +2026-06-25 18:11:37,845 | INFO | Bow-wow 0.271 0.000 0.149 ✓ +2026-06-25 18:11:37,846 | INFO | Yip 0.124 0.000 0.068 ✗ +2026-06-25 18:11:37,846 | INFO | → WINNER: Animal (combined=0.234) +2026-06-25 18:11:37,884 | INFO | +[1309.40s] AMBIENT | scene='' +2026-06-25 18:11:37,886 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,888 | INFO | Animal 0.386 0.000 0.212 ✓ +2026-06-25 18:11:37,896 | INFO | Domestic animals, pets 0.219 0.000 0.120 ✓ +2026-06-25 18:11:37,898 | INFO | Music 0.174 0.000 0.096 ✗ +2026-06-25 18:11:37,898 | INFO | Whale vocalization 0.160 0.000 0.088 ✗ +2026-06-25 18:11:37,900 | INFO | Owl 0.089 0.000 0.049 ✗ +2026-06-25 18:11:37,905 | INFO | Dog 0.082 0.000 0.045 ✗ +2026-06-25 18:11:37,907 | INFO | → WINNER: Animal (combined=0.212) +2026-06-25 18:11:37,956 | INFO | +[1309.60s] AMBIENT | scene='' +2026-06-25 18:11:37,956 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,957 | INFO | Whale vocalization 0.309 0.000 0.170 ✓ +2026-06-25 18:11:37,957 | INFO | Music 0.181 0.000 0.099 ✗ +2026-06-25 18:11:37,957 | INFO | Animal 0.140 0.000 0.077 ✗ +2026-06-25 18:11:37,957 | INFO | Owl 0.098 0.000 0.054 ✗ +2026-06-25 18:11:37,957 | INFO | → WINNER: Whale vocalization (combined=0.170) +2026-06-25 18:11:37,987 | INFO | +[1309.80s] AMBIENT | scene='' +2026-06-25 18:11:37,987 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:37,988 | INFO | Music 0.534 0.000 0.294 ✓ +2026-06-25 18:11:37,988 | INFO | Animal 0.080 0.000 0.044 ✗ +2026-06-25 18:11:37,988 | INFO | Theremin 0.071 0.000 0.039 ✗ +2026-06-25 18:11:37,989 | INFO | Humming 0.060 0.000 0.033 ✗ +2026-06-25 18:11:37,989 | INFO | Whale vocalization 0.055 0.000 0.030 ✗ +2026-06-25 18:11:37,989 | INFO | → WINNER: Music (combined=0.294) +2026-06-25 18:11:38,018 | INFO | +[1311.60s] AMBIENT | scene='' +2026-06-25 18:11:38,021 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,021 | INFO | Music 0.481 0.000 0.264 ✓ +2026-06-25 18:11:38,021 | INFO | Humming 0.134 0.000 0.073 ✗ +2026-06-25 18:11:38,022 | INFO | Singing 0.093 0.000 0.051 ✗ +2026-06-25 18:11:38,022 | INFO | Theremin 0.066 0.000 0.036 ✗ +2026-06-25 18:11:38,022 | INFO | → WINNER: Music (combined=0.264) +2026-06-25 18:11:38,054 | INFO | +[1311.80s] AMBIENT | scene='' +2026-06-25 18:11:38,054 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,054 | INFO | Music 0.309 0.000 0.170 ✓ +2026-06-25 18:11:38,054 | INFO | Singing 0.094 0.000 0.052 ✗ +2026-06-25 18:11:38,054 | INFO | Humming 0.053 0.000 0.029 ✗ +2026-06-25 18:11:38,054 | INFO | → WINNER: Music (combined=0.170) +2026-06-25 18:11:38,099 | INFO | +[1312.00s] AMBIENT | scene='' +2026-06-25 18:11:38,099 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,100 | INFO | Music 0.182 0.000 0.100 ✗ +2026-06-25 18:11:38,100 | INFO | Animal 0.047 0.000 0.026 ✗ +2026-06-25 18:11:38,100 | INFO | → no winner +2026-06-25 18:11:38,169 | INFO | +[1312.20s] AMBIENT | scene='' +2026-06-25 18:11:38,170 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,170 | INFO | Music 0.218 0.000 0.120 ✗ +2026-06-25 18:11:38,171 | INFO | Animal 0.093 0.000 0.051 ✗ +2026-06-25 18:11:38,171 | INFO | Humming 0.087 0.000 0.048 ✗ +2026-06-25 18:11:38,171 | INFO | Inside, small room 0.087 0.000 0.048 ✗ +2026-06-25 18:11:38,171 | INFO | Theremin 0.085 0.000 0.047 ✗ +2026-06-25 18:11:38,171 | INFO | Howl 0.071 0.000 0.039 ✗ +2026-06-25 18:11:38,171 | INFO | → no winner +2026-06-25 18:11:38,238 | INFO | +[1312.40s] AMBIENT | scene='' +2026-06-25 18:11:38,239 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,246 | INFO | Music 0.233 0.000 0.128 ✓ +2026-06-25 18:11:38,247 | INFO | Theremin 0.088 0.000 0.049 ✗ +2026-06-25 18:11:38,248 | INFO | Humming 0.062 0.000 0.034 ✗ +2026-06-25 18:11:38,250 | INFO | Animal 0.046 0.000 0.025 ✗ +2026-06-25 18:11:38,251 | INFO | → WINNER: Music (combined=0.128) +2026-06-25 18:11:38,294 | INFO | +[1312.60s] AMBIENT | scene='' +2026-06-25 18:11:38,295 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,296 | INFO | Music 0.193 0.000 0.106 ✗ +2026-06-25 18:11:38,296 | INFO | Howl 0.186 0.000 0.102 ✗ +2026-06-25 18:11:38,297 | INFO | Animal 0.184 0.000 0.102 ✗ +2026-06-25 18:11:38,297 | INFO | Theremin 0.135 0.000 0.074 ✗ +2026-06-25 18:11:38,297 | INFO | Singing bowl 0.085 0.000 0.047 ✗ +2026-06-25 18:11:38,297 | INFO | Whale vocalization 0.083 0.000 0.046 ✗ +2026-06-25 18:11:38,297 | INFO | → no winner +2026-06-25 18:11:38,327 | INFO | +[1312.80s] AMBIENT | scene='' +2026-06-25 18:11:38,328 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,329 | INFO | Theremin 0.391 0.000 0.215 ✓ +2026-06-25 18:11:38,329 | INFO | Music 0.254 0.000 0.140 ✓ +2026-06-25 18:11:38,330 | INFO | Animal 0.165 0.000 0.090 ✗ +2026-06-25 18:11:38,330 | INFO | Whale vocalization 0.145 0.000 0.080 ✗ +2026-06-25 18:11:38,330 | INFO | Howl 0.076 0.000 0.042 ✗ +2026-06-25 18:11:38,330 | INFO | Domestic animals, pets 0.052 0.000 0.028 ✗ +2026-06-25 18:11:38,330 | INFO | → WINNER: Theremin (combined=0.215) +2026-06-25 18:11:38,369 | INFO | +[1313.00s] AMBIENT | scene='' +2026-06-25 18:11:38,370 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,370 | INFO | Music 0.226 0.000 0.124 ✓ +2026-06-25 18:11:38,370 | INFO | Singing bowl 0.121 0.000 0.067 ✗ +2026-06-25 18:11:38,370 | INFO | Chirp tone 0.060 0.000 0.033 ✗ +2026-06-25 18:11:38,372 | INFO | Theremin 0.058 0.000 0.032 ✗ +2026-06-25 18:11:38,374 | INFO | Animal 0.055 0.000 0.030 ✗ +2026-06-25 18:11:38,382 | INFO | → WINNER: Music (combined=0.124) +2026-06-25 18:11:38,423 | INFO | +[1313.20s] AMBIENT | scene='' +2026-06-25 18:11:38,423 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,423 | INFO | Music 0.268 0.000 0.147 ✓ +2026-06-25 18:11:38,423 | INFO | Theremin 0.199 0.000 0.109 ✗ +2026-06-25 18:11:38,424 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:11:38,424 | INFO | Whale vocalization 0.060 0.000 0.033 ✗ +2026-06-25 18:11:38,425 | INFO | Domestic animals, pets 0.042 0.000 0.023 ✗ +2026-06-25 18:11:38,425 | INFO | → WINNER: Music (combined=0.147) +2026-06-25 18:11:38,455 | INFO | +[1313.40s] AMBIENT | scene='' +2026-06-25 18:11:38,456 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,456 | INFO | Cat 0.441 0.000 0.243 ✓ +2026-06-25 18:11:38,456 | INFO | Animal 0.438 0.000 0.241 ✓ +2026-06-25 18:11:38,456 | INFO | Domestic animals, pets 0.402 0.000 0.221 ✓ +2026-06-25 18:11:38,456 | INFO | Meow 0.247 0.000 0.136 ✓ +2026-06-25 18:11:38,456 | INFO | Music 0.194 0.000 0.107 ✗ +2026-06-25 18:11:38,458 | INFO | Caterwaul 0.071 0.000 0.039 ✗ +2026-06-25 18:11:38,458 | INFO | → WINNER: Cat (combined=0.243) +2026-06-25 18:11:38,502 | INFO | +[1313.60s] AMBIENT | scene='' +2026-06-25 18:11:38,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,517 | INFO | Music 0.495 0.000 0.272 ✓ +2026-06-25 18:11:38,521 | INFO | Theremin 0.233 0.000 0.128 ✓ +2026-06-25 18:11:38,521 | INFO | Animal 0.122 0.000 0.067 ✗ +2026-06-25 18:11:38,522 | INFO | Humming 0.055 0.000 0.030 ✗ +2026-06-25 18:11:38,522 | INFO | Domestic animals, pets 0.040 0.000 0.022 ✗ +2026-06-25 18:11:38,522 | INFO | → WINNER: Music (combined=0.272) +2026-06-25 18:11:38,586 | INFO | +[1313.80s] AMBIENT | scene='' +2026-06-25 18:11:38,587 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,587 | INFO | Music 0.431 0.000 0.237 ✓ +2026-06-25 18:11:38,587 | INFO | Animal 0.070 0.000 0.038 ✗ +2026-06-25 18:11:38,588 | INFO | → WINNER: Music (combined=0.237) +2026-06-25 18:11:38,653 | INFO | +[1314.00s] AMBIENT | scene='' +2026-06-25 18:11:38,657 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,658 | INFO | Music 0.563 0.000 0.309 ✓ +2026-06-25 18:11:38,660 | INFO | Theremin 0.442 0.000 0.243 ✓ +2026-06-25 18:11:38,664 | INFO | Musical instrument 0.060 0.000 0.033 ✗ +2026-06-25 18:11:38,666 | INFO | Humming 0.054 0.000 0.030 ✗ +2026-06-25 18:11:38,671 | INFO | → WINNER: Music (combined=0.309) +2026-06-25 18:11:38,701 | INFO | +[1314.20s] AMBIENT | scene='' +2026-06-25 18:11:38,702 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,702 | INFO | Music 0.594 0.000 0.327 ✓ +2026-06-25 18:11:38,702 | INFO | Theremin 0.308 0.000 0.170 ✓ +2026-06-25 18:11:38,703 | INFO | Animal 0.067 0.000 0.037 ✗ +2026-06-25 18:11:38,703 | INFO | → WINNER: Music (combined=0.327) +2026-06-25 18:11:38,732 | INFO | +[1314.40s] AMBIENT | scene='' +2026-06-25 18:11:38,732 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,732 | INFO | Theremin 0.422 0.000 0.232 ✓ +2026-06-25 18:11:38,732 | INFO | Music 0.236 0.000 0.130 ✓ +2026-06-25 18:11:38,733 | INFO | Humming 0.142 0.000 0.078 ✗ +2026-06-25 18:11:38,733 | INFO | Animal 0.086 0.000 0.047 ✗ +2026-06-25 18:11:38,733 | INFO | Whale vocalization 0.079 0.000 0.044 ✗ +2026-06-25 18:11:38,733 | INFO | → WINNER: Theremin (combined=0.232) +2026-06-25 18:11:38,763 | INFO | +[1314.60s] AMBIENT | scene='' +2026-06-25 18:11:38,763 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,763 | INFO | Animal 0.344 0.000 0.189 ✓ +2026-06-25 18:11:38,763 | INFO | Howl 0.134 0.000 0.074 ✗ +2026-06-25 18:11:38,764 | INFO | Domestic animals, pets 0.123 0.000 0.068 ✗ +2026-06-25 18:11:38,764 | INFO | Dog 0.109 0.000 0.060 ✗ +2026-06-25 18:11:38,764 | INFO | Canidae, dogs, wolves 0.051 0.000 0.028 ✗ +2026-06-25 18:11:38,764 | INFO | → WINNER: Animal (combined=0.189) +2026-06-25 18:11:38,792 | INFO | +[1314.80s] AMBIENT | scene='' +2026-06-25 18:11:38,792 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,794 | INFO | Music 0.285 0.000 0.157 ✓ +2026-06-25 18:11:38,794 | INFO | Humming 0.135 0.000 0.074 ✗ +2026-06-25 18:11:38,794 | INFO | Animal 0.089 0.000 0.049 ✗ +2026-06-25 18:11:38,794 | INFO | Theremin 0.056 0.000 0.031 ✗ +2026-06-25 18:11:38,794 | INFO | → WINNER: Music (combined=0.157) +2026-06-25 18:11:38,824 | INFO | +[1315.00s] AMBIENT | scene='' +2026-06-25 18:11:38,824 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,825 | INFO | Music 0.597 0.000 0.328 ✓ +2026-06-25 18:11:38,825 | INFO | Theremin 0.094 0.000 0.051 ✗ +2026-06-25 18:11:38,825 | INFO | Humming 0.093 0.000 0.051 ✗ +2026-06-25 18:11:38,825 | INFO | Singing 0.075 0.000 0.041 ✗ +2026-06-25 18:11:38,826 | INFO | → WINNER: Music (combined=0.328) +2026-06-25 18:11:38,856 | INFO | +[1315.20s] AMBIENT | scene='' +2026-06-25 18:11:38,858 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,858 | INFO | Music 0.701 0.000 0.386 ✓ +2026-06-25 18:11:38,859 | INFO | Theremin 0.120 0.000 0.066 ✗ +2026-06-25 18:11:38,859 | INFO | Singing 0.112 0.000 0.062 ✗ +2026-06-25 18:11:38,859 | INFO | Humming 0.094 0.000 0.052 ✗ +2026-06-25 18:11:38,859 | INFO | → WINNER: Music (combined=0.386) +2026-06-25 18:11:38,887 | INFO | +[1315.40s] AMBIENT | scene='' +2026-06-25 18:11:38,894 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,895 | INFO | Music 0.387 0.000 0.213 ✓ +2026-06-25 18:11:38,896 | INFO | Singing 0.122 0.000 0.067 ✗ +2026-06-25 18:11:38,898 | INFO | Humming 0.109 0.000 0.060 ✗ +2026-06-25 18:11:38,903 | INFO | Inside, small room 0.052 0.000 0.029 ✗ +2026-06-25 18:11:38,904 | INFO | Animal 0.047 0.000 0.026 ✗ +2026-06-25 18:11:38,905 | INFO | → WINNER: Music (combined=0.213) +2026-06-25 18:11:38,936 | INFO | +[1315.60s] AMBIENT | scene='' +2026-06-25 18:11:38,944 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,945 | INFO | Howl 0.618 0.000 0.340 ✓ +2026-06-25 18:11:38,945 | INFO | Animal 0.535 0.000 0.294 ✓ +2026-06-25 18:11:38,946 | INFO | Dog 0.426 0.000 0.234 ✓ +2026-06-25 18:11:38,947 | INFO | Domestic animals, pets 0.398 0.000 0.219 ✓ +2026-06-25 18:11:38,948 | INFO | Canidae, dogs, wolves 0.256 0.000 0.141 ✓ +2026-06-25 18:11:38,948 | INFO | Music 0.215 0.000 0.118 ✗ +2026-06-25 18:11:38,950 | INFO | → WINNER: Howl (combined=0.340) +2026-06-25 18:11:38,981 | INFO | +[1315.80s] AMBIENT | scene='' +2026-06-25 18:11:38,981 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:38,982 | INFO | Howl 0.690 0.000 0.380 ✓ +2026-06-25 18:11:38,982 | INFO | Animal 0.509 0.000 0.280 ✓ +2026-06-25 18:11:38,982 | INFO | Dog 0.402 0.000 0.221 ✓ +2026-06-25 18:11:38,982 | INFO | Canidae, dogs, wolves 0.392 0.000 0.215 ✓ +2026-06-25 18:11:38,982 | INFO | Domestic animals, pets 0.354 0.000 0.195 ✓ +2026-06-25 18:11:38,983 | INFO | Music 0.110 0.000 0.061 ✗ +2026-06-25 18:11:38,983 | INFO | → WINNER: Howl (combined=0.380) +2026-06-25 18:11:39,014 | INFO | +[1316.00s] AMBIENT | scene='' +2026-06-25 18:11:39,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,014 | INFO | Howl 0.514 0.000 0.283 ✓ +2026-06-25 18:11:39,015 | INFO | Singing bowl 0.259 0.000 0.142 ✓ +2026-06-25 18:11:39,015 | INFO | Canidae, dogs, wolves 0.238 0.000 0.131 ✓ +2026-06-25 18:11:39,015 | INFO | Animal 0.210 0.000 0.116 ✗ +2026-06-25 18:11:39,015 | INFO | Music 0.194 0.000 0.107 ✗ +2026-06-25 18:11:39,015 | INFO | Dog 0.140 0.000 0.077 ✗ +2026-06-25 18:11:39,015 | INFO | → WINNER: Howl (combined=0.283) +2026-06-25 18:11:39,045 | INFO | +[1316.20s] AMBIENT | scene='' +2026-06-25 18:11:39,046 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,046 | INFO | Howl 0.622 0.000 0.342 ✓ +2026-06-25 18:11:39,046 | INFO | Canidae, dogs, wolves 0.367 0.000 0.202 ✓ +2026-06-25 18:11:39,047 | INFO | Animal 0.357 0.000 0.196 ✓ +2026-06-25 18:11:39,047 | INFO | Singing bowl 0.308 0.000 0.170 ✓ +2026-06-25 18:11:39,047 | INFO | Dog 0.267 0.000 0.147 ✓ +2026-06-25 18:11:39,047 | INFO | Domestic animals, pets 0.213 0.000 0.117 ✗ +2026-06-25 18:11:39,048 | INFO | → WINNER: Howl (combined=0.342) +2026-06-25 18:11:39,081 | INFO | +[1316.40s] AMBIENT | scene='' +2026-06-25 18:11:39,081 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,082 | INFO | Howl 0.287 0.000 0.158 ✓ +2026-06-25 18:11:39,083 | INFO | Singing bowl 0.235 0.000 0.129 ✓ +2026-06-25 18:11:39,083 | INFO | Canidae, dogs, wolves 0.162 0.000 0.089 ✗ +2026-06-25 18:11:39,083 | INFO | Music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:39,083 | INFO | Animal 0.106 0.000 0.058 ✗ +2026-06-25 18:11:39,083 | INFO | Civil defense siren 0.076 0.000 0.042 ✗ +2026-06-25 18:11:39,084 | INFO | → WINNER: Howl (combined=0.158) +2026-06-25 18:11:39,147 | INFO | +[1316.60s] AMBIENT | scene='' +2026-06-25 18:11:39,148 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,148 | INFO | Singing bowl 0.685 0.000 0.377 ✓ +2026-06-25 18:11:39,148 | INFO | Chirp tone 0.245 0.000 0.135 ✓ +2026-06-25 18:11:39,148 | INFO | Music 0.231 0.000 0.127 ✓ +2026-06-25 18:11:39,148 | INFO | Sine wave 0.110 0.000 0.060 ✗ +2026-06-25 18:11:39,148 | INFO | → WINNER: Singing bowl (combined=0.377) +2026-06-25 18:11:39,208 | INFO | +[1316.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,210 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,211 | INFO | Singing bowl 0.771 0.000 0.424 ✓ +2026-06-25 18:11:39,211 | INFO | Chirp tone 0.181 0.395 0.277 ✓ +2026-06-25 18:11:39,213 | INFO | Music 0.220 0.000 0.121 ✓ +2026-06-25 18:11:39,213 | INFO | Sine wave 0.064 0.000 0.035 ✗ +2026-06-25 18:11:39,213 | INFO | → WINNER: Singing bowl (combined=0.424) +2026-06-25 18:11:39,272 | INFO | +[1317.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,273 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,273 | INFO | Singing bowl 0.683 0.000 0.376 ✓ +2026-06-25 18:11:39,273 | INFO | Music 0.381 0.000 0.210 ✓ +2026-06-25 18:11:39,274 | INFO | → WINNER: Singing bowl (combined=0.376) +2026-06-25 18:11:39,304 | INFO | +[1317.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,304 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,305 | INFO | Singing bowl 0.561 0.000 0.309 ✓ +2026-06-25 18:11:39,305 | INFO | Music 0.197 0.000 0.108 ✗ +2026-06-25 18:11:39,305 | INFO | → WINNER: Singing bowl (combined=0.309) +2026-06-25 18:11:39,334 | INFO | +[1317.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,334 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,335 | INFO | Music 0.403 0.000 0.222 ✓ +2026-06-25 18:11:39,335 | INFO | Singing bowl 0.165 0.000 0.091 ✗ +2026-06-25 18:11:39,335 | INFO | Inside, small room 0.079 0.000 0.043 ✗ +2026-06-25 18:11:39,335 | INFO | Musical instrument 0.071 0.000 0.039 ✗ +2026-06-25 18:11:39,335 | INFO | → WINNER: Music (combined=0.222) +2026-06-25 18:11:39,365 | INFO | +[1317.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,365 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,365 | INFO | Music 0.381 0.000 0.210 ✓ +2026-06-25 18:11:39,365 | INFO | Tick-tock 0.064 0.000 0.035 ✗ +2026-06-25 18:11:39,366 | INFO | → WINNER: Music (combined=0.210) +2026-06-25 18:11:39,395 | INFO | +[1317.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,397 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,397 | INFO | Music 0.187 0.000 0.103 ✗ +2026-06-25 18:11:39,398 | INFO | Animal 0.039 0.000 0.021 ✗ +2026-06-25 18:11:39,398 | INFO | → no winner +2026-06-25 18:11:39,427 | INFO | +[1318.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,427 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,427 | INFO | Music 0.190 0.000 0.105 ✗ +2026-06-25 18:11:39,428 | INFO | Animal 0.058 0.000 0.032 ✗ +2026-06-25 18:11:39,428 | INFO | → no winner +2026-06-25 18:11:39,458 | INFO | +[1318.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,458 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,459 | INFO | Animal 0.186 0.000 0.102 ✗ +2026-06-25 18:11:39,459 | INFO | Horse 0.178 0.000 0.098 ✗ +2026-06-25 18:11:39,459 | INFO | Clip-clop 0.176 0.000 0.097 ✗ +2026-06-25 18:11:39,459 | INFO | Vehicle 0.080 0.000 0.044 ✗ +2026-06-25 18:11:39,460 | INFO | Outside, rural or natural 0.057 0.000 0.031 ✗ +2026-06-25 18:11:39,460 | INFO | Run 0.044 0.000 0.025 ✗ +2026-06-25 18:11:39,460 | INFO | → no winner +2026-06-25 18:11:39,493 | INFO | +[1318.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,494 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,494 | INFO | Animal 0.598 0.000 0.329 ✓ +2026-06-25 18:11:39,494 | INFO | Dog 0.427 0.000 0.235 ✓ +2026-06-25 18:11:39,494 | INFO | Domestic animals, pets 0.346 0.000 0.191 ✓ +2026-06-25 18:11:39,494 | INFO | Bow-wow 0.215 0.000 0.118 ✗ +2026-06-25 18:11:39,495 | INFO | Canidae, dogs, wolves 0.095 0.000 0.052 ✗ +2026-06-25 18:11:39,495 | INFO | Bark 0.094 0.000 0.052 ✗ +2026-06-25 18:11:39,495 | INFO | → WINNER: Animal (combined=0.329) +2026-06-25 18:11:39,525 | INFO | +[1318.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,525 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,526 | INFO | Animal 0.766 0.000 0.421 ✓ +2026-06-25 18:11:39,526 | INFO | Dog 0.561 0.000 0.309 ✓ +2026-06-25 18:11:39,526 | INFO | Domestic animals, pets 0.455 0.000 0.250 ✓ +2026-06-25 18:11:39,526 | INFO | Bow-wow 0.255 0.000 0.140 ✓ +2026-06-25 18:11:39,527 | INFO | Canidae, dogs, wolves 0.148 0.000 0.082 ✗ +2026-06-25 18:11:39,527 | INFO | Whimper (dog) 0.141 0.000 0.078 ✗ +2026-06-25 18:11:39,527 | INFO | → WINNER: Animal (combined=0.421) +2026-06-25 18:11:39,557 | INFO | +[1318.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,557 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,560 | INFO | Animal 0.696 0.000 0.383 ✓ +2026-06-25 18:11:39,561 | INFO | Dog 0.685 0.000 0.377 ✓ +2026-06-25 18:11:39,561 | INFO | Domestic animals, pets 0.577 0.000 0.317 ✓ +2026-06-25 18:11:39,561 | INFO | Bow-wow 0.552 0.000 0.303 ✓ +2026-06-25 18:11:39,572 | INFO | Bark 0.323 0.000 0.178 ✓ +2026-06-25 18:11:39,572 | INFO | Whimper (dog) 0.187 0.000 0.103 ✗ +2026-06-25 18:11:39,573 | INFO | → WINNER: Animal (combined=0.383) +2026-06-25 18:11:39,620 | INFO | +[1319.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,620 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,622 | INFO | Dog 0.607 0.000 0.334 ✓ +2026-06-25 18:11:39,623 | INFO | Bow-wow 0.594 0.000 0.326 ✓ +2026-06-25 18:11:39,624 | INFO | Animal 0.549 0.000 0.302 ✓ +2026-06-25 18:11:39,624 | INFO | Domestic animals, pets 0.473 0.000 0.260 ✓ +2026-06-25 18:11:39,625 | INFO | Owl 0.100 0.354 0.214 ✓ +2026-06-25 18:11:39,655 | INFO | Bark 0.276 0.000 0.152 ✓ +2026-06-25 18:11:39,657 | INFO | → WINNER: Dog (combined=0.334) +2026-06-25 18:11:39,726 | INFO | +[1319.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,727 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,727 | INFO | Dog 0.557 0.000 0.306 ✓ +2026-06-25 18:11:39,728 | INFO | Animal 0.524 0.000 0.288 ✓ +2026-06-25 18:11:39,728 | INFO | Bow-wow 0.473 0.000 0.260 ✓ +2026-06-25 18:11:39,728 | INFO | Domestic animals, pets 0.462 0.000 0.254 ✓ +2026-06-25 18:11:39,728 | INFO | Bark 0.297 0.000 0.163 ✓ +2026-06-25 18:11:39,728 | INFO | Yip 0.139 0.000 0.077 ✗ +2026-06-25 18:11:39,728 | INFO | → WINNER: Dog (combined=0.306) +2026-06-25 18:11:39,808 | INFO | +[1319.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,808 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,809 | INFO | Dog 0.464 0.000 0.255 ✓ +2026-06-25 18:11:39,809 | INFO | Animal 0.459 0.000 0.253 ✓ +2026-06-25 18:11:39,810 | INFO | Bow-wow 0.411 0.000 0.226 ✓ +2026-06-25 18:11:39,810 | INFO | Domestic animals, pets 0.392 0.000 0.216 ✓ +2026-06-25 18:11:39,810 | INFO | Bark 0.180 0.000 0.099 ✗ +2026-06-25 18:11:39,810 | INFO | Yip 0.132 0.000 0.073 ✗ +2026-06-25 18:11:39,810 | INFO | → WINNER: Dog (combined=0.255) +2026-06-25 18:11:39,878 | INFO | +[1319.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,878 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,880 | INFO | Animal 0.262 0.000 0.144 ✓ +2026-06-25 18:11:39,880 | INFO | Bow-wow 0.231 0.000 0.127 ✓ +2026-06-25 18:11:39,880 | INFO | Dog 0.159 0.000 0.088 ✗ +2026-06-25 18:11:39,880 | INFO | Domestic animals, pets 0.137 0.000 0.075 ✗ +2026-06-25 18:11:39,881 | INFO | Chop 0.104 0.000 0.057 ✗ +2026-06-25 18:11:39,881 | INFO | Yip 0.076 0.000 0.042 ✗ +2026-06-25 18:11:39,881 | INFO | → WINNER: Animal (combined=0.144) +2026-06-25 18:11:39,912 | INFO | +[1319.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,912 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,914 | INFO | Animal 0.406 0.000 0.223 ✓ +2026-06-25 18:11:39,914 | INFO | Dog 0.260 0.000 0.143 ✓ +2026-06-25 18:11:39,914 | INFO | Bow-wow 0.222 0.000 0.122 ✓ +2026-06-25 18:11:39,914 | INFO | Domestic animals, pets 0.206 0.000 0.113 ✗ +2026-06-25 18:11:39,914 | INFO | Yip 0.082 0.000 0.045 ✗ +2026-06-25 18:11:39,915 | INFO | Bark 0.062 0.000 0.034 ✗ +2026-06-25 18:11:39,915 | INFO | → WINNER: Animal (combined=0.223) +2026-06-25 18:11:39,947 | INFO | +[1320.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,948 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,948 | INFO | Animal 0.306 0.000 0.168 ✓ +2026-06-25 18:11:39,949 | INFO | Dog 0.108 0.000 0.059 ✗ +2026-06-25 18:11:39,949 | INFO | Bow-wow 0.093 0.000 0.051 ✗ +2026-06-25 18:11:39,950 | INFO | Domestic animals, pets 0.083 0.000 0.046 ✗ +2026-06-25 18:11:39,950 | INFO | Fireworks 0.075 0.000 0.042 ✗ +2026-06-25 18:11:39,950 | INFO | Chop 0.055 0.000 0.030 ✗ +2026-06-25 18:11:39,951 | INFO | → WINNER: Animal (combined=0.168) +2026-06-25 18:11:39,982 | INFO | +[1320.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:39,983 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:39,983 | INFO | Animal 0.423 0.000 0.233 ✓ +2026-06-25 18:11:39,984 | INFO | Domestic animals, pets 0.088 0.000 0.048 ✗ +2026-06-25 18:11:39,984 | INFO | Dog 0.086 0.000 0.047 ✗ +2026-06-25 18:11:39,985 | INFO | Wild animals 0.076 0.000 0.042 ✗ +2026-06-25 18:11:39,985 | INFO | Horse 0.054 0.000 0.030 ✗ +2026-06-25 18:11:39,985 | INFO | Roaring cats (lions, tigers) 0.052 0.000 0.029 ✗ +2026-06-25 18:11:39,985 | INFO | → WINNER: Animal (combined=0.233) +2026-06-25 18:11:40,014 | INFO | +[1320.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,014 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,017 | INFO | Animal 0.486 0.000 0.267 ✓ +2026-06-25 18:11:40,018 | INFO | Domestic animals, pets 0.282 0.000 0.155 ✓ +2026-06-25 18:11:40,022 | INFO | Dog 0.271 0.000 0.149 ✓ +2026-06-25 18:11:40,023 | INFO | Bow-wow 0.092 0.000 0.051 ✗ +2026-06-25 18:11:40,023 | INFO | Whimper (dog) 0.066 0.000 0.036 ✗ +2026-06-25 18:11:40,023 | INFO | → WINNER: Animal (combined=0.267) +2026-06-25 18:11:40,080 | INFO | +[1320.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,083 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,084 | INFO | Animal 0.518 0.000 0.285 ✓ +2026-06-25 18:11:40,085 | INFO | Dog 0.158 0.000 0.087 ✗ +2026-06-25 18:11:40,085 | INFO | Domestic animals, pets 0.139 0.000 0.076 ✗ +2026-06-25 18:11:40,086 | INFO | Wild animals 0.100 0.000 0.055 ✗ +2026-06-25 18:11:40,086 | INFO | Bow-wow 0.079 0.000 0.044 ✗ +2026-06-25 18:11:40,087 | INFO | Roaring cats (lions, tigers) 0.066 0.000 0.036 ✗ +2026-06-25 18:11:40,096 | INFO | → WINNER: Animal (combined=0.285) +2026-06-25 18:11:40,171 | INFO | +[1320.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,173 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,175 | INFO | Animal 0.466 0.000 0.256 ✓ +2026-06-25 18:11:40,175 | INFO | Dog 0.132 0.000 0.073 ✗ +2026-06-25 18:11:40,180 | INFO | Domestic animals, pets 0.107 0.000 0.059 ✗ +2026-06-25 18:11:40,193 | INFO | Bow-wow 0.091 0.000 0.050 ✗ +2026-06-25 18:11:40,200 | INFO | Wild animals 0.063 0.000 0.035 ✗ +2026-06-25 18:11:40,200 | INFO | Bird 0.039 0.000 0.021 ✗ +2026-06-25 18:11:40,215 | INFO | → WINNER: Animal (combined=0.256) +2026-06-25 18:11:40,294 | INFO | +[1321.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,298 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,306 | INFO | Animal 0.522 0.000 0.287 ✓ +2026-06-25 18:11:40,320 | INFO | Dog 0.108 0.000 0.060 ✗ +2026-06-25 18:11:40,325 | INFO | Domestic animals, pets 0.088 0.000 0.048 ✗ +2026-06-25 18:11:40,326 | INFO | Bow-wow 0.064 0.000 0.035 ✗ +2026-06-25 18:11:40,326 | INFO | Wild animals 0.064 0.000 0.035 ✗ +2026-06-25 18:11:40,337 | INFO | Bird 0.035 0.000 0.019 ✗ +2026-06-25 18:11:40,342 | INFO | → WINNER: Animal (combined=0.287) +2026-06-25 18:11:40,506 | INFO | +[1321.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,508 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,512 | INFO | Animal 0.625 0.000 0.344 ✓ +2026-06-25 18:11:40,512 | INFO | Dog 0.429 0.000 0.236 ✓ +2026-06-25 18:11:40,512 | INFO | Domestic animals, pets 0.382 0.000 0.210 ✓ +2026-06-25 18:11:40,520 | INFO | Bow-wow 0.235 0.000 0.129 ✓ +2026-06-25 18:11:40,534 | INFO | Whimper (dog) 0.104 0.000 0.057 ✗ +2026-06-25 18:11:40,538 | INFO | Canidae, dogs, wolves 0.096 0.000 0.053 ✗ +2026-06-25 18:11:40,540 | INFO | → WINNER: Animal (combined=0.344) +2026-06-25 18:11:40,683 | INFO | +[1321.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,683 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,684 | INFO | Animal 0.649 0.000 0.357 ✓ +2026-06-25 18:11:40,685 | INFO | Dog 0.498 0.000 0.274 ✓ +2026-06-25 18:11:40,686 | INFO | Domestic animals, pets 0.464 0.000 0.255 ✓ +2026-06-25 18:11:40,686 | INFO | Bow-wow 0.226 0.000 0.124 ✓ +2026-06-25 18:11:40,686 | INFO | Canidae, dogs, wolves 0.161 0.000 0.088 ✗ +2026-06-25 18:11:40,686 | INFO | Bark 0.131 0.000 0.072 ✗ +2026-06-25 18:11:40,687 | INFO | → WINNER: Animal (combined=0.357) +2026-06-25 18:11:40,720 | INFO | +[1321.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,720 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,720 | INFO | Animal 0.755 0.000 0.415 ✓ +2026-06-25 18:11:40,720 | INFO | Dog 0.639 0.000 0.351 ✓ +2026-06-25 18:11:40,721 | INFO | Domestic animals, pets 0.587 0.000 0.323 ✓ +2026-06-25 18:11:40,721 | INFO | Bow-wow 0.331 0.000 0.182 ✓ +2026-06-25 18:11:40,721 | INFO | Bark 0.197 0.000 0.108 ✗ +2026-06-25 18:11:40,721 | INFO | Canidae, dogs, wolves 0.170 0.000 0.093 ✗ +2026-06-25 18:11:40,722 | INFO | → WINNER: Animal (combined=0.415) +2026-06-25 18:11:40,753 | INFO | +[1321.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,753 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,754 | INFO | Animal 0.632 0.000 0.348 ✓ +2026-06-25 18:11:40,754 | INFO | Dog 0.608 0.000 0.334 ✓ +2026-06-25 18:11:40,754 | INFO | Domestic animals, pets 0.532 0.000 0.293 ✓ +2026-06-25 18:11:40,755 | INFO | Bark 0.384 0.000 0.211 ✓ +2026-06-25 18:11:40,755 | INFO | Bow-wow 0.379 0.000 0.208 ✓ +2026-06-25 18:11:40,756 | INFO | Canidae, dogs, wolves 0.116 0.000 0.064 ✗ +2026-06-25 18:11:40,756 | INFO | → WINNER: Animal (combined=0.348) +2026-06-25 18:11:40,792 | INFO | +[1322.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,792 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,793 | INFO | Dog 0.624 0.000 0.343 ✓ +2026-06-25 18:11:40,793 | INFO | Animal 0.585 0.000 0.322 ✓ +2026-06-25 18:11:40,793 | INFO | Domestic animals, pets 0.513 0.000 0.282 ✓ +2026-06-25 18:11:40,793 | INFO | Bark 0.394 0.000 0.217 ✓ +2026-06-25 18:11:40,794 | INFO | Bow-wow 0.342 0.000 0.188 ✓ +2026-06-25 18:11:40,794 | INFO | Canidae, dogs, wolves 0.111 0.000 0.061 ✗ +2026-06-25 18:11:40,794 | INFO | → WINNER: Dog (combined=0.343) +2026-06-25 18:11:40,823 | INFO | +[1322.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,825 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,828 | INFO | Dog 0.620 0.000 0.341 ✓ +2026-06-25 18:11:40,828 | INFO | Animal 0.552 0.000 0.304 ✓ +2026-06-25 18:11:40,829 | INFO | Domestic animals, pets 0.527 0.000 0.290 ✓ +2026-06-25 18:11:40,830 | INFO | Bow-wow 0.384 0.000 0.211 ✓ +2026-06-25 18:11:40,833 | INFO | Bark 0.384 0.000 0.211 ✓ +2026-06-25 18:11:40,834 | INFO | Whimper (dog) 0.115 0.000 0.063 ✗ +2026-06-25 18:11:40,834 | INFO | → WINNER: Dog (combined=0.341) +2026-06-25 18:11:40,868 | INFO | +[1322.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,873 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,875 | INFO | Dog 0.779 0.000 0.428 ✓ +2026-06-25 18:11:40,882 | INFO | Animal 0.749 0.000 0.412 ✓ +2026-06-25 18:11:40,883 | INFO | Domestic animals, pets 0.713 0.000 0.392 ✓ +2026-06-25 18:11:40,884 | INFO | Bark 0.537 0.000 0.296 ✓ +2026-06-25 18:11:40,884 | INFO | Bow-wow 0.478 0.000 0.263 ✓ +2026-06-25 18:11:40,884 | INFO | Canidae, dogs, wolves 0.209 0.000 0.115 ✗ +2026-06-25 18:11:40,888 | INFO | → WINNER: Dog (combined=0.428) +2026-06-25 18:11:40,937 | INFO | +[1322.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,937 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,937 | INFO | Animal 0.628 0.000 0.345 ✓ +2026-06-25 18:11:40,938 | INFO | Dog 0.606 0.000 0.333 ✓ +2026-06-25 18:11:40,938 | INFO | Domestic animals, pets 0.535 0.000 0.294 ✓ +2026-06-25 18:11:40,938 | INFO | Bow-wow 0.414 0.000 0.228 ✓ +2026-06-25 18:11:40,938 | INFO | Bark 0.293 0.000 0.161 ✓ +2026-06-25 18:11:40,938 | INFO | Whimper (dog) 0.127 0.000 0.070 ✗ +2026-06-25 18:11:40,938 | INFO | → WINNER: Animal (combined=0.345) +2026-06-25 18:11:40,968 | INFO | +[1322.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:40,968 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:40,969 | INFO | Animal 0.667 0.000 0.367 ✓ +2026-06-25 18:11:40,969 | INFO | Dog 0.667 0.000 0.367 ✓ +2026-06-25 18:11:40,969 | INFO | Domestic animals, pets 0.560 0.000 0.308 ✓ +2026-06-25 18:11:40,970 | INFO | Bow-wow 0.458 0.000 0.252 ✓ +2026-06-25 18:11:40,970 | INFO | Bark 0.370 0.000 0.204 ✓ +2026-06-25 18:11:40,970 | INFO | Yip 0.136 0.000 0.075 ✗ +2026-06-25 18:11:40,970 | INFO | → WINNER: Animal (combined=0.367) +2026-06-25 18:11:40,998 | INFO | +[1323.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,000 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,000 | INFO | Dog 0.663 0.000 0.365 ✓ +2026-06-25 18:11:41,001 | INFO | Animal 0.616 0.000 0.339 ✓ +2026-06-25 18:11:41,001 | INFO | Domestic animals, pets 0.570 0.000 0.314 ✓ +2026-06-25 18:11:41,001 | INFO | Bow-wow 0.379 0.000 0.208 ✓ +2026-06-25 18:11:41,002 | INFO | Bark 0.362 0.000 0.199 ✓ +2026-06-25 18:11:41,002 | INFO | Canidae, dogs, wolves 0.120 0.000 0.066 ✗ +2026-06-25 18:11:41,003 | INFO | → WINNER: Dog (combined=0.365) +2026-06-25 18:11:41,032 | INFO | +[1323.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,036 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,037 | INFO | Dog 0.592 0.000 0.326 ✓ +2026-06-25 18:11:41,037 | INFO | Animal 0.558 0.000 0.307 ✓ +2026-06-25 18:11:41,037 | INFO | Domestic animals, pets 0.523 0.000 0.287 ✓ +2026-06-25 18:11:41,038 | INFO | Bow-wow 0.347 0.000 0.191 ✓ +2026-06-25 18:11:41,038 | INFO | Bark 0.289 0.000 0.159 ✓ +2026-06-25 18:11:41,039 | INFO | Whimper (dog) 0.116 0.000 0.064 ✗ +2026-06-25 18:11:41,039 | INFO | → WINNER: Dog (combined=0.326) +2026-06-25 18:11:41,068 | INFO | +[1323.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,069 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,069 | INFO | Dog 0.809 0.000 0.445 ✓ +2026-06-25 18:11:41,069 | INFO | Animal 0.807 0.000 0.444 ✓ +2026-06-25 18:11:41,070 | INFO | Domestic animals, pets 0.729 0.000 0.401 ✓ +2026-06-25 18:11:41,070 | INFO | Bark 0.445 0.000 0.245 ✓ +2026-06-25 18:11:41,070 | INFO | Bow-wow 0.331 0.000 0.182 ✓ +2026-06-25 18:11:41,070 | INFO | Canidae, dogs, wolves 0.210 0.000 0.116 ✗ +2026-06-25 18:11:41,071 | INFO | → WINNER: Dog (combined=0.445) +2026-06-25 18:11:41,136 | INFO | +[1323.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,136 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,137 | INFO | Animal 0.672 0.000 0.370 ✓ +2026-06-25 18:11:41,137 | INFO | Dog 0.651 0.000 0.358 ✓ +2026-06-25 18:11:41,137 | INFO | Domestic animals, pets 0.584 0.000 0.321 ✓ +2026-06-25 18:11:41,137 | INFO | Bow-wow 0.401 0.000 0.220 ✓ +2026-06-25 18:11:41,150 | INFO | Bark 0.363 0.000 0.200 ✓ +2026-06-25 18:11:41,155 | INFO | Canidae, dogs, wolves 0.136 0.000 0.075 ✗ +2026-06-25 18:11:41,157 | INFO | → WINNER: Animal (combined=0.370) +2026-06-25 18:11:41,225 | INFO | +[1323.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,226 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,226 | INFO | Animal 0.710 0.000 0.391 ✓ +2026-06-25 18:11:41,227 | INFO | Dog 0.672 0.000 0.370 ✓ +2026-06-25 18:11:41,227 | INFO | Domestic animals, pets 0.599 0.000 0.329 ✓ +2026-06-25 18:11:41,227 | INFO | Bow-wow 0.360 0.000 0.198 ✓ +2026-06-25 18:11:41,227 | INFO | Bark 0.318 0.000 0.175 ✓ +2026-06-25 18:11:41,228 | INFO | Canidae, dogs, wolves 0.140 0.000 0.077 ✗ +2026-06-25 18:11:41,228 | INFO | → WINNER: Animal (combined=0.391) +2026-06-25 18:11:41,284 | INFO | +[1324.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,285 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,285 | INFO | Dog 0.805 0.000 0.443 ✓ +2026-06-25 18:11:41,285 | INFO | Animal 0.803 0.000 0.442 ✓ +2026-06-25 18:11:41,286 | INFO | Domestic animals, pets 0.714 0.000 0.392 ✓ +2026-06-25 18:11:41,287 | INFO | Bow-wow 0.578 0.000 0.318 ✓ +2026-06-25 18:11:41,287 | INFO | Bark 0.523 0.000 0.288 ✓ +2026-06-25 18:11:41,288 | INFO | Canidae, dogs, wolves 0.187 0.000 0.103 ✗ +2026-06-25 18:11:41,288 | INFO | → WINNER: Dog (combined=0.443) +2026-06-25 18:11:41,317 | INFO | +[1324.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,343 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,355 | INFO | Dog 0.710 0.000 0.390 ✓ +2026-06-25 18:11:41,356 | INFO | Animal 0.686 0.000 0.377 ✓ +2026-06-25 18:11:41,356 | INFO | Domestic animals, pets 0.633 0.000 0.348 ✓ +2026-06-25 18:11:41,357 | INFO | Bark 0.506 0.000 0.278 ✓ +2026-06-25 18:11:41,375 | INFO | Bow-wow 0.484 0.000 0.266 ✓ +2026-06-25 18:11:41,379 | INFO | Canidae, dogs, wolves 0.170 0.000 0.093 ✗ +2026-06-25 18:11:41,380 | INFO | → WINNER: Dog (combined=0.390) +2026-06-25 18:11:41,412 | INFO | +[1324.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,413 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,414 | INFO | Animal 0.607 0.000 0.334 ✓ +2026-06-25 18:11:41,414 | INFO | Dog 0.550 0.000 0.303 ✓ +2026-06-25 18:11:41,414 | INFO | Domestic animals, pets 0.491 0.000 0.270 ✓ +2026-06-25 18:11:41,414 | INFO | Bow-wow 0.341 0.000 0.188 ✓ +2026-06-25 18:11:41,415 | INFO | Bark 0.276 0.000 0.151 ✓ +2026-06-25 18:11:41,415 | INFO | Canidae, dogs, wolves 0.101 0.000 0.056 ✗ +2026-06-25 18:11:41,415 | INFO | → WINNER: Animal (combined=0.334) +2026-06-25 18:11:41,445 | INFO | +[1324.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,450 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,463 | INFO | Animal 0.572 0.000 0.315 ✓ +2026-06-25 18:11:41,466 | INFO | Dog 0.372 0.000 0.205 ✓ +2026-06-25 18:11:41,470 | INFO | Domestic animals, pets 0.352 0.000 0.194 ✓ +2026-06-25 18:11:41,471 | INFO | Bird vocalization, bird call, bird song 0.030 0.381 0.188 ✓ +2026-06-25 18:11:41,471 | INFO | Bow-wow 0.277 0.000 0.152 ✓ +2026-06-25 18:11:41,472 | INFO | Bird 0.202 0.000 0.111 ✗ +2026-06-25 18:11:41,472 | INFO | → WINNER: Animal (combined=0.315) +2026-06-25 18:11:41,566 | INFO | +[1324.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,566 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,566 | INFO | Animal 0.530 0.000 0.291 ✓ +2026-06-25 18:11:41,567 | INFO | Dog 0.320 0.000 0.176 ✓ +2026-06-25 18:11:41,567 | INFO | Domestic animals, pets 0.269 0.000 0.148 ✓ +2026-06-25 18:11:41,567 | INFO | Bow-wow 0.213 0.000 0.117 ✗ +2026-06-25 18:11:41,567 | INFO | Bark 0.096 0.000 0.053 ✗ +2026-06-25 18:11:41,568 | INFO | Bird 0.076 0.000 0.042 ✗ +2026-06-25 18:11:41,568 | INFO | → WINNER: Animal (combined=0.291) +2026-06-25 18:11:41,743 | INFO | +[1325.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,743 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,744 | INFO | Animal 0.690 0.000 0.380 ✓ +2026-06-25 18:11:41,744 | INFO | Dog 0.607 0.000 0.334 ✓ +2026-06-25 18:11:41,744 | INFO | Domestic animals, pets 0.522 0.000 0.287 ✓ +2026-06-25 18:11:41,744 | INFO | Howl 0.068 0.360 0.200 ✓ +2026-06-25 18:11:41,744 | INFO | Bow-wow 0.355 0.000 0.196 ✓ +2026-06-25 18:11:41,744 | INFO | Bark 0.195 0.000 0.107 ✗ +2026-06-25 18:11:41,745 | INFO | → WINNER: Animal (combined=0.380) +2026-06-25 18:11:41,785 | INFO | +[1325.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,786 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,786 | INFO | Animal 0.618 0.000 0.340 ✓ +2026-06-25 18:11:41,786 | INFO | Dog 0.603 0.000 0.332 ✓ +2026-06-25 18:11:41,786 | INFO | Domestic animals, pets 0.506 0.000 0.278 ✓ +2026-06-25 18:11:41,787 | INFO | Bow-wow 0.411 0.000 0.226 ✓ +2026-06-25 18:11:41,787 | INFO | Bark 0.339 0.000 0.186 ✓ +2026-06-25 18:11:41,787 | INFO | Yip 0.116 0.000 0.064 ✗ +2026-06-25 18:11:41,805 | INFO | → WINNER: Animal (combined=0.340) +2026-06-25 18:11:41,845 | INFO | +[1325.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,846 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,846 | INFO | Dog 0.679 0.000 0.373 ✓ +2026-06-25 18:11:41,846 | INFO | Animal 0.656 0.000 0.361 ✓ +2026-06-25 18:11:41,847 | INFO | Domestic animals, pets 0.574 0.000 0.316 ✓ +2026-06-25 18:11:41,847 | INFO | Bow-wow 0.447 0.000 0.246 ✓ +2026-06-25 18:11:41,848 | INFO | Bark 0.339 0.000 0.186 ✓ +2026-06-25 18:11:41,856 | INFO | Canidae, dogs, wolves 0.144 0.000 0.079 ✗ +2026-06-25 18:11:41,857 | INFO | → WINNER: Dog (combined=0.373) +2026-06-25 18:11:41,901 | INFO | +[1325.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,902 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,902 | INFO | Dog 0.563 0.000 0.310 ✓ +2026-06-25 18:11:41,902 | INFO | Animal 0.503 0.000 0.277 ✓ +2026-06-25 18:11:41,904 | INFO | Domestic animals, pets 0.456 0.000 0.251 ✓ +2026-06-25 18:11:41,904 | INFO | Bow-wow 0.395 0.000 0.217 ✓ +2026-06-25 18:11:41,904 | INFO | Bark 0.305 0.000 0.168 ✓ +2026-06-25 18:11:41,904 | INFO | Canidae, dogs, wolves 0.121 0.000 0.067 ✗ +2026-06-25 18:11:41,904 | INFO | → WINNER: Dog (combined=0.310) +2026-06-25 18:11:41,936 | INFO | +[1325.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,937 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,937 | INFO | Animal 0.364 0.000 0.201 ✓ +2026-06-25 18:11:41,937 | INFO | Dog 0.237 0.000 0.131 ✓ +2026-06-25 18:11:41,938 | INFO | Domestic animals, pets 0.181 0.000 0.099 ✗ +2026-06-25 18:11:41,938 | INFO | Inside, small room 0.072 0.000 0.040 ✗ +2026-06-25 18:11:41,938 | INFO | Bow-wow 0.072 0.000 0.040 ✗ +2026-06-25 18:11:41,938 | INFO | → WINNER: Animal (combined=0.201) +2026-06-25 18:11:41,969 | INFO | +[1326.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:41,990 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:41,996 | INFO | Roar 0.210 0.385 0.289 ✓ +2026-06-25 18:11:41,997 | INFO | Animal 0.400 0.000 0.220 ✓ +2026-06-25 18:11:41,997 | INFO | Whale vocalization 0.068 0.351 0.196 ✓ +2026-06-25 18:11:41,998 | INFO | Roaring cats (lions, tigers) 0.241 0.000 0.132 ✓ +2026-06-25 18:11:41,999 | INFO | Wild animals 0.232 0.000 0.127 ✓ +2026-06-25 18:11:41,999 | INFO | → WINNER: Roar (combined=0.289) +2026-06-25 18:11:42,031 | INFO | +[1326.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,035 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,040 | INFO | Roar 0.354 0.385 0.368 ✓ +2026-06-25 18:11:42,045 | INFO | Animal 0.537 0.000 0.295 ✓ +2026-06-25 18:11:42,046 | INFO | Wild animals 0.363 0.000 0.200 ✓ +2026-06-25 18:11:42,046 | INFO | Roaring cats (lions, tigers) 0.342 0.000 0.188 ✓ +2026-06-25 18:11:42,048 | INFO | Cattle, bovinae 0.078 0.000 0.043 ✗ +2026-06-25 18:11:42,048 | INFO | Livestock, farm animals, working animals 0.064 0.000 0.035 ✗ +2026-06-25 18:11:42,050 | INFO | → WINNER: Roar (combined=0.368) +2026-06-25 18:11:42,138 | INFO | +[1326.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,140 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,141 | INFO | Roar 0.199 0.385 0.282 ✓ +2026-06-25 18:11:42,141 | INFO | Animal 0.369 0.000 0.203 ✓ +2026-06-25 18:11:42,141 | INFO | Cattle, bovinae 0.292 0.000 0.161 ✓ +2026-06-25 18:11:42,141 | INFO | Livestock, farm animals, working animals 0.284 0.000 0.156 ✓ +2026-06-25 18:11:42,142 | INFO | Roaring cats (lions, tigers) 0.243 0.000 0.133 ✓ +2026-06-25 18:11:42,143 | INFO | Wild animals 0.239 0.000 0.132 ✓ +2026-06-25 18:11:42,144 | INFO | → WINNER: Roar (combined=0.282) +2026-06-25 18:11:42,227 | INFO | +[1326.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,227 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,228 | INFO | Moo 0.643 0.000 0.354 ✓ +2026-06-25 18:11:42,229 | INFO | Cattle, bovinae 0.598 0.000 0.329 ✓ +2026-06-25 18:11:42,229 | INFO | Livestock, farm animals, working animals 0.596 0.000 0.328 ✓ +2026-06-25 18:11:42,229 | INFO | Roar 0.055 0.385 0.204 ✓ +2026-06-25 18:11:42,229 | INFO | Animal 0.082 0.000 0.045 ✗ +2026-06-25 18:11:42,230 | INFO | Roaring cats (lions, tigers) 0.057 0.000 0.031 ✗ +2026-06-25 18:11:42,230 | INFO | → WINNER: Moo (combined=0.354) +2026-06-25 18:11:42,289 | INFO | +[1326.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,290 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,290 | INFO | Moo 0.785 0.000 0.432 ✓ +2026-06-25 18:11:42,290 | INFO | Livestock, farm animals, working animals 0.775 0.000 0.426 ✓ +2026-06-25 18:11:42,291 | INFO | Cattle, bovinae 0.735 0.000 0.404 ✓ +2026-06-25 18:11:42,291 | INFO | → WINNER: Moo (combined=0.432) +2026-06-25 18:11:42,328 | INFO | +[1327.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,330 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,330 | INFO | Livestock, farm animals, working animals 0.712 0.000 0.392 ✓ +2026-06-25 18:11:42,331 | INFO | Moo 0.679 0.000 0.373 ✓ +2026-06-25 18:11:42,331 | INFO | Cattle, bovinae 0.642 0.000 0.353 ✓ +2026-06-25 18:11:42,331 | INFO | Civil defense siren 0.072 0.000 0.039 ✗ +2026-06-25 18:11:42,331 | INFO | Siren 0.063 0.000 0.034 ✗ +2026-06-25 18:11:42,331 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.392) +2026-06-25 18:11:42,371 | INFO | +[1327.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,371 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,372 | INFO | Livestock, farm animals, working animals 0.774 0.000 0.426 ✓ +2026-06-25 18:11:42,372 | INFO | Moo 0.748 0.000 0.411 ✓ +2026-06-25 18:11:42,372 | INFO | Cattle, bovinae 0.710 0.000 0.390 ✓ +2026-06-25 18:11:42,373 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.426) +2026-06-25 18:11:42,428 | INFO | +[1327.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,428 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,428 | INFO | Livestock, farm animals, working animals 0.901 0.000 0.496 ✓ +2026-06-25 18:11:42,428 | INFO | Moo 0.899 0.000 0.495 ✓ +2026-06-25 18:11:42,428 | INFO | Cattle, bovinae 0.884 0.000 0.486 ✓ +2026-06-25 18:11:42,430 | INFO | → WINNER: Livestock, farm animals, working animals (combined=0.496) +2026-06-25 18:11:42,458 | INFO | +[1327.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,460 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,461 | INFO | Moo 0.888 0.000 0.488 ✓ +2026-06-25 18:11:42,461 | INFO | Livestock, farm animals, working animals 0.886 0.000 0.488 ✓ +2026-06-25 18:11:42,462 | INFO | Cattle, bovinae 0.884 0.000 0.486 ✓ +2026-06-25 18:11:42,462 | INFO | → WINNER: Moo (combined=0.488) +2026-06-25 18:11:42,520 | INFO | +[1327.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,521 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,521 | INFO | Cattle, bovinae 0.902 0.000 0.496 ✓ +2026-06-25 18:11:42,521 | INFO | Moo 0.894 0.000 0.491 ✓ +2026-06-25 18:11:42,523 | INFO | Livestock, farm animals, working animals 0.843 0.000 0.463 ✓ +2026-06-25 18:11:42,523 | INFO | → WINNER: Cattle, bovinae (combined=0.496) +2026-06-25 18:11:42,593 | INFO | +[1328.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,593 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,594 | INFO | Cattle, bovinae 0.842 0.000 0.463 ✓ +2026-06-25 18:11:42,594 | INFO | Livestock, farm animals, working animals 0.779 0.000 0.428 ✓ +2026-06-25 18:11:42,595 | INFO | Moo 0.770 0.000 0.423 ✓ +2026-06-25 18:11:42,596 | INFO | Cowbell 0.293 0.000 0.161 ✓ +2026-06-25 18:11:42,596 | INFO | → WINNER: Cattle, bovinae (combined=0.463) +2026-06-25 18:11:42,665 | INFO | +[1328.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,665 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,666 | INFO | Dishes, pots, and pans 0.061 0.000 0.034 ✗ +2026-06-25 18:11:42,669 | INFO | Water 0.046 0.000 0.025 ✗ +2026-06-25 18:11:42,669 | INFO | Animal 0.043 0.000 0.024 ✗ +2026-06-25 18:11:42,672 | INFO | → no winner +2026-06-25 18:11:42,703 | INFO | +[1328.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,704 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,704 | INFO | Dishes, pots, and pans 0.195 0.000 0.107 ✗ +2026-06-25 18:11:42,705 | INFO | Inside, small room 0.146 0.000 0.080 ✗ +2026-06-25 18:11:42,707 | INFO | Cutlery, silverware 0.081 0.000 0.045 ✗ +2026-06-25 18:11:42,708 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:42,717 | INFO | → no winner +2026-06-25 18:11:42,768 | INFO | +[1328.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,770 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,772 | INFO | Dishes, pots, and pans 0.316 0.000 0.174 ✓ +2026-06-25 18:11:42,775 | INFO | Cutlery, silverware 0.212 0.000 0.117 ✗ +2026-06-25 18:11:42,784 | INFO | Chink, clink 0.195 0.000 0.107 ✗ +2026-06-25 18:11:42,786 | INFO | Glass 0.100 0.000 0.055 ✗ +2026-06-25 18:11:42,788 | INFO | Inside, small room 0.091 0.000 0.050 ✗ +2026-06-25 18:11:42,791 | INFO | → WINNER: Dishes, pots, and pans (combined=0.174) +2026-06-25 18:11:42,826 | INFO | +[1328.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,826 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,826 | INFO | Chink, clink 0.259 0.000 0.142 ✓ +2026-06-25 18:11:42,827 | INFO | Inside, small room 0.078 0.000 0.043 ✗ +2026-06-25 18:11:42,827 | INFO | → WINNER: Chink, clink (combined=0.142) +2026-06-25 18:11:42,859 | INFO | +[1329.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,859 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,859 | INFO | Inside, small room 0.077 0.000 0.042 ✗ +2026-06-25 18:11:42,860 | INFO | → no winner +2026-06-25 18:11:42,918 | INFO | +[1329.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:42,920 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:42,920 | INFO | Inside, small room 0.138 0.000 0.076 ✗ +2026-06-25 18:11:42,922 | INFO | → no winner +2026-06-25 18:11:43,014 | INFO | +[1329.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,016 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,017 | INFO | Inside, small room 0.130 0.000 0.071 ✗ +2026-06-25 18:11:43,017 | INFO | Animal 0.115 0.000 0.063 ✗ +2026-06-25 18:11:43,017 | INFO | Domestic animals, pets 0.070 0.000 0.038 ✗ +2026-06-25 18:11:43,018 | INFO | Dog 0.043 0.000 0.024 ✗ +2026-06-25 18:11:43,018 | INFO | → no winner +2026-06-25 18:11:43,088 | INFO | +[1329.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,088 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,090 | INFO | Inside, small room 0.069 0.000 0.038 ✗ +2026-06-25 18:11:43,090 | INFO | → no winner +2026-06-25 18:11:43,130 | INFO | +[1329.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,131 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,132 | INFO | Music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:43,133 | INFO | → no winner +2026-06-25 18:11:43,167 | INFO | +[1330.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,167 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,168 | INFO | Inside, small room 0.056 0.000 0.031 ✗ +2026-06-25 18:11:43,168 | INFO | → no winner +2026-06-25 18:11:43,198 | INFO | +[1330.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,198 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,198 | INFO | Inside, small room 0.095 0.000 0.052 ✗ +2026-06-25 18:11:43,200 | INFO | Animal 0.063 0.000 0.035 ✗ +2026-06-25 18:11:43,200 | INFO | Domestic animals, pets 0.052 0.000 0.029 ✗ +2026-06-25 18:11:43,200 | INFO | → no winner +2026-06-25 18:11:43,230 | INFO | +[1330.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,231 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,232 | INFO | Animal 0.150 0.000 0.083 ✗ +2026-06-25 18:11:43,235 | INFO | Domestic animals, pets 0.108 0.000 0.060 ✗ +2026-06-25 18:11:43,235 | INFO | Dog 0.075 0.000 0.041 ✗ +2026-06-25 18:11:43,236 | INFO | Inside, small room 0.073 0.000 0.040 ✗ +2026-06-25 18:11:43,237 | INFO | → no winner +2026-06-25 18:11:43,268 | INFO | +[1330.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,270 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,271 | INFO | Inside, small room 0.185 0.000 0.102 ✗ +2026-06-25 18:11:43,272 | INFO | Animal 0.147 0.000 0.081 ✗ +2026-06-25 18:11:43,273 | INFO | Domestic animals, pets 0.120 0.000 0.066 ✗ +2026-06-25 18:11:43,275 | INFO | Dog 0.062 0.000 0.034 ✗ +2026-06-25 18:11:43,275 | INFO | → no winner +2026-06-25 18:11:43,307 | INFO | +[1330.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,308 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,308 | INFO | Inside, small room 0.143 0.000 0.079 ✗ +2026-06-25 18:11:43,308 | INFO | Animal 0.105 0.000 0.058 ✗ +2026-06-25 18:11:43,310 | INFO | Domestic animals, pets 0.042 0.000 0.023 ✗ +2026-06-25 18:11:43,310 | INFO | → no winner +2026-06-25 18:11:43,338 | INFO | +[1331.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,368 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,377 | INFO | Water 0.162 0.000 0.089 ✗ +2026-06-25 18:11:43,380 | INFO | Liquid 0.098 0.000 0.054 ✗ +2026-06-25 18:11:43,386 | INFO | Toilet flush 0.077 0.000 0.043 ✗ +2026-06-25 18:11:43,393 | INFO | Drip 0.060 0.000 0.033 ✗ +2026-06-25 18:11:43,396 | INFO | Fill (with liquid) 0.056 0.000 0.031 ✗ +2026-06-25 18:11:43,404 | INFO | → no winner +2026-06-25 18:11:43,437 | INFO | +[1331.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,438 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,438 | INFO | Water 0.176 0.000 0.097 ✗ +2026-06-25 18:11:43,438 | INFO | Liquid 0.114 0.000 0.062 ✗ +2026-06-25 18:11:43,439 | INFO | Toilet flush 0.086 0.000 0.047 ✗ +2026-06-25 18:11:43,441 | INFO | Drip 0.079 0.000 0.043 ✗ +2026-06-25 18:11:43,442 | INFO | Fill (with liquid) 0.074 0.000 0.041 ✗ +2026-06-25 18:11:43,442 | INFO | Inside, small room 0.057 0.000 0.031 ✗ +2026-06-25 18:11:43,443 | INFO | → no winner +2026-06-25 18:11:43,476 | INFO | +[1331.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,476 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,477 | INFO | Water 0.133 0.000 0.073 ✗ +2026-06-25 18:11:43,477 | INFO | Liquid 0.063 0.000 0.035 ✗ +2026-06-25 18:11:43,477 | INFO | Fill (with liquid) 0.062 0.000 0.034 ✗ +2026-06-25 18:11:43,478 | INFO | → no winner +2026-06-25 18:11:43,564 | INFO | +[1331.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,565 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,565 | INFO | Animal 0.280 0.000 0.154 ✓ +2026-06-25 18:11:43,566 | INFO | Patter 0.133 0.000 0.073 ✗ +2026-06-25 18:11:43,567 | INFO | Wild animals 0.104 0.000 0.057 ✗ +2026-06-25 18:11:43,569 | INFO | Rodents, rats, mice 0.075 0.000 0.041 ✗ +2026-06-25 18:11:43,569 | INFO | Insect 0.060 0.000 0.033 ✗ +2026-06-25 18:11:43,570 | INFO | Cricket 0.058 0.000 0.032 ✗ +2026-06-25 18:11:43,570 | INFO | → WINNER: Animal (combined=0.154) +2026-06-25 18:11:43,655 | INFO | +[1331.80s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,656 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,656 | INFO | Patter 0.193 0.000 0.106 ✗ +2026-06-25 18:11:43,657 | INFO | Animal 0.114 0.000 0.063 ✗ +2026-06-25 18:11:43,658 | INFO | Rodents, rats, mice 0.085 0.000 0.047 ✗ +2026-06-25 18:11:43,660 | INFO | Bird 0.076 0.000 0.042 ✗ +2026-06-25 18:11:43,664 | INFO | Mouse 0.072 0.000 0.040 ✗ +2026-06-25 18:11:43,666 | INFO | Inside, small room 0.058 0.000 0.032 ✗ +2026-06-25 18:11:43,667 | INFO | → no winner +2026-06-25 18:11:43,703 | INFO | +[1332.00s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,703 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,704 | INFO | Patter 0.474 0.000 0.261 ✓ +2026-06-25 18:11:43,704 | INFO | Rodents, rats, mice 0.180 0.000 0.099 ✗ +2026-06-25 18:11:43,704 | INFO | Animal 0.114 0.000 0.063 ✗ +2026-06-25 18:11:43,705 | INFO | Mouse 0.087 0.000 0.048 ✗ +2026-06-25 18:11:43,705 | INFO | Tick 0.076 0.000 0.042 ✗ +2026-06-25 18:11:43,705 | INFO | Tick-tock 0.070 0.000 0.038 ✗ +2026-06-25 18:11:43,705 | INFO | → WINNER: Patter (combined=0.261) +2026-06-25 18:11:43,735 | INFO | +[1332.20s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,739 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,740 | INFO | Patter 0.148 0.000 0.082 ✗ +2026-06-25 18:11:43,740 | INFO | Animal 0.106 0.000 0.058 ✗ +2026-06-25 18:11:43,740 | INFO | Rodents, rats, mice 0.074 0.000 0.041 ✗ +2026-06-25 18:11:43,741 | INFO | Inside, small room 0.071 0.000 0.039 ✗ +2026-06-25 18:11:43,741 | INFO | Tick 0.058 0.000 0.032 ✗ +2026-06-25 18:11:43,742 | INFO | Mouse 0.054 0.000 0.030 ✗ +2026-06-25 18:11:43,742 | INFO | → no winner +2026-06-25 18:11:43,773 | INFO | +[1332.40s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,773 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,775 | INFO | Squish 0.103 0.000 0.057 ✗ +2026-06-25 18:11:43,775 | INFO | Chewing, mastication 0.071 0.000 0.039 ✗ +2026-06-25 18:11:43,780 | INFO | Inside, small room 0.062 0.000 0.034 ✗ +2026-06-25 18:11:43,780 | INFO | Animal 0.053 0.000 0.029 ✗ +2026-06-25 18:11:43,782 | INFO | → no winner +2026-06-25 18:11:43,825 | INFO | +[1332.60s] AMBIENT | scene='The image is a still from a video. On the left side of the path, there' +2026-06-25 18:11:43,829 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,830 | INFO | Patter 0.179 0.000 0.098 ✗ +2026-06-25 18:11:43,835 | INFO | Inside, small room 0.171 0.000 0.094 ✗ +2026-06-25 18:11:43,836 | INFO | Writing 0.091 0.000 0.050 ✗ +2026-06-25 18:11:43,836 | INFO | Zipper (clothing) 0.086 0.000 0.047 ✗ +2026-06-25 18:11:43,837 | INFO | Animal 0.050 0.000 0.027 ✗ +2026-06-25 18:11:43,838 | INFO | → no winner +2026-06-25 18:11:43,888 | INFO | +[1332.80s] AMBIENT | scene='' +2026-06-25 18:11:43,891 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,892 | INFO | Patter 0.069 0.000 0.038 ✗ +2026-06-25 18:11:43,892 | INFO | Vehicle 0.059 0.000 0.032 ✗ +2026-06-25 18:11:43,893 | INFO | Inside, small room 0.055 0.000 0.030 ✗ +2026-06-25 18:11:43,893 | INFO | Animal 0.047 0.000 0.026 ✗ +2026-06-25 18:11:43,895 | INFO | → no winner +2026-06-25 18:11:43,966 | INFO | +[1333.00s] AMBIENT | scene='' +2026-06-25 18:11:43,967 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:43,968 | INFO | Rodents, rats, mice 0.745 0.000 0.409 ✓ +2026-06-25 18:11:43,968 | INFO | Patter 0.435 0.000 0.239 ✓ +2026-06-25 18:11:43,968 | INFO | Animal 0.267 0.000 0.147 ✓ +2026-06-25 18:11:43,969 | INFO | Horse 0.063 0.000 0.035 ✗ +2026-06-25 18:11:43,969 | INFO | → WINNER: Rodents, rats, mice (combined=0.409) +2026-06-25 18:11:44,060 | INFO | +[1344.20s] AMBIENT | scene='' +2026-06-25 18:11:44,060 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,061 | INFO | Chop 0.083 0.000 0.046 ✗ +2026-06-25 18:11:44,061 | INFO | → no winner +2026-06-25 18:11:44,096 | INFO | +[1344.40s] AMBIENT | scene='' +2026-06-25 18:11:44,096 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,097 | INFO | Animal 0.046 0.000 0.025 ✗ +2026-06-25 18:11:44,097 | INFO | → no winner +2026-06-25 18:11:44,127 | INFO | +[1344.60s] AMBIENT | scene='' +2026-06-25 18:11:44,128 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,128 | INFO | Animal 0.043 0.000 0.024 ✗ +2026-06-25 18:11:44,129 | INFO | → no winner +2026-06-25 18:11:44,158 | INFO | +[1344.80s] AMBIENT | scene='' +2026-06-25 18:11:44,160 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,160 | INFO | Animal 0.079 0.000 0.043 ✗ +2026-06-25 18:11:44,160 | INFO | → no winner +2026-06-25 18:11:44,190 | INFO | +[1345.00s] AMBIENT | scene='' +2026-06-25 18:11:44,213 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,215 | INFO | Animal 0.102 0.000 0.056 ✗ +2026-06-25 18:11:44,216 | INFO | Bird 0.071 0.000 0.039 ✗ +2026-06-25 18:11:44,216 | INFO | Bird vocalization, bird call, bird song 0.033 0.000 0.018 ✗ +2026-06-25 18:11:44,216 | INFO | → no winner +2026-06-25 18:11:44,257 | INFO | +[1345.20s] AMBIENT | scene='' +2026-06-25 18:11:44,258 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,258 | INFO | Bird 0.243 0.000 0.134 ✓ +2026-06-25 18:11:44,259 | INFO | Pigeon, dove 0.129 0.000 0.071 ✗ +2026-06-25 18:11:44,259 | INFO | Animal 0.102 0.000 0.056 ✗ +2026-06-25 18:11:44,259 | INFO | Bird vocalization, bird call, bird song 0.099 0.000 0.054 ✗ +2026-06-25 18:11:44,260 | INFO | Coo 0.081 0.000 0.045 ✗ +2026-06-25 18:11:44,260 | INFO | Whistling 0.063 0.000 0.035 ✗ +2026-06-25 18:11:44,260 | INFO | → WINNER: Bird (combined=0.134) +2026-06-25 18:11:44,313 | INFO | +[1345.40s] AMBIENT | scene='' +2026-06-25 18:11:44,314 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,314 | INFO | Animal 0.108 0.000 0.059 ✗ +2026-06-25 18:11:44,314 | INFO | Bird 0.060 0.000 0.033 ✗ +2026-06-25 18:11:44,314 | INFO | → no winner +2026-06-25 18:11:44,377 | INFO | +[1345.60s] AMBIENT | scene='' +2026-06-25 18:11:44,377 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,378 | INFO | Whistling 0.234 0.000 0.129 ✓ +2026-06-25 18:11:44,378 | INFO | Whistle 0.127 0.000 0.070 ✗ +2026-06-25 18:11:44,378 | INFO | Animal 0.094 0.000 0.051 ✗ +2026-06-25 18:11:44,378 | INFO | → WINNER: Whistling (combined=0.129) +2026-06-25 18:11:44,443 | INFO | +[1345.80s] AMBIENT | scene='' +2026-06-25 18:11:44,443 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,444 | INFO | Whistle 0.303 0.000 0.167 ✓ +2026-06-25 18:11:44,444 | INFO | Whistling 0.251 0.000 0.138 ✓ +2026-06-25 18:11:44,445 | INFO | Animal 0.070 0.000 0.039 ✗ +2026-06-25 18:11:44,445 | INFO | Bird 0.033 0.000 0.018 ✗ +2026-06-25 18:11:44,445 | INFO | → WINNER: Whistle (combined=0.167) +2026-06-25 18:11:44,490 | INFO | +[1346.00s] AMBIENT | scene='' +2026-06-25 18:11:44,493 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,494 | INFO | Whistling 0.346 0.000 0.191 ✓ +2026-06-25 18:11:44,494 | INFO | Whistle 0.241 0.000 0.133 ✓ +2026-06-25 18:11:44,495 | INFO | Animal 0.103 0.000 0.057 ✗ +2026-06-25 18:11:44,495 | INFO | → WINNER: Whistling (combined=0.191) +2026-06-25 18:11:44,534 | INFO | +[1346.20s] AMBIENT | scene='' +2026-06-25 18:11:44,535 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,535 | INFO | Whistling 0.308 0.000 0.169 ✓ +2026-06-25 18:11:44,536 | INFO | Whistle 0.177 0.000 0.097 ✗ +2026-06-25 18:11:44,536 | INFO | Animal 0.128 0.000 0.070 ✗ +2026-06-25 18:11:44,536 | INFO | Frog 0.077 0.000 0.043 ✗ +2026-06-25 18:11:44,537 | INFO | → WINNER: Whistling (combined=0.169) +2026-06-25 18:11:44,567 | INFO | +[1346.40s] AMBIENT | scene='' +2026-06-25 18:11:44,568 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,568 | INFO | Whistle 0.114 0.000 0.063 ✗ +2026-06-25 18:11:44,569 | INFO | Frog 0.106 0.000 0.059 ✗ +2026-06-25 18:11:44,569 | INFO | Whistling 0.057 0.000 0.031 ✗ +2026-06-25 18:11:44,569 | INFO | Animal 0.039 0.000 0.022 ✗ +2026-06-25 18:11:44,570 | INFO | → no winner +2026-06-25 18:11:44,600 | INFO | +[1346.60s] AMBIENT | scene='' +2026-06-25 18:11:44,600 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,601 | INFO | Whistle 0.140 0.000 0.077 ✗ +2026-06-25 18:11:44,601 | INFO | Whistling 0.054 0.000 0.030 ✗ +2026-06-25 18:11:44,601 | INFO | → no winner +2026-06-25 18:11:44,630 | INFO | +[1346.80s] AMBIENT | scene='' +2026-06-25 18:11:44,632 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,632 | INFO | Theremin 0.182 0.000 0.100 ✗ +2026-06-25 18:11:44,634 | INFO | Whistle 0.067 0.000 0.037 ✗ +2026-06-25 18:11:44,634 | INFO | → no winner +2026-06-25 18:11:44,691 | INFO | +[1347.00s] AMBIENT | scene='' +2026-06-25 18:11:44,692 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,693 | INFO | Car alarm 0.060 0.000 0.033 ✗ +2026-06-25 18:11:44,693 | INFO | → no winner +2026-06-25 18:11:44,757 | INFO | +[1347.20s] AMBIENT | scene='' +2026-06-25 18:11:44,757 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,758 | INFO | Rodents, rats, mice 0.100 0.000 0.055 ✗ +2026-06-25 18:11:44,758 | INFO | Animal 0.064 0.000 0.035 ✗ +2026-06-25 18:11:44,758 | INFO | Patter 0.053 0.000 0.029 ✗ +2026-06-25 18:11:44,758 | INFO | → no winner +2026-06-25 18:11:44,822 | INFO | +[1347.40s] AMBIENT | scene='' +2026-06-25 18:11:44,823 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,823 | INFO | Rodents, rats, mice 0.496 0.000 0.273 ✓ +2026-06-25 18:11:44,824 | INFO | Patter 0.166 0.000 0.091 ✗ +2026-06-25 18:11:44,824 | INFO | Animal 0.119 0.000 0.065 ✗ +2026-06-25 18:11:44,824 | INFO | Mouse 0.052 0.000 0.029 ✗ +2026-06-25 18:11:44,824 | INFO | Bird 0.050 0.000 0.028 ✗ +2026-06-25 18:11:44,825 | INFO | → WINNER: Rodents, rats, mice (combined=0.273) +2026-06-25 18:11:44,878 | INFO | +[1347.60s] AMBIENT | scene='' +2026-06-25 18:11:44,878 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,880 | INFO | Rodents, rats, mice 0.829 0.000 0.456 ✓ +2026-06-25 18:11:44,882 | INFO | Patter 0.637 0.000 0.350 ✓ +2026-06-25 18:11:44,920 | INFO | Mouse 0.085 0.000 0.047 ✗ +2026-06-25 18:11:44,921 | INFO | Animal 0.077 0.000 0.043 ✗ +2026-06-25 18:11:44,929 | INFO | Bird 0.055 0.000 0.030 ✗ +2026-06-25 18:11:44,930 | INFO | → WINNER: Rodents, rats, mice (combined=0.456) +2026-06-25 18:11:44,971 | INFO | +[1347.80s] AMBIENT | scene='' +2026-06-25 18:11:44,972 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:44,973 | INFO | Rodents, rats, mice 0.544 0.000 0.299 ✓ +2026-06-25 18:11:44,973 | INFO | Patter 0.397 0.000 0.218 ✓ +2026-06-25 18:11:44,973 | INFO | Mouse 0.272 0.000 0.149 ✓ +2026-06-25 18:11:44,973 | INFO | Animal 0.156 0.000 0.086 ✗ +2026-06-25 18:11:44,974 | INFO | Bird 0.106 0.000 0.058 ✗ +2026-06-25 18:11:44,974 | INFO | → WINNER: Rodents, rats, mice (combined=0.299) +2026-06-25 18:11:45,003 | INFO | +[1348.00s] AMBIENT | scene='' +2026-06-25 18:11:45,004 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,005 | INFO | Patter 0.160 0.000 0.088 ✗ +2026-06-25 18:11:45,005 | INFO | Animal 0.051 0.000 0.028 ✗ +2026-06-25 18:11:45,005 | INFO | → no winner +2026-06-25 18:11:45,053 | INFO | +[1348.20s] AMBIENT | scene='' +2026-06-25 18:11:45,061 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,067 | INFO | Music 0.109 0.000 0.060 ✗ +2026-06-25 18:11:45,071 | INFO | → no winner +2026-06-25 18:11:45,168 | INFO | +[1348.40s] AMBIENT | scene='' +2026-06-25 18:11:45,168 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,168 | INFO | Animal 0.150 0.000 0.083 ✗ +2026-06-25 18:11:45,168 | INFO | Whale vocalization 0.110 0.000 0.060 ✗ +2026-06-25 18:11:45,169 | INFO | Wild animals 0.080 0.000 0.044 ✗ +2026-06-25 18:11:45,169 | INFO | Roar 0.069 0.000 0.038 ✗ +2026-06-25 18:11:45,169 | INFO | Roaring cats (lions, tigers) 0.066 0.000 0.036 ✗ +2026-06-25 18:11:45,170 | INFO | → no winner +2026-06-25 18:11:45,262 | INFO | +[1348.60s] AMBIENT | scene='' +2026-06-25 18:11:45,264 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,265 | INFO | Animal 0.295 0.000 0.162 ✓ +2026-06-25 18:11:45,265 | INFO | Whale vocalization 0.245 0.000 0.135 ✓ +2026-06-25 18:11:45,265 | INFO | Roar 0.243 0.000 0.134 ✓ +2026-06-25 18:11:45,265 | INFO | Wild animals 0.166 0.000 0.091 ✗ +2026-06-25 18:11:45,267 | INFO | Roaring cats (lions, tigers) 0.164 0.000 0.090 ✗ +2026-06-25 18:11:45,267 | INFO | → WINNER: Animal (combined=0.162) +2026-06-25 18:11:45,303 | INFO | +[1348.80s] AMBIENT | scene='' +2026-06-25 18:11:45,303 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,304 | INFO | Animal 0.331 0.000 0.182 ✓ +2026-06-25 18:11:45,304 | INFO | Cattle, bovinae 0.293 0.000 0.161 ✓ +2026-06-25 18:11:45,304 | INFO | Livestock, farm animals, working animals 0.277 0.000 0.152 ✓ +2026-06-25 18:11:45,305 | INFO | Wild animals 0.216 0.000 0.119 ✗ +2026-06-25 18:11:45,305 | INFO | Moo 0.211 0.000 0.116 ✗ +2026-06-25 18:11:45,306 | INFO | Roaring cats (lions, tigers) 0.206 0.000 0.113 ✗ +2026-06-25 18:11:45,306 | INFO | → WINNER: Animal (combined=0.182) +2026-06-25 18:11:45,335 | INFO | +[1349.00s] AMBIENT | scene='' +2026-06-25 18:11:45,336 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,336 | INFO | Cattle, bovinae 0.486 0.000 0.267 ✓ +2026-06-25 18:11:45,336 | INFO | Moo 0.467 0.000 0.257 ✓ +2026-06-25 18:11:45,336 | INFO | Livestock, farm animals, working animals 0.457 0.000 0.252 ✓ +2026-06-25 18:11:45,336 | INFO | Animal 0.129 0.000 0.071 ✗ +2026-06-25 18:11:45,338 | INFO | Roar 0.090 0.000 0.050 ✗ +2026-06-25 18:11:45,338 | INFO | Roaring cats (lions, tigers) 0.084 0.000 0.046 ✗ +2026-06-25 18:11:45,338 | INFO | → WINNER: Cattle, bovinae (combined=0.267) +2026-06-25 18:11:45,368 | INFO | +[1350.80s] AMBIENT | scene='' +2026-06-25 18:11:45,368 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,368 | INFO | Bird 0.235 0.000 0.129 ✓ +2026-06-25 18:11:45,369 | INFO | Animal 0.160 0.000 0.088 ✗ +2026-06-25 18:11:45,369 | INFO | Bird vocalization, bird call, bird song 0.133 0.000 0.073 ✗ +2026-06-25 18:11:45,369 | INFO | Chirp, tweet 0.129 0.000 0.071 ✗ +2026-06-25 18:11:45,369 | INFO | Environmental noise 0.068 0.000 0.037 ✗ +2026-06-25 18:11:45,369 | INFO | Domestic animals, pets 0.039 0.000 0.021 ✗ +2026-06-25 18:11:45,369 | INFO | → WINNER: Bird (combined=0.129) +2026-06-25 18:11:45,398 | INFO | +[1351.00s] AMBIENT | scene='' +2026-06-25 18:11:45,399 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,399 | INFO | Frog 0.275 0.000 0.151 ✓ +2026-06-25 18:11:45,399 | INFO | Animal 0.154 0.000 0.085 ✗ +2026-06-25 18:11:45,399 | INFO | Bird 0.133 0.000 0.073 ✗ +2026-06-25 18:11:45,399 | INFO | Bird vocalization, bird call, bird song 0.056 0.000 0.031 ✗ +2026-06-25 18:11:45,400 | INFO | Cricket 0.035 0.000 0.019 ✗ +2026-06-25 18:11:45,400 | INFO | → WINNER: Frog (combined=0.151) +2026-06-25 18:11:45,434 | INFO | +[1351.20s] AMBIENT | scene='' +2026-06-25 18:11:45,437 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,437 | INFO | Frog 0.583 0.000 0.320 ✓ +2026-06-25 18:11:45,438 | INFO | Animal 0.166 0.000 0.091 ✗ +2026-06-25 18:11:45,439 | INFO | Croak 0.088 0.000 0.048 ✗ +2026-06-25 18:11:45,439 | INFO | → WINNER: Frog (combined=0.320) +2026-06-25 18:11:45,467 | INFO | +[1351.40s] AMBIENT | scene='' +2026-06-25 18:11:45,468 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,468 | INFO | Frog 0.676 0.000 0.372 ✓ +2026-06-25 18:11:45,468 | INFO | Croak 0.166 0.000 0.091 ✗ +2026-06-25 18:11:45,469 | INFO | Animal 0.089 0.000 0.049 ✗ +2026-06-25 18:11:45,469 | INFO | → WINNER: Frog (combined=0.372) +2026-06-25 18:11:45,499 | INFO | +[1351.60s] AMBIENT | scene='' +2026-06-25 18:11:45,500 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,501 | INFO | Frog 0.401 0.000 0.220 ✓ +2026-06-25 18:11:45,504 | INFO | Animal 0.110 0.000 0.060 ✗ +2026-06-25 18:11:45,504 | INFO | → WINNER: Frog (combined=0.220) +2026-06-25 18:11:45,539 | INFO | +[1351.80s] AMBIENT | scene='' +2026-06-25 18:11:45,540 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,540 | INFO | Animal 0.086 0.000 0.047 ✗ +2026-06-25 18:11:45,540 | INFO | Frog 0.080 0.000 0.044 ✗ +2026-06-25 18:11:45,540 | INFO | Cricket 0.070 0.000 0.038 ✗ +2026-06-25 18:11:45,542 | INFO | Sonar 0.063 0.000 0.035 ✗ +2026-06-25 18:11:45,542 | INFO | → no winner +2026-06-25 18:11:45,571 | INFO | +[1352.00s] AMBIENT | scene='' +2026-06-25 18:11:45,572 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,581 | INFO | Sonar 0.381 0.000 0.210 ✓ +2026-06-25 18:11:45,581 | INFO | → WINNER: Sonar (combined=0.210) +2026-06-25 18:11:45,637 | INFO | +[1352.20s] AMBIENT | scene='' +2026-06-25 18:11:45,639 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,641 | INFO | Sonar 0.165 0.000 0.090 ✗ +2026-06-25 18:11:45,651 | INFO | → no winner +2026-06-25 18:11:45,745 | INFO | +[1352.40s] AMBIENT | scene='' +2026-06-25 18:11:45,746 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,746 | INFO | Music 0.223 0.000 0.123 ✓ +2026-06-25 18:11:45,746 | INFO | → WINNER: Music (combined=0.123) +2026-06-25 18:11:45,827 | INFO | +[1352.60s] AMBIENT | scene='' +2026-06-25 18:11:45,827 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,827 | INFO | Music 0.634 0.000 0.349 ✓ +2026-06-25 18:11:45,827 | INFO | Musical instrument 0.242 0.000 0.133 ✓ +2026-06-25 18:11:45,828 | INFO | Piano 0.080 0.000 0.044 ✗ +2026-06-25 18:11:45,828 | INFO | Synthesizer 0.057 0.000 0.032 ✗ +2026-06-25 18:11:45,828 | INFO | → WINNER: Music (combined=0.349) +2026-06-25 18:11:45,885 | INFO | +[1352.80s] AMBIENT | scene='' +2026-06-25 18:11:45,886 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,886 | INFO | Music 0.525 0.000 0.289 ✓ +2026-06-25 18:11:45,886 | INFO | Musical instrument 0.173 0.000 0.095 ✗ +2026-06-25 18:11:45,887 | INFO | → WINNER: Music (combined=0.289) +2026-06-25 18:11:45,918 | INFO | +[1353.00s] AMBIENT | scene='' +2026-06-25 18:11:45,918 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,930 | INFO | Music 0.755 0.000 0.415 ✓ +2026-06-25 18:11:45,930 | INFO | Musical instrument 0.187 0.000 0.103 ✗ +2026-06-25 18:11:45,930 | INFO | Sitar 0.185 0.000 0.102 ✗ +2026-06-25 18:11:45,932 | INFO | Brass instrument 0.070 0.000 0.038 ✗ +2026-06-25 18:11:45,932 | INFO | Plucked string instrument 0.063 0.000 0.035 ✗ +2026-06-25 18:11:45,932 | INFO | → WINNER: Music (combined=0.415) +2026-06-25 18:11:45,963 | INFO | +[1353.20s] AMBIENT | scene='' +2026-06-25 18:11:45,963 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:45,963 | INFO | Music 0.816 0.000 0.449 ✓ +2026-06-25 18:11:45,964 | INFO | Musical instrument 0.449 0.000 0.247 ✓ +2026-06-25 18:11:45,964 | INFO | Sitar 0.236 0.000 0.130 ✓ +2026-06-25 18:11:45,964 | INFO | Plucked string instrument 0.196 0.000 0.108 ✗ +2026-06-25 18:11:45,965 | INFO | Piano 0.139 0.000 0.076 ✗ +2026-06-25 18:11:45,965 | INFO | Keyboard (musical) 0.135 0.000 0.074 ✗ +2026-06-25 18:11:45,965 | INFO | → WINNER: Music (combined=0.449) +2026-06-25 18:11:46,011 | INFO | +[1353.40s] AMBIENT | scene='' +2026-06-25 18:11:46,012 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,012 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:11:46,012 | INFO | Sitar 0.808 0.000 0.445 ✓ +2026-06-25 18:11:46,013 | INFO | Musical instrument 0.532 0.000 0.292 ✓ +2026-06-25 18:11:46,013 | INFO | Plucked string instrument 0.416 0.000 0.229 ✓ +2026-06-25 18:11:46,013 | INFO | Carnatic music 0.235 0.000 0.129 ✓ +2026-06-25 18:11:46,013 | INFO | Classical music 0.210 0.000 0.116 ✗ +2026-06-25 18:11:46,014 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:11:46,043 | INFO | +[1353.60s] AMBIENT | scene='' +2026-06-25 18:11:46,043 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,044 | INFO | Music 0.841 0.000 0.463 ✓ +2026-06-25 18:11:46,045 | INFO | Sitar 0.768 0.000 0.422 ✓ +2026-06-25 18:11:46,045 | INFO | Musical instrument 0.471 0.000 0.259 ✓ +2026-06-25 18:11:46,046 | INFO | Plucked string instrument 0.384 0.000 0.211 ✓ +2026-06-25 18:11:46,046 | INFO | Carnatic music 0.183 0.000 0.101 ✗ +2026-06-25 18:11:46,046 | INFO | Classical music 0.139 0.000 0.076 ✗ +2026-06-25 18:11:46,046 | INFO | → WINNER: Music (combined=0.463) +2026-06-25 18:11:46,080 | INFO | +[1353.80s] AMBIENT | scene='' +2026-06-25 18:11:46,081 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,081 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:11:46,082 | INFO | Sitar 0.797 0.000 0.438 ✓ +2026-06-25 18:11:46,082 | INFO | Musical instrument 0.475 0.000 0.261 ✓ +2026-06-25 18:11:46,082 | INFO | Plucked string instrument 0.404 0.000 0.222 ✓ +2026-06-25 18:11:46,082 | INFO | Carnatic music 0.136 0.000 0.075 ✗ +2026-06-25 18:11:46,083 | INFO | Bowed string instrument 0.124 0.000 0.068 ✗ +2026-06-25 18:11:46,083 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:11:46,148 | INFO | +[1354.00s] AMBIENT | scene='' +2026-06-25 18:11:46,148 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,150 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:11:46,151 | INFO | Sitar 0.632 0.000 0.347 ✓ +2026-06-25 18:11:46,151 | INFO | Musical instrument 0.525 0.000 0.289 ✓ +2026-06-25 18:11:46,151 | INFO | Plucked string instrument 0.431 0.000 0.237 ✓ +2026-06-25 18:11:46,151 | INFO | Carnatic music 0.126 0.000 0.069 ✗ +2026-06-25 18:11:46,151 | INFO | Guitar 0.122 0.000 0.067 ✗ +2026-06-25 18:11:46,151 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:11:46,230 | INFO | +[1354.20s] AMBIENT | scene='' +2026-06-25 18:11:46,230 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,230 | INFO | Music 0.366 0.000 0.201 ✓ +2026-06-25 18:11:46,230 | INFO | Wind instrument, woodwind instrument 0.251 0.000 0.138 ✓ +2026-06-25 18:11:46,230 | INFO | Shofar 0.248 0.000 0.136 ✓ +2026-06-25 18:11:46,231 | INFO | Musical instrument 0.126 0.000 0.069 ✗ +2026-06-25 18:11:46,231 | INFO | Brass instrument 0.055 0.000 0.030 ✗ +2026-06-25 18:11:46,231 | INFO | → WINNER: Music (combined=0.201) +2026-06-25 18:11:46,282 | INFO | +[1354.40s] AMBIENT | scene='' +2026-06-25 18:11:46,285 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,286 | INFO | Music 0.527 0.000 0.290 ✓ +2026-06-25 18:11:46,286 | INFO | Musical instrument 0.191 0.000 0.105 ✗ +2026-06-25 18:11:46,287 | INFO | Wind instrument, woodwind instrument 0.103 0.000 0.057 ✗ +2026-06-25 18:11:46,287 | INFO | Brass instrument 0.080 0.000 0.044 ✗ +2026-06-25 18:11:46,287 | INFO | Shofar 0.074 0.000 0.041 ✗ +2026-06-25 18:11:46,288 | INFO | Plucked string instrument 0.065 0.000 0.036 ✗ +2026-06-25 18:11:46,288 | INFO | → WINNER: Music (combined=0.290) +2026-06-25 18:11:46,317 | INFO | +[1354.60s] AMBIENT | scene='' +2026-06-25 18:11:46,317 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,319 | INFO | Music 0.824 0.000 0.453 ✓ +2026-06-25 18:11:46,319 | INFO | Sitar 0.594 0.000 0.327 ✓ +2026-06-25 18:11:46,320 | INFO | Musical instrument 0.494 0.000 0.272 ✓ +2026-06-25 18:11:46,320 | INFO | Plucked string instrument 0.405 0.000 0.223 ✓ +2026-06-25 18:11:46,320 | INFO | Carnatic music 0.122 0.000 0.067 ✗ +2026-06-25 18:11:46,321 | INFO | Guitar 0.088 0.000 0.049 ✗ +2026-06-25 18:11:46,321 | INFO | → WINNER: Music (combined=0.453) +2026-06-25 18:11:46,351 | INFO | +[1354.80s] AMBIENT | scene='' +2026-06-25 18:11:46,351 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,352 | INFO | Music 0.841 0.000 0.462 ✓ +2026-06-25 18:11:46,352 | INFO | Sitar 0.839 0.000 0.462 ✓ +2026-06-25 18:11:46,352 | INFO | Musical instrument 0.419 0.000 0.231 ✓ +2026-06-25 18:11:46,352 | INFO | Plucked string instrument 0.348 0.000 0.192 ✓ +2026-06-25 18:11:46,352 | INFO | Carnatic music 0.239 0.000 0.132 ✓ +2026-06-25 18:11:46,352 | INFO | Classical music 0.140 0.000 0.077 ✗ +2026-06-25 18:11:46,352 | INFO | → WINNER: Music (combined=0.462) +2026-06-25 18:11:46,382 | INFO | +[1355.00s] AMBIENT | scene='' +2026-06-25 18:11:46,382 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,383 | INFO | Music 0.846 0.000 0.465 ✓ +2026-06-25 18:11:46,384 | INFO | Sitar 0.840 0.000 0.462 ✓ +2026-06-25 18:11:46,384 | INFO | Musical instrument 0.400 0.000 0.220 ✓ +2026-06-25 18:11:46,384 | INFO | Plucked string instrument 0.331 0.000 0.182 ✓ +2026-06-25 18:11:46,385 | INFO | Carnatic music 0.175 0.000 0.097 ✗ +2026-06-25 18:11:46,385 | INFO | Bowed string instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:11:46,386 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:11:46,415 | INFO | +[1355.20s] AMBIENT | scene='' +2026-06-25 18:11:46,415 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,415 | INFO | Sitar 0.845 0.000 0.465 ✓ +2026-06-25 18:11:46,416 | INFO | Music 0.838 0.000 0.461 ✓ +2026-06-25 18:11:46,416 | INFO | Musical instrument 0.377 0.000 0.207 ✓ +2026-06-25 18:11:46,417 | INFO | Plucked string instrument 0.304 0.000 0.167 ✓ +2026-06-25 18:11:46,417 | INFO | Carnatic music 0.184 0.000 0.101 ✗ +2026-06-25 18:11:46,417 | INFO | Bowed string instrument 0.121 0.000 0.067 ✗ +2026-06-25 18:11:46,418 | INFO | → WINNER: Sitar (combined=0.465) +2026-06-25 18:11:46,446 | INFO | +[1355.40s] AMBIENT | scene='' +2026-06-25 18:11:46,447 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,447 | INFO | Music 0.832 0.000 0.458 ✓ +2026-06-25 18:11:46,447 | INFO | Sitar 0.814 0.000 0.448 ✓ +2026-06-25 18:11:46,448 | INFO | Musical instrument 0.455 0.000 0.250 ✓ +2026-06-25 18:11:46,448 | INFO | Plucked string instrument 0.382 0.000 0.210 ✓ +2026-06-25 18:11:46,448 | INFO | Carnatic music 0.201 0.000 0.111 ✗ +2026-06-25 18:11:46,448 | INFO | Bowed string instrument 0.136 0.000 0.075 ✗ +2026-06-25 18:11:46,452 | INFO | → WINNER: Music (combined=0.458) +2026-06-25 18:11:46,489 | INFO | +[1355.60s] AMBIENT | scene='' +2026-06-25 18:11:46,490 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,490 | INFO | Music 0.826 0.000 0.454 ✓ +2026-06-25 18:11:46,490 | INFO | Sitar 0.631 0.000 0.347 ✓ +2026-06-25 18:11:46,490 | INFO | Musical instrument 0.544 0.000 0.299 ✓ +2026-06-25 18:11:46,490 | INFO | Plucked string instrument 0.448 0.000 0.246 ✓ +2026-06-25 18:11:46,490 | INFO | Guitar 0.168 0.000 0.092 ✗ +2026-06-25 18:11:46,490 | INFO | Carnatic music 0.145 0.000 0.080 ✗ +2026-06-25 18:11:46,491 | INFO | → WINNER: Music (combined=0.454) +2026-06-25 18:11:46,519 | INFO | +[1355.80s] AMBIENT | scene='' +2026-06-25 18:11:46,521 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,521 | INFO | Music 0.851 0.000 0.468 ✓ +2026-06-25 18:11:46,521 | INFO | Sitar 0.831 0.000 0.457 ✓ +2026-06-25 18:11:46,522 | INFO | Musical instrument 0.461 0.000 0.254 ✓ +2026-06-25 18:11:46,522 | INFO | Plucked string instrument 0.410 0.000 0.226 ✓ +2026-06-25 18:11:46,522 | INFO | Carnatic music 0.169 0.000 0.093 ✗ +2026-06-25 18:11:46,522 | INFO | Bowed string instrument 0.127 0.000 0.070 ✗ +2026-06-25 18:11:46,522 | INFO | → WINNER: Music (combined=0.468) +2026-06-25 18:11:46,551 | INFO | +[1356.00s] AMBIENT | scene='' +2026-06-25 18:11:46,555 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,556 | INFO | Sitar 0.842 0.000 0.463 ✓ +2026-06-25 18:11:46,556 | INFO | Music 0.842 0.000 0.463 ✓ +2026-06-25 18:11:46,556 | INFO | Musical instrument 0.453 0.000 0.249 ✓ +2026-06-25 18:11:46,556 | INFO | Plucked string instrument 0.393 0.000 0.216 ✓ +2026-06-25 18:11:46,556 | INFO | Carnatic music 0.194 0.000 0.107 ✗ +2026-06-25 18:11:46,557 | INFO | Classical music 0.140 0.000 0.077 ✗ +2026-06-25 18:11:46,557 | INFO | → WINNER: Sitar (combined=0.463) +2026-06-25 18:11:46,586 | INFO | +[1356.20s] AMBIENT | scene='' +2026-06-25 18:11:46,586 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,587 | INFO | Music 0.801 0.000 0.441 ✓ +2026-06-25 18:11:46,587 | INFO | Sitar 0.678 0.000 0.373 ✓ +2026-06-25 18:11:46,587 | INFO | Musical instrument 0.502 0.000 0.276 ✓ +2026-06-25 18:11:46,587 | INFO | Plucked string instrument 0.414 0.000 0.228 ✓ +2026-06-25 18:11:46,587 | INFO | Carnatic music 0.199 0.000 0.109 ✗ +2026-06-25 18:11:46,588 | INFO | Guitar 0.105 0.000 0.058 ✗ +2026-06-25 18:11:46,588 | INFO | → WINNER: Music (combined=0.441) +2026-06-25 18:11:46,617 | INFO | +[1356.40s] AMBIENT | scene='' +2026-06-25 18:11:46,618 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,619 | INFO | Music 0.853 0.000 0.469 ✓ +2026-06-25 18:11:46,620 | INFO | Sitar 0.664 0.000 0.365 ✓ +2026-06-25 18:11:46,620 | INFO | Musical instrument 0.618 0.000 0.340 ✓ +2026-06-25 18:11:46,620 | INFO | Plucked string instrument 0.508 0.000 0.280 ✓ +2026-06-25 18:11:46,621 | INFO | Carnatic music 0.179 0.000 0.099 ✗ +2026-06-25 18:11:46,621 | INFO | Guitar 0.172 0.000 0.094 ✗ +2026-06-25 18:11:46,621 | INFO | → WINNER: Music (combined=0.469) +2026-06-25 18:11:46,651 | INFO | +[1356.60s] AMBIENT | scene='' +2026-06-25 18:11:46,652 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,652 | INFO | Music 0.845 0.000 0.465 ✓ +2026-06-25 18:11:46,653 | INFO | Musical instrument 0.600 0.000 0.330 ✓ +2026-06-25 18:11:46,653 | INFO | Plucked string instrument 0.473 0.000 0.260 ✓ +2026-06-25 18:11:46,654 | INFO | Sitar 0.397 0.000 0.219 ✓ +2026-06-25 18:11:46,654 | INFO | Guitar 0.217 0.000 0.119 ✗ +2026-06-25 18:11:46,655 | INFO | Carnatic music 0.109 0.000 0.060 ✗ +2026-06-25 18:11:46,656 | INFO | → WINNER: Music (combined=0.465) +2026-06-25 18:11:46,688 | INFO | +[1356.80s] AMBIENT | scene='' +2026-06-25 18:11:46,688 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,690 | INFO | Music 0.856 0.000 0.471 ✓ +2026-06-25 18:11:46,690 | INFO | Musical instrument 0.659 0.000 0.362 ✓ +2026-06-25 18:11:46,691 | INFO | Plucked string instrument 0.571 0.000 0.314 ✓ +2026-06-25 18:11:46,691 | INFO | Guitar 0.445 0.000 0.245 ✓ +2026-06-25 18:11:46,691 | INFO | Sitar 0.166 0.000 0.091 ✗ +2026-06-25 18:11:46,702 | INFO | Electric guitar 0.097 0.000 0.053 ✗ +2026-06-25 18:11:46,702 | INFO | → WINNER: Music (combined=0.471) +2026-06-25 18:11:46,732 | INFO | +[1357.00s] AMBIENT | scene='' +2026-06-25 18:11:46,732 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,733 | INFO | Music 0.847 0.000 0.466 ✓ +2026-06-25 18:11:46,735 | INFO | Sitar 0.634 0.000 0.349 ✓ +2026-06-25 18:11:46,736 | INFO | Musical instrument 0.616 0.000 0.339 ✓ +2026-06-25 18:11:46,736 | INFO | Plucked string instrument 0.471 0.000 0.259 ✓ +2026-06-25 18:11:46,736 | INFO | Carnatic music 0.183 0.000 0.101 ✗ +2026-06-25 18:11:46,736 | INFO | Guitar 0.169 0.000 0.093 ✗ +2026-06-25 18:11:46,737 | INFO | → WINNER: Music (combined=0.466) +2026-06-25 18:11:46,773 | INFO | +[1360.80s] AMBIENT | scene='' +2026-06-25 18:11:46,773 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,773 | INFO | Music 0.140 0.000 0.077 ✗ +2026-06-25 18:11:46,774 | INFO | → no winner +2026-06-25 18:11:46,803 | INFO | +[1361.00s] AMBIENT | scene='' +2026-06-25 18:11:46,805 | INFO | LABEL RAW PAL CMB PASS +2026-06-25 18:11:46,805 | INFO | Music 0.142 0.000 0.078 ✗ +2026-06-25 18:11:46,805 | INFO | → no winner +2026-06-25 18:11:46,806 | INFO | +Detection done: 2453 windows, 2107 accepted +2026-06-25 18:11:46,826 | INFO | Raw events: 2453, accepted: 2107 +2026-06-25 18:11:46,827 | INFO | After dedup: 508 +2026-06-25 18:11:46,833 | INFO | Burst grouping: 424 events → 111 bursts +2026-06-25 18:11:46,833 | INFO | +FINAL CAPTION SYNTHESIS: +2026-06-25 18:11:46,833 | INFO | ================================================================= +2026-06-25 18:11:58,196 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Ambient noise fills the background during Episode 16.' +2026-06-25 18:11:58,198 | INFO | [0.0→1.8s] families=['environmental noise'] + raw='Ambient sounds can be heard.' + final='Ambient noise fills the background during Episode 16.' +2026-06-25 18:12:00,062 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp softly in the background.' +2026-06-25 18:12:00,062 | INFO | [2.6→9.0s] families=['bird', 'environmental noise', 'animal'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp softly in the background.' +2026-06-25 18:12:01,954 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Ambient animal and bird sounds fill the environment.' +2026-06-25 18:12:01,957 | INFO | [31.4→40.4s] families=['animal', 'bird', 'environmental noise'] + raw='Ambient sounds can be heard.' + final='Ambient animal and bird sounds fill the environment.' +2026-06-25 18:12:03,361 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp softly in the background of the forest scene.' +2026-06-25 18:12:03,362 | INFO | [41.2→44.8s] families=['bird', 'environmental noise'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp softly in the background of the forest scene.' +2026-06-25 18:12:04,589 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of birds and animals fill the forest.' +2026-06-25 18:12:04,589 | INFO | [45.2→52.8s] families=['environmental noise', 'animal', 'bird'] + raw='Ambient sounds can be heard.' + final='Sounds of birds and animals fill the forest.' +2026-06-25 18:12:06,078 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of birds and animals fill the forest.' +2026-06-25 18:12:06,080 | INFO | [53.4→56.2s] families=['environmental noise', 'animal', 'bird'] + raw='Ambient sounds can be heard.' + final='Sounds of birds and animals fill the forest.' +2026-06-25 18:12:07,436 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Birds sing while two women stand in a grassy field.' +2026-06-25 18:12:07,437 | INFO | [67.0→69.4s] families=['animal', 'bird'] + raw='Ambient sounds can be heard.' + final='Birds sing while two women stand in a grassy field.' +2026-06-25 18:12:08,480 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp softly in the background as they hold hands.' +2026-06-25 18:12:08,480 | INFO | [76.8→84.4s] families=['bird', 'environmental noise', 'goose'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp softly in the background as they hold hands.' +2026-06-25 18:12:09,532 | INFO | GPT refined: 'A crow can be heard cawing in the distance.' → 'A crow caws in the distance.' +2026-06-25 18:12:09,542 | INFO | [93.8→103.4s] families=['crow', 'animal', 'ratchet, pawl'] + raw='A crow can be heard cawing in the distance.' + final='A crow caws in the distance.' +2026-06-25 18:12:10,545 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Ambient animal sounds fill the scene.' +2026-06-25 18:12:10,563 | INFO | [148.0→149.8s] families=['animal'] + raw='Ambient sounds can be heard.' + final='Ambient animal sounds fill the scene.' +2026-06-25 18:12:11,543 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Animal sounds are heard in the background.' +2026-06-25 18:12:11,562 | INFO | [190.0→191.8s] families=['animal'] + raw='Ambient sounds can be heard.' + final='Animal sounds are heard in the background.' +2026-06-25 18:12:12,959 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Tabla music plays softly in the background.' +2026-06-25 18:12:13,052 | INFO | [199.2→202.2s] families=['music', 'tabla'] + raw='Music can be heard playing in the background.' + final='Tabla music plays softly in the background.' +2026-06-25 18:12:16,017 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:12:16,048 | INFO | [203.4→205.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:12:18,637 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Tabla music plays softly in the background.' +2026-06-25 18:12:18,642 | INFO | [206.2→211.8s] families=['music', 'tabla'] + raw='Music can be heard playing in the background.' + final='Tabla music plays softly in the background.' +2026-06-25 18:12:21,024 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:12:21,078 | INFO | [213.2→215.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:12:26,488 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'The tabla plays softly in the background.' +2026-06-25 18:12:26,576 | INFO | [224.0→225.8s] families=['tabla'] + raw='Ambient sounds can be heard.' + final='The tabla plays softly in the background.' +2026-06-25 18:12:30,418 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:12:30,523 | INFO | [226.2→228.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:12:33,958 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:12:34,025 | INFO | [229.6→231.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:12:36,945 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music and tabla play softly in the background.' +2026-06-25 18:12:36,945 | INFO | [232.0→237.0s] families=['music', 'tabla'] + raw='Music can be heard playing in the background.' + final='Music and tabla play softly in the background.' +2026-06-25 18:12:38,125 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music and tabla play softly in the background.' +2026-06-25 18:12:38,125 | INFO | [237.8→246.8s] families=['music', 'tabla'] + raw='Music can be heard playing in the background.' + final='Music and tabla play softly in the background.' +2026-06-25 18:12:40,705 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:12:40,706 | INFO | [249.6→252.4s] families=['goose', 'bird', 'music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:12:44,055 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of a crow and a goose are heard.' +2026-06-25 18:12:44,062 | INFO | [252.8→273.2s] families=['animal', 'crow', 'goose'] + raw='Ambient sounds can be heard.' + final='Sounds of a crow and a goose are heard.' +2026-06-25 18:12:46,666 | INFO | GPT refined: 'Laughter can be heard.' → 'Laughter fills the air.' +2026-06-25 18:12:46,807 | INFO | [273.8→278.0s] families=['animal', 'bird', 'laugh_full'] + raw='Laughter can be heard.' + final='Laughter fills the air.' +2026-06-25 18:12:49,515 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of animals are present in the background.' +2026-06-25 18:12:49,531 | INFO | [278.8→280.6s] families=['animal'] + raw='Ambient sounds can be heard.' + final='Sounds of animals are present in the background.' +2026-06-25 18:12:53,416 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Wild animals and birds create ambient sounds in the background.' +2026-06-25 18:12:53,639 | INFO | [281.0→283.4s] families=['animal', 'bird'] + raw='Ambient sounds can be heard.' + final='Wild animals and birds create ambient sounds in the background.' +2026-06-25 18:12:56,499 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Owl and animal sounds are heard in the background.' +2026-06-25 18:12:56,501 | INFO | [287.2→289.2s] families=['owl', 'animal'] + raw='Ambient sounds can be heard.' + final='Owl and animal sounds are heard in the background.' +2026-06-25 18:12:59,653 | INFO | GPT refined: 'Crows cawing and birds chirping can be heard.' → 'Crows caw and birds chirp in the background.' +2026-06-25 18:12:59,653 | INFO | [293.2→295.8s] families=['crow', 'animal', 'bird'] + raw='Crows cawing and birds chirping can be heard.' + final='Crows caw and birds chirp in the background.' +2026-06-25 18:13:02,632 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:13:02,636 | INFO | [353.8→360.4s] families=['howl', 'music', 'animal'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:13:04,953 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as three people sit together.' +2026-06-25 18:13:04,955 | INFO | [379.4→382.0s] families=['humming', 'animal', 'music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as three people sit together.' +2026-06-25 18:13:07,760 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as they sit together.' +2026-06-25 18:13:07,767 | INFO | [385.8→389.6s] families=['wind', 'music', 'whale vocalization'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as they sit together.' +2026-06-25 18:13:10,880 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of animals and birds fill the forest atmosphere.' +2026-06-25 18:13:10,942 | INFO | [391.0→393.4s] families=['animal', 'bird'] + raw='Ambient sounds can be heard.' + final='Sounds of animals and birds fill the forest atmosphere.' +2026-06-25 18:13:13,472 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as two people walk on a forest path.' +2026-06-25 18:13:13,472 | INFO | [394.4→396.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly as two people walk on a forest path.' +2026-06-25 18:13:16,954 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as two people walk on a forest path.' +2026-06-25 18:13:16,956 | INFO | [399.8→401.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly as two people walk on a forest path.' +2026-06-25 18:13:19,659 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as two people walk on a forest path.' +2026-06-25 18:13:19,663 | INFO | [403.8→405.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly as two people walk on a forest path.' +2026-06-25 18:13:22,943 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as two people walk through the forest.' +2026-06-25 18:13:22,948 | INFO | [406.2→408.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly as two people walk through the forest.' +2026-06-25 18:13:25,645 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as he speaks.' +2026-06-25 18:13:25,646 | INFO | [420.4→422.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as he speaks.' +2026-06-25 18:13:28,073 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as four people stand in a field.' +2026-06-25 18:13:28,076 | INFO | [458.2→460.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as four people stand in a field.' +2026-06-25 18:13:31,165 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:13:31,165 | INFO | [589.6→591.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:13:34,053 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays as a person walks through tall grass.' +2026-06-25 18:13:34,054 | INFO | [595.0→596.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Soft music plays as a person walks through tall grass.' +2026-06-25 18:13:36,953 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays as a person walks through tall grass.' +2026-06-25 18:13:36,953 | INFO | [597.2→599.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Soft music plays as a person walks through tall grass.' +2026-06-25 18:13:39,483 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays as a person walks through tall grass.' +2026-06-25 18:13:39,490 | INFO | [600.4→606.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Soft music plays as a person walks through tall grass.' +2026-06-25 18:13:42,035 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as they converse in the field.' +2026-06-25 18:13:42,050 | INFO | [608.6→612.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as they converse in the field.' +2026-06-25 18:13:44,948 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays as three women stand in a serene field.' +2026-06-25 18:13:44,949 | INFO | [619.4→621.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Soft music plays as three women stand in a serene field.' +2026-06-25 18:13:48,033 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays in the background as three women stand in a field.' +2026-06-25 18:13:48,039 | INFO | [621.6→625.6s] families=['music', 'mechanisms', 'animal'] + raw='Music can be heard playing in the background.' + final='Soft music plays in the background as three women stand in a field.' +2026-06-25 18:13:50,888 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp in the background as two men stand on the shore.' +2026-06-25 18:13:50,899 | INFO | [627.0→629.8s] families=['bird', 'animal'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp in the background as two men stand on the shore.' +2026-06-25 18:13:53,281 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp in the background as two women stand by water.' +2026-06-25 18:13:53,286 | INFO | [650.8→652.8s] families=['bird', 'animal'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp in the background as two women stand by water.' +2026-06-25 18:13:55,536 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp in the background as two women stand by water.' +2026-06-25 18:13:55,541 | INFO | [653.6→655.4s] families=['bird'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp in the background as two women stand by water.' +2026-06-25 18:13:59,690 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Wild animals and birds are heard near the water.' +2026-06-25 18:13:59,690 | INFO | [656.0→658.4s] families=['animal', 'bird'] + raw='Ambient sounds can be heard.' + final='Wild animals and birds are heard near the water.' +2026-06-25 18:14:02,866 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'A woman in a white saree stands distressed by the water.' +2026-06-25 18:14:02,868 | INFO | [660.8→662.6s] families=['animal'] + raw='Ambient sounds can be heard.' + final='A woman in a white saree stands distressed by the water.' +2026-06-25 18:14:07,037 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds and a duck squawk near the distressed woman by water.' +2026-06-25 18:14:07,039 | INFO | [664.2→675.6s] families=['bird', 'duck', 'squawk'] + raw='Birds can be heard chirping in the background.' + final='Birds and a duck squawk near the distressed woman by water.' +2026-06-25 18:14:09,509 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'A frog croaks in the background.' +2026-06-25 18:14:09,606 | INFO | [678.8→680.6s] families=['animal'] + raw='Ambient sounds can be heard.' + final='A frog croaks in the background.' +2026-06-25 18:14:13,743 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp in the background as three people sit on the ground.' +2026-06-25 18:14:13,892 | INFO | [691.0→693.4s] families=['bird', 'environmental noise'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp in the background as three people sit on the ground.' +2026-06-25 18:14:17,885 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:17,897 | INFO | [698.0→699.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:19,315 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:19,316 | INFO | [713.4→715.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:20,506 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:20,507 | INFO | [748.8→750.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:21,912 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:21,913 | INFO | [751.0→752.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:23,032 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:23,032 | INFO | [755.4→762.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:24,164 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:24,168 | INFO | [764.0→768.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:25,303 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:25,303 | INFO | [768.8→770.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:26,574 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as four people sit together.' +2026-06-25 18:14:26,575 | INFO | [771.0→777.2s] families=['music', 'animal'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as four people sit together.' +2026-06-25 18:14:27,698 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:27,698 | INFO | [795.4→804.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:28,761 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:28,762 | INFO | [805.8→807.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:29,784 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as people gather in the woods.' +2026-06-25 18:14:29,784 | INFO | [809.2→812.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as people gather in the woods.' +2026-06-25 18:14:30,818 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as people gather in the woods.' +2026-06-25 18:14:30,818 | INFO | [813.4→817.0s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as people gather in the woods.' +2026-06-25 18:14:31,834 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as people gather in the woods.' +2026-06-25 18:14:31,835 | INFO | [817.6→819.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as people gather in the woods.' +2026-06-25 18:14:33,021 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background of the rural scene.' +2026-06-25 18:14:33,024 | INFO | [820.4→822.2s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background of the rural scene.' +2026-06-25 18:14:34,315 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background of the rural scene.' +2026-06-25 18:14:34,315 | INFO | [823.8→827.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background of the rural scene.' +2026-06-25 18:14:35,331 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background of the rural scene.' +2026-06-25 18:14:35,332 | INFO | [828.0→829.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background of the rural scene.' +2026-06-25 18:14:36,470 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:36,598 | INFO | [831.0→834.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:37,796 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Romantic music plays as the couple smiles in their embrace.' +2026-06-25 18:14:37,888 | INFO | [835.0→836.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Romantic music plays as the couple smiles in their embrace.' +2026-06-25 18:14:39,069 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays in the background as they embrace and smile.' +2026-06-25 18:14:39,070 | INFO | [839.8→845.4s] families=['music', 'bird', 'insect'] + raw='Music can be heard playing in the background.' + final='Soft music plays in the background as they embrace and smile.' +2026-06-25 18:14:40,093 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp softly in the background.' +2026-06-25 18:14:40,094 | INFO | [855.2→857.0s] families=['bird'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp softly in the background.' +2026-06-25 18:14:41,193 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Birds sing and insects buzz as the couple embraces.' +2026-06-25 18:14:41,194 | INFO | [872.8→876.4s] families=['rodents, rats, mice', 'bird', 'insect'] + raw='Ambient sounds can be heard.' + final='Birds sing and insects buzz as the couple embraces.' +2026-06-25 18:14:42,638 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays as the sun sets over palm trees.' +2026-06-25 18:14:42,640 | INFO | [876.8→886.2s] families=['music', 'bird', 'environmental noise'] + raw='Music can be heard playing in the background.' + final='Soft music plays as the sun sets over palm trees.' +2026-06-25 18:14:44,300 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays as the sunset paints the sky pink and orange.' +2026-06-25 18:14:44,410 | INFO | [886.6→888.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Soft music plays as the sunset paints the sky pink and orange.' +2026-06-25 18:14:45,971 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as people walk through the field.' +2026-06-25 18:14:45,972 | INFO | [890.8→896.2s] families=['music', 'mantra', 'chant'] + raw='Music can be heard playing in the background.' + final='Music plays softly as people walk through the field.' +2026-06-25 18:14:47,114 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as people walk through tall grass.' +2026-06-25 18:14:47,224 | INFO | [896.8→903.6s] families=['music', 'mantra'] + raw='Music can be heard playing in the background.' + final='Music plays softly as people walk through tall grass.' +2026-06-25 18:14:49,087 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as people walk through the tall grass.' +2026-06-25 18:14:49,088 | INFO | [904.4→909.4s] families=['music', 'mantra', 'chant'] + raw='Music can be heard playing in the background.' + final='Music plays softly as people walk through the tall grass.' +2026-06-25 18:14:50,328 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:50,332 | INFO | [910.8→914.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:52,154 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:52,157 | INFO | [916.8→922.2s] families=['music', 'chant'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:54,450 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:54,455 | INFO | [923.6→929.0s] families=['music', 'gargling'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:14:57,514 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:14:57,516 | INFO | [930.0→934.8s] families=['music', 'chant', 'choir'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:15:00,100 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:15:00,103 | INFO | [936.8→938.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:15:02,780 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:15:02,785 | INFO | [939.8→946.8s] families=['music', 'chant'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:15:05,034 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:15:05,034 | INFO | [948.8→952.6s] families=['music', 'chant'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:15:08,855 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:15:08,855 | INFO | [953.0→956.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:15:10,555 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Background music plays softly.' +2026-06-25 18:15:10,558 | INFO | [959.2→967.2s] families=['music', 'mantra', 'vehicle'] + raw='Music can be heard playing in the background.' + final='Background music plays softly.' +2026-06-25 18:15:11,938 | INFO | GPT refined: 'Insects can be heard buzzing nearby.' → 'Insects buzz nearby as the man and woman look concerned.' +2026-06-25 18:15:11,941 | INFO | [969.6→976.6s] families=['insect', 'bird', 'animal'] + raw='Insects can be heard buzzing nearby.' + final='Insects buzz nearby as the man and woman look concerned.' +2026-06-25 18:15:14,464 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Men stand in a field, chopping wood while wild animals sound nearby.' +2026-06-25 18:15:14,465 | INFO | [999.8→1003.8s] families=['chop', 'creak', 'animal'] + raw='Ambient sounds can be heard.' + final='Men stand in a field, chopping wood while wild animals sound nearby.' +2026-06-25 18:15:15,462 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of animals and water fill the background.' +2026-06-25 18:15:15,463 | INFO | [1059.0→1061.6s] families=['animal', 'water'] + raw='Ambient sounds can be heard.' + final='Sounds of animals and water fill the background.' +2026-06-25 18:15:16,485 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Farm animals and livestock make ambient sounds in the background.' +2026-06-25 18:15:16,495 | INFO | [1062.0→1084.4s] families=['moo', 'animal', 'squish'] + raw='Ambient sounds can be heard.' + final='Farm animals and livestock make ambient sounds in the background.' +2026-06-25 18:15:19,614 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Animals scratch in the forest as people sit nearby.' +2026-06-25 18:15:19,629 | INFO | [1087.6→1090.4s] families=['animal', 'scratch'] + raw='Ambient sounds can be heard.' + final='Animals scratch in the forest as people sit nearby.' +2026-06-25 18:15:20,855 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Animal sounds echo in the forest where people sit together.' +2026-06-25 18:15:20,855 | INFO | [1091.8→1093.6s] families=['animal'] + raw='Ambient sounds can be heard.' + final='Animal sounds echo in the forest where people sit together.' +2026-06-25 18:15:23,483 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Animals are heard in the forest where people sit together.' +2026-06-25 18:15:23,487 | INFO | [1095.4→1098.8s] families=['animal'] + raw='Ambient sounds can be heard.' + final='Animals are heard in the forest where people sit together.' +2026-06-25 18:15:26,066 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of animals and insects fill the forested area.' +2026-06-25 18:15:26,076 | INFO | [1101.0→1107.8s] families=['animal', 'rodents, rats, mice', 'insect'] + raw='Ambient sounds can be heard.' + final='Sounds of animals and insects fill the forested area.' +2026-06-25 18:15:29,440 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Birds sing and environmental sounds fill the forested area.' +2026-06-25 18:15:29,450 | INFO | [1108.8→1113.8s] families=['animal', 'environmental noise', 'bird'] + raw='Ambient sounds can be heard.' + final='Birds sing and environmental sounds fill the forested area.' +2026-06-25 18:15:32,562 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Sounds of animals and birds fill the forested area.' +2026-06-25 18:15:32,565 | INFO | [1114.4→1120.2s] families=['animal', 'bird', 'insect'] + raw='Ambient sounds can be heard.' + final='Sounds of animals and birds fill the forested area.' +2026-06-25 18:15:35,853 | INFO | GPT refined: 'Insects can be heard buzzing nearby.' → 'Insects buzz softly as people sit under the wooden structure.' +2026-06-25 18:15:35,854 | INFO | [1123.6→1125.6s] families=['insect', 'patter'] + raw='Insects can be heard buzzing nearby.' + final='Insects buzz softly as people sit under the wooden structure.' +2026-06-25 18:15:38,633 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds are chirping in the background as people sit nearby.' +2026-06-25 18:15:38,802 | INFO | [1133.8→1135.6s] families=['bird'] + raw='Birds can be heard chirping in the background.' + final='Birds are chirping in the background as people sit nearby.' +2026-06-25 18:15:42,082 | INFO | GPT refined: 'Birds can be heard chirping in the background.' → 'Birds chirp softly as two concerned women stand by a tree.' +2026-06-25 18:15:42,443 | INFO | [1143.0→1150.0s] families=['bird', 'animal'] + raw='Birds can be heard chirping in the background.' + final='Birds chirp softly as two concerned women stand by a tree.' +2026-06-25 18:15:45,171 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Two concerned women stand by a tree, one in a white headscarf.' +2026-06-25 18:15:45,172 | INFO | [1150.8→1152.6s] families=['animal'] + raw='Ambient sounds can be heard.' + final='Two concerned women stand by a tree, one in a white headscarf.' +2026-06-25 18:15:47,459 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:15:47,466 | INFO | [1200.6→1202.4s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:15:50,488 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background as she stands by a cow.' +2026-06-25 18:15:50,505 | INFO | [1233.4→1235.6s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background as she stands by a cow.' +2026-06-25 18:15:53,539 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly as four women sit on the ground.' +2026-06-25 18:15:53,716 | INFO | [1277.6→1286.6s] families=['music', 'whale vocalization', 'animal'] + raw='Music can be heard playing in the background.' + final='Music plays softly as four women sit on the ground.' +2026-06-25 18:15:56,640 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Soft music plays in the background with wind instruments.' +2026-06-25 18:15:56,651 | INFO | [1287.4→1292.6s] families=['music', 'wind'] + raw='Music can be heard playing in the background.' + final='Soft music plays in the background with wind instruments.' +2026-06-25 18:15:59,780 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:15:59,780 | INFO | [1293.0→1294.8s] families=['music'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:16:03,454 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Music plays softly in the background.' +2026-06-25 18:16:03,463 | INFO | [1301.8→1304.2s] families=['music', 'animal'] + raw='Music can be heard playing in the background.' + final='Music plays softly in the background.' +2026-06-25 18:16:05,655 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Theremin music plays softly in the background.' +2026-06-25 18:16:05,655 | INFO | [1305.0→1320.8s] families=['theremin', 'music', 'animal'] + raw='Music can be heard playing in the background.' + final='Theremin music plays softly in the background.' +2026-06-25 18:16:07,254 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Cattle moo nearby as a small hut stands by the path.' +2026-06-25 18:16:07,254 | INFO | [1321.6→1330.6s] families=['animal', 'moo', 'roar'] + raw='Ambient sounds can be heard.' + final='Cattle moo nearby as a small hut stands by the path.' +2026-06-25 18:16:08,500 | INFO | GPT refined: 'Ambient sounds can be heard.' → 'Pattering sounds of rodents, including rats and mice, are heard.' +2026-06-25 18:16:08,500 | INFO | [1331.6→1334.8s] families=['rodents, rats, mice', 'patter', 'animal'] + raw='Ambient sounds can be heard.' + final='Pattering sounds of rodents, including rats and mice, are heard.' +2026-06-25 18:16:09,534 | INFO | GPT refined: 'Music can be heard playing in the background.' → 'Sitar music plays softly in the background.' +2026-06-25 18:16:09,538 | INFO | [1345.2→1358.6s] families=['music', 'sitar', 'rodents, rats, mice'] + raw='Music can be heard playing in the background.' + final='Sitar music plays softly in the background.' +2026-06-25 18:16:09,541 | INFO | ================================================================= +2026-06-25 18:16:09,542 | INFO | Timeline: 111 caption segments +2026-06-25 18:16:34,947 | INFO | SRT: results_v3\Bharat_Ek_Khoj_Ep_016_full\captions.srt +2026-06-25 18:16:34,952 | INFO | Generating video with 111 caption segments... +2026-06-25 18:21:19,890 | INFO | Video saved: results_v3\Bharat_Ek_Khoj_Ep_016_full\final_output.mp4 +2026-06-25 18:21:19,975 | INFO | +Done. 111 segments → results_v3\Bharat_Ek_Khoj_Ep_016_full diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full_vision.log b/results_v3/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full_vision.log new file mode 100644 index 0000000..1cac667 --- /dev/null +++ b/results_v3/Bharat_Ek_Khoj_Ep_016_full/Bharat_Ek_Khoj_Ep_016_full_vision.log @@ -0,0 +1,231 @@ +2026-06-25 17:37:10,072 | INFO | Vision extraction: 226 frames over 22.7 min (10 FPM) +2026-06-25 17:37:19,436 | INFO | [0.0s] scene='The image is a black background with white text in Hindi. The text reads "Episod' | hints=[] | expr=[] +2026-06-25 17:37:19,497 | INFO | [6.0s] skip unstable frame (diff=36.4) +2026-06-25 17:37:19,546 | INFO | [12.1s] skip unstable frame (diff=25.0) +2026-06-25 17:37:26,598 | INFO | [18.1s] scene='The trees have thick trunks and the ground is covered in greenery. In the center' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:37:26,686 | INFO | [24.2s] skip unstable frame (diff=28.7) +2026-06-25 17:37:26,773 | INFO | [30.2s] skip unstable frame (diff=35.5) +2026-06-25 17:37:26,853 | INFO | [36.3s] skip unstable frame (diff=31.6) +2026-06-25 17:37:26,896 | INFO | [42.3s] skip unstable frame (diff=26.0) +2026-06-25 17:37:35,002 | INFO | [48.4s] scene='The image is a still from a movie or TV show. It shows a person walking through ' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:37:35,117 | INFO | [54.4s] skip unstable frame (diff=36.6) +2026-06-25 17:37:35,178 | INFO | [60.5s] skip unstable frame (diff=35.9) +2026-06-25 17:37:41,595 | INFO | [66.5s] scene='The image shows two women standing in a field of tall grass and bushes. They are' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:37:48,102 | INFO | [72.6s] scene='The image shows a man and a woman standing in a field of tall grass. They are ho' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:37:53,822 | INFO | [78.6s] scene='The image shows two people, a man and a woman, standing in a field of tall grass' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:37:53,877 | INFO | [84.7s] skip unstable frame (diff=47.4) +2026-06-25 17:37:53,923 | INFO | [90.7s] skip unstable frame (diff=33.9) +2026-06-25 17:37:54,013 | INFO | [96.8s] skip unstable frame (diff=35.3) +2026-06-25 17:37:54,060 | INFO | [102.8s] skip unstable frame (diff=38.1) +2026-06-25 17:38:02,630 | INFO | [108.8s] scene='The image shows three people sitting on the ground in a wooded area. He is sitti' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:38:09,984 | INFO | [114.9s] scene='The image shows three people sitting on the ground in a wooded area. He is sitti' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:38:16,558 | INFO | [121.0s] scene='The image shows three people sitting on the ground in a wooded area. He is sitti' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:38:16,594 | INFO | [127.0s] skip unstable frame (diff=43.9) +2026-06-25 17:38:16,635 | INFO | [133.0s] skip unstable frame (diff=48.0) +2026-06-25 17:38:16,673 | INFO | [139.1s] skip unstable frame (diff=44.8) +2026-06-25 17:38:22,776 | INFO | [145.2s] scene='The image is a still from a movie or TV show. It shows a close-up of a man's fac' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:38:22,837 | INFO | [151.2s] skip unstable frame (diff=39.6) +2026-06-25 17:38:28,112 | INFO | [157.2s] scene='The image is a still from a movie or TV show. It shows a man wearing a white hoo' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:38:33,367 | INFO | [163.3s] scene='The image is a still from a movie or TV show. She is standing in a wooded area w' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:38:38,742 | INFO | [169.4s] scene='The image is a still from a movie or TV show. He is standing in a wooded area wi' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:38:38,787 | INFO | [175.4s] skip unstable frame (diff=40.3) +2026-06-25 17:38:44,452 | INFO | [181.4s] scene='The image is a still from a movie or TV show. He has a tattoo on his left should' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:38:44,504 | INFO | [187.5s] skip unstable frame (diff=43.3) +2026-06-25 17:38:44,562 | INFO | [193.5s] skip unstable frame (diff=36.1) +2026-06-25 17:38:44,604 | INFO | [199.6s] skip unstable frame (diff=53.4) +2026-06-25 17:38:44,651 | INFO | [205.6s] skip unstable frame (diff=35.6) +2026-06-25 17:38:44,696 | INFO | [211.7s] skip unstable frame (diff=36.0) +2026-06-25 17:38:44,742 | INFO | [217.7s] skip unstable frame (diff=53.9) +2026-06-25 17:38:44,807 | INFO | [223.8s] skip unstable frame (diff=43.2) +2026-06-25 17:38:44,855 | INFO | [229.8s] skip unstable frame (diff=35.5) +2026-06-25 17:38:44,903 | INFO | [235.9s] skip unstable frame (diff=36.8) +2026-06-25 17:38:44,962 | INFO | [241.9s] skip unstable frame (diff=38.6) +2026-06-25 17:38:45,018 | INFO | [248.0s] skip unstable frame (diff=41.2) +2026-06-25 17:38:45,062 | INFO | [254.0s] skip unstable frame (diff=44.3) +2026-06-25 17:38:45,108 | INFO | [260.1s] skip unstable frame (diff=40.0) +2026-06-25 17:38:45,169 | INFO | [266.1s] skip unstable frame (diff=35.4) +2026-06-25 17:38:45,217 | INFO | [272.2s] skip unstable frame (diff=39.0) +2026-06-25 17:38:45,312 | INFO | [278.2s] skip unstable frame (diff=47.5) +2026-06-25 17:38:45,397 | INFO | [284.3s] skip unstable frame (diff=38.8) +2026-06-25 17:38:45,472 | INFO | [290.3s] skip unstable frame (diff=35.5) +2026-06-25 17:38:45,545 | INFO | [296.4s] skip unstable frame (diff=44.0) +2026-06-25 17:38:45,627 | INFO | [302.4s] skip unstable frame (diff=51.3) +2026-06-25 17:38:45,713 | INFO | [308.5s] skip unstable frame (diff=52.6) +2026-06-25 17:38:45,771 | INFO | [314.5s] skip unstable frame (diff=40.6) +2026-06-25 17:38:45,858 | INFO | [320.6s] skip unstable frame (diff=37.9) +2026-06-25 17:38:51,287 | INFO | [326.6s] scene='The image shows a man and a woman embracing each other in a loving hug. They are' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=['smiling'] +2026-06-25 17:38:57,816 | INFO | [332.6s] scene='The image shows a man and a woman in a romantic embrace. The man is on the right' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:38:57,866 | INFO | [338.7s] skip unstable frame (diff=48.9) +2026-06-25 17:38:57,920 | INFO | [344.8s] skip unstable frame (diff=52.6) +2026-06-25 17:38:57,982 | INFO | [350.8s] skip unstable frame (diff=40.8) +2026-06-25 17:38:58,037 | INFO | [356.8s] skip unstable frame (diff=58.4) +2026-06-25 17:38:58,088 | INFO | [362.9s] skip unstable frame (diff=30.1) +2026-06-25 17:39:05,588 | INFO | [369.0s] scene='The image shows three people sitting on a woven mat under a tree. The man in the' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:39:12,046 | INFO | [375.0s] scene='The image shows three people sitting on a woven mat in a forest. He is sitting o' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:39:18,506 | INFO | [381.0s] scene='The image shows three people sitting on a woven mat under a tree. The man in the' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:39:25,091 | INFO | [387.1s] scene='The image shows three people sitting on a woven mat in a forest. He is sitting o' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:39:25,159 | INFO | [393.2s] skip unstable frame (diff=44.3) +2026-06-25 17:39:31,647 | INFO | [399.2s] scene='The image shows two people walking on a dirt path in a forested area. They appea' | hints=['wind rustling leaves', 'crowd shouting', 'branch creak'] | expr=[] +2026-06-25 17:39:31,704 | INFO | [405.2s] skip unstable frame (diff=29.9) +2026-06-25 17:39:31,750 | INFO | [411.3s] skip unstable frame (diff=33.8) +2026-06-25 17:39:39,762 | INFO | [417.4s] scene='The image shows three people standing in a field with tall grass and trees in th' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:39:39,833 | INFO | [423.4s] skip unstable frame (diff=38.3) +2026-06-25 17:39:45,682 | INFO | [429.4s] scene='The image shows two men standing in a field with tall grass and trees in the bac' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:39:51,102 | INFO | [435.5s] scene='The image shows two people standing in a field with tall grass and trees in the ' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:39:57,982 | INFO | [441.5s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:05,044 | INFO | [447.6s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:10,742 | INFO | [453.6s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:16,597 | INFO | [459.7s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:22,225 | INFO | [465.7s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:28,809 | INFO | [471.8s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:37,186 | INFO | [477.8s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['wind rustling leaves', 'crowd shouting', 'branch creak'] | expr=[] +2026-06-25 17:40:44,092 | INFO | [483.9s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:51,542 | INFO | [489.9s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:57,710 | INFO | [496.0s] scene='The image shows a group of four people standing in a field with tall grass and t' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:40:57,765 | INFO | [502.0s] skip unstable frame (diff=27.5) +2026-06-25 17:40:57,805 | INFO | [508.1s] skip unstable frame (diff=54.4) +2026-06-25 17:41:03,968 | INFO | [514.1s] scene='The image shows three people, two men and a woman, standing in a field with tree' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:41:10,272 | INFO | [520.2s] scene='The image shows three people standing in a field with trees in the background. A' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:41:17,095 | INFO | [526.2s] scene='The image shows a group of three people standing in a field. They are all lookin' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:41:23,203 | INFO | [532.3s] scene='The image shows three people standing in a field with trees in the background. H' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:41:30,807 | INFO | [538.3s] scene='The image shows three men standing in a field with trees in the background. He i' | hints=['wind rustling leaves', 'branch creak', 'frogs croaking'] | expr=[] +2026-06-25 17:41:39,907 | INFO | [544.4s] scene='The image shows three men standing in a field with trees in the background. He a' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:41:48,493 | INFO | [550.4s] scene='The image shows three people, two men and a woman, standing in a field with tree' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:41:55,133 | INFO | [556.5s] scene='The image shows a group of three people, two men and a woman, standing in a fiel' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:41:55,191 | INFO | [562.5s] skip unstable frame (diff=49.8) +2026-06-25 17:41:55,248 | INFO | [568.6s] skip unstable frame (diff=61.9) +2026-06-25 17:42:03,797 | INFO | [574.6s] scene='The image is a still from a movie or TV show. It shows two characters, a man and' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:42:11,178 | INFO | [580.6s] scene='The image is a still from a movie or TV show. It shows two characters, a man and' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:42:11,237 | INFO | [586.7s] skip unstable frame (diff=58.6) +2026-06-25 17:42:11,291 | INFO | [592.8s] skip unstable frame (diff=50.2) +2026-06-25 17:42:20,082 | INFO | [598.8s] scene='The image shows a person walking through a field of tall grass. The person is we' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:42:20,142 | INFO | [604.8s] skip unstable frame (diff=31.9) +2026-06-25 17:42:31,962 | INFO | [610.9s] scene='The image shows a group of three people standing in a field of tall grass. They ' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:42:44,067 | INFO | [617.0s] scene='The image shows three women standing in a field of tall grass. They appear to be' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:42:44,120 | INFO | [623.0s] skip unstable frame (diff=73.8) +2026-06-25 17:42:57,860 | INFO | [629.0s] scene='The image shows two men standing on a rocky shore near a body of water. The man ' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:42:57,915 | INFO | [635.1s] skip unstable frame (diff=30.6) +2026-06-25 17:43:12,157 | INFO | [641.2s] scene='The image shows two women standing next to each other near a body of water. She ' | hints=['water splashing', 'wind over water', 'water flowing'] | expr=[] +2026-06-25 17:43:32,472 | INFO | [647.2s] scene='The image shows a man and a woman standing next to each other near a body of wat' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:44:04,526 | INFO | [653.2s] scene='The image shows two Indian women standing next to each other near a body of wate' | hints=['water splashing', 'wind over water', 'water flowing'] | expr=[] +2026-06-25 17:44:31,206 | INFO | [659.3s] scene='The image shows a woman in a white saree standing by a body of water. She appear' | hints=['water splashing', 'wind over water', 'running'] | expr=[] +2026-06-25 17:44:31,272 | INFO | [665.3s] skip unstable frame (diff=54.8) +2026-06-25 17:44:31,367 | INFO | [671.4s] skip unstable frame (diff=40.8) +2026-06-25 17:44:31,421 | INFO | [677.4s] skip unstable frame (diff=47.2) +2026-06-25 17:44:31,474 | INFO | [683.5s] skip unstable frame (diff=27.4) +2026-06-25 17:45:04,700 | INFO | [689.5s] scene='The image shows three people sitting on the ground in a wooded area. He is sitti' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:45:04,770 | INFO | [695.6s] skip unstable frame (diff=51.1) +2026-06-25 17:45:04,828 | INFO | [701.6s] skip unstable frame (diff=30.6) +2026-06-25 17:45:04,907 | INFO | [707.7s] skip unstable frame (diff=51.6) +2026-06-25 17:45:04,951 | INFO | [713.7s] skip unstable frame (diff=50.2) +2026-06-25 17:45:05,001 | INFO | [719.8s] skip unstable frame (diff=46.7) +2026-06-25 17:45:05,059 | INFO | [725.8s] skip unstable frame (diff=47.1) +2026-06-25 17:45:05,118 | INFO | [731.9s] skip unstable frame (diff=44.5) +2026-06-25 17:45:05,171 | INFO | [737.9s] skip unstable frame (diff=32.2) +2026-06-25 17:45:05,226 | INFO | [744.0s] skip unstable frame (diff=34.9) +2026-06-25 17:45:05,283 | INFO | [750.0s] skip unstable frame (diff=31.3) +2026-06-25 17:45:05,348 | INFO | [756.1s] skip unstable frame (diff=36.9) +2026-06-25 17:45:05,456 | INFO | [762.1s] skip unstable frame (diff=30.9) +2026-06-25 17:45:05,532 | INFO | [768.2s] skip unstable frame (diff=29.4) +2026-06-25 17:45:05,623 | INFO | [774.2s] skip unstable frame (diff=39.2) +2026-06-25 17:45:41,747 | INFO | [780.3s] scene='The image shows a group of four people sitting on the ground in a forested area.' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:46:14,150 | INFO | [786.3s] scene='The image shows a man and a woman sitting on the ground in a forested area. He i' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:46:14,226 | INFO | [792.4s] skip unstable frame (diff=45.5) +2026-06-25 17:46:14,267 | INFO | [798.4s] skip unstable frame (diff=43.2) +2026-06-25 17:46:14,320 | INFO | [804.4s] skip unstable frame (diff=28.7) +2026-06-25 17:46:14,370 | INFO | [810.5s] skip unstable frame (diff=26.3) +2026-06-25 17:46:42,346 | INFO | [816.6s] scene='The image is a still from a movie or TV show. It shows a group of people gathere' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:47:11,656 | INFO | [822.6s] scene='The image shows a group of people in a rural area, with trees and bushes in the ' | hints=['cattle lowing', 'birds chirping', 'wind rustling leaves'] | expr=[] +2026-06-25 17:47:11,730 | INFO | [828.6s] skip unstable frame (diff=30.6) +2026-06-25 17:47:11,793 | INFO | [834.7s] skip unstable frame (diff=36.2) +2026-06-25 17:47:43,196 | INFO | [840.8s] scene='The image is a still from a Bollywood movie. It shows a man and a woman in a rom' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=['smiling'] +2026-06-25 17:48:16,767 | INFO | [846.8s] scene='The image is a still from a Bollywood movie. The man is on the left side of the ' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:48:43,638 | INFO | [852.8s] scene='The image is a still from a Bollywood movie. It shows a man and a woman sitting ' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:49:12,861 | INFO | [858.9s] scene='The image shows a man and a woman in a romantic embrace. He is looking down at t' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:49:42,067 | INFO | [865.0s] scene='The image shows a man and a woman in a romantic embrace. He is looking down at t' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:50:10,824 | INFO | [871.0s] scene='The image shows a man and a woman in a romantic embrace. He is smiling and appea' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=['smiling'] +2026-06-25 17:50:10,898 | INFO | [877.0s] skip unstable frame (diff=71.1) +2026-06-25 17:50:40,429 | INFO | [883.1s] scene='The sky is a beautiful shade of pink and orange, with the sun partially visible ' | hints=['wind rustling leaves', 'crowd shouting', 'branch creak'] | expr=[] +2026-06-25 17:50:40,487 | INFO | [889.2s] skip unstable frame (diff=35.3) +2026-06-25 17:51:05,480 | INFO | [895.2s] scene='The image shows a group of people walking through a field of tall grass and palm' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:51:29,147 | INFO | [901.2s] scene='The image shows a group of people walking through a field of tall grass. The sky' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:51:29,267 | INFO | [907.3s] skip unstable frame (diff=26.0) +2026-06-25 17:51:29,343 | INFO | [913.3s] skip unstable frame (diff=26.9) +2026-06-25 17:51:29,403 | INFO | [919.4s] skip unstable frame (diff=26.3) +2026-06-25 17:51:29,466 | INFO | [925.4s] skip unstable frame (diff=27.6) +2026-06-25 17:51:29,536 | INFO | [931.5s] skip unstable frame (diff=29.9) +2026-06-25 17:51:29,603 | INFO | [937.5s] skip unstable frame (diff=27.1) +2026-06-25 17:51:29,677 | INFO | [943.6s] skip unstable frame (diff=31.9) +2026-06-25 17:51:29,743 | INFO | [949.6s] skip unstable frame (diff=35.5) +2026-06-25 17:51:29,820 | INFO | [955.7s] skip unstable frame (diff=33.5) +2026-06-25 17:51:29,895 | INFO | [961.7s] skip unstable frame (diff=27.8) +2026-06-25 17:51:29,970 | INFO | [967.8s] skip unstable frame (diff=32.3) +2026-06-25 17:51:59,100 | INFO | [973.8s] scene='The image is a still from a video titled "WAVES OTT FOR SLC". It shows two peopl' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=['concerned'] +2026-06-25 17:51:59,145 | INFO | [979.9s] skip unstable frame (diff=44.0) +2026-06-25 17:52:28,775 | INFO | [985.9s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:53:01,077 | INFO | [992.0s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:53:34,205 | INFO | [998.0s] scene='The image shows two men standing in a field with a hill in the background. Both ' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:54:27,734 | INFO | [1004.1s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=['concerned'] +2026-06-25 17:54:56,830 | INFO | [1010.1s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:55:28,251 | INFO | [1016.2s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:56:05,759 | INFO | [1022.2s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:56:47,242 | INFO | [1028.3s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:57:19,209 | INFO | [1034.3s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:57:37,590 | INFO | [1040.4s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:57:51,554 | INFO | [1046.4s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:58:02,947 | INFO | [1052.4s] scene='The image shows two men standing in a field with tall grass and bushes in the ba' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:58:03,181 | INFO | [1058.5s] skip unstable frame (diff=28.7) +2026-06-25 17:58:03,373 | INFO | [1064.6s] skip unstable frame (diff=80.0) +2026-06-25 17:58:03,438 | INFO | [1070.6s] skip unstable frame (diff=76.7) +2026-06-25 17:58:03,502 | INFO | [1076.6s] skip unstable frame (diff=53.4) +2026-06-25 17:58:03,639 | INFO | [1082.7s] skip unstable frame (diff=36.7) +2026-06-25 17:58:03,793 | INFO | [1088.8s] skip unstable frame (diff=31.1) +2026-06-25 17:58:12,955 | INFO | [1094.8s] scene='The image shows a group of people sitting on the ground in a forested area. In t' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:58:22,177 | INFO | [1100.8s] scene='The image shows a group of people sitting on the ground in a forested area. They' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:58:32,118 | INFO | [1106.9s] scene='The image shows a group of people sitting on the ground in a forested area. Ther' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:58:40,872 | INFO | [1113.0s] scene='The image shows a group of people sitting on the ground under a wooden structure' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:58:50,836 | INFO | [1119.0s] scene='The image shows a group of people sitting on the ground in a forested area. He i' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 17:59:01,547 | INFO | [1125.0s] scene='The image shows a group of people sitting on the ground under a wooden structure' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:59:10,472 | INFO | [1131.1s] scene='The image shows a group of people sitting under a wooden structure in a forested' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 17:59:10,714 | INFO | [1137.1s] skip unstable frame (diff=47.4) +2026-06-25 17:59:18,647 | INFO | [1143.2s] scene='The image shows two women, one wearing a white headscarf and the other wearing a' | hints=['wind rustling leaves', 'branch creak', 'frogs croaking'] | expr=['concerned'] +2026-06-25 17:59:19,048 | INFO | [1149.2s] skip unstable frame (diff=42.4) +2026-06-25 17:59:19,114 | INFO | [1155.3s] skip unstable frame (diff=32.0) +2026-06-25 17:59:19,475 | INFO | [1161.3s] skip unstable frame (diff=48.1) +2026-06-25 17:59:30,080 | INFO | [1167.4s] scene='The image is a still from a movie or TV show. It shows two women, one wearing a ' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 17:59:30,305 | INFO | [1173.4s] skip unstable frame (diff=52.7) +2026-06-25 17:59:36,512 | INFO | [1179.5s] scene='The image is a still from a movie or TV show. It shows a woman wearing a white h' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 17:59:47,305 | INFO | [1185.5s] scene='The image is a still from a movie or TV show. She appears to be in her late 40s ' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 18:00:14,593 | INFO | [1191.6s] scene='The image is a still from a movie or TV show. She appears to be in her late 40s ' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 18:00:15,251 | INFO | [1197.6s] skip unstable frame (diff=52.1) +2026-06-25 18:00:51,161 | INFO | [1203.7s] scene='The image is a still from a movie or TV show. He has a tattoo on his chest that ' | hints=['birds chirping', 'wind rustling leaves', 'footsteps on dirt'] | expr=[] +2026-06-25 18:00:51,236 | INFO | [1209.7s] skip unstable frame (diff=53.2) +2026-06-25 18:01:20,682 | INFO | [1215.8s] scene='The image is a still from a movie or TV show. She appears to be in her late 40s ' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 18:01:37,641 | INFO | [1221.8s] scene='The image is a still from a movie or TV show. It shows a young woman wearing a w' | hints=['wind rustling leaves', 'crickets chirping', 'branch creak'] | expr=[] +2026-06-25 18:01:53,034 | INFO | [1227.9s] scene='The image is a still from a movie or TV show. She appears to be in a rural area,' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:02:13,930 | INFO | [1233.9s] scene='The image is a still from a movie or TV show. She is standing in front of a brow' | hints=['water splashing', 'wind over water', 'birds chirping'] | expr=[] +2026-06-25 18:02:13,985 | INFO | [1240.0s] skip unstable frame (diff=58.8) +2026-06-25 18:02:24,646 | INFO | [1246.0s] scene='The image shows a group of four people sitting on the ground in a rural area. In' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:02:38,046 | INFO | [1252.1s] scene='The image shows a group of four women sitting on the ground in a rural area. In ' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:03:10,508 | INFO | [1258.1s] scene='The image shows a group of four women sitting on the ground in a rural area. In ' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:03:22,952 | INFO | [1264.2s] scene='The image shows a group of four women sitting on the ground in a rural area. In ' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:03:36,892 | INFO | [1270.2s] scene='The image shows a group of four women sitting on the ground in a rural area. In ' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:03:55,284 | INFO | [1276.2s] scene='The image shows a group of four women sitting on the ground in a rural area. The' | hints=['cattle lowing', 'wind rustling leaves', 'branch creak'] | expr=[] +2026-06-25 18:03:55,367 | INFO | [1282.3s] skip unstable frame (diff=38.8) +2026-06-25 18:03:55,425 | INFO | [1288.4s] skip unstable frame (diff=42.5) +2026-06-25 18:03:55,472 | INFO | [1294.4s] skip unstable frame (diff=48.1) +2026-06-25 18:03:55,522 | INFO | [1300.4s] skip unstable frame (diff=41.1) +2026-06-25 18:03:55,591 | INFO | [1306.5s] skip unstable frame (diff=30.9) +2026-06-25 18:03:55,673 | INFO | [1312.6s] skip unstable frame (diff=39.9) +2026-06-25 18:03:55,759 | INFO | [1318.6s] skip unstable frame (diff=53.5) +2026-06-25 18:04:03,743 | INFO | [1324.6s] scene='The image is a still from a video. On the left side of the path, there is a smal' | hints=['cattle lowing', 'wind rustling leaves', 'crowd shouting'] | expr=[] +2026-06-25 18:04:03,824 | INFO | [1330.7s] skip unstable frame (diff=39.5) +2026-06-25 18:04:03,894 | INFO | [1336.8s] skip unstable frame (diff=37.8) +2026-06-25 18:04:03,973 | INFO | [1342.8s] skip unstable frame (diff=29.0) +2026-06-25 18:04:04,092 | INFO | [1348.8s] skip unstable frame (diff=51.6) +2026-06-25 18:04:04,480 | INFO | [1354.9s] skip unstable frame (diff=40.3) +2026-06-25 18:04:04,544 | INFO | [1361.0s] skip unstable frame (diff=25.2) +2026-06-25 18:04:04,783 | INFO | Vision log: 103 frames → results_v3\Bharat_Ek_Khoj_Ep_016_full\florence_log.jsonl +2026-06-25 18:04:04,796 | INFO | +Stage 1 done. Stage 2: + python panns_pipeline.py --video data\Bharat_Ek_Khoj_Ep_016_full.mp4 --florence-log results_v3\Bharat_Ek_Khoj_Ep_016_full\florence_log.jsonl diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png new file mode 100644 index 0000000..e94b293 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_0.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.0s.png new file mode 100644 index 0000000..588fd28 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1059.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png new file mode 100644 index 0000000..a04ea95 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1062.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1087.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1087.6s.png new file mode 100644 index 0000000..a46f9bb Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1087.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png new file mode 100644 index 0000000..db82108 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1091.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.4s.png new file mode 100644 index 0000000..e84005d Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1095.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1101.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1101.0s.png new file mode 100644 index 0000000..bcd6372 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1101.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png new file mode 100644 index 0000000..391279b Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1108.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1114.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1114.4s.png new file mode 100644 index 0000000..9b8b67e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1114.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1123.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1123.6s.png new file mode 100644 index 0000000..14e32e9 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1123.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1133.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1133.8s.png new file mode 100644 index 0000000..0123e76 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1133.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1143.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1143.0s.png new file mode 100644 index 0000000..7b37bdf Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1143.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1150.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1150.8s.png new file mode 100644 index 0000000..66fbe29 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1150.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1200.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1200.6s.png new file mode 100644 index 0000000..51ce05a Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1200.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1233.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1233.4s.png new file mode 100644 index 0000000..75769d5 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1233.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1277.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1277.6s.png new file mode 100644 index 0000000..7d89b7a Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1277.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1287.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1287.4s.png new file mode 100644 index 0000000..ed26bf9 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1287.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1293.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1293.0s.png new file mode 100644 index 0000000..c8de9b9 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1293.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.8s.png new file mode 100644 index 0000000..c2a2a8c Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1301.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1305.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1305.0s.png new file mode 100644 index 0000000..a90a0c7 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1305.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png new file mode 100644 index 0000000..b9f8986 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1321.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1331.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1331.6s.png new file mode 100644 index 0000000..45bf2a5 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1331.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1345.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1345.2s.png new file mode 100644 index 0000000..a59cb8f Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_1345.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_148.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_148.0s.png new file mode 100644 index 0000000..1370a45 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_148.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_190.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_190.0s.png new file mode 100644 index 0000000..16bc6da Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_190.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_199.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_199.2s.png new file mode 100644 index 0000000..0ddca07 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_199.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png new file mode 100644 index 0000000..268e1e1 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_2.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_203.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_203.4s.png new file mode 100644 index 0000000..11cd113 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_203.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_206.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_206.2s.png new file mode 100644 index 0000000..98fab80 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_206.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_213.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_213.2s.png new file mode 100644 index 0000000..d3962bb Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_213.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_224.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_224.0s.png new file mode 100644 index 0000000..373bba0 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_224.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png new file mode 100644 index 0000000..e5c7040 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_226.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.6s.png new file mode 100644 index 0000000..d9c6de3 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_229.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_232.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_232.0s.png new file mode 100644 index 0000000..86aa2b9 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_232.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.8s.png new file mode 100644 index 0000000..710e44e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_237.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_249.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_249.6s.png new file mode 100644 index 0000000..400ae41 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_249.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png new file mode 100644 index 0000000..5fe4851 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_252.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_273.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_273.8s.png new file mode 100644 index 0000000..16d0d95 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_273.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_278.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_278.8s.png new file mode 100644 index 0000000..e0aa71e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_278.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_281.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_281.0s.png new file mode 100644 index 0000000..338efca Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_281.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png new file mode 100644 index 0000000..2a010d7 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_287.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png new file mode 100644 index 0000000..111de54 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_293.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_31.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_31.4s.png new file mode 100644 index 0000000..5bb33b9 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_31.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_353.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_353.8s.png new file mode 100644 index 0000000..4171c64 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_353.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_379.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_379.4s.png new file mode 100644 index 0000000..b679b28 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_379.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_385.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_385.8s.png new file mode 100644 index 0000000..a777100 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_385.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.0s.png new file mode 100644 index 0000000..182f54f Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_391.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_394.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_394.4s.png new file mode 100644 index 0000000..4f9f93d Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_394.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.8s.png new file mode 100644 index 0000000..4c1abee Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_399.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_403.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_403.8s.png new file mode 100644 index 0000000..efb7f0e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_403.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_406.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_406.2s.png new file mode 100644 index 0000000..fee4b9b Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_406.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.2s.png new file mode 100644 index 0000000..2b9d43e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_41.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_420.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_420.4s.png new file mode 100644 index 0000000..eeace10 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_420.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png new file mode 100644 index 0000000..5d6739d Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_45.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_458.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_458.2s.png new file mode 100644 index 0000000..982b090 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_458.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_53.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_53.4s.png new file mode 100644 index 0000000..095c779 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_53.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_589.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_589.6s.png new file mode 100644 index 0000000..79ab54d Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_589.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_595.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_595.0s.png new file mode 100644 index 0000000..8cf280f Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_595.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png new file mode 100644 index 0000000..d0b10ce Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_597.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_600.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_600.4s.png new file mode 100644 index 0000000..924d117 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_600.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.6s.png new file mode 100644 index 0000000..85beef3 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_608.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_619.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_619.4s.png new file mode 100644 index 0000000..9735505 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_619.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_621.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_621.6s.png new file mode 100644 index 0000000..99f9ecf Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_621.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.0s.png new file mode 100644 index 0000000..ff70f83 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_627.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_650.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_650.8s.png new file mode 100644 index 0000000..3701b4e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_650.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_653.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_653.6s.png new file mode 100644 index 0000000..2a9326d Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_653.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png new file mode 100644 index 0000000..3339720 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_656.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png new file mode 100644 index 0000000..52be857 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_660.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.2s.png new file mode 100644 index 0000000..08b3e98 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_664.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_67.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_67.0s.png new file mode 100644 index 0000000..cbe6867 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_67.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_678.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_678.8s.png new file mode 100644 index 0000000..74348e3 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_678.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png new file mode 100644 index 0000000..3bfe9ef Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_691.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_698.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_698.0s.png new file mode 100644 index 0000000..9588563 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_698.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_713.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_713.4s.png new file mode 100644 index 0000000..16b7ff5 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_713.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_748.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_748.8s.png new file mode 100644 index 0000000..8bd0c7b Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_748.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_751.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_751.0s.png new file mode 100644 index 0000000..2a13889 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_751.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png new file mode 100644 index 0000000..8c53f6f Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_755.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_76.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_76.8s.png new file mode 100644 index 0000000..13b1b26 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_76.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_764.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_764.0s.png new file mode 100644 index 0000000..3541574 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_764.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_768.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_768.8s.png new file mode 100644 index 0000000..013ea25 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_768.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png new file mode 100644 index 0000000..496bfce Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_771.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_795.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_795.4s.png new file mode 100644 index 0000000..decdc4c Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_795.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_805.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_805.8s.png new file mode 100644 index 0000000..c40b543 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_805.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_809.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_809.2s.png new file mode 100644 index 0000000..11410ec Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_809.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png new file mode 100644 index 0000000..83f4937 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_813.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_817.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_817.6s.png new file mode 100644 index 0000000..0804036 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_817.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_820.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_820.4s.png new file mode 100644 index 0000000..9a07739 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_820.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png new file mode 100644 index 0000000..b403476 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_823.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_828.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_828.0s.png new file mode 100644 index 0000000..46b695c Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_828.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png new file mode 100644 index 0000000..7b5f3f6 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_831.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png new file mode 100644 index 0000000..243b5c5 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_835.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_839.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_839.8s.png new file mode 100644 index 0000000..bb8d870 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_839.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_855.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_855.2s.png new file mode 100644 index 0000000..52aa022 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_855.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.8s.png new file mode 100644 index 0000000..543c86b Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_872.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png new file mode 100644 index 0000000..3619e88 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_876.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png new file mode 100644 index 0000000..7588c5e Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_886.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_890.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_890.8s.png new file mode 100644 index 0000000..7190652 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_890.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png new file mode 100644 index 0000000..4bd39ff Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_896.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png new file mode 100644 index 0000000..fa18099 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_904.4s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png new file mode 100644 index 0000000..b7bced2 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_910.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_916.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_916.8s.png new file mode 100644 index 0000000..78795fa Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_916.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png new file mode 100644 index 0000000..3ad0772 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_923.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_93.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_93.8s.png new file mode 100644 index 0000000..73cb002 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_93.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png new file mode 100644 index 0000000..0908466 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_930.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png new file mode 100644 index 0000000..d3979fd Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_936.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_939.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_939.8s.png new file mode 100644 index 0000000..38dcd66 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_939.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png new file mode 100644 index 0000000..cc8611d Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_948.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png new file mode 100644 index 0000000..5cfa161 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_953.0s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_959.2s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_959.2s.png new file mode 100644 index 0000000..a7440ce Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_959.2s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_969.6s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_969.6s.png new file mode 100644 index 0000000..0611fe7 Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_969.6s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_999.8s.png b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_999.8s.png new file mode 100644 index 0000000..c7184db Binary files /dev/null and b/results_v3/Bharat_Ek_Khoj_Ep_016_full/annotated_frames/frame_999.8s.png differ diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/captions.srt b/results_v3/Bharat_Ek_Khoj_Ep_016_full/captions.srt new file mode 100644 index 0000000..814be2d --- /dev/null +++ b/results_v3/Bharat_Ek_Khoj_Ep_016_full/captions.srt @@ -0,0 +1,444 @@ +1 +00:00:00,000 --> 00:00:01,800 +Ambient noise fills the background during Episode 16. + +2 +00:00:02,600 --> 00:00:09,000 +Birds chirp softly in the background. + +3 +00:00:31,399 --> 00:00:40,399 +Ambient animal and bird sounds fill the environment. + +4 +00:00:41,200 --> 00:00:44,799 +Birds chirp softly in the background of the forest scene. + +5 +00:00:45,200 --> 00:00:52,799 +Sounds of birds and animals fill the forest. + +6 +00:00:53,399 --> 00:00:56,200 +Sounds of birds and animals fill the forest. + +7 +00:01:07,000 --> 00:01:09,400 +Birds sing while two women stand in a grassy field. + +8 +00:01:16,799 --> 00:01:24,400 +Birds chirp softly in the background as they hold hands. + +9 +00:01:33,799 --> 00:01:43,400 +A crow caws in the distance. + +10 +00:02:28,000 --> 00:02:29,800 +Ambient animal sounds fill the scene. + +11 +00:03:10,000 --> 00:03:11,800 +Animal sounds are heard in the background. + +12 +00:03:19,199 --> 00:03:22,199 +Tabla music plays softly in the background. + +13 +00:03:23,400 --> 00:03:25,199 +Music plays softly in the background. + +14 +00:03:26,199 --> 00:03:31,800 +Tabla music plays softly in the background. + +15 +00:03:33,199 --> 00:03:35,000 +Music plays softly in the background. + +16 +00:03:44,000 --> 00:03:45,800 +The tabla plays softly in the background. + +17 +00:03:46,199 --> 00:03:48,000 +Music plays softly in the background. + +18 +00:03:49,599 --> 00:03:51,400 +Music plays softly in the background. + +19 +00:03:52,000 --> 00:03:57,000 +Music and tabla play softly in the background. + +20 +00:03:57,800 --> 00:04:06,800 +Music and tabla play softly in the background. + +21 +00:04:09,599 --> 00:04:12,400 +Music plays softly in the background. + +22 +00:04:12,800 --> 00:04:33,199 +Sounds of a crow and a goose are heard. + +23 +00:04:33,800 --> 00:04:38,000 +Laughter fills the air. + +24 +00:04:38,800 --> 00:04:40,600 +Sounds of animals are present in the background. + +25 +00:04:41,000 --> 00:04:43,399 +Wild animals and birds create ambient sounds in the background. + +26 +00:04:47,199 --> 00:04:49,199 +Owl and animal sounds are heard in the background. + +27 +00:04:53,199 --> 00:04:55,800 +Crows caw and birds chirp in the background. + +28 +00:05:53,800 --> 00:06:00,399 +Music plays softly in the background. + +29 +00:06:19,399 --> 00:06:22,000 +Music plays softly in the background as three people sit together. + +30 +00:06:25,800 --> 00:06:29,600 +Music plays softly in the background as they sit together. + +31 +00:06:31,000 --> 00:06:33,399 +Sounds of animals and birds fill the forest atmosphere. + +32 +00:06:34,399 --> 00:06:36,199 +Music plays softly as two people walk on a forest path. + +33 +00:06:39,800 --> 00:06:41,600 +Music plays softly as two people walk on a forest path. + +34 +00:06:43,800 --> 00:06:45,600 +Music plays softly as two people walk on a forest path. + +35 +00:06:46,199 --> 00:06:48,000 +Music plays softly as two people walk through the forest. + +36 +00:07:00,399 --> 00:07:02,199 +Music plays softly in the background as he speaks. + +37 +00:07:38,199 --> 00:07:40,000 +Music plays softly in the background as four people stand in a field. + +38 +00:09:49,600 --> 00:09:51,399 +Music plays softly in the background. + +39 +00:09:55,000 --> 00:09:56,799 +Soft music plays as a person walks through tall grass. + +40 +00:09:57,200 --> 00:09:59,000 +Soft music plays as a person walks through tall grass. + +41 +00:10:00,399 --> 00:10:06,000 +Soft music plays as a person walks through tall grass. + +42 +00:10:08,600 --> 00:10:12,000 +Music plays softly in the background as they converse in the field. + +43 +00:10:19,399 --> 00:10:21,200 +Soft music plays as three women stand in a serene field. + +44 +00:10:21,600 --> 00:10:25,600 +Soft music plays in the background as three women stand in a field. + +45 +00:10:27,000 --> 00:10:29,799 +Birds chirp in the background as two men stand on the shore. + +46 +00:10:50,799 --> 00:10:52,799 +Birds chirp in the background as two women stand by water. + +47 +00:10:53,600 --> 00:10:55,399 +Birds chirp in the background as two women stand by water. + +48 +00:10:56,000 --> 00:10:58,399 +Wild animals and birds are heard near the water. + +49 +00:11:00,799 --> 00:11:02,600 +A woman in a white saree stands distressed by the water. + +50 +00:11:04,200 --> 00:11:15,600 +Birds and a duck squawk near the distressed woman by water. + +51 +00:11:18,799 --> 00:11:20,600 +A frog croaks in the background. + +52 +00:11:31,000 --> 00:11:33,399 +Birds chirp in the background as three people sit on the ground. + +53 +00:11:38,000 --> 00:11:39,799 +Music plays softly in the background. + +54 +00:11:53,399 --> 00:11:55,200 +Music plays softly in the background. + +55 +00:12:28,799 --> 00:12:30,600 +Music plays softly in the background. + +56 +00:12:31,000 --> 00:12:32,799 +Music plays softly in the background. + +57 +00:12:35,399 --> 00:12:42,600 +Music plays softly in the background. + +58 +00:12:44,000 --> 00:12:48,200 +Music plays softly in the background. + +59 +00:12:48,799 --> 00:12:50,600 +Music plays softly in the background. + +60 +00:12:51,000 --> 00:12:57,200 +Music plays softly in the background as four people sit together. + +61 +00:13:15,399 --> 00:13:24,399 +Music plays softly in the background. + +62 +00:13:25,799 --> 00:13:27,600 +Music plays softly in the background. + +63 +00:13:29,200 --> 00:13:32,799 +Music plays softly in the background as people gather in the woods. + +64 +00:13:33,399 --> 00:13:37,000 +Music plays softly in the background as people gather in the woods. + +65 +00:13:37,600 --> 00:13:39,399 +Music plays softly in the background as people gather in the woods. + +66 +00:13:40,399 --> 00:13:42,200 +Music plays softly in the background of the rural scene. + +67 +00:13:43,799 --> 00:13:47,399 +Music plays softly in the background of the rural scene. + +68 +00:13:48,000 --> 00:13:49,799 +Music plays softly in the background of the rural scene. + +69 +00:13:51,000 --> 00:13:54,600 +Music plays softly in the background. + +70 +00:13:55,000 --> 00:13:56,799 +Romantic music plays as the couple smiles in their embrace. + +71 +00:13:59,799 --> 00:14:05,399 +Soft music plays in the background as they embrace and smile. + +72 +00:14:15,200 --> 00:14:17,000 +Birds chirp softly in the background. + +73 +00:14:32,799 --> 00:14:36,399 +Birds sing and insects buzz as the couple embraces. + +74 +00:14:36,799 --> 00:14:46,200 +Soft music plays as the sun sets over palm trees. + +75 +00:14:46,600 --> 00:14:48,399 +Soft music plays as the sunset paints the sky pink and orange. + +76 +00:14:50,799 --> 00:14:56,200 +Music plays softly as people walk through the field. + +77 +00:14:56,799 --> 00:15:03,600 +Music plays softly as people walk through tall grass. + +78 +00:15:04,399 --> 00:15:09,399 +Music plays softly as people walk through the tall grass. + +79 +00:15:10,799 --> 00:15:14,600 +Music plays softly in the background. + +80 +00:15:16,799 --> 00:15:22,200 +Music plays softly in the background. + +81 +00:15:23,600 --> 00:15:29,000 +Music plays softly in the background. + +82 +00:15:30,000 --> 00:15:34,799 +Music plays softly in the background. + +83 +00:15:36,799 --> 00:15:38,600 +Music plays softly in the background. + +84 +00:15:39,799 --> 00:15:46,799 +Music plays softly in the background. + +85 +00:15:48,799 --> 00:15:52,600 +Music plays softly in the background. + +86 +00:15:53,000 --> 00:15:56,799 +Music plays softly in the background. + +87 +00:15:59,200 --> 00:16:07,200 +Background music plays softly. + +88 +00:16:09,600 --> 00:16:16,600 +Insects buzz nearby as the man and woman look concerned. + +89 +00:16:39,799 --> 00:16:43,799 +Men stand in a field, chopping wood while wild animals sound nearby. + +90 +00:17:39,000 --> 00:17:41,599 +Sounds of animals and water fill the background. + +91 +00:17:42,000 --> 00:18:04,400 +Farm animals and livestock make ambient sounds in the background. + +92 +00:18:07,599 --> 00:18:10,400 +Animals scratch in the forest as people sit nearby. + +93 +00:18:11,799 --> 00:18:13,599 +Animal sounds echo in the forest where people sit together. + +94 +00:18:15,400 --> 00:18:18,799 +Animals are heard in the forest where people sit together. + +95 +00:18:21,000 --> 00:18:27,799 +Sounds of animals and insects fill the forested area. + +96 +00:18:28,799 --> 00:18:33,799 +Birds sing and environmental sounds fill the forested area. + +97 +00:18:34,400 --> 00:18:40,200 +Sounds of animals and birds fill the forested area. + +98 +00:18:43,599 --> 00:18:45,599 +Insects buzz softly as people sit under the wooden structure. + +99 +00:18:53,799 --> 00:18:55,599 +Birds are chirping in the background as people sit nearby. + +100 +00:19:03,000 --> 00:19:10,000 +Birds chirp softly as two concerned women stand by a tree. + +101 +00:19:10,799 --> 00:19:12,599 +Two concerned women stand by a tree, one in a white headscarf. + +102 +00:20:00,599 --> 00:20:02,400 +Music plays softly in the background. + +103 +00:20:33,400 --> 00:20:35,599 +Music plays softly in the background as she stands by a cow. + +104 +00:21:17,599 --> 00:21:26,599 +Music plays softly as four women sit on the ground. + +105 +00:21:27,400 --> 00:21:32,599 +Soft music plays in the background with wind instruments. + +106 +00:21:33,000 --> 00:21:34,799 +Music plays softly in the background. + +107 +00:21:41,799 --> 00:21:44,200 +Music plays softly in the background. + +108 +00:21:45,000 --> 00:22:00,799 +Theremin music plays softly in the background. + +109 +00:22:01,599 --> 00:22:10,599 +Cattle moo nearby as a small hut stands by the path. + +110 +00:22:11,599 --> 00:22:14,799 +Pattering sounds of rodents, including rats and mice, are heard. + +111 +00:22:25,200 --> 00:22:38,599 +Sitar music plays softly in the background. + diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/florence_log.jsonl b/results_v3/Bharat_Ek_Khoj_Ep_016_full/florence_log.jsonl new file mode 100644 index 0000000..9f5400e --- /dev/null +++ b/results_v3/Bharat_Ek_Khoj_Ep_016_full/florence_log.jsonl @@ -0,0 +1,103 @@ +{"timestamp_sec": 0.0, "raw_caption": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Period and Silappadikaram Part-II\". The text is written in a bold, sans-serif font and is centered on the image. Below the text, there is a subtitle in Hindi that translates to \"WAVES OTTARAM PART-II\" in English. The subtitle is in a smaller font size and is slightly larger than the rest of the text. The overall design is simple and minimalistic. The image shows a black background with the text \"The Sangam Period and Silappadikaram Part-II\" written in white font The text is centered in the middle of the image and is surrounded by a white border The font size is large enough to be easily read from a distance", "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Period and Silappadikaram Part-II\". The text is written in a bold, sans-serif font and is centered on the image. Below the text, there is a subtitle in Hindi that translates to \"WAVES OTTARAM PART-II\" in English. The subtitle is in a smaller font size and is slightly larger than the rest of the text. The overall design is simple and minimalistic. The image shows a black background with the text \"The Sangam Period and Silappadikaram Part-II\" written in white font The text is centered in the middle of the image and is surrounded by a white border The font size is large enough to be easily read from a distance", "scene_hints": [], "expressions": []} +{"timestamp_sec": 18.12, "raw_caption": "The image shows a dense forest with tall trees and bushes. The trees have thick trunks and the ground is covered in greenery. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the trees. The overall mood of the scene is peaceful and serene. The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the center of the image", "scene_text": "The trees have thick trunks and the ground is covered in greenery. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the trees. The overall mood of the scene is peaceful and serene. The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the center of the image", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 48.36, "raw_caption": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees and bushes in the background. The person is wearing a red jacket and appears to be walking away from the camera. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy, ethereal quality. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the foreground, adding to the mysterious atmosphere of the scene", "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees and bushes in the background. The person is wearing a red jacket and appears to be walking away from the camera. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy, ethereal quality. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a person standing in the middle of a lush forest, surrounded by tall trees and various plants The text \"Waves Ott for SLC\" is visible in the foreground, adding to the mysterious atmosphere of the scene", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 66.52, "raw_caption": "The image shows two women standing in a field of tall grass and bushes. The woman on the left is wearing a red dress and is holding the hand of the man on the right. They are both looking at each other and appear to be engaged in a conversation. The background is filled with trees and shrubs, and the sky is visible through the trees. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows two women standing in a field of tall grass and bushes. They are both looking at each other and appear to be engaged in a conversation. The background is filled with trees and shrubs, and the sky is visible through the trees. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 72.56, "raw_caption": "The image shows a man and a woman standing in a field of tall grass. The woman is wearing a red dress and the man is wearing white. They are holding hands and appear to be engaged in a conversation. The background is filled with trees and bushes, and there is a watermark in the corner of the image that reads \"WAVES OTT FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_text": "The image shows a man and a woman standing in a field of tall grass. They are holding hands and appear to be engaged in a conversation. The background is filled with trees and bushes, and there is a watermark in the corner of the image that reads \"WAVES OTT FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 78.6, "raw_caption": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. The woman is wearing a red dress and the man is wearing white pants. They are holding hands and appear to be engaged in a conversation. The background is dark and there are trees and bushes surrounding them. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through tall grass in a field, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_text": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. They are holding hands and appear to be engaged in a conversation. The background is dark and there are trees and bushes surrounding them. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman walking through tall grass in a field, surrounded by trees and plants There is a watermark on the image, giving it a unique look", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 108.84, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with dark hair, wearing a white tank top and shorts. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. On the right side of the image, there are two other people, one of whom is wearing a traditional Indian outfit. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and plants In the center of the image there is a watermark, and in the background there are more trees", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and plants In the center of the image there is a watermark, and in the background there are more trees", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 114.92, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with dark hair, wearing a white tank top and shorts. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. On the right side of the image, there are two other people, one of whom is wearing a traditional Indian outfit. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLO\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his back to the camera, looking down at the ground. In the middle, there is a woman wearing a red dress and a white headscarf, sitting next to him. She appears to be deep in thought, with her hands clasped together in front of her. The background is filled with trees and shrubs, and the ground is covered in fallen leaves. The image has a watermark that reads \"WAVES OTT FOR SLO\". The image shows a group of three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 120.96, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with dark hair, wearing a white tank top and shorts. He is sitting with his legs crossed and appears to be deep in thought. In the middle, there is a woman wearing a red dress and a white headscarf, who is sitting next to him. She is looking at the other two people with a serious expression on her face. The background shows trees and bushes, suggesting that the scene is taking place in a natural environment. The image is captioned \"WAVES OTT FOR SIC\". The image shows three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs crossed and appears to be deep in thought. In the middle, there is a woman wearing a red dress and a white headscarf, who is sitting next to him. She is looking at the other two people with a serious expression on her face. The background shows trees and bushes, suggesting that the scene is taking place in a natural environment. The image is captioned \"WAVES OTT FOR SIC\". The image shows three people sitting on the ground in the woods, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 145.16, "raw_caption": "The image is a still from a movie or TV show. It shows a close-up of a man's face and upper body. He is wearing a white tank top and a gold chain necklace. His hair is styled in a messy bun and he is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. Overlaid on the image is text that reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it He is wearing a white shirt and has a determined expression on his face, as if he is ready to take on any challenge", "scene_text": "The image is a still from a movie or TV show. It shows a close-up of a man's face and upper body. His hair is styled in a messy bun and he is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. Overlaid on the image is text that reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it He is wearing a white shirt and has a determined expression on his face, as if he is ready to take on any challenge", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 157.24, "raw_caption": "The image is a still from a movie or TV show. It shows a man wearing a white hooded cloak, standing in a wooded area with trees and bushes in the background. The man appears to be looking off into the distance with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows a man wearing a white hooded cloak, standing in a wooded area with trees and bushes in the background. The man appears to be looking off into the distance with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 163.28, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wrapped in a white cloth, with a hood covering her head. She is standing in a wooded area with trees and bushes in the background. The woman appears to be looking off into the distance with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She is standing in a wooded area with trees and bushes in the background. The woman appears to be looking off into the distance with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SIC\". The image shows a woman in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 169.36, "raw_caption": "The image is a still from a movie or TV show. It shows a young man wearing a white hoodie with the words \"WAVES OTT FOR SLC\" written on it. He is standing in a wooded area with trees and bushes in the background. The man is looking directly at the camera with a serious expression on his face. The image appears to be taken from a low angle, with the focus on the man's face. The image shows a man in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_text": "The image is a still from a movie or TV show. He is standing in a wooded area with trees and bushes in the background. The man is looking directly at the camera with a serious expression on his face. The image appears to be taken from a low angle, with the focus on the man's face. The image shows a man in a white hoodie standing next to a tree, surrounded by other trees and a clear blue sky There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 181.44, "raw_caption": "The image is a still from a movie or TV show. It shows a young man with dark hair tied up in a bun, wearing a white sleeveless shirt and a gold chain necklace. He has a tattoo on his left shoulder and is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it, surrounded by trees in the background", "scene_text": "The image is a still from a movie or TV show. He has a tattoo on his left shoulder and is looking off to the side with a serious expression on his face. The background is blurred, but it appears to be a wooded area with trees and foliage. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man with a tattoo on his chest standing in front of a tree with the words \"Waves Ott for SLC\" written on it, surrounded by trees in the background", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "crickets chirping", "distant music", "wind", "rustling grass", "crackling fire", "night insects", "insects buzzing", "crickets", "branch creak", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 326.6, "raw_caption": "The image shows a man and a woman embracing each other in a loving hug. The woman is wearing a traditional Indian outfit with a white headpiece and a gold necklace. The man has long dark hair and a beard. They are both smiling and appear to be happy. The background is blurred, but it appears to be a garden or a wooded area with trees and bushes. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a man and woman embracing in front of a backdrop of trees, with a watermark in the middle", "scene_text": "The image shows a man and a woman embracing each other in a loving hug. They are both smiling and appear to be happy. The background is blurred, but it appears to be a garden or a wooded area with trees and bushes. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a man and woman embracing in front of a backdrop of trees, with a watermark in the middle", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": ["smiling"]} +{"timestamp_sec": 332.64, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the right side of the image, with his arm around the woman's waist. They are both wearing traditional Indian clothing, with the man wearing a red saree and the woman wearing a white saree. The woman has a flower crown on her head and is looking at the man with a smile on her face. The background is filled with greenery, suggesting that they are in a garden or a wooded area. The image has a text overlay that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing each other in the foreground, with trees in the background and a watermark in the middle The image is slightly blurred, giving it a dreamy, romantic feel", "scene_text": "The image shows a man and a woman in a romantic embrace. The man is on the right side of the image, with his arm around the woman's waist. The woman has a flower crown on her head and is looking at the man with a smile on her face. The background is filled with greenery, suggesting that they are in a garden or a wooded area. The image has a text overlay that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing each other in the foreground, with trees in the background and a watermark in the middle The image is slightly blurred, giving it a dreamy, romantic feel", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 368.96, "raw_caption": "The image shows three people sitting on a woven mat under a tree. The person on the left is wearing a red saree and is holding a book in her hand. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her hands clasped together and is looking off to the side. All three people are wearing traditional Indian clothing. The background is filled with greenery and there is a watermark in the bottom right corner that reads \"WAVES OUT FOR SALE\". The image shows three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is wearing a white dress, while the person on the left is wearing an unknown color The background is filled with trees and plants, and there is a watermark in the center of the image", "scene_text": "The image shows three people sitting on a woven mat under a tree. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her hands clasped together and is looking off to the side. The background is filled with greenery and there is a watermark in the bottom right corner that reads \"WAVES OUT FOR SALE\". The image shows three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is wearing a white dress, while the person on the left is wearing an unknown color The background is filled with trees and plants, and there is a watermark in the center of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 375.0, "raw_caption": "The image shows three people sitting on a woven mat in a forest. The person in the middle is a young man with dark hair, wearing a white traditional Indian outfit. He is sitting on the ground with his legs crossed and his hands resting on his knees. On the left side of the image, there is a woman wearing a red saree and a man wearing a blue saree. They appear to be engaged in a conversation. The background is filled with trees and greenery, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of three people sitting on top of a dirt field, surrounded by trees and plants In the center of the image, there is a watermark", "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with his legs crossed and his hands resting on his knees. They appear to be engaged in a conversation. The background is filled with trees and greenery, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of three people sitting on top of a dirt field, surrounded by trees and plants In the center of the image, there is a watermark", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 381.04, "raw_caption": "The image shows three people sitting on a woven mat under a tree. The person on the left is wearing a red saree and is holding a book in her hand. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her head bowed and her hands clasped together in front of her. All three people are wearing traditional Indian clothing. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image appears to have been taken during the day. The image shows a group of three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is holding an object, and there is a watermark on the image", "scene_text": "The image shows three people sitting on a woven mat under a tree. The man in the middle is sitting on the ground with his legs crossed and appears to be deep in thought. The woman on the right is sitting next to him with her head bowed and her hands clasped together in front of her. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image appears to have been taken during the day. The image shows a group of three people sitting on the ground in front of a tree, surrounded by lush greenery The person in the middle is holding an object, and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 387.08, "raw_caption": "The image shows three people sitting on a woven mat in a forest. The person in the middle is a young man with dark hair and a white shirt, wearing a traditional Indian outfit. He is sitting on the ground with his legs crossed and his hands resting on his knees. On the left side of the image, there is a woman wearing a red saree and a man wearing a white kurta. The woman on the right side is also sitting and appears to be listening intently to the man. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image has a watermark that reads \"WAVES OF FOR SALE\". The image shows a group of three people sitting on the ground in front of a tree, surrounded by leaves and stems In the middle of the image there is a watermark, and the background is filled with trees", "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with his legs crossed and his hands resting on his knees. The woman on the right side is also sitting and appears to be listening intently to the man. The background is filled with trees and foliage, suggesting that the scene is taking place in a natural environment. The image has a watermark that reads \"WAVES OF FOR SALE\". The image shows a group of three people sitting on the ground in front of a tree, surrounded by leaves and stems In the middle of the image there is a watermark, and the background is filled with trees", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 399.2, "raw_caption": "The image shows two people walking on a dirt path in a forested area. The person on the left is wearing a white suit with a hood and a face mask, and is carrying a backpack. They appear to be walking towards the right side of the image. The ground is covered in dry grass and shrubs, and there are trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle. There is a watermark on the image that reads \"WAVESOTT FOR SLC\". The image shows a man in a white suit walking down a dirt road surrounded by lush green grass and tall trees The sky is visible in the background, and there is a watermark on the image", "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towards the right side of the image. The ground is covered in dry grass and shrubs, and there are trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle. There is a watermark on the image that reads \"WAVESOTT FOR SLC\". The image shows a man in a white suit walking down a dirt road surrounded by lush green grass and tall trees The sky is visible in the background, and there is a watermark on the image", "scene_hints": ["wind rustling leaves", "crowd shouting", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "rain falling", "horses", "rustling grass", "insects buzzing", "running", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 417.36, "raw_caption": "The image shows three people standing in a field with tall grass and trees in the background. The person on the left is wearing a white robe and is holding a white cloth in his hands. He appears to be speaking, while the person in the middle is looking at the camera with a serious expression. On the right side of the image, there is a woman wearing a red robe and a white headscarf. She is also holding a book in her hands. The image appears to have been taken during the day, as there are no other people visible in the frame. The image shows a group of three people standing next to each other in a field, with one person holding a white object in their hand The background of the image is filled with lush green grass, plants, and trees, and the sky is visible in the background There is also a watermark on the image", "scene_text": "The image shows three people standing in a field with tall grass and trees in the background. He appears to be speaking, while the person in the middle is looking at the camera with a serious expression. She is also holding a book in her hands. The image appears to have been taken during the day, as there are no other people visible in the frame. The image shows a group of three people standing next to each other in a field, with one person holding a white object in their hand The background of the image is filled with lush green grass, plants, and trees, and the sky is visible in the background There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 429.44, "raw_caption": "The image shows two men standing in a field with tall grass and trees in the background. They are both wearing white robes and appear to be engaged in a conversation. The man on the left is holding a book in his hands and the woman on the right is looking at him attentively. The text on the image reads \"WAVES OF FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, both wearing white dresses In the background, there are trees and a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and trees in the background. The man on the left is holding a book in his hands and the woman on the right is looking at him attentively. The text on the image reads \"WAVES OF FOR SLC\". The image appears to be a still from a movie or TV show. The image shows a man and woman standing in a field of tall grass, both wearing white dresses In the background, there are trees and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 435.48, "raw_caption": "The image shows two people standing in a field with tall grass and trees in the background. They are both wearing white dresses and appear to be engaged in a conversation. The person on the left is holding a camera and the person in the middle is looking at the other person with a serious expression. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and woman standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows two people standing in a field with tall grass and trees in the background. The person on the left is holding a camera and the person in the middle is looking at the other person with a serious expression. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and woman standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 441.52, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe, the person in the middle is wearing white robes, and the person at the far right is bald. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 447.6, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe and is holding a stick, while the person in the middle is holding an umbrella. The third person is standing on the right side of the image, wearing a white robe and holding a book. The fourth person is in the center, wearing the same white robe. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses The sky is visible in the background, and there is a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The third person is standing on the right side of the image, wearing a white robe and holding a book. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses The sky is visible in the background, and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 453.64, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all wearing white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe, the person in the middle is holding a white hat, and the person at the far right is holding an object. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field of tall grass, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 459.68, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe, the person in the middle is holding a white cloth, and the person at the far right is wearing an orange robe. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. All four people are looking at each other and seem to be in deep thought. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 465.72, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe and is holding a stick, while the person in the middle is holding an object, possibly a book or a piece of paper. The text on the image reads \"WAVES OF FOR SLC\". It appears to be a still from a movie or TV show. The image shows a group of four people standing in a field surrounded by trees and plants, with a watermark in the background", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The text on the image reads \"WAVES OF FOR SLC\". It appears to be a still from a movie or TV show. The image shows a group of four people standing in a field surrounded by trees and plants, with a watermark in the background", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 471.76, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. The person on the left is wearing a red robe and is holding a stick, while the person in the middle is holding an object, possibly a book or a pen. The other three people are wearing white robes. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and one of them is holding a stick There is a watermark on the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The image has a watermark that reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and one of them is holding a stick There is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 477.84, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in traditional Indian clothing, with the person in the center wearing a white saree and the person on the left wearing a red saree. The person on their left is holding a white cloth, while the person next to them is wearing a black saree with a white shawl draped over their shoulders. On the right side of the image, there is a man wearing a beige robe and holding a sword. The image appears to be a still from a movie or TV show, as there is text overlaid on the image that reads \"WAVES OFF FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees In the center of the group is a watermark, adding a unique touch to the scene", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The image appears to be a still from a movie or TV show, as there is text overlaid on the image that reads \"WAVES OFF FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees In the center of the group is a watermark, adding a unique touch to the scene", "scene_hints": ["wind rustling leaves", "crowd shouting", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "rain falling", "horses", "rustling grass", "insects buzzing", "running", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 483.88, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. On the left side of the image, there is a woman wearing a red robe, on the right side, and in the center, there are two men wearing white robes. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark in the middle of the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by lush green grass and tall trees The person in the front is wearing a white dress, while the other three are wearing different colored dresses There is a watermark in the middle of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 489.92, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all dressed in white robes and appear to be engaged in a conversation. On the left side of the image, there is a woman wearing a red robe, on the right side, and in the center, there are two men wearing white robes. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The man in the middle is holding a microphone and appears to be speaking to the other two men. The text on the image reads \"WAVES OF FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 495.96, "raw_caption": "The image shows a group of four people standing in a field with tall grass and trees in the background. They are all wearing white robes and appear to be engaged in a conversation. On the left side of the image, there is a man wearing a red robe, on the right side, and in the center, there are two women wearing white dresses. The woman in the middle is holding a microphone and appears to be speaking, while the other two women are listening attentively. The image has a watermark that reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the background. The woman in the middle is holding a microphone and appears to be speaking, while the other two women are listening attentively. The image has a watermark that reads \"WAVES OUT FOR SLC\". The image shows a group of four people standing in a field surrounded by trees and plants They are all wearing white dresses and there is a watermark in the middle of the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 514.12, "raw_caption": "The image shows three people, two men and a woman, standing in a field with trees in the background. The woman is wearing a red saree and the two men are wearing white traditional Indian clothing. The man on the left is holding a white cloth in his hands and appears to be speaking to the woman on the right. The text on the image reads \"WAVES OFF FOR SIC\". The image appears to have been taken during the day, as the sky is blue and the grass is dry. The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows three people, two men and a woman, standing in a field with trees in the background. The text on the image reads \"WAVES OFF FOR SIC\". The image appears to have been taken during the day, as the sky is blue and the grass is dry. The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 520.16, "raw_caption": "The image shows three people standing in a field with trees in the background. The person in the center is wearing a white robe and is holding a large white object, which appears to be a bowl or a plate. To his left is a young boy wearing a red robe, and to his right is a man wearing a gray robe. All three people are looking at the object with serious expressions on their faces. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding a bag In the background, there are trees and a clear blue sky, and the image is framed with black borders", "scene_text": "The image shows three people standing in a field with trees in the background. All three people are looking at the object with serious expressions on their faces. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding a bag In the background, there are trees and a clear blue sky, and the image is framed with black borders", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 526.2, "raw_caption": "The image shows a group of three people standing in a field. The person in the center is wearing a white robe and is holding a large white object, which appears to be a drum or a musical instrument. To his left is a young boy wearing a red robe, and to his right is an older man wearing a gray robe. They are all looking at each other and appear to be engaged in a conversation. The background shows trees and bushes, and the sky is blue. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding an object in their hand In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows a group of three people standing in a field. They are all looking at each other and appear to be engaged in a conversation. The background shows trees and bushes, and the sky is blue. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, with one person wearing a white dress and holding an object in their hand In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 532.28, "raw_caption": "The image shows three people standing in a field with trees in the background. The person in the center is wearing a white robe and is holding a white bag, while the person on the left is a young boy wearing a red robe. On the right side of the image, there is a man wearing a brown robe and a white headscarf. He appears to be speaking to the two people in the middle. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_text": "The image shows three people standing in a field with trees in the background. He appears to be speaking to the two people in the middle. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three people standing next to each other in a field, surrounded by trees and a clear blue sky In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 538.32, "raw_caption": "The image shows three men standing in a field with trees in the background. The man on the left is wearing a red robe and is holding a white cloth in his hand. He appears to be in the middle of a conversation with the man in the center, who is also wearing a white robe. On the right side of the image, there is another man wearing a traditional Indian outfit, possibly a monk or a priest. He is standing with his back to the camera and is looking at the other two men. The image appears to have been taken during the day, as the sky is blue and the grass is dry and brown. The image shows a group of three men standing next to each other in a field, with one of them holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows three men standing in a field with trees in the background. He is standing with his back to the camera and is looking at the other two men. The image appears to have been taken during the day, as the sky is blue and the grass is dry and brown. The image shows a group of three men standing next to each other in a field, with one of them holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["wind rustling leaves", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crowd murmur", "crickets", "bells ringing", "rain falling", "rustling grass", "insects buzzing", "chanting", "birds", "music", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 544.36, "raw_caption": "The image shows three men standing in a field with trees in the background. The man on the left is wearing a red traditional Indian outfit and is holding a coconut in his hand. He appears to be talking to the man in the middle, who is also wearing a white robe and has a white headscarf covering his head. On the right side of the image, there is a man with a bald head and a white shawl draped over his shoulders. He is standing with his hands on his hips and is looking at the other two men. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three men standing next to each other in a field, with one of them holding a stick The background of the image is filled with trees and a clear blue sky, and there is a watermark on the image", "scene_text": "The image shows three men standing in a field with trees in the background. He appears to be talking to the man in the middle, who is also wearing a white robe and has a white headscarf covering his head. He is standing with his hands on his hips and is looking at the other two men. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a group of three men standing next to each other in a field, with one of them holding a stick The background of the image is filled with trees and a clear blue sky, and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 550.4, "raw_caption": "The image shows three people, two men and a woman, standing in a field with trees in the background. The man on the left is wearing a red robe and appears to be a young boy, while the man in the middle is a man wearing a white robe and a white headscarf. The woman on the right is also wearing a traditional Indian outfit and is holding a white cloth in her hand. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SIC\". The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows three people, two men and a woman, standing in a field with trees in the background. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SIC\". The image shows a group of three people standing next to each other in a field, with one person holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 556.48, "raw_caption": "The image shows a group of three people, two men and a woman, standing in a field with trees in the background. The man on the left is wearing a red traditional Indian outfit and is holding a white cloth in his hand. The woman on the right is also wearing a white saree and is standing next to the man in the center. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of people standing next to each other in a field, with one person holding a stick and another holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_text": "The image shows a group of three people, two men and a woman, standing in a field with trees in the background. The woman on the right is also wearing a white saree and is standing next to the man in the center. All three people appear to be engaged in a conversation. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a group of people standing next to each other in a field, with one person holding a stick and another holding a bag In the background, there are trees and a watermark on the image, and the sky is visible at the top", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 574.6, "raw_caption": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, sitting on a wooden bench. The woman is wearing a white headscarf and is holding a black feather in her hand. The man is shirtless and has a tattoo on his chest. They are both looking at each other and appear to be engaged in a conversation. In the background, there is a hill with trees and bushes. The sky is blue and the overall mood of the image is peaceful and serene. The image shows a man and a woman sitting next to each other in a field, with the man holding a stick In the background, there are trees and a clear blue sky, and the image is framed with a black border There is also a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, sitting on a wooden bench. The man is shirtless and has a tattoo on his chest. They are both looking at each other and appear to be engaged in a conversation. In the background, there is a hill with trees and bushes. The sky is blue and the overall mood of the image is peaceful and serene. The image shows a man and a woman sitting next to each other in a field, with the man holding a stick In the background, there are trees and a clear blue sky, and the image is framed with a black border There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 580.64, "raw_caption": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, standing side by side. The man is on the right side of the image, wearing a white robe and a gold chain necklace. He has dark hair and is looking off to the side with a serious expression on his face. The woman is wearing a headscarf and is holding a black feather in her hand. In the background, there is a hill with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man and a woman standing side by side, both wearing white clothing The man is holding a stick in his hand, and in the background there are trees and a clear blue sky There is also a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows two characters, a man and a woman, standing side by side. He has dark hair and is looking off to the side with a serious expression on his face. In the background, there is a hill with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a man and a woman standing side by side, both wearing white clothing The man is holding a stick in his hand, and in the background there are trees and a clear blue sky There is also a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 598.8, "raw_caption": "The image shows a person walking through a field of tall grass. The person is wearing a white dress and appears to be walking away from the camera. The field is surrounded by trees and bushes, and the sky is visible in the background. The grass is dry and brown, and there is a watermark in the center of the image that reads \"WAVES OTTOR SLC\". The image shows a man walking through tall grass with trees in the background He is wearing a white dress and there is a watermark on the image", "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress and appears to be walking away from the camera. The field is surrounded by trees and bushes, and the sky is visible in the background. The grass is dry and brown, and there is a watermark in the center of the image that reads \"WAVES OTTOR SLC\". The image shows a man walking through tall grass with trees in the background He is wearing a white dress and there is a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 610.88, "raw_caption": "The image shows a group of three people standing in a field of tall grass. The person in the center is wearing a white robe and a headscarf, while the person on the left is wearing an orange robe. They appear to be engaged in a conversation. The background is filled with trees and bushes, and the sky is dark. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman standing in tall grass with trees in the background The woman is wearing a white dress and the man is wearing red There is a watermark on the image", "scene_text": "The image shows a group of three people standing in a field of tall grass. They appear to be engaged in a conversation. The background is filled with trees and bushes, and the sky is dark. The image has a watermark that reads \"WAVES OTT FOR SLC\". The image shows a man and woman standing in tall grass with trees in the background The woman is wearing a white dress and the man is wearing red There is a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 616.96, "raw_caption": "The image shows three women standing in a field of tall grass. The woman in the center is wearing a red dress and is holding a bouquet of flowers, while the two women on either side of her are wearing white dresses. They appear to be in a peaceful and serene setting, with trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle, giving it a dreamy quality. The image shows a group of three women standing in a field of tall grass, surrounded by plants and trees In the center of the image, there is a watermark", "scene_text": "The image shows three women standing in a field of tall grass. They appear to be in a peaceful and serene setting, with trees and bushes in the background. The image is slightly blurred, but it appears to be taken from a low angle, giving it a dreamy quality. The image shows a group of three women standing in a field of tall grass, surrounded by plants and trees In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 629.04, "raw_caption": "The image shows two men standing on a rocky shore near a body of water. They are both wearing white traditional Indian clothing, with the man on the left wearing a white saree and the woman on the right wearing a red saree. The man in the saree is holding a white cloth in his hands and appears to be speaking, while the woman is looking at him attentively. The background is filled with tall grass and shrubs, and the water is calm and still. The image has a watermark that reads \"WAVES OT FOR SLC\". The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hand, and there are plants in the background There is also a watermark on the image", "scene_text": "The image shows two men standing on a rocky shore near a body of water. The man in the saree is holding a white cloth in his hands and appears to be speaking, while the woman is looking at him attentively. The background is filled with tall grass and shrubs, and the water is calm and still. The image has a watermark that reads \"WAVES OT FOR SLC\". The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hand, and there are plants in the background There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 641.16, "raw_caption": "The image shows two women standing next to each other near a body of water. The woman on the left is wearing a white traditional Indian outfit with a headscarf and a necklace. She is holding a small bowl in her hand and appears to be speaking to the other woman. The man on the right is carrying a large white bag on his back. Both women are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is carrying a bag and the woman is holding something in her hand In the background, there are plants and a watermark on the image", "scene_text": "The image shows two women standing next to each other near a body of water. She is holding a small bowl in her hand and appears to be speaking to the other woman. The man on the right is carrying a large white bag on his back. Both women are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is carrying a bag and the woman is holding something in her hand In the background, there are plants and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "water flowing", "rain falling", "frogs croaking"], "expressions": []} +{"timestamp_sec": 647.2, "raw_caption": "The image shows a man and a woman standing next to each other near a body of water. The woman is wearing a white traditional Indian outfit with a headscarf and jewelry, while the man is carrying a large white bag on his back. They appear to be engaged in a conversation. The background is blurred, but it appears to be an outdoor setting with trees and bushes. The image is likely from a scene from a movie or TV show. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hands, and there are plants in the background There is also a watermark on the image", "scene_text": "The image shows a man and a woman standing next to each other near a body of water. They appear to be engaged in a conversation. The background is blurred, but it appears to be an outdoor setting with trees and bushes. The image is likely from a scene from a movie or TV show. The image shows a man and woman standing next to each other near a body of water, both wearing white dresses The man is holding something in his hands, and there are plants in the background There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 653.24, "raw_caption": "The image shows two Indian women standing next to each other near a body of water. They are both wearing traditional white sarees and jewelry. The woman on the left is holding a small white object in her hand and appears to be speaking, while the man on the right is carrying a large white bag on his back. Both women have their hair styled in an afro and are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, with the man carrying a bag and the woman holding something in her hand There are plants in the background and a watermark on the image", "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the left is holding a small white object in her hand and appears to be speaking, while the man on the right is carrying a large white bag on his back. Both women have their hair styled in an afro and are looking at each other with serious expressions on their faces. The background is a cloudy sky and there are some plants and shrubs in the foreground. The image appears to have been taken during the day. The image shows a man and woman standing next to each other near a body of water, with the man carrying a bag and the woman holding something in her hand There are plants in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "water flowing", "rain falling", "frogs croaking"], "expressions": []} +{"timestamp_sec": 659.28, "raw_caption": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress, with her head in her hands and her eyes closed. The water is calm and there are a few plants visible in the background. The image is taken from a low angle, with the woman's body slightly angled towards the left side of the frame. The overall mood of the image is somber and melancholic. The image shows a woman in a white sari standing next to a body of water, with plants in the background and a watermark on the image", "scene_text": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress, with her head in her hands and her eyes closed. The water is calm and there are a few plants visible in the background. The image is taken from a low angle, with the woman's body slightly angled towards the left side of the frame. The overall mood of the image is somber and melancholic. The image shows a woman in a white sari standing next to a body of water, with plants in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "running", "water flowing", "wind", "drums", "rain falling", "horses", "crowd shouting", "frogs croaking", "metal clashing"], "expressions": []} +{"timestamp_sec": 689.52, "raw_caption": "The image shows three people sitting on the ground in a wooded area. The person on the left is a young man with long dark hair, wearing a white tank top and shorts. He is sitting with his legs crossed and appears to be deep in thought. In the middle, there is a woman wearing a red saree and a white headscarf, who is holding a small bowl in her hands. The woman on the right is a man wearing a traditional Indian outfit, also wearing a headscarves. They are sitting close together and appear to be engaged in a conversation. The background is filled with trees and bushes, suggesting that they are in a natural environment. The image shows three people sitting on the ground next to each other, with one person holding an object in their hand In the background, there are trees and a watermark on the image", "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs crossed and appears to be deep in thought. They are sitting close together and appear to be engaged in a conversation. The background is filled with trees and bushes, suggesting that they are in a natural environment. The image shows three people sitting on the ground next to each other, with one person holding an object in their hand In the background, there are trees and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 780.28, "raw_caption": "The image shows a group of four people sitting on the ground in a forested area. There are three people in the image, two men and two women, all dressed in traditional Indian clothing. The woman in the center is wearing a white headscarf and a red saree, while the two men on either side of her are wearing white and red sarees. The man on the left is sitting with his back to the camera, and the woman on the right is sitting next to him with her legs crossed. In front of them, there is a small animal, possibly a deer, with brown spots on its body. The background is filled with trees and bushes, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of people sitting on the ground next to each other, with a woman in the center holding an animal In the background, there are trees and a watermark on the image", "scene_text": "The image shows a group of four people sitting on the ground in a forested area. The man on the left is sitting with his back to the camera, and the woman on the right is sitting next to him with her legs crossed. In front of them, there is a small animal, possibly a deer, with brown spots on its body. The background is filled with trees and bushes, suggesting that the scene is taking place in a natural environment. The image appears to be a still from a movie or TV show. The image shows a group of people sitting on the ground next to each other, with a woman in the center holding an animal In the background, there are trees and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 786.32, "raw_caption": "The image shows a man and a woman sitting on the ground in a forested area. The man is on the left side of the image, wearing a white and red traditional Indian outfit with a white headscarf. He is sitting with his back to the camera, looking down at the ground with a serious expression on his face. The woman is sitting next to him, wearing traditional Indian clothing with a red and white saree and a white shawl draped over her shoulders. She is holding a basket of flowers in her hands. The background is filled with trees and bushes, and the ground is covered in dirt. The image appears to be a still from a movie or TV show. The image shows a man and woman sitting on the ground next to each other, surrounded by trees in the background There is a watermark on the image, suggesting that it is a photo of a person", "scene_text": "The image shows a man and a woman sitting on the ground in a forested area. He is sitting with his back to the camera, looking down at the ground with a serious expression on his face. The woman is sitting next to him, wearing traditional Indian clothing with a red and white saree and a white shawl draped over her shoulders. She is holding a basket of flowers in her hands. The background is filled with trees and bushes, and the ground is covered in dirt. The image appears to be a still from a movie or TV show. The image shows a man and woman sitting on the ground next to each other, surrounded by trees in the background There is a watermark on the image, suggesting that it is a photo of a person", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 816.56, "raw_caption": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, with trees and bushes in the background. The people appear to be of different ages and ethnicities, and they are dressed in traditional clothing. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the people in the foreground. The image shows a group of people standing in the middle of a forest, surrounded by trees and a clear blue sky The image is slightly blurred, and there is a watermark in the corner", "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, with trees and bushes in the background. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image appears to be taken from a low angle, looking up at the people in the foreground. The image shows a group of people standing in the middle of a forest, surrounded by trees and a clear blue sky The image is slightly blurred, and there is a watermark in the corner", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 822.6, "raw_caption": "The image shows a group of people in a rural area, with trees and bushes in the background. In the center of the image, there is a text that reads \"WAVES OTT FOR SLC\". The people in the image appear to be engaged in a physical altercation, with some of them holding hands and others throwing rocks at each other. The woman in the center is wearing a red dress, while the others are wearing traditional Indian clothing. The image appears to be taken from a low angle, looking up at the scene. The image shows a group of people dancing on the ground surrounded by trees and a clear blue sky In the center of the image, there is text that reads \"Waves Ott for SLC\"", "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the center of the image, there is a text that reads \"WAVES OTT FOR SLC\". The people in the image appear to be engaged in a physical altercation, with some of them holding hands and others throwing rocks at each other. The image appears to be taken from a low angle, looking up at the scene. The image shows a group of people dancing on the ground surrounded by trees and a clear blue sky In the center of the image, there is text that reads \"Waves Ott for SLC\"", "scene_hints": ["cattle lowing", "birds chirping", "wind rustling leaves", "footsteps on dirt", "bells", "wind", "distant music", "rustling grass", "insects buzzing", "crickets", "branch creak", "birds", "rooster crowing", "crow cawing"], "expressions": []} +{"timestamp_sec": 840.76, "raw_caption": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white kurta and has dark hair. He is smiling and looking at the woman with a slight smile on his face. The woman is wearing a red saree and has her hands clasped together in front of her. The background is blurred, but it appears to be a wooded area with trees and bushes. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a still from a Tamil movie", "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is smiling and looking at the woman with a slight smile on his face. The background is blurred, but it appears to be a wooded area with trees and bushes. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a still from a Tamil movie", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": ["smiling"]} +{"timestamp_sec": 846.8, "raw_caption": "The image is a still from a Bollywood movie. It shows a man and a woman in traditional Indian attire. The man is on the left side of the image, wearing a white saree and has a serious expression on his face. He is looking at the woman with a slight smile on his lips. The woman is wearing a red saree with a gold border and has her hair tied up in a bun. She is also wearing a gold necklace and earrings. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman standing next to each other in front of a backdrop of trees The man is wearing a white and red dress, while the woman is wearing an unknown color There is a watermark in the middle of the image, suggesting that it is a still from a Bollywood movie", "scene_text": "The image is a still from a Bollywood movie. The man is on the left side of the image, wearing a white saree and has a serious expression on his face. He is looking at the woman with a slight smile on his lips. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OFF FOR SLC\". The image shows a man and a woman standing next to each other in front of a backdrop of trees The man is wearing a white and red dress, while the woman is wearing an unknown color There is a watermark in the middle of the image, suggesting that it is a still from a Bollywood movie", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 852.84, "raw_caption": "The image is a still from a Bollywood movie. It shows a man and a woman sitting side by side, with the man on the left wearing a white saree and the woman on the right wearing a red saree. They are both looking at the camera with serious expressions on their faces. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a man and woman sitting next to each other in front of a tree, with a watermark in the background The man has a human face and is wearing a white and red dress", "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman sitting side by side, with the man on the left wearing a white saree and the woman on the right wearing a red saree. They are both looking at the camera with serious expressions on their faces. The background is blurred, but it appears to be an outdoor setting with trees and greenery. The text on the image reads \"WAVES OUT FOR SLC\". The image shows a man and woman sitting next to each other in front of a tree, with a watermark in the background The man has a human face and is wearing a white and red dress", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 858.88, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white saree and has dark hair. He is looking down at the woman with a slight smile on his face. The woman is wearing a red saree with a gold border and has her hair tied up in a bun. She is also wearing a gold necklace and earrings. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves off for SLC\". The image shows a man and a woman in a red sari embracing each other in the foreground, with trees in the background and a watermark on the image", "scene_text": "The image shows a man and a woman in a romantic embrace. He is looking down at the woman with a slight smile on his face. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves off for SLC\"", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 864.96, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white saree and has dark hair. He is looking down at the woman with a slight smile on his face. The woman is wearing a red saree with a gold border and has her hair tied up in a bun. She is also wearing a gold necklace and earrings. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves out for SLC\". The image shows a man and a woman in a red sari standing next to each other, with trees in the background and a watermark on the image", "scene_text": "The image shows a man and a woman in a romantic embrace. He is looking down at the woman with a slight smile on his face. The background is blurred, but it appears to be a wooded area with trees and bushes. The image is captioned \"Waves out for SLC\". The image shows a man and a woman in a red sari standing next to each other, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 871.0, "raw_caption": "The image shows a man and a woman in a romantic embrace. The man is on the left side of the image, wearing a white kurta and has long black hair. He is smiling and appears to be in a good mood. The woman on the right side is wearing a red saree and has her arms around the man's neck. They are standing in a wooded area with trees and bushes in the background. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a scene from a Tamil movie", "scene_text": "The image shows a man and a woman in a romantic embrace. He is smiling and appears to be in a good mood. They are standing in a wooded area with trees and bushes in the background. The image has a watermark that reads \"WAVES OFF FOR SLC\". The image shows a man and a woman embracing in the foreground, with trees and grass in the background There is a watermark on the image, suggesting that it is a scene from a Tamil movie", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": ["smiling"]} +{"timestamp_sec": 883.08, "raw_caption": "The image is a photograph of a sunset over a field of tall grass and palm trees. The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right corner. The palm trees are silhouetted against the sky, creating a contrast of light and shadow. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the photograph is peaceful and serene. The image shows a beautiful sunset with a few palm trees in the foreground and a watermark in the middle The sky is a mix of vibrant oranges, pinks, and purples, and the sun is setting in the background, casting a warm glow over the scene", "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right corner. The palm trees are silhouetted against the sky, creating a contrast of light and shadow. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the photograph is peaceful and serene. The image shows a beautiful sunset with a few palm trees in the foreground and a watermark in the middle The sky is a mix of vibrant oranges, pinks, and purples, and the sun is setting in the background, casting a warm glow over the scene", "scene_hints": ["wind rustling leaves", "crowd shouting", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "rain falling", "horses", "rustling grass", "insects buzzing", "running", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 895.2, "raw_caption": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is overcast and the overall mood of the image is somber. The people in the image appear to be walking away from the camera, with some of them carrying bags or backpacks. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_text": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is overcast and the overall mood of the image is somber. The people in the image appear to be walking away from the camera, with some of them carrying bags or backpacks. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 901.24, "raw_caption": "The image shows a group of people walking through a field of tall grass. The sky is overcast and there are trees in the background. The people appear to be walking in a line, with some of them carrying bags or backpacks. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the image is somber and desolate. The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and there are trees in the background. The people appear to be walking in a line, with some of them carrying bags or backpacks. The image has a text overlay that reads \"WAVES OTT FOR SLC\". The overall mood of the image is somber and desolate. The image shows a group of people walking through a field of plants and trees, with a watermark in the background and a clear blue sky above", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 973.84, "raw_caption": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman, standing in a field of tall grass and bushes. The man is holding a baby in his arms and the woman is standing next to him. They appear to be looking at the baby with a concerned expression on their faces. The background is blurred, but it appears to be a wooded area with trees and bushes in the distance. The title of the video is written in white text across the image. The image shows two people standing in a grassy area surrounded by plants and trees, with a watermark in the background The image is slightly blurred, giving it a dreamy, ethereal feel", "scene_text": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman, standing in a field of tall grass and bushes. The man is holding a baby in his arms and the woman is standing next to him. They appear to be looking at the baby with a concerned expression on their faces. The background is blurred, but it appears to be a wooded area with trees and bushes in the distance. The title of the video is written in white text across the image. The image shows two people standing in a grassy area surrounded by plants and trees, with a watermark in the background The image is slightly blurred, giving it a dreamy, ethereal feel", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": ["concerned"]} +{"timestamp_sec": 985.92, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is wearing a white robe and has a tattoo on his left arm. He is holding a white cloth in his right hand and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. He is holding a white cloth in his right hand and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 991.96, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a baby in his arms and appears to be kissing the other man's forehead. Both men are wearing traditional Indian clothing, with the man on on the right wearing a white saree and a gold necklace. The background shows a mountain range and a clear blue sky. The image is captioned \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a baby in his arms The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a baby in his arms and appears to be kissing the other man's forehead. The background shows a mountain range and a clear blue sky. The image is captioned \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a baby in his arms The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 998.0, "raw_caption": "The image shows two men standing in a field with a hill in the background. The man on the left is wearing a white saree and has a tattoo on his forehead. He is holding a white cloth in his hands and appears to be comforting the other man. Both men have serious expressions on their faces. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills and a clear blue sky There is also a watermark on the image, suggesting that it is a photo frame", "scene_text": "The image shows two men standing in a field with a hill in the background. Both men have serious expressions on their faces. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills and a clear blue sky There is also a watermark on the image, suggesting that it is a photo frame", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1004.08, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has a white face paint on his forehead. He is looking at the other man with a serious expression. On the right side of the image, there is a young man with dark hair and a white tank top, who is holding a large white object in his hands. He appears to be looking at him with a concerned expression. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two people standing in a grassy field with plants and trees in the background and a hill in the distance The sky is visible at the top of the image and there is a watermark with the words \"waves ott for slc\" written on it", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has a white face paint on his forehead. He is looking at the other man with a serious expression. He appears to be looking at him with a concerned expression. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two people standing in a grassy field with plants and trees in the background and a hill in the distance The sky is visible at the top of the image and there is a watermark with the words \"waves ott for slc\" written on it", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": ["concerned"]} +{"timestamp_sec": 1010.12, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The image appears to be a still from a movie or TV show. The image shows two people standing in a grassy field with trees and hills in the background and a clear blue sky above One of the people is holding a piece of paper with the words \"Waves Ott for SLC\" written on it", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The image appears to be a still from a movie or TV show. The image shows two people standing in a grassy field with trees and hills in the background and a clear blue sky above One of the people is holding a piece of paper with the words \"Waves Ott for SLC\" written on it", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1016.16, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1022.2, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a large piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a large piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1028.28, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and has long braided hair, while the man in the middle is holding a piece of paper with the words \"WAVES OTT FOR SLC\" written on it. Both men appear to be looking at each other with serious expressions on their faces. The sky is blue and the overall mood of the image is somber. The image shows two men standing next to each other in a field, with one of them holding an object in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1034.32, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and appears to be looking at the other man with a serious expression on his face. He is holding a large piece of paper in his hands and is looking at it intently. On the right side of the image, there is another man with curly hair and a white shirt, who is also holding the paper. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is shirtless and appears to be looking at the other man with a serious expression on his face. He is holding a large piece of paper in his hands and is looking at it intently. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing next to each other in a field, with one of them holding a bag In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1040.36, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is wearing a white tank top and has a tribal headdress on his head. He is holding a large white bag in his hands and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. He is holding a large white bag in his hands and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, and a hill, and the sky is visible at the top of the image There is also some edited text in the middle of the picture", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1046.4, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a small white object in his hand and appears to be looking at the other man with a serious expression on his face. Both men are wearing traditional Indian clothing, with the man on on the right wearing a white saree and the man in the middle wearing a black turban. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a small white object in his hand and appears to be looking at the other man with a serious expression on his face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows two men standing in a field, one of them holding a bag in his hand In the background, there are plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1052.44, "raw_caption": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a large white bag with the words \"WAVES OFF FOR SLC\" written on it. He is wearing a white tank top and has a tattoo on his left arm. The other man is standing next to him and appears to be looking at him with a serious expression on his face. Both men are wearing traditional Indian clothing and jewelry. The sky is blue and the overall mood of the image is somber. The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on the left is holding a large white bag with the words \"WAVES OFF FOR SLC\" written on it. The other man is standing next to him and appears to be looking at him with a serious expression on his face. The sky is blue and the overall mood of the image is somber. The image shows two men standing in a field, one of them holding a bag in his hand The background of the image is filled with plants, trees, hills, and a clear blue sky There is also a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1094.8, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. There are six people in the image, all wearing orange robes, and they appear to be engaged in a conversation. In the center of the group, there is a man wearing a white robe and a hat, who is sitting on a rock. He is holding a white cloth in his hands. To his left, there are two cows, one brown and one white, grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people and the animals. The image shows a group of people sitting around each other in the woods, surrounded by trees and animals In the center of the image there is some text", "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the group, there is a man wearing a white robe and a hat, who is sitting on a rock. To his left, there are two cows, one brown and one white, grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people and the animals. The image shows a group of people sitting around each other in the woods, surrounded by trees and animals In the center of the image there is some text", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1100.84, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. There are six people in the image, all wearing white robes and orange robes. They are sitting in a circle, facing each other and appear to be engaged in a conversation. In the center of the circle, there is a person wearing a white robe and holding a book or a pen. To the right of the person in the orange robe, there are two cows grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people. The image shows a group of people sitting around a table in the woods, surrounded by trees and an animal in the background There is a watermark on the image, giving it a unique look", "scene_text": "The image shows a group of people sitting on the ground in a forested area. They are sitting in a circle, facing each other and appear to be engaged in a conversation. To the right of the person in the orange robe, there are two cows grazing in the background. The ground is covered in dirt and there are trees and bushes surrounding the group. The image appears to be taken from a low angle, looking up at the people. The image shows a group of people sitting around a table in the woods, surrounded by trees and an animal in the background There is a watermark on the image, giving it a unique look", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1106.88, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. There are nine people in the image, all wearing white robes and sitting in a circle around a small table. The table appears to be made of wood and is covered with a white cloth. The people are engaged in a conversation, with some sitting and others standing. The background is filled with trees and bushes, and the ground is covered in dirt. The image is taken from a low angle, looking up at the people and the table. There is a watermark in the center of the image that reads \"WAVES OF FOR SIC\". The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_text": "The image shows a group of people sitting on the ground in a forested area. There are nine people in the image, all wearing white robes and sitting in a circle around a small table. The people are engaged in a conversation, with some sitting and others standing. The background is filled with trees and bushes, and the ground is covered in dirt. The image is taken from a low angle, looking up at the people and the table. There is a watermark in the center of the image that reads \"WAVES OF FOR SIC\". The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1112.96, "raw_caption": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. There are six people in the image, all wearing orange robes, and they appear to be engaged in a conversation. The structure appears to be made of wood and is supported by two wooden poles. In the background, there are trees and bushes, and a person can be seen walking on the left side of the image. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy quality. The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_text": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. The structure appears to be made of wood and is supported by two wooden poles. In the background, there are trees and bushes, and a person can be seen walking on the left side of the image. The image is slightly blurred, but it seems to be taken from a low angle, giving it a dreamy quality. The image shows a group of people sitting around a table in the woods, surrounded by trees and plants In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1119.0, "raw_caption": "The image shows a group of people sitting on the ground in a forested area. They are all wearing traditional Indian clothing, with some wearing orange robes and others wearing white robes. In the center of the image, there is a man wearing a white robe and a headscarf, who appears to be a religious figure. He is sitting on a rock and is holding a book in his hands. Around him, there are several other people, some of whom are sitting and some are standing. There are trees and bushes in the background, and a cow can be seen in the distance. The image appears to have been taken from a low angle, looking up at the group. The image shows a group of people sitting on the ground in front of a tree, surrounded by other trees and plants In the center of the image, there is some text visible", "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock and is holding a book in his hands. Around him, there are several other people, some of whom are sitting and some are standing. There are trees and bushes in the background, and a cow can be seen in the distance. The image appears to have been taken from a low angle, looking up at the group. The image shows a group of people sitting on the ground in front of a tree, surrounded by other trees and plants In the center of the image, there is some text visible", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "rustling grass", "insects buzzing", "crickets", "branch creak", "crow cawing"], "expressions": []} +{"timestamp_sec": 1125.04, "raw_caption": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. There are nine people in the image, all wearing orange robes, and they appear to be engaged in a conversation. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The people are sitting in a circle, with some standing and others sitting. They are all facing the same direction, and some are holding hands. The image appears to be taken from a low angle, and the overall mood of the image is peaceful and contemplative. The image shows a group of people sitting around a table in the woods, surrounded by trees and poles In the center of the image, there is a watermark", "scene_text": "The image shows a group of people sitting on the ground under a wooden structure in a forested area. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The people are sitting in a circle, with some standing and others sitting. They are all facing the same direction, and some are holding hands. The image appears to be taken from a low angle, and the overall mood of the image is peaceful and contemplative. The image shows a group of people sitting around a table in the woods, surrounded by trees and poles In the center of the image, there is a watermark", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "fan humming", "water flowing", "rain falling", "footsteps on floor", "door creak", "rustling grass", "clock ticking", "insects buzzing", "crickets", "branch creak", "distant voices", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1131.08, "raw_caption": "The image shows a group of people sitting under a wooden structure in a forested area. There are six people in the image, all wearing white robes and sitting on the ground. They appear to be engaged in a conversation, with some of them sitting on a bench and others standing. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The image appears to be taken from a low angle, looking up at the people and the structure. There is a watermark on the image that reads \"WAVES OF FOR SLC\". The image shows a group of people sitting on the ground in front of a hut, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of people sitting under a wooden structure in a forested area. There are six people in the image, all wearing white robes and sitting on the ground. They appear to be engaged in a conversation, with some of them sitting on a bench and others standing. The structure is made of wood and has a sloping roof, and there are trees and bushes in the background. The image appears to be taken from a low angle, looking up at the people and the structure. There is a watermark on the image that reads \"WAVES OF FOR SLC\". The image shows a group of people sitting on the ground in front of a hut, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1143.2, "raw_caption": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing in front of a tree. The woman in the saree is holding her hands together in a prayer-like gesture, while the other woman is looking at her with a concerned expression. The background is blurred, but it appears to be an outdoor setting with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women, one wearing a red dress and the other wearing a white dress, standing in front of a backdrop of trees with a watermark in the middle", "scene_text": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing in front of a tree. The woman in the saree is holding her hands together in a prayer-like gesture, while the other woman is looking at her with a concerned expression. The background is blurred, but it appears to be an outdoor setting with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women, one wearing a red dress and the other wearing a white dress, standing in front of a backdrop of trees with a watermark in the middle", "scene_hints": ["wind rustling leaves", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crowd murmur", "crickets", "bells ringing", "rain falling", "rustling grass", "insects buzzing", "chanting", "birds", "music", "birds chirping", "crow cawing"], "expressions": ["concerned"]} +{"timestamp_sec": 1167.4, "raw_caption": "The image is a still from a movie or TV show. It shows two women, one wearing a white headscarf and the other wearing a red saree, sitting in front of a brown cow. The woman in the saree appears to be upset or upset, with her eyes wide open and her mouth slightly open. The cow is standing behind them, with its head turned to the side. The background is blurred, but it seems to be a wooded area with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women sitting next to each other in front of a cow, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows two women, one wearing a white headscarf and the other wearing a red saree, sitting in front of a brown cow. The woman in the saree appears to be upset or upset, with her eyes wide open and her mouth slightly open. The cow is standing behind them, with its head turned to the side. The background is blurred, but it seems to be a wooded area with trees and bushes. There is a watermark on the image that reads \"WAVES OTT FOR SLC\". The image shows two women sitting next to each other in front of a cow, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1179.48, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1185.52, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is covering her head and shoulders. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1191.56, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is covering her head and shoulders. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1203.68, "raw_caption": "The image is a still from a movie or TV show. It shows a young man with dark hair, wearing a white tank top and a gold chain necklace. He has a tattoo on his chest that reads \"WAVES OTT FOR SLC\". He is standing in front of a tree trunk and there is a large clay pot in the background. The man appears to be looking off to the side with a serious expression on his face. The image shows a man with a tattoo on his chest standing in front of a tree trunk with a pot beside him and trees in the background The text on the image reads \"Waves Ott for SLC\"", "scene_text": "The image is a still from a movie or TV show. He has a tattoo on his chest that reads \"WAVES OTT FOR SLC\". He is standing in front of a tree trunk and there is a large clay pot in the background. The man appears to be looking off to the side with a serious expression on his face. The image shows a man with a tattoo on his chest standing in front of a tree trunk with a pot beside him and trees in the background The text on the image reads \"Waves Ott for SLC\"", "scene_hints": ["birds chirping", "wind rustling leaves", "footsteps on dirt", "crickets chirping", "distant music", "wind", "rustling grass", "crackling fire", "night insects", "insects buzzing", "crickets", "branch creak", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1215.76, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf and a white shawl. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in her late 40s or early 50s, with short dark hair and a serious expression on her face. The background is blurred, but it seems to be an outdoor setting with trees and bushes. In the center of the image, there is a text overlay that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1221.8, "raw_caption": "The image is a still from a movie or TV show. It shows a young woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late twenties or early thirties, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white headscarf standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. It shows a young woman wearing a white headscarf, standing in front of a brown horse. The woman appears to be in her late twenties or early thirties, with short dark hair and a serious expression on her face. She is looking directly at the camera with a slight smile on her lips. The background is blurred, but it seems to be an outdoor setting with trees and bushes. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white headscarf standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["wind rustling leaves", "crickets chirping", "branch creak", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "distant music", "rain falling", "rustling grass", "crackling fire", "night insects", "insects buzzing", "birds chirping", "owl hooting", "crow cawing"], "expressions": []} +{"timestamp_sec": 1227.88, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is covering her head and shoulders. She appears to be in a rural area, with trees and bushes in the background. The woman is looking directly at the camera with a serious expression on her face. In the center of the image, there is text that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She appears to be in a rural area, with trees and bushes in the background. The woman is looking directly at the camera with a serious expression on her face. In the center of the image, there is text that reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1233.92, "raw_caption": "The image is a still from a movie or TV show. It shows a woman wearing a white headscarf, which is a traditional Indian garment. She is standing in front of a brown cow, and there are trees and bushes in the background. The woman appears to be looking off to the side with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_text": "The image is a still from a movie or TV show. She is standing in front of a brown cow, and there are trees and bushes in the background. The woman appears to be looking off to the side with a serious expression on her face. The text on the image reads \"WAVES OTT FOR SLC\". The image shows a woman in a white shawl standing next to a brown horse, with trees in the background and a watermark on the image", "scene_hints": ["water splashing", "wind over water", "birds chirping", "wind rustling leaves", "footsteps on dirt", "water flowing", "rain falling", "rustling grass", "insects buzzing", "crickets", "branch creak", "frogs croaking", "crow cawing"], "expressions": []} +{"timestamp_sec": 1246.0, "raw_caption": "The image shows a group of four people sitting on the ground in a rural area. They are dressed in traditional Indian clothing, with the woman in the center wearing a white saree and the two women on either side wearing white sarees. The woman on the left is holding a bowl of food, while the woman next to her is wearing a red saree. In the background, there is a cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken from a low angle, looking up at the cow. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four people sitting on the ground in a rural area. In the background, there is a cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken from a low angle, looking up at the cow. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1252.08, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are dressed in traditional Indian clothing, with white sarees and red blouses. The woman in the center is wearing a white headscarf and is holding a small bowl in her hand. To her left, there is a woman wearing a blue saree and a white blouse, and to her right, there are two women wearing red sarees. In the background, a brown cow can be seen grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, a brown cow can be seen grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1258.12, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are all wearing traditional Indian clothing, with the woman in the center wearing a white saree and a white headscarf. The woman on the left is holding a small bowl in her hand, while the woman next to her is wearing a red saree. In the background, there is a brown cow grazing on the grass. The women appear to be engaged in a conversation, with one of them gesturing with her hands as if she is explaining something to the other two. The ground is covered in dirt and there are trees and bushes in the background. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, there is a brown cow grazing on the grass. The women appear to be engaged in a conversation, with one of them gesturing with her hands as if she is explaining something to the other two. The ground is covered in dirt and there are trees and bushes in the background. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1264.16, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are dressed in traditional Indian clothing, with white sarees and red blouses. The woman in the center is wearing a white headscarf and is holding a small bowl in her hand. To her left, there is a woman wearing a blue saree and holding a red bowl. Next to her, there are two other women, one wearing a red saree, and the other wearing a black saree. In the background, a brown cow can be seen grazing on the grass. The scene appears to be peaceful and serene. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, a brown cow can be seen grazing on the grass. The scene appears to be peaceful and serene. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1270.2, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are all wearing traditional Indian clothing, with the woman in the center wearing a white saree and a white headscarf. The woman on the left is holding a bowl of food, while the woman next to her is wearing a red saree. In the background, there is a brown cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. In the background, there is a brown cow grazing on the grass. The ground is covered in dirt and there are trees and bushes surrounding the area. The image appears to be taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1276.24, "raw_caption": "The image shows a group of four women sitting on the ground in a rural area. They are all wearing traditional Indian clothing, with the woman on the left wearing a white saree and the woman in the middle wearing a red saree. The cow in the background is brown and appears to be grazing on the grass. The women are engaged in a conversation, with one woman holding a book and the other two looking at the cow. The ground is covered in dirt and there are trees and bushes surrounding them. The image appears to have been taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_text": "The image shows a group of four women sitting on the ground in a rural area. The cow in the background is brown and appears to be grazing on the grass. The women are engaged in a conversation, with one woman holding a book and the other two looking at the cow. The ground is covered in dirt and there are trees and bushes surrounding them. The image appears to have been taken during the day. The image shows a group of four women sitting on the ground in front of a cow, surrounded by trees and a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "crickets", "bells", "distant music", "rain falling", "rustling grass", "insects buzzing", "birds", "birds chirping", "crow cawing"], "expressions": []} +{"timestamp_sec": 1324.64, "raw_caption": "The image is a still from a video. It shows a dirt path winding through a tropical garden with tall palm trees and other plants. On the left side of the path, there is a small hut with a thatched roof. In the center of the image, there are two people, one wearing a white dress and the other wearing a red dress. They appear to be walking towards the hut. The text \"WAVES OTT FOR SLC\" is overlaid on the image. The image shows a group of people standing in the middle of a dirt road surrounded by trees and plants, with a watermark in the background", "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatched roof. They appear to be walking towards the hut. The text \"WAVES OTT FOR SLC\" is overlaid on the image. The image shows a group of people standing in the middle of a dirt road surrounded by trees and plants, with a watermark in the background", "scene_hints": ["cattle lowing", "wind rustling leaves", "crowd shouting", "branch creak", "rooster crowing", "frogs croaking", "water splashing", "wind over water", "footsteps on dirt", "water flowing", "wind", "drums", "crickets", "metal clashing", "bells", "distant music", "rain falling", "horses", "rustling grass", "insects buzzing", "birds", "running", "birds chirping", "crow cawing"], "expressions": []} diff --git a/results_v3/Bharat_Ek_Khoj_Ep_016_full/results.json b/results_v3/Bharat_Ek_Khoj_Ep_016_full/results.json new file mode 100644 index 0000000..f7c5d5f --- /dev/null +++ b/results_v3/Bharat_Ek_Khoj_Ep_016_full/results.json @@ -0,0 +1,1209 @@ +{ + "caption_segments": 111, + "timeline": [ + { + "start_sec": 0.0, + "end_sec": 1.8, + "caption": "Ambient noise fills the background during Episode 16.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "environmental noise" + ], + "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Per" + }, + { + "start_sec": 2.6, + "end_sec": 9.0, + "caption": "Birds chirp softly in the background.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "environmental noise", + "animal" + ], + "scene_text": "The image is a black background with white text in Hindi. The text reads \"Episode 16: The Sangam Per" + }, + { + "start_sec": 31.4, + "end_sec": 40.4, + "caption": "Ambient animal and bird sounds fill the environment.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "bird", + "environmental noise" + ], + "scene_text": "" + }, + { + "start_sec": 41.2, + "end_sec": 44.8, + "caption": "Birds chirp softly in the background of the forest scene.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 45.2, + "end_sec": 52.8, + "caption": "Sounds of birds and animals fill the forest.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "environmental noise", + "animal", + "bird" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 53.4, + "end_sec": 56.2, + "caption": "Sounds of birds and animals fill the forest.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "environmental noise", + "animal", + "bird" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a person walking through a forest with trees " + }, + { + "start_sec": 67.0, + "end_sec": 69.4, + "caption": "Birds sing while two women stand in a grassy field.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "bird" + ], + "scene_text": "The image shows two women standing in a field of tall grass and bushes. They are both looking at eac" + }, + { + "start_sec": 76.8, + "end_sec": 84.4, + "caption": "Birds chirp softly in the background as they hold hands.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "environmental noise", + "goose" + ], + "scene_text": "The image shows two people, a man and a woman, standing in a field of tall grass and bushes. They ar" + }, + { + "start_sec": 93.8, + "end_sec": 103.4, + "caption": "A crow caws in the distance.", + "raw_caption": "A crow can be heard cawing in the distance.", + "families": [ + "crow", + "animal", + "ratchet, pawl" + ], + "scene_text": "" + }, + { + "start_sec": 148.0, + "end_sec": 149.8, + "caption": "Ambient animal sounds fill the scene.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a close-up of a man's face and upper body. Hi" + }, + { + "start_sec": 190.0, + "end_sec": 191.8, + "caption": "Animal sounds are heard in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 199.2, + "end_sec": 202.2, + "caption": "Tabla music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 203.4, + "end_sec": 205.2, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 206.2, + "end_sec": 211.8, + "caption": "Tabla music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 213.2, + "end_sec": 215.0, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 224.0, + "end_sec": 225.8, + "caption": "The tabla plays softly in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 226.2, + "end_sec": 228.0, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 229.6, + "end_sec": 231.4, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 232.0, + "end_sec": 237.0, + "caption": "Music and tabla play softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 237.8, + "end_sec": 246.8, + "caption": "Music and tabla play softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "tabla" + ], + "scene_text": "" + }, + { + "start_sec": 249.6, + "end_sec": 252.4, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "goose", + "bird", + "music" + ], + "scene_text": "" + }, + { + "start_sec": 252.8, + "end_sec": 273.2, + "caption": "Sounds of a crow and a goose are heard.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "crow", + "goose" + ], + "scene_text": "" + }, + { + "start_sec": 273.8, + "end_sec": 278.0, + "caption": "Laughter fills the air.", + "raw_caption": "Laughter can be heard.", + "families": [ + "animal", + "bird", + "laugh_full" + ], + "scene_text": "" + }, + { + "start_sec": 278.8, + "end_sec": 280.6, + "caption": "Sounds of animals are present in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 281.0, + "end_sec": 283.4, + "caption": "Wild animals and birds create ambient sounds in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 287.2, + "end_sec": 289.2, + "caption": "Owl and animal sounds are heard in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "owl", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 293.2, + "end_sec": 295.8, + "caption": "Crows caw and birds chirp in the background.", + "raw_caption": "Crows cawing and birds chirping can be heard.", + "families": [ + "crow", + "animal", + "bird" + ], + "scene_text": "" + }, + { + "start_sec": 353.8, + "end_sec": 360.4, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "howl", + "music", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 379.4, + "end_sec": 382.0, + "caption": "Music plays softly in the background as three people sit together.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "humming", + "animal", + "music" + ], + "scene_text": "The image shows three people sitting on a woven mat under a tree. The man in the middle is sitting o" + }, + { + "start_sec": 385.8, + "end_sec": 389.6, + "caption": "Music plays softly in the background as they sit together.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "wind", + "music", + "whale vocalization" + ], + "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with hi" + }, + { + "start_sec": 391.0, + "end_sec": 393.4, + "caption": "Sounds of animals and birds fill the forest atmosphere.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "bird" + ], + "scene_text": "The image shows three people sitting on a woven mat in a forest. He is sitting on the ground with hi" + }, + { + "start_sec": 394.4, + "end_sec": 396.2, + "caption": "Music plays softly as two people walk on a forest path.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 399.8, + "end_sec": 401.6, + "caption": "Music plays softly as two people walk on a forest path.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 403.8, + "end_sec": 405.6, + "caption": "Music plays softly as two people walk on a forest path.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 406.2, + "end_sec": 408.0, + "caption": "Music plays softly as two people walk through the forest.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows two people walking on a dirt path in a forested area. They appear to be walking towa" + }, + { + "start_sec": 420.4, + "end_sec": 422.2, + "caption": "Music plays softly in the background as he speaks.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows three people standing in a field with tall grass and trees in the background. He app" + }, + { + "start_sec": 458.2, + "end_sec": 460.0, + "caption": "Music plays softly in the background as four people stand in a field.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a group of four people standing in a field with tall grass and trees in the backgrou" + }, + { + "start_sec": 589.6, + "end_sec": 591.4, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 595.0, + "end_sec": 596.8, + "caption": "Soft music plays as a person walks through tall grass.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 597.2, + "end_sec": 599.0, + "caption": "Soft music plays as a person walks through tall grass.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 600.4, + "end_sec": 606.0, + "caption": "Soft music plays as a person walks through tall grass.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a person walking through a field of tall grass. The person is wearing a white dress " + }, + { + "start_sec": 608.6, + "end_sec": 612.0, + "caption": "Music plays softly in the background as they converse in the field.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a group of three people standing in a field of tall grass. They appear to be engaged" + }, + { + "start_sec": 619.4, + "end_sec": 621.2, + "caption": "Soft music plays as three women stand in a serene field.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows three women standing in a field of tall grass. They appear to be in a peaceful and s" + }, + { + "start_sec": 621.6, + "end_sec": 625.6, + "caption": "Soft music plays in the background as three women stand in a field.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "mechanisms", + "animal" + ], + "scene_text": "The image shows three women standing in a field of tall grass. They appear to be in a peaceful and s" + }, + { + "start_sec": 627.0, + "end_sec": 629.8, + "caption": "Birds chirp in the background as two men stand on the shore.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "animal" + ], + "scene_text": "The image shows two men standing on a rocky shore near a body of water. The man in the saree is hold" + }, + { + "start_sec": 650.8, + "end_sec": 652.8, + "caption": "Birds chirp in the background as two women stand by water.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "animal" + ], + "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the " + }, + { + "start_sec": 653.6, + "end_sec": 655.4, + "caption": "Birds chirp in the background as two women stand by water.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird" + ], + "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the " + }, + { + "start_sec": 656.0, + "end_sec": 658.4, + "caption": "Wild animals and birds are heard near the water.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "bird" + ], + "scene_text": "The image shows two Indian women standing next to each other near a body of water. The woman on the " + }, + { + "start_sec": 660.8, + "end_sec": 662.6, + "caption": "A woman in a white saree stands distressed by the water.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress," + }, + { + "start_sec": 664.2, + "end_sec": 675.6, + "caption": "Birds and a duck squawk near the distressed woman by water.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "duck", + "squawk" + ], + "scene_text": "The image shows a woman in a white saree standing by a body of water. She appears to be in distress," + }, + { + "start_sec": 678.8, + "end_sec": 680.6, + "caption": "A frog croaks in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 691.0, + "end_sec": 693.4, + "caption": "Birds chirp in the background as three people sit on the ground.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "environmental noise" + ], + "scene_text": "The image shows three people sitting on the ground in a wooded area. He is sitting with his legs cro" + }, + { + "start_sec": 698.0, + "end_sec": 699.8, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 713.4, + "end_sec": 715.2, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 748.8, + "end_sec": 750.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 751.0, + "end_sec": 752.8, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 755.4, + "end_sec": 762.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 764.0, + "end_sec": 768.2, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 768.8, + "end_sec": 770.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 771.0, + "end_sec": 777.2, + "caption": "Music plays softly in the background as four people sit together.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "animal" + ], + "scene_text": "The image shows a group of four people sitting on the ground in a forested area. The man on the left" + }, + { + "start_sec": 795.4, + "end_sec": 804.4, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 805.8, + "end_sec": 807.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 809.2, + "end_sec": 812.8, + "caption": "Music plays softly in the background as people gather in the woods.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 813.4, + "end_sec": 817.0, + "caption": "Music plays softly in the background as people gather in the woods.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 817.6, + "end_sec": 819.4, + "caption": "Music plays softly in the background as people gather in the woods.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. It shows a group of people gathered in a wooded area, " + }, + { + "start_sec": 820.4, + "end_sec": 822.2, + "caption": "Music plays softly in the background of the rural scene.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the c" + }, + { + "start_sec": 823.8, + "end_sec": 827.4, + "caption": "Music plays softly in the background of the rural scene.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the c" + }, + { + "start_sec": 828.0, + "end_sec": 829.8, + "caption": "Music plays softly in the background of the rural scene.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image shows a group of people in a rural area, with trees and bushes in the background. In the c" + }, + { + "start_sec": 831.0, + "end_sec": 834.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 835.0, + "end_sec": 836.8, + "caption": "Romantic music plays as the couple smiles in their embrace.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is" + }, + { + "start_sec": 839.8, + "end_sec": 845.4, + "caption": "Soft music plays in the background as they embrace and smile.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "bird", + "insect" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman in a romantic embrace. He is" + }, + { + "start_sec": 855.2, + "end_sec": 857.0, + "caption": "Birds chirp softly in the background.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird" + ], + "scene_text": "The image is a still from a Bollywood movie. It shows a man and a woman sitting side by side, with t" + }, + { + "start_sec": 872.8, + "end_sec": 876.4, + "caption": "Birds sing and insects buzz as the couple embraces.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "rodents, rats, mice", + "bird", + "insect" + ], + "scene_text": "The image shows a man and a woman in a romantic embrace. He is smiling and appears to be in a good m" + }, + { + "start_sec": 876.8, + "end_sec": 886.2, + "caption": "Soft music plays as the sun sets over palm trees.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "bird", + "environmental noise" + ], + "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right cor" + }, + { + "start_sec": 886.6, + "end_sec": 888.4, + "caption": "Soft music plays as the sunset paints the sky pink and orange.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The sky is a beautiful shade of pink and orange, with the sun partially visible in the top right cor" + }, + { + "start_sec": 890.8, + "end_sec": 896.2, + "caption": "Music plays softly as people walk through the field.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "mantra", + "chant" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass and palm trees. The sky is o" + }, + { + "start_sec": 896.8, + "end_sec": 903.6, + "caption": "Music plays softly as people walk through tall grass.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "mantra" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and the" + }, + { + "start_sec": 904.4, + "end_sec": 909.4, + "caption": "Music plays softly as people walk through the tall grass.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "mantra", + "chant" + ], + "scene_text": "The image shows a group of people walking through a field of tall grass. The sky is overcast and the" + }, + { + "start_sec": 910.8, + "end_sec": 914.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 916.8, + "end_sec": 922.2, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 923.6, + "end_sec": 929.0, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "gargling" + ], + "scene_text": "" + }, + { + "start_sec": 930.0, + "end_sec": 934.8, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "chant", + "choir" + ], + "scene_text": "" + }, + { + "start_sec": 936.8, + "end_sec": 938.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 939.8, + "end_sec": 946.8, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 948.8, + "end_sec": 952.6, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "chant" + ], + "scene_text": "" + }, + { + "start_sec": 953.0, + "end_sec": 956.8, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 959.2, + "end_sec": 967.2, + "caption": "Background music plays softly.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "mantra", + "vehicle" + ], + "scene_text": "" + }, + { + "start_sec": 969.6, + "end_sec": 976.6, + "caption": "Insects buzz nearby as the man and woman look concerned.", + "raw_caption": "Insects can be heard buzzing nearby.", + "families": [ + "insect", + "bird", + "animal" + ], + "scene_text": "The image is a still from a video titled \"WAVES OTT FOR SLC\". It shows two people, a man and a woman" + }, + { + "start_sec": 999.8, + "end_sec": 1003.8, + "caption": "Men stand in a field, chopping wood while wild animals sound nearby.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "chop", + "creak", + "animal" + ], + "scene_text": "The image shows two men standing in a field with a hill in the background. Both men have serious exp" + }, + { + "start_sec": 1059.0, + "end_sec": 1061.6, + "caption": "Sounds of animals and water fill the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "water" + ], + "scene_text": "The image shows two men standing in a field with tall grass and bushes in the background. The man on" + }, + { + "start_sec": 1062.0, + "end_sec": 1084.4, + "caption": "Farm animals and livestock make ambient sounds in the background.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "moo", + "animal", + "squish" + ], + "scene_text": "" + }, + { + "start_sec": 1087.6, + "end_sec": 1090.4, + "caption": "Animals scratch in the forest as people sit nearby.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "scratch" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the gro" + }, + { + "start_sec": 1091.8, + "end_sec": 1093.6, + "caption": "Animal sounds echo in the forest where people sit together.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the gro" + }, + { + "start_sec": 1095.4, + "end_sec": 1098.8, + "caption": "Animals are heard in the forest where people sit together.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. In the center of the gro" + }, + { + "start_sec": 1101.0, + "end_sec": 1107.8, + "caption": "Sounds of animals and insects fill the forested area.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "rodents, rats, mice", + "insect" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. They are sitting in a ci" + }, + { + "start_sec": 1108.8, + "end_sec": 1113.8, + "caption": "Birds sing and environmental sounds fill the forested area.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "environmental noise", + "bird" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. There are nine people in" + }, + { + "start_sec": 1114.4, + "end_sec": 1120.2, + "caption": "Sounds of animals and birds fill the forested area.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "bird", + "insect" + ], + "scene_text": "The image shows a group of people sitting on the ground in a forested area. He is sitting on a rock " + }, + { + "start_sec": 1123.6, + "end_sec": 1125.6, + "caption": "Insects buzz softly as people sit under the wooden structure.", + "raw_caption": "Insects can be heard buzzing nearby.", + "families": [ + "insect", + "patter" + ], + "scene_text": "The image shows a group of people sitting on the ground under a wooden structure in a forested area." + }, + { + "start_sec": 1133.8, + "end_sec": 1135.6, + "caption": "Birds are chirping in the background as people sit nearby.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird" + ], + "scene_text": "The image shows a group of people sitting under a wooden structure in a forested area. There are six" + }, + { + "start_sec": 1143.0, + "end_sec": 1150.0, + "caption": "Birds chirp softly as two concerned women stand by a tree.", + "raw_caption": "Birds can be heard chirping in the background.", + "families": [ + "bird", + "animal" + ], + "scene_text": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing" + }, + { + "start_sec": 1150.8, + "end_sec": 1152.6, + "caption": "Two concerned women stand by a tree, one in a white headscarf.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal" + ], + "scene_text": "The image shows two women, one wearing a white headscarf and the other wearing a red saree, standing" + }, + { + "start_sec": 1200.6, + "end_sec": 1202.4, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. He has a tattoo on his chest that reads \"WAVES OTT FOR" + }, + { + "start_sec": 1233.4, + "end_sec": 1235.6, + "caption": "Music plays softly in the background as she stands by a cow.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "The image is a still from a movie or TV show. She is standing in front of a brown cow, and there are" + }, + { + "start_sec": 1277.6, + "end_sec": 1286.6, + "caption": "Music plays softly as four women sit on the ground.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "whale vocalization", + "animal" + ], + "scene_text": "The image shows a group of four women sitting on the ground in a rural area. The cow in the backgrou" + }, + { + "start_sec": 1287.4, + "end_sec": 1292.6, + "caption": "Soft music plays in the background with wind instruments.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "wind" + ], + "scene_text": "" + }, + { + "start_sec": 1293.0, + "end_sec": 1294.8, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music" + ], + "scene_text": "" + }, + { + "start_sec": 1301.8, + "end_sec": 1304.2, + "caption": "Music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1305.0, + "end_sec": 1320.8, + "caption": "Theremin music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "theremin", + "music", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1321.6, + "end_sec": 1330.6, + "caption": "Cattle moo nearby as a small hut stands by the path.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "animal", + "moo", + "roar" + ], + "scene_text": "The image is a still from a video. On the left side of the path, there is a small hut with a thatche" + }, + { + "start_sec": 1331.6, + "end_sec": 1334.8, + "caption": "Pattering sounds of rodents, including rats and mice, are heard.", + "raw_caption": "Ambient sounds can be heard.", + "families": [ + "rodents, rats, mice", + "patter", + "animal" + ], + "scene_text": "" + }, + { + "start_sec": 1345.2, + "end_sec": 1358.6, + "caption": "Sitar music plays softly in the background.", + "raw_caption": "Music can be heard playing in the background.", + "families": [ + "music", + "sitar", + "rodents, rats, mice" + ], + "scene_text": "" + } + ], + "raw_events": 2453, + "deduped_events": 508, + "speech_segments": 156 +} \ No newline at end of file