├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── paper_implementation ├── README.md ├── _answers │ ├── .gitkeep │ ├── results_autometrics │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet.json │ │ │ └── UniControl.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion.json │ │ │ ├── Glide.json │ │ │ ├── SDInpaint.json │ │ │ └── SDXLInpaint.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion.json │ │ │ ├── DreamBooth.json │ │ │ └── TextualInversion.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit.json │ │ │ ├── DreamEdit.json │ │ │ └── PhotoSwap.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen.json │ │ │ ├── DreamBooth.json │ │ │ ├── DreamBoothLora.json │ │ │ └── TextualInversion.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion.json │ │ │ ├── DiffEdit.json │ │ │ ├── InstructPix2Pix.json │ │ │ ├── MagicBrush.json │ │ │ ├── Pix2PixZero.json │ │ │ ├── Prompt2prompt.json │ │ │ ├── SDEdit.json │ │ │ └── Text2Live.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2.json │ │ │ ├── DeepFloydIF.json │ │ │ ├── OpenJourney.json │ │ │ ├── SD.json │ │ │ └── SDXL.json │ ├── results_blip2_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_blip2_1shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ └── PQ.json │ │ │ ├── DreamBooth │ │ │ │ └── PQ.json │ │ │ └── TextualInversion │ │ │ │ └── PQ.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ └── PQ.json │ │ │ ├── DeepFloydIF │ │ │ └── PQ.json │ │ │ ├── OpenJourney │ │ │ └── PQ.json │ │ │ ├── SD │ │ │ └── PQ.json │ │ │ └── SDXL │ │ │ └── PQ.json │ ├── results_cogvlm_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_fuyu_0shot │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gemini_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gemini_1shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gpt4o_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gpt4o_1shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gpt4v_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gpt4v_1shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_gpt4v_ih │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_instructblip_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_llava_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_llava_1shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_openflamingo_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ ├── results_qwenvl_0shot │ │ ├── ImagenHub_Control-Guided_IG │ │ │ ├── ControlNet │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── UniControl │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ │ ├── BlendedDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Glide │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── SDXLInpaint │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ │ ├── CustomDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ │ ├── BLIPDiffusion_Edit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── PhotoSwap │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ │ ├── BLIPDiffusion_Gen │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBooth │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DreamBoothLora │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── TextualInversion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ │ ├── CycleDiffusion │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── DiffEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── InstructPix2Pix │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── MagicBrush │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Pix2PixZero │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── Prompt2prompt │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ ├── SDEdit │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ │ └── Text2Live │ │ │ │ ├── PQ.json │ │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ │ ├── DALLE2 │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── DeepFloydIF │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── OpenJourney │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ ├── SD │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ │ └── SDXL │ │ │ ├── PQ.json │ │ │ └── SC.json │ └── results_qwenvl_1shot │ │ ├── ImagenHub_Control-Guided_IG │ │ ├── ControlNet │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── UniControl │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── ImagenHub_Mask-Guided_IE │ │ ├── BlendedDiffusion │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── Glide │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── SDInpaint │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── SDXLInpaint │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── ImagenHub_Multi-Concept_IC │ │ ├── CustomDiffusion │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── DreamBooth │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── TextualInversion │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IE │ │ ├── BLIPDiffusion_Edit │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── DreamEdit │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── PhotoSwap │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── ImagenHub_Subject-Driven_IG │ │ ├── BLIPDiffusion_Gen │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── DreamBooth │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── DreamBoothLora │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── TextualInversion │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── ImagenHub_Text-Guided_IE │ │ ├── CycleDiffusion │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── DiffEdit │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── InstructPix2Pix │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── MagicBrush │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── Pix2PixZero │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── Prompt2prompt │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ ├── SDEdit │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── Text2Live │ │ │ ├── PQ.json │ │ │ └── SC.json │ │ └── ImagenHub_Text-Guided_IG │ │ ├── DALLE2 │ │ ├── PQ.json │ │ └── SC.json │ │ ├── DeepFloydIF │ │ ├── PQ.json │ │ └── SC.json │ │ ├── OpenJourney │ │ ├── PQ.json │ │ └── SC.json │ │ ├── SD │ │ ├── PQ.json │ │ └── SC.json │ │ └── SDXL │ │ ├── PQ.json │ │ └── SC.json ├── _human_annotations │ └── ImagenHub_human_eval_results │ │ ├── ImagenHub_Control-Guided_IG │ │ ├── Control-Guided_IG_rater1.tsv │ │ ├── Control-Guided_IG_rater2.tsv │ │ └── Control-Guided_IG_rater3.tsv │ │ ├── ImagenHub_Mask-Guided_IE │ │ ├── Mask-Guided_IE_rater1.tsv │ │ ├── Mask-Guided_IE_rater2.tsv │ │ └── Mask-Guided_IE_rater3.tsv │ │ ├── ImagenHub_Multi-Concept_IC │ │ ├── Multi-Subject_IG_rater1.tsv │ │ ├── Multi-Subject_IG_rater2.tsv │ │ └── Multi-Subject_IG_rater3.tsv │ │ ├── ImagenHub_Subject-Driven_IE │ │ ├── Subject-Driven_IE_rater1.tsv │ │ ├── Subject-Driven_IE_rater2.tsv │ │ └── Subject-Driven_IE_rater3.tsv │ │ ├── ImagenHub_Subject-Driven_IG │ │ ├── Subject-Driven_IG_rater1.tsv │ │ ├── Subject-Driven_IG_rater2.tsv │ │ └── Subject-Driven_IG_rater3.tsv │ │ ├── ImagenHub_Text-Guided_IE │ │ ├── Text-Guided_IE_rater1.tsv │ │ ├── Text-Guided_IE_rater2.tsv │ │ └── Text-Guided_IE_rater3.tsv │ │ └── ImagenHub_Text-Guided_IG │ │ ├── Text-To-Image_rater1.tsv │ │ ├── Text-To-Image_rater2.tsv │ │ └── Text-To-Image_rater3.tsv ├── _questions │ ├── context.txt │ ├── context_no_delimit.txt │ ├── context_no_format.txt │ ├── prompts_0shot │ │ ├── cig_rule_SC.txt │ │ ├── control_image_gen_rule.txt │ │ ├── mie_rule_SC.txt │ │ ├── msdig_rule_SC.txt │ │ ├── multi_subject_image_gen_rule.txt │ │ ├── one_image_gen_rule.txt │ │ ├── rule_PQ.txt │ │ ├── sdie_rule_SC.txt │ │ ├── sdig_rule_SC.txt │ │ ├── subject_image_edit_rule.txt │ │ ├── subject_image_gen_rule.txt │ │ ├── t2i_rule_SC.txt │ │ ├── tie_rule_SC.txt │ │ └── two_image_edit_rule.txt │ └── prompts_1shot │ │ ├── cig_rule_SC.txt │ │ ├── control_image_gen_rule.txt │ │ ├── mie_rule_SC.txt │ │ ├── msdig_rule_SC.txt │ │ ├── multi_subject_image_gen_rule.txt │ │ ├── one_image_gen_rule.txt │ │ ├── rule_PQ.txt │ │ ├── sdie_rule_SC.txt │ │ ├── sdig_rule_SC.txt │ │ ├── subject_image_edit_rule.txt │ │ ├── subject_image_gen_rule.txt │ │ ├── t2i_rule_SC.txt │ │ ├── tie_rule_SC.txt │ │ └── two_image_edit_rule.txt ├── analyze_json.ipynb ├── banned_reasonings.txt ├── clean_result.py ├── count_entries.py ├── imagen_museum │ ├── __init__.py │ └── utils.py ├── mllm_tools │ ├── README.md │ ├── __init__.py │ ├── blip_flant5_eval.py │ ├── cogvlm_eval.py │ ├── fuyu_eval.py │ ├── gemini.py │ ├── idefics2_eval.py │ ├── instructblip_eval.py │ ├── llava_eval.py │ ├── mantis_idefics2_eval.py │ ├── minicpmv_eval.py │ ├── openai.py │ ├── openflamingo_eval.py │ ├── qwenVL_eval.py │ ├── run_llava.py │ └── utils.py └── run.py └── viescore ├── README.md ├── __init__.py ├── mllm_tools ├── README.md ├── __init__.py ├── gemini.py ├── idefics2_eval.py ├── mantis_idefics2_eval.py ├── minicpmv_eval.py ├── openai.py └── utils.py ├── parse_prompt.py ├── prompts_raw ├── context.txt ├── context_no_delimit.txt ├── context_no_format.txt ├── prompts_0shot │ ├── cig_rule_SC.txt │ ├── control_image_gen_rule.txt │ ├── mie_rule_SC.txt │ ├── msdig_rule_SC.txt │ ├── multi_subject_image_gen_rule.txt │ ├── one_image_gen_rule.txt │ ├── one_video_gen_rule.txt │ ├── rule_PQ.txt │ ├── sdie_rule_SC.txt │ ├── sdig_rule_SC.txt │ ├── subject_image_edit_rule.txt │ ├── subject_image_gen_rule.txt │ ├── t2i_rule_SC.txt │ ├── t2v_rule_PQ.txt │ ├── t2v_rule_SC.txt │ ├── tie_rule_SC.txt │ └── two_image_edit_rule.txt └── prompts_1shot │ ├── cig_rule_SC.txt │ ├── control_image_gen_rule.txt │ ├── mie_rule_SC.txt │ ├── msdig_rule_SC.txt │ ├── multi_subject_image_gen_rule.txt │ ├── one_image_gen_rule.txt │ ├── rule_PQ.txt │ ├── sdie_rule_SC.txt │ ├── sdig_rule_SC.txt │ ├── subject_image_edit_rule.txt │ ├── subject_image_gen_rule.txt │ ├── t2i_rule_SC.txt │ ├── tie_rule_SC.txt │ └── two_image_edit_rule.txt ├── utils.py └── vie_prompts.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/README.md -------------------------------------------------------------------------------- /paper_implementation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/README.md -------------------------------------------------------------------------------- /paper_implementation/_answers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Control-Guided_IG/ControlNet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Control-Guided_IG/ControlNet.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Control-Guided_IG/UniControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Control-Guided_IG/UniControl.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/BlendedDiffusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/BlendedDiffusion.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/Glide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/Glide.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/SDInpaint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/SDInpaint.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/SDXLInpaint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Mask-Guided_IE/SDXLInpaint.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Multi-Concept_IC/CustomDiffusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Multi-Concept_IC/CustomDiffusion.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Multi-Concept_IC/DreamBooth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Multi-Concept_IC/DreamBooth.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Multi-Concept_IC/TextualInversion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Multi-Concept_IC/TextualInversion.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IE/DreamEdit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IE/DreamEdit.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IE/PhotoSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IE/PhotoSwap.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IG/DreamBooth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IG/DreamBooth.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IG/DreamBoothLora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Subject-Driven_IG/DreamBoothLora.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/CycleDiffusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/CycleDiffusion.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/DiffEdit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/DiffEdit.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/InstructPix2Pix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/InstructPix2Pix.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/MagicBrush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/MagicBrush.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/Pix2PixZero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/Pix2PixZero.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/Prompt2prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/Prompt2prompt.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/SDEdit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/SDEdit.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/Text2Live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IE/Text2Live.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/DALLE2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/DALLE2.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/DeepFloydIF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/DeepFloydIF.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/OpenJourney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/OpenJourney.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/SD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/SD.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/SDXL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_autometrics/ImagenHub_Text-Guided_IG/SDXL.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/UniControl/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Control-Guided_IG/UniControl/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/UniControl/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Control-Guided_IG/UniControl/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_blip2_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/UniControl/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Control-Guided_IG/UniControl/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_cogvlm_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/BlendedDiffusion/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/BlendedDiffusion/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/BlendedDiffusion/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/BlendedDiffusion/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/InstructPix2Pix/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_fuyu_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/UniControl/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Control-Guided_IG/UniControl/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Subject-Driven_IG/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/CycleDiffusion/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Prompt2prompt/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/ControlNet/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/ControlNet/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/UniControl/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/UniControl/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Control-Guided_IG/UniControl/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gemini_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4o_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_gpt4v_ih/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_instructblip_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Multi-Concept_IC/DreamBooth/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/DreamEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Subject-Driven_IE/PhotoSwap/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_llava_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_openflamingo_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_0shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/Glide/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/Glide/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Mask-Guided_IE/SDXLInpaint/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/DiffEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/DiffEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/MagicBrush/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/MagicBrush/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Pix2PixZero/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/SDEdit/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/SDEdit/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Text2Live/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IE/Text2Live/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DALLE2/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DALLE2/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/DeepFloydIF/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/OpenJourney/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/OpenJourney/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SD/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SD/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SD/SC.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SDXL/PQ.json -------------------------------------------------------------------------------- /paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_answers/results_qwenvl_1shot/ImagenHub_Text-Guided_IG/SDXL/SC.json -------------------------------------------------------------------------------- /paper_implementation/_questions/context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/context.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/context_no_delimit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/context_no_delimit.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/context_no_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/context_no_format.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/cig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/cig_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/control_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/control_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/mie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/mie_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/msdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/msdig_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/multi_subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/multi_subject_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/one_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/one_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/rule_PQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/rule_PQ.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/sdie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/sdie_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/sdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/sdig_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/subject_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/subject_image_edit_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/subject_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/t2i_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/t2i_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/tie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/tie_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_0shot/two_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_0shot/two_image_edit_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/cig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/cig_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/control_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/control_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/mie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/mie_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/msdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/msdig_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/multi_subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/multi_subject_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/one_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/one_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/rule_PQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/rule_PQ.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/sdie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/sdie_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/sdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/sdig_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/subject_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/subject_image_edit_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/subject_image_gen_rule.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/t2i_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/t2i_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/tie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/tie_rule_SC.txt -------------------------------------------------------------------------------- /paper_implementation/_questions/prompts_1shot/two_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/_questions/prompts_1shot/two_image_edit_rule.txt -------------------------------------------------------------------------------- /paper_implementation/analyze_json.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/analyze_json.ipynb -------------------------------------------------------------------------------- /paper_implementation/banned_reasonings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/banned_reasonings.txt -------------------------------------------------------------------------------- /paper_implementation/clean_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/clean_result.py -------------------------------------------------------------------------------- /paper_implementation/count_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/count_entries.py -------------------------------------------------------------------------------- /paper_implementation/imagen_museum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/imagen_museum/__init__.py -------------------------------------------------------------------------------- /paper_implementation/imagen_museum/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/imagen_museum/utils.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/README.md -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/blip_flant5_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/blip_flant5_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/cogvlm_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/cogvlm_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/fuyu_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/fuyu_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/gemini.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/idefics2_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/idefics2_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/instructblip_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/instructblip_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/llava_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/llava_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/mantis_idefics2_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/mantis_idefics2_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/minicpmv_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/minicpmv_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/openai.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/openflamingo_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/openflamingo_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/qwenVL_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/qwenVL_eval.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/run_llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/run_llava.py -------------------------------------------------------------------------------- /paper_implementation/mllm_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/mllm_tools/utils.py -------------------------------------------------------------------------------- /paper_implementation/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/paper_implementation/run.py -------------------------------------------------------------------------------- /viescore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/README.md -------------------------------------------------------------------------------- /viescore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/__init__.py -------------------------------------------------------------------------------- /viescore/mllm_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/README.md -------------------------------------------------------------------------------- /viescore/mllm_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /viescore/mllm_tools/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/gemini.py -------------------------------------------------------------------------------- /viescore/mllm_tools/idefics2_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/idefics2_eval.py -------------------------------------------------------------------------------- /viescore/mllm_tools/mantis_idefics2_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/mantis_idefics2_eval.py -------------------------------------------------------------------------------- /viescore/mllm_tools/minicpmv_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/minicpmv_eval.py -------------------------------------------------------------------------------- /viescore/mllm_tools/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/openai.py -------------------------------------------------------------------------------- /viescore/mllm_tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/mllm_tools/utils.py -------------------------------------------------------------------------------- /viescore/parse_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/parse_prompt.py -------------------------------------------------------------------------------- /viescore/prompts_raw/context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/context.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/context_no_delimit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/context_no_delimit.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/context_no_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/context_no_format.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/cig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/cig_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/control_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/control_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/mie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/mie_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/msdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/msdig_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/multi_subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/multi_subject_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/one_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/one_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/one_video_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/one_video_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/rule_PQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/rule_PQ.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/sdie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/sdie_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/sdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/sdig_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/subject_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/subject_image_edit_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/subject_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/t2i_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/t2i_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/t2v_rule_PQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/t2v_rule_PQ.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/t2v_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/t2v_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/tie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/tie_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_0shot/two_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_0shot/two_image_edit_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/cig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/cig_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/control_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/control_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/mie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/mie_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/msdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/msdig_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/multi_subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/multi_subject_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/one_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/one_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/rule_PQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/rule_PQ.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/sdie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/sdie_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/sdig_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/sdig_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/subject_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/subject_image_edit_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/subject_image_gen_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/subject_image_gen_rule.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/t2i_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/t2i_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/tie_rule_SC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/tie_rule_SC.txt -------------------------------------------------------------------------------- /viescore/prompts_raw/prompts_1shot/two_image_edit_rule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/prompts_raw/prompts_1shot/two_image_edit_rule.txt -------------------------------------------------------------------------------- /viescore/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/utils.py -------------------------------------------------------------------------------- /viescore/vie_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TIGER-AI-Lab/VIEScore/HEAD/viescore/vie_prompts.py --------------------------------------------------------------------------------