Socket
Socket
Sign inDemoInstall

hpsv2

Package Overview
Dependencies
20
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hpsv2

Human Preference Score v2: A Solid Benchmark for Evaluating Human Preferences of Text-to-Image Synthesis.


Maintainers
1

Readme


HPS v2: Benchmarking Text-to-Image Generative Models

PyPI PyPI - Downloads Arxiv Huggingface PyPI - License

This is the official repository for the paper: Human Preference Score v2: A Solid Benchmark for Evaluating Human Preferences of Text-to-Image Synthesis.

Updates

  • [09/02/2024] We released HPS v2.1 model trained on higher quality datasets. Happy new year!
  • [08/02/2023] We released the PyPI package. You can learn how to use it from the Quick start section.
  • [08/02/2023] Updated test.json to include raw annotation by each annotator.
  • [07/29/2023] We included SDXL Refiner 0.9 model in the benchmark.
  • [07/29/2023] We released the benchmark and HPD v2 test data. HPD v2 train data will be released soon.
  • [07/27/2023] We included SDXL Base 0.9 model in the benchmark.
  • [07/26/2023] We updated our compressed checkpoint.
  • [07/19/2023] Live demo is available at 🤗Hugging Face.
  • [07/18/2023] We released our test data.

Overview


Human Preference Dataset v2 (HPD v2): a large-scale (798k preference choices / 430k images), a well-annotated dataset of human preference choices on images generated by text-to-image generative models.

Human Preference Score v2 (HPS v2): a preference prediction model trained on HPD v2. HPS v2 can be used to compare images generated with the same prompt. We also provide a fair, stable, and easy-to-use set of evaluation prompts for text-to-image generative models.

The HPS benchmark

The HPS benchmark evaluates models' capability of generating images of 4 styles: Animation, Concept-art, Painting, and Photo.

v2 benchmark
ModelAnimationConcept-artPaintingPhotoAveraged
Dreamlike Photoreal 2.028.2427.6027.5927.9927.86
SDXL Refiner 0.928.4527.6627.6727.4627.80
Realistic Vision28.2227.5327.5627.7527.77
SDXL Base 0.928.4227.6327.6027.2927.73
Deliberate28.1327.4627.4527.6227.67
ChilloutMix27.9227.2927.3227.6127.54
MajicMix Realistic27.8827.1927.2227.6427.48
Openjourney27.8527.1827.2527.5327.45
DeepFloyd-XL27.6426.8326.8627.7527.27
Epic Diffusion27.5726.9627.0327.4927.26
Stable Diffusion v2.027.4826.8926.8627.4627.17
Stable Diffusion v1.427.2626.6126.6627.2726.95
DALL·E 227.3426.5426.6827.2426.95
Versatile Diffusion26.5926.2826.4327.0526.59
CogView226.5026.5926.3326.4426.47
VQGAN + CLIP26.4426.5326.4726.1226.39
DALL·E mini26.1025.5625.5626.1225.83
Latent Diffusion25.7325.1525.2526.9725.78
FuseDream25.2625.1525.1325.5725.28
VQ-Diffusion24.9724.7025.0125.7125.10
LAFITE24.6324.3824.4325.8124.81
GLIDE23.3423.0823.2724.5023.55
v2.1 benchmark
ModelAnimationConcept-artPaintingPhotoAveraged
SDXL Refiner 0.933.2632.0731.6328.3831.34
SDXL Base 0.932.8431.3630.8627.4830.63
Deliberate31.4630.4830.1728.8330.23
Realistic Vision31.0129.9530.0028.6129.89
Dreamlike Photoreal 2.030.8729.7529.4628.8529.73
MajicMix Realistic29.6728.5028.4428.0228.66
ChilloutMix29.4628.4628.3527.6328.47
Openjourney28.3727.3827.5326.6627.48
DeepFloyd-XL27.7126.0725.7927.9626.88
Epic Diffusion27.0726.1426.1726.4326.45
Stable Diffusion v2.027.0926.0225.6826.7326.38
Stable Diffusion v1.426.0324.8724.8025.7025.35
DALL·E 226.3824.5124.9325.5525.34
Versatile Diffusion23.6923.3924.0224.6423.93
CogView223.6424.8623.4022.6823.64
VQGAN + CLIP22.5523.7623.4121.5122.81
DALL·E mini21.5420.5020.3221.7221.02
Latent Diffusion20.6319.6519.7921.2620.34
FuseDream19.1619.3719.0720.0719.42
VQ-Diffusion18.4418.3119.2420.6219.15
LAFITE17.7917.5517.6120.8818.46
GLIDE13.9013.5013.9416.7214.51

