├── LICENSE ├── README.md ├── figs ├── mmcbench.png └── radar.png ├── image2text ├── README.md ├── architecture.py ├── download_data.sh ├── evaluate.py └── utils.py ├── requirements.txt ├── speech2text ├── README.md ├── architecture.py ├── download_data.sh ├── evaluate.py └── utils.py ├── text2image ├── README.md ├── architecture.py ├── data │ ├── heavy_corrupted_hard_1k.csv │ ├── heavy_corrupted_random_1k.csv │ ├── light_corrupted_hard_1k.csv │ └── light_corrupted_random_1k.csv └── evaluate.py └── text2speech ├── README.md ├── architecture.py ├── data ├── heavy_corrupted_hard_1k.csv ├── heavy_corrupted_random_1k.csv ├── light_corrupted_hard_1k.csv └── light_corrupted_random_1k.csv ├── evaluate.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/README.md -------------------------------------------------------------------------------- /figs/mmcbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/figs/mmcbench.png -------------------------------------------------------------------------------- /figs/radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/figs/radar.png -------------------------------------------------------------------------------- /image2text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/image2text/README.md -------------------------------------------------------------------------------- /image2text/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/image2text/architecture.py -------------------------------------------------------------------------------- /image2text/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/image2text/download_data.sh -------------------------------------------------------------------------------- /image2text/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/image2text/evaluate.py -------------------------------------------------------------------------------- /image2text/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/image2text/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/requirements.txt -------------------------------------------------------------------------------- /speech2text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/speech2text/README.md -------------------------------------------------------------------------------- /speech2text/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/speech2text/architecture.py -------------------------------------------------------------------------------- /speech2text/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/speech2text/download_data.sh -------------------------------------------------------------------------------- /speech2text/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/speech2text/evaluate.py -------------------------------------------------------------------------------- /speech2text/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/speech2text/utils.py -------------------------------------------------------------------------------- /text2image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/README.md -------------------------------------------------------------------------------- /text2image/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/architecture.py -------------------------------------------------------------------------------- /text2image/data/heavy_corrupted_hard_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/data/heavy_corrupted_hard_1k.csv -------------------------------------------------------------------------------- /text2image/data/heavy_corrupted_random_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/data/heavy_corrupted_random_1k.csv -------------------------------------------------------------------------------- /text2image/data/light_corrupted_hard_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/data/light_corrupted_hard_1k.csv -------------------------------------------------------------------------------- /text2image/data/light_corrupted_random_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/data/light_corrupted_random_1k.csv -------------------------------------------------------------------------------- /text2image/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2image/evaluate.py -------------------------------------------------------------------------------- /text2speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/README.md -------------------------------------------------------------------------------- /text2speech/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/architecture.py -------------------------------------------------------------------------------- /text2speech/data/heavy_corrupted_hard_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/data/heavy_corrupted_hard_1k.csv -------------------------------------------------------------------------------- /text2speech/data/heavy_corrupted_random_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/data/heavy_corrupted_random_1k.csv -------------------------------------------------------------------------------- /text2speech/data/light_corrupted_hard_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/data/light_corrupted_hard_1k.csv -------------------------------------------------------------------------------- /text2speech/data/light_corrupted_random_1k.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/data/light_corrupted_random_1k.csv -------------------------------------------------------------------------------- /text2speech/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/evaluate.py -------------------------------------------------------------------------------- /text2speech/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sail-sg/MMCBench/HEAD/text2speech/utils.py --------------------------------------------------------------------------------