Spaces:
Running on Zero
Running on Zero
File size: 12,479 Bytes
1e2c036 0cadcec 1e2c036 d30bd8e 1e2c036 d30bd8e 1e2c036 0cadcec 1e2c036 d30bd8e 0cadcec 1e2c036 d30bd8e 1e2c036 0cadcec 1e2c036 d30bd8e 1e2c036 d30bd8e 1e2c036 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | """Tests for hosted Space VLM validation tooling."""
from __future__ import annotations
import tempfile
import unittest
from datetime import datetime, timezone
from pathlib import Path
from scripts.check_space_vlm import (
DEFAULT_HARDWARE,
TEST_ASSETS,
ValidationResult,
extract_trace_record,
parse_space_repo_id,
render_report,
space_client_url,
update_failure_notes,
validate_prediction,
write_json_results,
write_trace_record,
)
from src.models.schema import DiaryEntry, ObjectInfo, ObjectUnderstanding, Persona, PersonaEnvelope, TraceRecord
from src.utils.zero_gpu import zero_gpu
class SpaceVlmToolingTest(unittest.TestCase):
def test_asset_manifest_covers_three_validation_objects(self) -> None:
keys = {asset.key for asset in TEST_ASSETS}
self.assertEqual(keys, {"mug", "keyboard", "shoe"})
self.assertTrue(all(asset.source_page.startswith("https://commons.wikimedia.org/") for asset in TEST_ASSETS))
self.assertTrue(all(asset.download_url.startswith("https://commons.wikimedia.org/") for asset in TEST_ASSETS))
def test_parse_space_repo_id_from_space_url(self) -> None:
repo_id = parse_space_repo_id("https://huggingface.co/spaces/build-small-hackathon/ObjectverseDiary")
self.assertEqual(repo_id, "build-small-hackathon/ObjectverseDiary")
def test_space_client_url_uses_direct_hf_space_host(self) -> None:
client_url = space_client_url("https://huggingface.co/spaces/build-small-hackathon/ObjectverseDiary")
self.assertEqual(client_url, "https://build-small-hackathon-objectversediary.hf.space")
def test_default_hardware_targets_zero_gpu_live_space(self) -> None:
self.assertEqual(DEFAULT_HARDWARE, "zero-a10g")
def test_zero_gpu_decorator_is_noop_without_spaces_package(self) -> None:
def sample(value: int) -> int:
return value + 1
decorated = zero_gpu(duration=10)(sample)
self.assertEqual(decorated(2), 3)
def test_validate_prediction_accepts_minicpm_runtime(self) -> None:
asset = TEST_ASSETS[0]
trace = _trace_record(
object_name="striped coffee mug",
visible_features=["ceramic cup", "handle", "striped surface"],
runtime_vision="minicpm-v object understanding",
fallbacks=["mock-text-runtime"],
)
response = [None, {}, {}, "", "", "", trace.model_dump(mode="json")]
result = validate_prediction(asset, Path("/tmp/mug.jpg"), response)
self.assertTrue(result.passed)
self.assertEqual(result.object_name, "striped coffee mug")
self.assertEqual(result.runtime_text, "mock persona and diary generation")
def test_validate_prediction_rejects_vision_fallback(self) -> None:
asset = TEST_ASSETS[1]
trace = _trace_record(
object_name="computer keyboard",
visible_features=["black keys"],
runtime_vision="minicpm-v object understanding",
fallbacks=["vision-fallback-to-mock", "mock-text-runtime"],
)
response = [None, {}, {}, "", "", "", trace.model_dump(mode="json")]
result = validate_prediction(asset, Path("/tmp/keyboard.jpg"), response)
self.assertFalse(result.passed)
self.assertIn("vision fallback marker", result.error)
def test_extract_trace_record_accepts_gradio_response(self) -> None:
trace = _trace_record(
object_name="running shoe",
visible_features=["laces", "rubber sole"],
runtime_vision="minicpm-v object understanding",
fallbacks=["mock-text-runtime"],
)
response = [None, {}, {}, "", "", "", trace.model_dump(mode="json")]
extracted = extract_trace_record(response)
self.assertEqual(extracted.object_understanding.object.name, "running shoe")
self.assertEqual(extracted.model_runtime["vision"], "minicpm-v object understanding")
def test_write_trace_record_writes_valid_public_json(self) -> None:
trace = _trace_record(
object_name="striped coffee mug",
visible_features=["ceramic cup", "handle"],
runtime_vision="minicpm-v object understanding",
fallbacks=["mock-text-runtime"],
)
with tempfile.TemporaryDirectory() as tmp_dir:
output_path = write_trace_record(trace, Path(tmp_dir) / "mug.json")
payload = output_path.read_text(encoding="utf-8")
parsed = TraceRecord.model_validate_json(payload)
self.assertEqual(parsed.trace_id, trace.trace_id)
self.assertNotIn("HUGGINGFACE_TOKEN", payload)
self.assertNotIn("HF_TOKEN", payload)
self.assertNotIn("hf_", payload)
def test_write_trace_record_rejects_sensitive_token_markers(self) -> None:
trace = _trace_record(
object_name="computer keyboard",
visible_features=["black keys"],
runtime_vision="minicpm-v object understanding",
fallbacks=["mock-text-runtime"],
)
trace.model_runtime["runtime"] = "vision model id: openbmb/MiniCPM-V-2_6; token hf_forbidden"
with tempfile.TemporaryDirectory() as tmp_dir:
output_path = Path(tmp_dir) / "keyboard.json"
with self.assertRaises(ValueError):
write_trace_record(trace, output_path)
self.assertFalse(output_path.exists())
def test_render_report_includes_results_and_safe_config(self) -> None:
result = ValidationResult(
key="shoe",
label="Running shoe",
source_page="https://commons.wikimedia.org/wiki/File:Running_shoes.jpg",
image_path="/tmp/shoe.jpg",
passed=True,
object_name="running shoe",
visible_features=["laces", "athletic sole"],
likely_context="sports gear",
confidence=0.86,
runtime_vision="minicpm-v object understanding",
runtime_text="mock persona and diary generation",
fallbacks=["mock-text-runtime"],
)
report = render_report(
space_url="https://huggingface.co/spaces/build-small-hackathon/ObjectverseDiary",
repo_id="build-small-hackathon/ObjectverseDiary",
results=[result],
probe_result=_probe_result(minicpm_load_ok=True),
configured={"hardware": "zero-a10g", "OBJECTVERSE_VISION_BACKEND": "minicpm-v"},
)
self.assertIn("Overall status: PASS", report)
self.assertIn("Vision Runtime Probe", report)
self.assertIn("minicpm_load_ok", report)
self.assertIn("Running shoe", report)
self.assertIn("OBJECTVERSE_VISION_BACKEND", report)
self.assertIn("live MiniCPM-V configuration remains active", report)
self.assertNotIn("hf_", report.lower())
self.assertNotIn("HUGGINGFACE_TOKEN", report)
def test_render_report_includes_configuration_error(self) -> None:
report = render_report(
space_url="https://huggingface.co/spaces/build-small-hackathon/ObjectverseDiary",
repo_id="build-small-hackathon/ObjectverseDiary",
results=[],
rollback={"hardware": "cpu-basic", "OBJECTVERSE_VISION_BACKEND": "mock"},
configuration_error="HfHubHTTPError: 402 Payment Required",
)
self.assertIn("Overall status: FAIL", report)
self.assertIn("Configuration Error", report)
self.assertIn("402 Payment Required", report)
def test_write_json_results_includes_probe_when_present(self) -> None:
result = ValidationResult(
key="mug",
label="Coffee mug",
source_page="https://commons.wikimedia.org/wiki/File:Striped_coffee_mug.jpg",
image_path="/tmp/mug.jpg",
passed=False,
object_name="coffee mug",
visible_features=["uploaded photo provided"],
likely_context="everyday human environment",
confidence=0.42,
runtime_vision="minicpm-v object understanding",
runtime_text="mock persona and diary generation",
fallbacks=["vision-fallback-to-mock", "mock-text-runtime"],
error="vision fallback marker was present",
)
with tempfile.TemporaryDirectory() as tmp_dir:
output_path = write_json_results(
[result],
Path(tmp_dir) / "report.json",
probe_result=_probe_result(minicpm_load_ok=False),
)
payload = output_path.read_text(encoding="utf-8")
parsed = output_path.read_text(encoding="utf-8")
self.assertIn('"probe"', payload)
self.assertIn('"results"', payload)
self.assertNotIn("hf_", parsed)
self.assertNotIn("HF_TOKEN", parsed)
def test_update_failure_notes_replaces_latest_failure_section(self) -> None:
failed = ValidationResult(
key="keyboard",
label="Computer keyboard",
source_page="https://commons.wikimedia.org/wiki/File:Computer_keyboard.jpg",
image_path="/tmp/keyboard.jpg",
passed=False,
object_name="keyboard",
visible_features=["uploaded photo provided"],
likely_context="everyday human environment",
confidence=0.42,
runtime_vision="minicpm-v object understanding",
runtime_text="mock persona and diary generation",
fallbacks=["vision-fallback-to-mock", "mock-text-runtime"],
error="vision fallback marker was present",
)
with tempfile.TemporaryDirectory() as tmp_dir:
notes_path = Path(tmp_dir) / "FAILURES.md"
notes_path.write_text("# Failure Notes\n\n## Current Status\n\nStable.\n", encoding="utf-8")
update_failure_notes(results=[failed], probe_result=_probe_result(False), output_path=notes_path)
update_failure_notes(results=[failed], probe_result=_probe_result(False), output_path=notes_path)
content = notes_path.read_text(encoding="utf-8")
self.assertEqual(content.count("## Latest Space VLM Validation Failure"), 1)
self.assertIn("keyboard: vision fallback marker was present", content)
self.assertNotIn("hf_", content)
def _trace_record(
*,
object_name: str,
visible_features: list[str],
runtime_vision: str,
fallbacks: list[str],
) -> TraceRecord:
persona = PersonaEnvelope(
persona=Persona(
object_name=object_name,
character_name="Test Object",
mood="watchful",
secret_fear="being ignored",
core_memory="It remembers the test bench.",
complaint="I am more than a fixture.",
tags=["test", "object", "archive"],
)
)
return TraceRecord(
trace_id="space-vlm-test",
created_at=datetime.now(timezone.utc),
mode="Cynical",
input={"has_image": True, "image_filename": "asset.jpg", "description": "public test asset"},
object_understanding=ObjectUnderstanding(
object=ObjectInfo(
name=object_name,
visible_features=visible_features,
likely_context="test environment",
confidence=0.9,
)
),
persona=persona,
diary=DiaryEntry(
title="Secret Diary - Day 1",
english="I was tested today.",
chinese="今天我被测试了。",
),
model_runtime={
"vision": runtime_vision,
"text": "mock persona and diary generation",
"runtime": "vision model id: openbmb/MiniCPM-V-2_6; no llama.cpp model connected yet",
},
fallbacks=fallbacks,
)
def _probe_result(minicpm_load_ok: bool) -> dict[str, object]:
return {
"backend": "minicpm-v",
"vision_model_id": "openbmb/MiniCPM-V-2_6",
"torch_import": True,
"transformers_import": True,
"cuda_available": True,
"device_count": 1,
"device_name": "NVIDIA test device",
"mps_available": False,
"minicpm_load_attempted": True,
"minicpm_load_ok": minicpm_load_ok,
"errors": [] if minicpm_load_ok else [{"stage": "minicpm_load", "type": "RuntimeError", "summary": "test failure"}],
}
if __name__ == "__main__":
unittest.main()
|