Quick Start

Installation

# Method 1: Pypi download and install
pip install hpsv2


# Method 2: install locally
git clone https://github.com/tgxs002/HPSv2.git
cd HPSv2
pip install -e . 


# Optional: images for reproducing our benchmark will be downloaded here

# default: ~/.cache/hpsv2/
export HPS_ROOT=/your/cache/path

After installation, we show how to:

We also provide command line interfaces for debugging purposes.

Image Comparison

You can score and compare several images generated by the same prompt by running the following code:

import hpsv2

# imgs_path can be a list of image paths, with the images generated by the same prompt
# or image path of string type
# or image of PIL.Image.Image type
result = hpsv2.score(imgs_path, '<prompt>', hps_version="v2.1") 

Note: Comparison is only meaningful for images generated by the same prompt. You can also pass "v2.0" to hps_version to use our updated model. Scores can not be directly compared between v2.0 and v2.1.

Benchmark Reproduction

We also provide images generated by models in our benchmark used for evaluation. You can easily download the data and evaluate the models by running the following code.

import hpsv2

print(hpsv2.get_available_models()) # Get models that have access to data
hpsv2.evaluate_benchmark('<model_name>')

Custom Evaluation

To evaluate your own text-to-image generative model, you can prepare the images for evaluation base on the benchmark prompts we provide by running the following code:

import os
import hpsv2

# Get benchmark prompts (<style> = all, anime, concept-art, paintings, photo)
all_prompts = hpsv2.benchmark_prompts('all') 

# Iterate over the benchmark prompts to generate images
for style, prompts in all_prompts.items():
    for idx, prompt in enumerate(prompts):
        image = TextToImageModel(prompt) 
        # TextToImageModel is the model you want to evaluate
        image.save(os.path.join("<image_path>", style, f"{idx:05d}.jpg")) 
        # <image_path> is the folder path to store generated images, as the input of hpsv2.evaluate().

And then run the following code to conduct evaluation:

import hpsv2

# <image_path> is the same as <image_path> in the prevoius part.
# <hps_version> is the version of HPS model, it can be v2 or v2.1. Default to v2.
hpsv2.evaluate("<images_path>", hps_version="<hps_version>") 

Preference Model Evaluation

Evaluating HPS v2's correlation with human preference choices:

ModelAcc. on ImageReward test set (%)Acc. on HPD v2 test set (%)Acc. on new test set (%)
Aesthetic Score Predictor57.476.857.8*
ImageReward65.174.067.4*
HPS61.277.666.8*
PickScore62.979.867.8*
Single Human65.378.165.4*
HPS v265.783.373.2*
HPS v2.166.884.174.8*

* The new test set is another test set annotated similarly to the HPD v2 test set, except that images are generated from 10 better models (Dreamlike Photoreal 2.0, SDXL Refiner 0.9, Realistic Vision, SDXL Base 0.9, Deliberate, ChilloutMix, MajicMix Realistic, Openjourney, DeepFloyd-XL, Epic Diffusion).

HPS v2 checkpoint can be downloaded from here. The model and live demo is also hosted on 🤗 Hugging Face at here.

Run the following commands to evaluate the HPS v2 model on HPD v2 test set and ImageReward test set (Need to install the package hpsv2 first):

# evaluate on HPD v2 test set
python evaluation.py --data-type test --data-path /path/to/HPD --image-path /path/to/image_folder


