├── README.md ├── bunny ├── bunny_utils │ ├── constants.py │ ├── conversation.py │ └── util │ │ ├── data_utils.py │ │ ├── mm_utils.py │ │ └── utils.py ├── config.yaml ├── configuration_bunny_phi.py ├── data_collator_bunny_phi.py ├── modeling_bunny_phi.py └── run_mdpo_bunny.py ├── data └── sample_data.json ├── figures └── image.png ├── mdpo_trainer.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/README.md -------------------------------------------------------------------------------- /bunny/bunny_utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/bunny_utils/constants.py -------------------------------------------------------------------------------- /bunny/bunny_utils/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/bunny_utils/conversation.py -------------------------------------------------------------------------------- /bunny/bunny_utils/util/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/bunny_utils/util/data_utils.py -------------------------------------------------------------------------------- /bunny/bunny_utils/util/mm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/bunny_utils/util/mm_utils.py -------------------------------------------------------------------------------- /bunny/bunny_utils/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/bunny_utils/util/utils.py -------------------------------------------------------------------------------- /bunny/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/config.yaml -------------------------------------------------------------------------------- /bunny/configuration_bunny_phi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/configuration_bunny_phi.py -------------------------------------------------------------------------------- /bunny/data_collator_bunny_phi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/data_collator_bunny_phi.py -------------------------------------------------------------------------------- /bunny/modeling_bunny_phi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/modeling_bunny_phi.py -------------------------------------------------------------------------------- /bunny/run_mdpo_bunny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/bunny/run_mdpo_bunny.py -------------------------------------------------------------------------------- /data/sample_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/data/sample_data.json -------------------------------------------------------------------------------- /figures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/figures/image.png -------------------------------------------------------------------------------- /mdpo_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/mdpo_trainer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luka-group/mDPO/HEAD/requirements.txt --------------------------------------------------------------------------------