├── .gitignore ├── README.md ├── bayes_opt.py ├── bilstm_tagger ├── License ├── README.md ├── langs │ ├── lang_canonic.txt │ └── lang_with_embeds.txt ├── results-UD1.3-pycnn.md ├── scripts │ └── submit-bilty-ud1.3.sh └── src │ ├── bilty.py │ ├── lib │ ├── __init__.py │ ├── mio.py │ └── mnnl.py │ ├── run_simple.py │ └── simplebilty.py ├── bist_parser ├── LICENSE ├── README.md ├── __init__.py ├── barchybrid │ └── src │ │ ├── arc_hybrid.py │ │ ├── parser.py │ │ ├── utils.py │ │ └── utils │ │ └── eval.pl └── bmstparser │ └── src │ ├── decoder.py │ ├── mstlstm.py │ ├── parser.py │ ├── util_scripts │ └── eval.pl │ └── utils.py ├── constants.py ├── data_utils.py ├── features.py ├── similarity.py ├── simpletagger.py └── task_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/README.md -------------------------------------------------------------------------------- /bayes_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bayes_opt.py -------------------------------------------------------------------------------- /bilstm_tagger/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/License -------------------------------------------------------------------------------- /bilstm_tagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/README.md -------------------------------------------------------------------------------- /bilstm_tagger/langs/lang_canonic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/langs/lang_canonic.txt -------------------------------------------------------------------------------- /bilstm_tagger/langs/lang_with_embeds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/langs/lang_with_embeds.txt -------------------------------------------------------------------------------- /bilstm_tagger/results-UD1.3-pycnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/results-UD1.3-pycnn.md -------------------------------------------------------------------------------- /bilstm_tagger/scripts/submit-bilty-ud1.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/scripts/submit-bilty-ud1.3.sh -------------------------------------------------------------------------------- /bilstm_tagger/src/bilty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/src/bilty.py -------------------------------------------------------------------------------- /bilstm_tagger/src/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bilstm_tagger/src/lib/mio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/src/lib/mio.py -------------------------------------------------------------------------------- /bilstm_tagger/src/lib/mnnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/src/lib/mnnl.py -------------------------------------------------------------------------------- /bilstm_tagger/src/run_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/src/run_simple.py -------------------------------------------------------------------------------- /bilstm_tagger/src/simplebilty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bilstm_tagger/src/simplebilty.py -------------------------------------------------------------------------------- /bist_parser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/LICENSE -------------------------------------------------------------------------------- /bist_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/README.md -------------------------------------------------------------------------------- /bist_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bist_parser/barchybrid/src/arc_hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/barchybrid/src/arc_hybrid.py -------------------------------------------------------------------------------- /bist_parser/barchybrid/src/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/barchybrid/src/parser.py -------------------------------------------------------------------------------- /bist_parser/barchybrid/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/barchybrid/src/utils.py -------------------------------------------------------------------------------- /bist_parser/barchybrid/src/utils/eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/barchybrid/src/utils/eval.pl -------------------------------------------------------------------------------- /bist_parser/bmstparser/src/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/bmstparser/src/decoder.py -------------------------------------------------------------------------------- /bist_parser/bmstparser/src/mstlstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/bmstparser/src/mstlstm.py -------------------------------------------------------------------------------- /bist_parser/bmstparser/src/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/bmstparser/src/parser.py -------------------------------------------------------------------------------- /bist_parser/bmstparser/src/util_scripts/eval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/bmstparser/src/util_scripts/eval.pl -------------------------------------------------------------------------------- /bist_parser/bmstparser/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/bist_parser/bmstparser/src/utils.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/constants.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/data_utils.py -------------------------------------------------------------------------------- /features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/features.py -------------------------------------------------------------------------------- /similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/similarity.py -------------------------------------------------------------------------------- /simpletagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/simpletagger.py -------------------------------------------------------------------------------- /task_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastianruder/learn-to-select-data/HEAD/task_utils.py --------------------------------------------------------------------------------