├── .DS_Store ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── .DS_Store └── MEXMA.png ├── backbone └── block_diagonal_roberta.py ├── data.py ├── data ├── flores200 │ └── README.md └── train_data │ └── README.md ├── engine.py ├── evaluate.py ├── evaluation └── xsim │ └── README.md ├── losses └── koleo.py ├── main.py ├── model.py ├── requirements.txt └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/MEXMA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/assets/MEXMA.png -------------------------------------------------------------------------------- /backbone/block_diagonal_roberta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/backbone/block_diagonal_roberta.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/data.py -------------------------------------------------------------------------------- /data/flores200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/data/flores200/README.md -------------------------------------------------------------------------------- /data/train_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/data/train_data/README.md -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/engine.py -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/evaluate.py -------------------------------------------------------------------------------- /evaluation/xsim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/evaluation/xsim/README.md -------------------------------------------------------------------------------- /losses/koleo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/losses/koleo.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/mexma/HEAD/utils.py --------------------------------------------------------------------------------