Spaces:
Sleeping
Sleeping
File size: 5,815 Bytes
f45a0cf 4dfa1ed f45a0cf 4dfa1ed f45a0cf 2a94f77 4dfa1ed 2a94f77 4dfa1ed 2a94f77 4dfa1ed 2a94f77 4dfa1ed 2a94f77 4dfa1ed 2a94f77 4dfa1ed f45a0cf 2a94f77 4dfa1ed 2a94f77 f45a0cf 4dfa1ed f45a0cf 2a94f77 f45a0cf 2a94f77 4dfa1ed 2a94f77 f45a0cf | 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 | #!/usr/bin/env python
"""HyperView main Hugging Face Space geometry demo."""
from __future__ import annotations
import os
import re
from collections import Counter
from pathlib import Path
from datasets import load_dataset
from PIL import Image, ImageOps
import hyperview as hv
SPACE_HOST = "0.0.0.0"
SPACE_PORT = 7860
DATASET_NAME = "inat24_tiny_geometry_showcase"
HF_DATASET = "evendrow/inat24_tiny"
HF_SPLIT = "train"
SAMPLE_SEED = 42
TARGET_SUPERCATEGORY_COUNTS = {
"plants": 50,
"insects": 50,
"birds": 42,
"arachnids": 36,
"amphibians": 30,
"reptiles": 26,
"fungi": 26,
"mammals": 20,
"fish": 10,
"mollusks": 10,
}
SAMPLE_COUNT = sum(TARGET_SUPERCATEGORY_COUNTS.values())
IMAGE_MAX_SIZE = (768, 768)
EMBEDDING_LAYOUTS = [
{
"name": "CLIP",
"provider": "embed-anything",
"model": "openai/clip-vit-base-patch32",
"layouts": ["euclidean:3d", "spherical"],
},
{
"name": "HyCoCLIP",
"provider": "hyper-models",
"model": "hycoclip-vit-s",
"layouts": ["poincare"],
},
]
METADATA_FIELDS = (
"common_name",
"id",
"width",
"height",
"license",
"rights_holder",
"date",
"latitude",
"longitude",
"location_uncertainty",
"category_id",
"supercategory",
"kingdom",
"phylum",
"class",
"order",
"family",
"genus",
"specific_epithet",
)
def media_root() -> Path:
root = Path(os.environ.get("HYPERVIEW_MEDIA_DIR", "./demo_data/media"))
path = root / DATASET_NAME
path.mkdir(parents=True, exist_ok=True)
return path
def safe_sample_id(row: dict, index: int) -> str:
raw_id = row.get("id", index)
normalized = re.sub(r"[^A-Za-z0-9_.-]+", "_", str(raw_id)).strip("_")
return f"inat24_{normalized}"
def species_name(row: dict, features) -> str:
label = row.get("label")
if label is None:
return "unknown"
return features["label"].int2str(label)
def save_image(row: dict, destination: Path) -> None:
if destination.exists():
return
image = row["image"]
if not isinstance(image, Image.Image):
raise TypeError(f"Expected a PIL image, got {type(image)!r}")
image = ImageOps.exif_transpose(image).convert("RGB")
image.thumbnail(IMAGE_MAX_SIZE, Image.Resampling.LANCZOS)
image.save(destination, format="JPEG", quality=90, optimize=True)
def existing_label_counts(dataset: hv.Dataset) -> Counter[str]:
return Counter(sample.label for sample in dataset.samples if sample.label)
def target_reached(counts: Counter[str]) -> bool:
return all(
counts[group] >= quota
for group, quota in TARGET_SUPERCATEGORY_COUNTS.items()
)
def add_inat24_samples(dataset: hv.Dataset) -> None:
counts = existing_label_counts(dataset)
if target_reached(counts):
print(f"Dataset already has the target stratified sample ({len(dataset)} samples).")
return
existing_ids = {sample.id for sample in dataset.samples}
print(
f"Building a stratified {SAMPLE_COUNT}-sample iNat24 Tiny subset from {HF_DATASET}...",
flush=True,
)
print(f"Current counts: {dict(counts)}", flush=True)
source = load_dataset(HF_DATASET, split=HF_SPLIT)
source = source.shuffle(seed=SAMPLE_SEED)
root = media_root()
for index, row in enumerate(source):
group = row.get("supercategory")
if group not in TARGET_SUPERCATEGORY_COUNTS:
continue
if counts[group] >= TARGET_SUPERCATEGORY_COUNTS[group]:
continue
sample_id = safe_sample_id(row, index)
if sample_id in existing_ids:
continue
image_path = root / f"{sample_id}.jpg"
save_image(row, image_path)
metadata = {field: row.get(field) for field in METADATA_FIELDS}
metadata["scientific_name"] = species_name(row, source.features)
metadata["source_dataset"] = HF_DATASET
metadata["sample_strategy"] = "stratified_by_inat24_supercategory"
dataset.add_image(
str(image_path),
label=group,
metadata=metadata,
sample_id=sample_id,
)
counts[group] += 1
existing_ids.add(sample_id)
loaded = sum(
min(counts[group], quota)
for group, quota in TARGET_SUPERCATEGORY_COUNTS.items()
)
if loaded == 1 or loaded % 25 == 0 or target_reached(counts):
print(f"Loaded {loaded}/{SAMPLE_COUNT} samples: {dict(counts)}", flush=True)
if target_reached(counts):
break
if not target_reached(counts):
missing = {
group: quota - counts[group]
for group, quota in TARGET_SUPERCATEGORY_COUNTS.items()
if counts[group] < quota
}
raise RuntimeError(f"Could not build the target iNat24 Tiny sample. Missing: {missing}.")
def build_dataset() -> hv.Dataset:
dataset = hv.Dataset(DATASET_NAME)
add_inat24_samples(dataset)
for embedding in EMBEDDING_LAYOUTS:
print(f"Ensuring {embedding['name']} embeddings ({embedding['model']})...", flush=True)
space_key = dataset.compute_embeddings(
model=embedding["model"],
provider=embedding["provider"],
show_progress=True,
)
for layout in embedding["layouts"]:
print(f"Ensuring {embedding['name']} {layout} layout...", flush=True)
dataset.compute_visualization(space_key=space_key, layout=layout)
return dataset
def main() -> None:
dataset = build_dataset()
print(f"Starting HyperView on {SPACE_HOST}:{SPACE_PORT}", flush=True)
hv.launch(dataset, host=SPACE_HOST, port=SPACE_PORT, open_browser=False)
if __name__ == "__main__":
main()
|