├── .gitignore ├── LICENSE ├── README.md └── automation ├── README.md ├── data.csv ├── generate.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yejun688/iccv-2025-oral-papers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yejun688/iccv-2025-oral-papers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yejun688/iccv-2025-oral-papers/HEAD/README.md -------------------------------------------------------------------------------- /automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yejun688/iccv-2025-oral-papers/HEAD/automation/README.md -------------------------------------------------------------------------------- /automation/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yejun688/iccv-2025-oral-papers/HEAD/automation/data.csv -------------------------------------------------------------------------------- /automation/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yejun688/iccv-2025-oral-papers/HEAD/automation/generate.py -------------------------------------------------------------------------------- /automation/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas --------------------------------------------------------------------------------