├── .gitignore ├── .hgignore ├── README ├── README.batch ├── TODO ├── data ├── README ├── dev-partition.txt.gz ├── one-sentence-per-line.pl └── train-partition.txt.gz └── scripts ├── combine.pl ├── conlleval.pl ├── deprecated ├── to_crfsuite-with-brown.py ├── to_crfsuite-with-embeddings-and-brown.py ├── to_crfsuite-with-embeddings.py └── to_crfsuite.py ├── to_crfsuite.py └── train-and-evaluate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/.hgignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/README -------------------------------------------------------------------------------- /README.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/README.batch -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | Baseline 2 | Brown 3 | C&W 4 | HLBL 5 | 6 | 7 | No pos 8 | Conjunctions 9 | All brown levels 10 | -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/data/README -------------------------------------------------------------------------------- /data/dev-partition.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/data/dev-partition.txt.gz -------------------------------------------------------------------------------- /data/one-sentence-per-line.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/data/one-sentence-per-line.pl -------------------------------------------------------------------------------- /data/train-partition.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/data/train-partition.txt.gz -------------------------------------------------------------------------------- /scripts/combine.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/combine.pl -------------------------------------------------------------------------------- /scripts/conlleval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/conlleval.pl -------------------------------------------------------------------------------- /scripts/deprecated/to_crfsuite-with-brown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/deprecated/to_crfsuite-with-brown.py -------------------------------------------------------------------------------- /scripts/deprecated/to_crfsuite-with-embeddings-and-brown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/deprecated/to_crfsuite-with-embeddings-and-brown.py -------------------------------------------------------------------------------- /scripts/deprecated/to_crfsuite-with-embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/deprecated/to_crfsuite-with-embeddings.py -------------------------------------------------------------------------------- /scripts/deprecated/to_crfsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/deprecated/to_crfsuite.py -------------------------------------------------------------------------------- /scripts/to_crfsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/to_crfsuite.py -------------------------------------------------------------------------------- /scripts/train-and-evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turian/crfchunking-with-wordrepresentations/HEAD/scripts/train-and-evaluate.py --------------------------------------------------------------------------------