Spaces:
Running
Running
File size: 15,048 Bytes
7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 a95ee99 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 f613759 7126f84 |
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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 |
from transformers import CLIPImageProcessor, AutoModel
import torch
import json
import torch.nn as nn
from PIL import Image
import gradio as gr
import os
import faiss
import time
import requests
from huggingface_hub import login, snapshot_download
TITLE = "Danbooru Tagger"
DESCRIPTION = """
## Dataset
- Source: Danbooru
- Cutoff Date: 2025-11-27
- Validation Split: 10% of Dataset
## Validation Results
### General
Tags Count: 11046
| Metric | Value |
|-----------------|-------------|
| Macro F1 | 0.4439 |
| Macro Precision | 0.4168 |
| Macro Recall | 0.4964 |
| Micro F1 | 0.6595 |
| Micro Precision | 0.5982 |
| Micro Recall | 0.7349 |
### Character
Tags Count: 9148
| Metric | Value |
|-----------------|-------------|
| Macro F1 | 0.8646 |
| Macro Precision | 0.8897 |
| Macro Recall | 0.8492 |
| Micro F1 | 0.9092 |
| Micro Precision | 0.9195 |
| Micro Recall | 0.8991 |
### Artist
Tags Count: 17171
| Metric | Value |
|-----------------|-------------|
| Macro F1 | 0.8008 |
| Macro Precision | 0.8669 |
| Macro Recall | 0.7641 |
| Micro F1 | 0.8596 |
| Micro Precision | 0.8948 |
| Micro Recall | 0.8271 |
"""
kaomojis = [
"0_0",
"(o)_(o)",
"+_+",
"+_-",
"._.",
"<o>_<o>",
"<|>_<|>",
"=_=",
">_<",
"3_3",
"6_9",
">_o",
"@_@",
"^_^",
"o_o",
"u_u",
"x_x",
"|_|",
"||_||",
]
device = torch.device('cpu')
dtype = torch.float32
hf_token = os.getenv("HF_TOKEN")
if hf_token:
login(token=hf_token)
else:
raise ValueError("environment variable HF_TOKEN not found.")
repo = snapshot_download('Johnny-Z/danbooru_vfm')
model = AutoModel.from_pretrained(repo, dtype=dtype, trust_remote_code=True, device_map=device)
index_dir = snapshot_download('Johnny-Z/dan_index', repo_type='dataset')
processor = CLIPImageProcessor.from_pretrained(repo)
class MultiheadAttentionPoolingHead(nn.Module):
def __init__(self, input_size):
super().__init__()
self.map_probe = nn.Parameter(torch.randn(1, 1, input_size))
self.map_layernorm0 = nn.LayerNorm(input_size, eps=1e-08)
self.map_attention = torch.nn.MultiheadAttention(input_size, input_size // 64, batch_first=True)
self.map_layernorm1 = nn.LayerNorm(input_size, eps=1e-08)
self.map_ffn = nn.Sequential(
nn.Linear(input_size, input_size * 4),
nn.SiLU(),
nn.Linear(input_size * 4, input_size)
)
def forward(self, hidden_state: torch.Tensor) -> torch.Tensor:
batch_size = hidden_state.shape[0]
probe = self.map_probe.repeat(batch_size, 1, 1)
hidden_state = self.map_layernorm0(hidden_state)
hidden_state = self.map_attention(probe, hidden_state, hidden_state)[0]
hidden_state = self.map_layernorm1(hidden_state)
residual = hidden_state
hidden_state = residual + self.map_ffn(hidden_state)
return hidden_state[:, 0]
class MLP(nn.Module):
def __init__(self, input_size, class_num):
super().__init__()
self.mlp_layer0 = nn.Sequential(
nn.LayerNorm(input_size, eps=1e-08),
nn.Linear(input_size, input_size // 2),
nn.SiLU()
)
self.mlp_layer1 = nn.Linear(input_size // 2, class_num)
self.sigmoid = nn.Sigmoid()
def forward(self, x):
x = self.mlp_layer0(x)
x = self.mlp_layer1(x)
x = self.sigmoid(x)
return x
class MLP_R(nn.Module):
def __init__(self, input_size):
super().__init__()
self.mlp_layer0 = nn.Sequential(
nn.Linear(input_size, 384),
)
def forward(self, x):
x = self.mlp_layer0(x)
return x
with open(os.path.join(repo, 'general_tag_dict.json'), 'r', encoding='utf-8') as f:
general_dict = json.load(f)
with open(os.path.join(repo, 'character_tag_dict.json'), 'r', encoding='utf-8') as f:
character_dict = json.load(f)
with open(os.path.join(repo, 'artist_tag_dict.json'), 'r', encoding='utf-8') as f:
artist_dict = json.load(f)
with open(os.path.join(repo, 'implications_list.json'), 'r', encoding='utf-8') as f:
implications_list = json.load(f)
with open(os.path.join(repo, 'artist_threshold.json'), 'r', encoding='utf-8') as f:
artist_thresholds = json.load(f)
with open(os.path.join(repo, 'character_threshold.json'), 'r', encoding='utf-8') as f:
character_thresholds = json.load(f)
with open(os.path.join(repo, 'general_threshold.json'), 'r', encoding='utf-8') as f:
general_thresholds = json.load(f)
model_map = MultiheadAttentionPoolingHead(2048)
model_map.load_state_dict(torch.load(os.path.join(repo, "map_head.pth"), map_location=device, weights_only=True))
model_map.to(device).to(dtype).eval()
general_class = 11046
mlp_general = MLP(2048, general_class)
mlp_general.load_state_dict(torch.load(os.path.join(repo, "cls_predictor_general.pth"), map_location=device, weights_only=True))
mlp_general.to(device).to(dtype).eval()
character_class = 9148
mlp_character = MLP(2048, character_class)
mlp_character.load_state_dict(torch.load(os.path.join(repo, "cls_predictor_character.pth"), map_location=device, weights_only=True))
mlp_character.to(device).to(dtype).eval()
artist_class = 17171
mlp_artist = MLP(2048, artist_class)
mlp_artist.load_state_dict(torch.load(os.path.join(repo, "cls_predictor_artist.pth"), map_location=device, weights_only=True))
mlp_artist.to(device).to(dtype).eval()
mlp_r = MLP_R(2048)
mlp_r.load_state_dict(torch.load(os.path.join(repo, "retrieval_head.pth"), map_location=device, weights_only=True))
mlp_r.to(device).to(dtype).eval()
def prediction_to_tag(prediction, tag_dict, class_num):
prediction = prediction.view(class_num)
predicted_ids = (prediction >= 0.2).nonzero(as_tuple=True)[0].cpu().numpy() + 1
general = {}
character = {}
artist = {}
date = {}
rating = {}
for tag, value in tag_dict.items():
if value[2] in predicted_ids:
tag_value = round(prediction[value[2] - 1].item(), 6)
if value[1] == "general" and tag_value >= general_thresholds.get(tag, {}).get("Threshold", 0.75):
general[tag] = tag_value
elif value[1] == "character" and tag_value >= character_thresholds.get(tag, {}).get("Threshold", 0.75):
character[tag] = tag_value
elif value[1] == "artist" and tag_value >= artist_thresholds.get(tag, {}).get("Threshold", 0.75):
artist[tag] = tag_value
elif value[1] == "rating":
rating[tag] = tag_value
elif value[1] == "date":
date[tag] = tag_value
general = dict(sorted(general.items(), key=lambda item: item[1], reverse=True))
character = dict(sorted(character.items(), key=lambda item: item[1], reverse=True))
artist = dict(sorted(artist.items(), key=lambda item: item[1], reverse=True))
if date:
date = {max(date, key=date.get): date[max(date, key=date.get)]}
if rating:
rating = {max(rating, key=rating.get): rating[max(rating, key=rating.get)]}
return general, character, artist, date, rating
def load_id_map(id_map_path):
with open(id_map_path, "r") as f:
id_map = json.load(f)
id_map = {int(k): int(v) for k, v in id_map.items()}
inv_map = {v: k for k, v in id_map.items()}
return id_map, inv_map
def search_index(query_vector, k=32, distance_threshold_min=0, distance_threshold_max=64, nprobe=4):
global index_dir
index_path = os.path.join(index_dir, 'danbooru_retrieval.index')
id_map_path = os.path.join(index_dir, 'danbooru_retrieval_id_map.json')
distance_threshold_min = distance_threshold_min**2
distance_threshold_max = distance_threshold_max**2
index = faiss.read_index(index_path)
if nprobe is not None and hasattr(index, "nprobe"):
index.nprobe = nprobe
_, inv_map = load_id_map(id_map_path)
qv = query_vector.detach().to(torch.float32).cpu().numpy()
distances, internal_ids = index.search(qv, k)
distances = distances[0]
internal_ids = internal_ids[0]
results = []
for dist, internal_id in zip(distances, internal_ids):
if internal_id == -1:
continue
if dist < distance_threshold_min or dist > distance_threshold_max:
continue
original_id = inv_map.get(int(internal_id))
if original_id is None:
continue
results.append({"original_id": original_id, "l2_distance": float(dist**0.5)})
results.sort(key=lambda x: x["l2_distance"])
return results
def fetch_retrieval_image_urls(retrieval_results, sleep_sec=0.1, timeout=2.0):
pairs = []
for item in retrieval_results:
oid = item.get("original_id")
if oid is None:
continue
api_url = f"https://danbooru.donmai.us/posts/{oid}.json"
try:
resp = requests.get(api_url, timeout=timeout)
if resp.status_code != 200:
time.sleep(sleep_sec)
continue
data = resp.json()
url = data.get("large_file_url") or data.get("file_url") or data.get("preview_file_url")
if not url:
time.sleep(sleep_sec)
continue
if url.startswith("//"):
url = "https:" + url
elif url.startswith("/"):
url = "https://danbooru.donmai.us" + url
dist = item.get("l2_distance")
pairs.append((url, oid, dist))
except Exception:
pass
finally:
time.sleep(sleep_sec)
return pairs
def process_image(image, k, distance_threshold_min, distance_threshold_max):
try:
image = image.convert('RGBA')
background = Image.new('RGBA', image.size, (255, 255, 255, 255))
image = Image.alpha_composite(background, image).convert('RGB')
image_inputs = processor(images=[image], return_tensors="pt").to(device).to(dtype)
except (OSError, IOError) as e:
print(f"Error opening image: {e}")
return
with torch.no_grad():
embedding = model(image_inputs.pixel_values)
embedding = model_map(embedding)
embedding_r = mlp_r(embedding)
retrieval_results = search_index(embedding_r, k, distance_threshold_min, distance_threshold_max)
url_id_pairs = fetch_retrieval_image_urls(retrieval_results)
retrieval_gallery_items = [
(
url,
f"distance={dist:.3f} | id={oid}"
)
for url, oid, dist in url_id_pairs
]
retrieval_links = "\n".join(
f"[id={oid}](https://danbooru.donmai.us/posts/{oid})"
for url, oid, dist in url_id_pairs
)
general_prediction = mlp_general(embedding)
general_ = prediction_to_tag(general_prediction, general_dict, general_class)
general_tags = general_[0]
rating = general_[4]
character_prediction = mlp_character(embedding)
character_ = prediction_to_tag(character_prediction, character_dict, character_class)
character_tags = character_[1]
artist_prediction = mlp_artist(embedding)
artist_ = prediction_to_tag(artist_prediction, artist_dict, artist_class)
artist_tags = artist_[2]
date = artist_[3]
combined_tags = {**general_tags}
tags_list = [tag for tag in combined_tags]
remove_list = []
for tag in tags_list:
if tag in implications_list:
for implication in implications_list[tag]:
remove_list.append(implication)
tags_list = [tag for tag in tags_list if tag not in remove_list]
tags_list = [tag.replace("_", " ") if tag not in kaomojis else tag for tag in tags_list]
tags_str = ", ".join(tags_list).replace("(", r"\(").replace(")", r"\)")
return (
tags_str,
artist_tags,
character_tags,
general_tags,
rating,
date,
retrieval_gallery_items,
retrieval_links,
)
def main():
with gr.Blocks(title=TITLE) as demo:
with gr.Column():
gr.Markdown(
value=f"<h1 style='text-align: center; margin-bottom: 1rem'>{TITLE}</h1>"
)
with gr.Row():
with gr.Column(variant="panel"):
submit = gr.Button(value="Submit", variant="primary", size="lg")
image = gr.Image(type="pil", image_mode="RGBA", label="Input")
k_slider = gr.Slider(1, 100, value=32, step=1, label="Top K Results")
distance_min_slider = gr.Slider(0, 128, value=0, step=1, label="Min Distance Threshold")
distance_max_slider = gr.Slider(0, 128, value=64, step=1, label="Max Distance Threshold")
with gr.Row():
clear = gr.ClearButton(
components=[
image,
k_slider,
distance_min_slider,
distance_max_slider,
],
variant="secondary",
size="lg",
)
gr.Markdown(value=DESCRIPTION)
with gr.Column(variant="panel"):
tags_str = gr.Textbox(label="Output", lines=4)
with gr.Row():
rating = gr.Label(label="Rating")
date = gr.Label(label="Year")
artist_tags = gr.Label(label="Artist")
character_tags = gr.Label(label="Character")
general_tags = gr.Label(label="General")
with gr.Row():
retrieval_gallery = gr.Gallery(
label="Retrieval Preview",
columns=5,
)
retrieval_links = gr.Markdown(label="Retrieval Links")
clear.add(
[
tags_str,
artist_tags,
general_tags,
character_tags,
rating,
date,
retrieval_gallery,
retrieval_links,
]
)
submit.click(
process_image,
inputs=[image, k_slider, distance_min_slider, distance_max_slider],
outputs=[
tags_str,
artist_tags,
character_tags,
general_tags,
rating,
date,
retrieval_gallery,
retrieval_links,
],
)
demo.queue(max_size=10)
demo.launch()
if __name__ == "__main__":
main()
|