#!/usr/bin/env python from __future__ import annotations import argparse import functools import os import html import pathlib import tarfile import deepdanbooru as dd import gradio as gr import huggingface_hub import numpy as np import PIL.Image import tensorflow as tf import piexif import piexif.helper import requests from io import BytesIO from PIL import Image TITLE = 'DeepDanbooru String' MODEL_REPO = 'yo2266911/DeepDanbooru_string' MODEL_FILENAME = 'model-resnet_custom_v3.h5' LABEL_FILENAME = 'tags.txt' def parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser() parser.add_argument('--score-slider-step', type=float, default=0.05) parser.add_argument('--score-threshold', type=float, default=0.5) parser.add_argument('--theme', type=str, default='dark-grass') parser.add_argument('--live', action='store_true') parser.add_argument('--share', action='store_true') parser.add_argument('--port', type=int) parser.add_argument('--disable-queue', dest='enable_queue', action='store_false') parser.add_argument('--allow-flagging', type=str, default='never') return parser.parse_args() def load_sample_image_paths() -> list[pathlib.Path]: image_dir = pathlib.Path('images') if not image_dir.exists(): dataset_repo = 'hhysts/TADNE-sample-images' path = huggingface_hub.hf_hub_download(dataset_repo, '512/0-99999.tar', repo_type='dataset') with tarfile.open(path) as f: f.extractall() return sorted(image_dir.glob('*')) def load_model() -> tf.keras.Model: path = pathlib.Path('model-resnet_custom_v3.h5') model = tf.keras.models.load_model(path) return model def load_labels() -> list[str]: path = pathlib.Path('tags.txt') with open(path) as f: labels = [line.strip() for line in f.readlines()] return labels def plaintext_to_html(text): text = "

" + "
\n".join([f"{html.escape(x)}" for x in text.split('\n')]) + "

" return text def predict(image_url:str, score_threshold: float, model: tf.keras.Model, labels: list[str]) -> dict[str, float]: response = requests.get(image_url) # 将图片内容转换为Pillow.Image对象 image = Image.open(BytesIO(response.content)) image = image.convert("RGB") rawimage = image _, height, width, _ = model.input_shape image = np.asarray(image) image = tf.image.resize(image, size=(height, width), method=tf.image.ResizeMethod.AREA, preserve_aspect_ratio=True) image = image.numpy() image = dd.image.transform_and_pad_image(image, width, height) image = image / 255. probs = model.predict(image[None, ...])[0] probs = probs.astype(float) res = dict() for prob, label in zip(probs.tolist(), labels): if prob < score_threshold: continue res[label] = prob b = dict(sorted(res.items(),key=lambda item:item[1], reverse=True)) a = ', '.join(list(b.keys())).replace('_',' ').replace('(','\(').replace(')','\)') c = ', '.join(list(b.keys())) items = rawimage.info geninfo = '' if "exif" in rawimage.info: exif = piexif.load(rawimage.info["exif"]) exif_comment = (exif or {}).get("Exif", {}).get(piexif.ExifIFD.UserComment, b'') try: exif_comment = piexif.helper.UserComment.load(exif_comment) except ValueError: exif_comment = exif_comment.decode('utf8', errors="ignore") items['exif comment'] = exif_comment geninfo = exif_comment for field in ['jfif', 'jfif_version', 'jfif_unit', 'jfif_density', 'dpi', 'exif', 'loop', 'background', 'timestamp', 'duration']: items.pop(field, None) geninfo = items.get('parameters', geninfo) info = f"""

PNG Info

""" for key, text in items.items(): info += f"""

{plaintext_to_html(str(key))}

{plaintext_to_html(str(text))}

""".strip()+"\n" if len(info) == 0: message = "Nothing found in the image." info = f"

{message}

" return (a,c,res,info) def main(): args = parse_args() model = load_model() labels = load_labels() func = functools.partial(predict, model=model, labels=labels) func = functools.update_wrapper(func, predict) gr.Interface( func, [ gr.Textbox( label='Inputurl'), gr.Slider(0, 1, label='Score Threshold'), ], [ gr.Textbox(label='Output (string)'), gr.Textbox(label='Output (raw string)'), gr.Label(label='Output (label)'), gr.HTML() ], title=TITLE, description=''' Demo for [KichangKim/DeepDanbooru](https://github.com/KichangKim/DeepDanbooru) with "ready to copy" prompt and a prompt analyzer. Modified from [hysts/DeepDanbooru](https://huggingface.co/spaces/hysts/DeepDanbooru) PNG Info code forked from [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui) ''', theme=args.theme, allow_flagging=args.allow_flagging, live=args.live, ).launch( queue=args.enable_queue, server_port=args.port, share=args.share, ) if __name__ == '__main__': main()