├── .DS_Store ├── README.md ├── code ├── .DS_Store ├── MMPareto.py ├── dataset │ ├── .DS_Store │ └── av_dataset.py ├── min_norm_solvers.py ├── models │ ├── .DS_Store │ ├── backbone.py │ └── models.py ├── one_joint_loss.py ├── script │ ├── .DS_Store │ ├── mmpareto.sh │ ├── one_joint_loss.sh │ └── uniform_baseline.sh ├── uniform_baseline.py └── utils │ ├── __pycache__ │ ├── cca_core.cpython-39.pyc │ └── utils.cpython-39.pyc │ └── utils.py └── pics └── teaser.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/README.md -------------------------------------------------------------------------------- /code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/.DS_Store -------------------------------------------------------------------------------- /code/MMPareto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/MMPareto.py -------------------------------------------------------------------------------- /code/dataset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/dataset/.DS_Store -------------------------------------------------------------------------------- /code/dataset/av_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/dataset/av_dataset.py -------------------------------------------------------------------------------- /code/min_norm_solvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/min_norm_solvers.py -------------------------------------------------------------------------------- /code/models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/models/.DS_Store -------------------------------------------------------------------------------- /code/models/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/models/backbone.py -------------------------------------------------------------------------------- /code/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/models/models.py -------------------------------------------------------------------------------- /code/one_joint_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/one_joint_loss.py -------------------------------------------------------------------------------- /code/script/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/script/.DS_Store -------------------------------------------------------------------------------- /code/script/mmpareto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/script/mmpareto.sh -------------------------------------------------------------------------------- /code/script/one_joint_loss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/script/one_joint_loss.sh -------------------------------------------------------------------------------- /code/script/uniform_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/script/uniform_baseline.sh -------------------------------------------------------------------------------- /code/uniform_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/uniform_baseline.py -------------------------------------------------------------------------------- /code/utils/__pycache__/cca_core.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/utils/__pycache__/cca_core.cpython-39.pyc -------------------------------------------------------------------------------- /code/utils/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/utils/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /code/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/code/utils/utils.py -------------------------------------------------------------------------------- /pics/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GeWu-Lab/MMPareto_ICML2024/HEAD/pics/teaser.jpg --------------------------------------------------------------------------------