├── README.md └── bin ├── basic ├── extract_dev_from_ptb.sh ├── extract_test_from_brown.sh ├── extract_test_from_ptb.sh ├── extract_train_from_ptb.sh ├── get_data.sh ├── make-brown-test.sh ├── make-devset.sh ├── make-trainset.sh └── make-wsj-test.sh ├── compute_transition_probs.py ├── convert-bilou-single-field.py ├── convert-bio.sh ├── eval ├── extract_conll_parse_file.py └── extract_conll_prop_file.py └── preprocess_conll05_sdeps.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/README.md -------------------------------------------------------------------------------- /bin/basic/extract_dev_from_ptb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/extract_dev_from_ptb.sh -------------------------------------------------------------------------------- /bin/basic/extract_test_from_brown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/extract_test_from_brown.sh -------------------------------------------------------------------------------- /bin/basic/extract_test_from_ptb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/extract_test_from_ptb.sh -------------------------------------------------------------------------------- /bin/basic/extract_train_from_ptb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/extract_train_from_ptb.sh -------------------------------------------------------------------------------- /bin/basic/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/get_data.sh -------------------------------------------------------------------------------- /bin/basic/make-brown-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/make-brown-test.sh -------------------------------------------------------------------------------- /bin/basic/make-devset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/make-devset.sh -------------------------------------------------------------------------------- /bin/basic/make-trainset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/make-trainset.sh -------------------------------------------------------------------------------- /bin/basic/make-wsj-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/basic/make-wsj-test.sh -------------------------------------------------------------------------------- /bin/compute_transition_probs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/compute_transition_probs.py -------------------------------------------------------------------------------- /bin/convert-bilou-single-field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/convert-bilou-single-field.py -------------------------------------------------------------------------------- /bin/convert-bio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/convert-bio.sh -------------------------------------------------------------------------------- /bin/eval/extract_conll_parse_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/eval/extract_conll_parse_file.py -------------------------------------------------------------------------------- /bin/eval/extract_conll_prop_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/eval/extract_conll_prop_file.py -------------------------------------------------------------------------------- /bin/preprocess_conll05_sdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strubell/preprocess-conll05/HEAD/bin/preprocess_conll05_sdeps.sh --------------------------------------------------------------------------------