LinB203
init
0c8d55e

A newer version of the Gradio SDK is available: 5.35.0

Upgrade

The original code is from GEdit-Bench.

Requirements and Installation

pip install megfile openai 

Prepare Source Images

Prepare the original image and metadata json following the example code in step0_generate_image_example.py

GEDIT_ASSET="/path/to/gedit_asset"
python step0_prepare_gedit.py --save_path ${GEDIT_ASSET} --json_file_path gedit_edit.json

The file directory structure of the original image:

${GEDIT_ASSET}/
β”‚   └── fullset/
β”‚       └── edit_task/
β”‚           β”œβ”€β”€ cn/  # Chinese instructions
β”‚           β”‚   β”œβ”€β”€ key1.png
β”‚           β”‚   β”œβ”€β”€ key2.png
β”‚           β”‚   └── ...
β”‚           └── en/  # English instructions
β”‚               β”œβ”€β”€ key1.png
β”‚               β”œβ”€β”€ key2.png
β”‚               └── ...

Eval

Generate samples

# switch to univa env
MODEL_PATH='path/to/model'
OUTPUT_DIR='path/to/eval_output/gedit'
CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7 torchrun \
  --nproc_per_node 8 \
  -m step1_gen_samples \
  gedit.yaml \
  --pretrained_lvlm_name_or_path ${MODEL_PATH} \
  --output_dir ${OUTPUT_DIR}

Evaluation

Write your gpt-api-key to secret_t2.env.

IMAGE_DIR=${OUTPUT_DIR}
python step2_gedit_bench.py \
    --model_name UniWorld \
    --save_path ${IMAGE_DIR} \
    --backbone gpt4o \
    --source_path ${GEDIT_ASSET}

Summary

python step3_calculate_statistics.py \
    --model_name UniWorld \
    --save_path ${IMAGE_DIR} \
    --backbone gpt4o \
    --language en > ${IMAGE_DIR}.txt
cat ${IMAGE_DIR}.txt