├── .DS_Store ├── README.md ├── assets ├── data_format.md └── teaser.png ├── data └── tournament-v0 │ ├── config.json │ ├── gpt_prompts │ ├── n1_d0342.txt │ ├── n1_d2.txt │ ├── n1_d3.txt │ ├── n1_d4.txt │ ├── n1_rgb_d013.txt │ ├── n4_d0.txt │ ├── n4_full.txt │ ├── n4_rgb_d013.txt │ └── n9_d1.txt │ └── prompts.json ├── gpt_eval_alpha.py └── utils ├── glide_elo.py ├── gpt4v_utils.py ├── image_utils.py └── t23d_tournament.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/README.md -------------------------------------------------------------------------------- /assets/data_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/assets/data_format.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /data/tournament-v0/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/config.json -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n1_d0342.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n1_d0342.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n1_d2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n1_d2.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n1_d3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n1_d3.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n1_d4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n1_d4.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n1_rgb_d013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n1_rgb_d013.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n4_d0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n4_d0.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n4_full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n4_full.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n4_rgb_d013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n4_rgb_d013.txt -------------------------------------------------------------------------------- /data/tournament-v0/gpt_prompts/n9_d1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/gpt_prompts/n9_d1.txt -------------------------------------------------------------------------------- /data/tournament-v0/prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/data/tournament-v0/prompts.json -------------------------------------------------------------------------------- /gpt_eval_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/gpt_eval_alpha.py -------------------------------------------------------------------------------- /utils/glide_elo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/utils/glide_elo.py -------------------------------------------------------------------------------- /utils/gpt4v_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/utils/gpt4v_utils.py -------------------------------------------------------------------------------- /utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/utils/image_utils.py -------------------------------------------------------------------------------- /utils/t23d_tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3DTopia/GPTEval3D/HEAD/utils/t23d_tournament.py --------------------------------------------------------------------------------