├── .gitignore ├── CODE_OF_CONDUCT.md ├── Data_Format.txt ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── _config.yml ├── css ├── academicons.css ├── academicons.min.css ├── bootstrap-grid.css ├── bootstrap-grid.css.map ├── bootstrap-grid.min.css ├── bootstrap-grid.min.css.map ├── bootstrap-reboot.css ├── bootstrap-reboot.css.map ├── bootstrap-reboot.min.css ├── bootstrap-reboot.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── bootstrap.min.css.map ├── fa-all.css ├── main.css └── scrolling-nav.css ├── evaluation ├── README.md ├── Unicoder_prediction_on_XGLUE_dev │ ├── MLQA │ │ ├── ar.prediction │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── hi.prediction │ │ ├── vi.prediction │ │ └── zh.prediction │ ├── NC │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ └── ru.prediction │ ├── NER │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ └── nl.prediction │ ├── NTG │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ └── ru.prediction │ ├── PAWSX │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ └── fr.prediction │ ├── POS │ │ ├── ar.prediction │ │ ├── bg.prediction │ │ ├── de.prediction │ │ ├── el.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── hi.prediction │ │ ├── it.prediction │ │ ├── nl.prediction │ │ ├── pl.prediction │ │ ├── pt.prediction │ │ ├── ru.prediction │ │ ├── th.prediction │ │ ├── tr.prediction │ │ ├── ur.prediction │ │ ├── vi.prediction │ │ └── zh.prediction │ ├── QADSM │ │ ├── de.prediction │ │ ├── en.prediction │ │ └── fr.prediction │ ├── QAM │ │ ├── de.prediction │ │ ├── en.prediction │ │ └── fr.prediction │ ├── QG │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── it.prediction │ │ └── pt.prediction │ ├── WPR │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── it.prediction │ │ ├── pt.prediction │ │ └── zh.prediction │ └── XNLI │ │ ├── ar.prediction │ │ ├── bg.prediction │ │ ├── de.prediction │ │ ├── el.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── hi.prediction │ │ ├── ru.prediction │ │ ├── sw.prediction │ │ ├── th.prediction │ │ ├── tr.prediction │ │ ├── ur.prediction │ │ ├── vi.prediction │ │ └── zh.prediction ├── Unicoder_prediction_on_XGLUE_test │ ├── MLQA │ │ ├── ar.prediction │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── hi.prediction │ │ ├── vi.prediction │ │ └── zh.prediction │ ├── NC │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ └── ru.prediction │ ├── NER │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ └── nl.prediction │ ├── NTG │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ └── ru.prediction │ ├── PAWSX │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ └── zh.prediction │ ├── POS │ │ ├── ar.prediction │ │ ├── bg.prediction │ │ ├── de.prediction │ │ ├── el.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── hi.prediction │ │ ├── it.prediction │ │ ├── nl.prediction │ │ ├── pl.prediction │ │ ├── pt.prediction │ │ ├── ru.prediction │ │ ├── th.prediction │ │ ├── tr.prediction │ │ ├── ur.prediction │ │ ├── vi.prediction │ │ └── zh.prediction │ ├── QADSM │ │ ├── de.prediction │ │ ├── en.prediction │ │ └── fr.prediction │ ├── QAM │ │ ├── de.prediction │ │ ├── en.prediction │ │ └── fr.prediction │ ├── QG │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── it.prediction │ │ └── pt.prediction │ ├── WPR │ │ ├── de.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── it.prediction │ │ ├── pt.prediction │ │ └── zh.prediction │ └── XNLI │ │ ├── ar.prediction │ │ ├── bg.prediction │ │ ├── de.prediction │ │ ├── el.prediction │ │ ├── en.prediction │ │ ├── es.prediction │ │ ├── fr.prediction │ │ ├── hi.prediction │ │ ├── ru.prediction │ │ ├── sw.prediction │ │ ├── th.prediction │ │ ├── tr.prediction │ │ ├── ur.prediction │ │ ├── vi.prediction │ │ └── zh.prediction ├── evaluation_results_unicoder_dev.txt ├── evaluation_results_unicoder_eval.txt ├── mlqa_evaluation_v1.py └── xglue_evaluate.py ├── fonts ├── academicons.eot ├── academicons.svg ├── academicons.ttf ├── academicons.woff ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff ├── img ├── MarcoIcon.75.whiteBack.png ├── MarcoIcon.png ├── MarcoLogo.small.png ├── MarcoLogo_nav_grey.png ├── MarcoLogo_nav_white.png ├── MicrosoftLogo.bak.png ├── MicrosoftLogo.png ├── chenyan.jpg ├── daniel.png ├── favicon.ico ├── favicon.png ├── icon.75.png ├── mir.jpg ├── rangan.jpg ├── saurabh.jpg ├── seanyang.jpg ├── tong.jpg ├── tri.jpg └── xia.jpg ├── index.html ├── js ├── bootstrap.bundle.js ├── bootstrap.bundle.js.map ├── bootstrap.bundle.min.js ├── bootstrap.bundle.min.js.map ├── bootstrap.js ├── bootstrap.js.map ├── bootstrap.min.js ├── bootstrap.min.js.map ├── jquery.easing.compatibility.js ├── jquery.easing.js ├── jquery.easing.min.js ├── jquery.js ├── jquery.min.js ├── jquery.min.map ├── jquery.slim.js ├── jquery.slim.min.js ├── jquery.slim.min.map └── scrolling-nav.js ├── webfonts ├── fa-brands-400.eot ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400.woff2 ├── fa-regular-400.eot ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400.woff2 ├── fa-solid-900.eot ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900.woff2 ├── xglue_overview1.png └── xglue_overview2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Data_Format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/Data_Format.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/_config.yml -------------------------------------------------------------------------------- /css/academicons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/academicons.css -------------------------------------------------------------------------------- /css/academicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/academicons.min.css -------------------------------------------------------------------------------- /css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-grid.css -------------------------------------------------------------------------------- /css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /css/fa-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/fa-all.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/main.css -------------------------------------------------------------------------------- /css/scrolling-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/css/scrolling-nav.css -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/ar.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/ar.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/hi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/hi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/vi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/vi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/MLQA/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NC/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NC/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NC/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NC/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NC/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NC/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NC/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NC/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NC/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NC/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NER/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NER/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NER/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NER/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NER/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NER/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NER/nl.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NER/nl.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/NTG/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/PAWSX/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/ar.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/ar.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/bg.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/bg.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/el.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/el.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/hi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/hi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/it.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/it.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/nl.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/nl.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/pl.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/pl.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/pt.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/pt.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/th.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/th.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/tr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/tr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/ur.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/ur.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/vi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/vi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/POS/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/POS/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QADSM/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QADSM/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QADSM/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QADSM/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QADSM/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QADSM/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QAM/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QAM/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QAM/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QAM/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QAM/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QAM/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QG/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QG/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QG/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QG/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QG/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QG/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QG/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QG/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QG/it.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QG/it.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/QG/pt.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/QG/pt.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/it.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/it.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/pt.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/pt.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/WPR/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/ar.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/ar.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/bg.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/bg.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/el.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/el.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/hi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/hi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/sw.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/sw.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/th.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/th.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/tr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/tr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/ur.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/ur.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/vi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/vi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_dev/XNLI/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/ar.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/ar.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/hi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/hi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/vi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/vi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/MLQA/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NC/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NC/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NC/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NC/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NC/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NC/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NC/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NC/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NC/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NC/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NER/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NER/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NER/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NER/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NER/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NER/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NER/nl.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NER/nl.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NTG/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NTG/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NTG/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NTG/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NTG/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NTG/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NTG/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NTG/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/NTG/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/NTG/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/PAWSX/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/ar.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/ar.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/bg.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/bg.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/el.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/el.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/hi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/hi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/it.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/it.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/nl.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/nl.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/pl.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/pl.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/pt.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/pt.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/th.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/th.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/tr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/tr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/ur.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/ur.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/vi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/vi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/POS/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/POS/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QADSM/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QADSM/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QADSM/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QADSM/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QADSM/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QADSM/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QAM/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QAM/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QAM/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QAM/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QAM/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QAM/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QG/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QG/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QG/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QG/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QG/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QG/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QG/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QG/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QG/it.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QG/it.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/QG/pt.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/QG/pt.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/it.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/it.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/pt.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/pt.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/WPR/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/WPR/zh.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/ar.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/ar.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/bg.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/bg.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/de.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/de.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/el.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/el.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/en.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/en.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/es.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/es.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/fr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/fr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/hi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/hi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/ru.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/ru.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/sw.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/sw.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/th.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/th.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/tr.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/tr.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/ur.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/ur.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/vi.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/vi.prediction -------------------------------------------------------------------------------- /evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/zh.prediction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/Unicoder_prediction_on_XGLUE_test/XNLI/zh.prediction -------------------------------------------------------------------------------- /evaluation/evaluation_results_unicoder_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/evaluation_results_unicoder_dev.txt -------------------------------------------------------------------------------- /evaluation/evaluation_results_unicoder_eval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/evaluation_results_unicoder_eval.txt -------------------------------------------------------------------------------- /evaluation/mlqa_evaluation_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/mlqa_evaluation_v1.py -------------------------------------------------------------------------------- /evaluation/xglue_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/evaluation/xglue_evaluate.py -------------------------------------------------------------------------------- /fonts/academicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/academicons.eot -------------------------------------------------------------------------------- /fonts/academicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/academicons.svg -------------------------------------------------------------------------------- /fonts/academicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/academicons.ttf -------------------------------------------------------------------------------- /fonts/academicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/academicons.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /img/MarcoIcon.75.whiteBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MarcoIcon.75.whiteBack.png -------------------------------------------------------------------------------- /img/MarcoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MarcoIcon.png -------------------------------------------------------------------------------- /img/MarcoLogo.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MarcoLogo.small.png -------------------------------------------------------------------------------- /img/MarcoLogo_nav_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MarcoLogo_nav_grey.png -------------------------------------------------------------------------------- /img/MarcoLogo_nav_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MarcoLogo_nav_white.png -------------------------------------------------------------------------------- /img/MicrosoftLogo.bak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MicrosoftLogo.bak.png -------------------------------------------------------------------------------- /img/MicrosoftLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/MicrosoftLogo.png -------------------------------------------------------------------------------- /img/chenyan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/chenyan.jpg -------------------------------------------------------------------------------- /img/daniel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/daniel.png -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/icon.75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/icon.75.png -------------------------------------------------------------------------------- /img/mir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/mir.jpg -------------------------------------------------------------------------------- /img/rangan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/rangan.jpg -------------------------------------------------------------------------------- /img/saurabh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/saurabh.jpg -------------------------------------------------------------------------------- /img/seanyang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/seanyang.jpg -------------------------------------------------------------------------------- /img/tong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/tong.jpg -------------------------------------------------------------------------------- /img/tri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/tri.jpg -------------------------------------------------------------------------------- /img/xia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/img/xia.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.js.map -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /js/jquery.easing.compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.easing.compatibility.js -------------------------------------------------------------------------------- /js/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.easing.js -------------------------------------------------------------------------------- /js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.easing.min.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.min.map -------------------------------------------------------------------------------- /js/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.slim.js -------------------------------------------------------------------------------- /js/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.slim.min.js -------------------------------------------------------------------------------- /js/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/jquery.slim.min.map -------------------------------------------------------------------------------- /js/scrolling-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/js/scrolling-nav.js -------------------------------------------------------------------------------- /webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /xglue_overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/xglue_overview1.png -------------------------------------------------------------------------------- /xglue_overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/XGLUE/HEAD/xglue_overview2.png --------------------------------------------------------------------------------