# evaluate on ImageReward test set
python evaluation.py --data-type ImageReward --data-path /path/to/IR --image-path /path/to/image_folder

Human Preference Dataset v2

The prompts in our dataset are sourced from DiffusionDB and MSCOCO Captions. Prompts from DiffusionDB are first cleaned by ChatGPT to remove biased function words. Human annotators are tasked to rank images generated by different text-to-image generative models from the same prompt. Totally there are about 798k pairwise comparisons of images for over 430k images and 107k prompts, 645k pairs for training split and 153k pairs for test split.

Image sources of HPD v2:

Source# of images
CogView273697
DALL·E 2101869
GLIDE (mini)400
Stable Diffusion v1.4101869
Stable Diffusion v2.0101869
LAFITE400
VQ-GAN+CLIP400
VQ-Diffusion400
FuseDream400
COCO Captions28272

Currently, the test data can be downloaded from here. You can inspect the test data at https://tgxs002.github.io/hpd_test_vis/. Here is a screenshot: test_vis

The training dataset will be released soon. Once unzipped, you should get a folder with the following structure:

HPD
---- train/
-------- {image_id}.jpg
---- test/
-------- {image_id}.jpg
---- train.json
---- test.json
---- benchmark/
-------- benchmark_imgs/
------------ {model_id}/
---------------- {image_id}.jpg
-------- drawbench/
------------ {model_id}/
---------------- {image_id}.jpg
-------- anime.json
-------- concept-art.json
-------- paintings.json
-------- photo.json
-------- drawbench.json

The annotation file, train.json, is organized as:

[
    {
        'human_preference': list[int], # 1 for preference
        'prompt': str,
        'file_path': list[str],
        'user_hash': str,
    },
    ...
]

The annotation file, test.json, is organized as:

[
    {
        'prompt': str,
        'image_path': list[str],
        'rank': list[int], # averaged ranking result for image at the same index in image_path,
        'raw_annotations': list[{'rank', 'user_hash'}]  # raw ranking result from each annotator
    },
    ...
]

The benchmark prompts file, ie. anime.json is pure prompts. The corresponding image can be found in the folder of the corresponding model by indexing the prompt.

Command Line Interface

Evaluating Text-to-image Generative Models using HPS v2

The generated images in our experiments can be downloaded from here.

The following script reproduces the benchmark table and our results on DrawBench (reported in the paper) (Need to install the package hpsv2 first):

# HPS v2 benchmark (for more than one models)
python evaluation.py --data-type benchmark_all --data-path /path/to/HPD/benchmark --image-path /path/to/benchmark_imgs


# HPS v2 benchmark (for only one models)
python evaluation.py --data-type benchmark --data-path /path/to/HPD/benchmark --image-path /path/to/benchmark_imgs/${model_name}


# DrawBench
python evaluation.py --data-type drawbench --data-path /path/to/HPD/benchmark --image-path /path/to/drawbench_imgs

Scoring Single Generated Image and Corresponding Prompt

We provide one example image in the asset/images directory of this repo. The corresponding prompt is "A cat with two horns on its head".

Run the following commands to score the single generated image and the corresponding prompt (Need to install the package hpsv2 first):

python img_score.py --image-path assets/demo_image.jpg --prompt 'A cat with two horns on its head'

where the parameter image-path can accept multiple values.

Train Human Preference Predictor

To train your own human preference predictor, just change the corresponding path in configs/controller.sh and run the following command:

# if you are running locally
bash configs/HPSv2.sh train 8 local

# if you are running on slurm
bash configs/HPSv2.sh train 8 ${quota_type}

BibTeX

@article{wu2023human,
  title={Human Preference Score v2: A Solid Benchmark for Evaluating Human Preferences of Text-to-Image Synthesis},
  author={Wu, Xiaoshi and Hao, Yiming and Sun, Keqiang and Chen, Yixiong and Zhu, Feng and Zhao, Rui and Li, Hongsheng},
  journal={arXiv preprint arXiv:2306.09341},
  year={2023}
}

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc