├── .gitignore ├── .idea ├── e2e-coref.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── conll.py ├── coref_kernels.cc ├── coref_kernels.so ├── coref_model.py ├── coref_ops.py ├── decoder.py ├── demo.py ├── evaluator.py ├── experiments.conf ├── filter_embeddings.py ├── get_char_vocab.py ├── html ├── deploy.sh ├── index.html ├── main.css ├── main.js └── query.cgi ├── launch.py ├── metrics.py ├── minimize.py ├── parameter_server.py ├── script.py ├── setup_all.sh ├── setup_pretrained.sh ├── setup_training.sh ├── singleton.py ├── test_ensemble.py ├── test_single.py ├── util.py ├── viz ├── .gitignore ├── index.html ├── main.js └── run.sh └── worker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/e2e-coref.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/.idea/e2e-coref.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/README.md -------------------------------------------------------------------------------- /conll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/conll.py -------------------------------------------------------------------------------- /coref_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/coref_kernels.cc -------------------------------------------------------------------------------- /coref_kernels.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/coref_kernels.so -------------------------------------------------------------------------------- /coref_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/coref_model.py -------------------------------------------------------------------------------- /coref_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/coref_ops.py -------------------------------------------------------------------------------- /decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/decoder.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/demo.py -------------------------------------------------------------------------------- /evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/evaluator.py -------------------------------------------------------------------------------- /experiments.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/experiments.conf -------------------------------------------------------------------------------- /filter_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/filter_embeddings.py -------------------------------------------------------------------------------- /get_char_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/get_char_vocab.py -------------------------------------------------------------------------------- /html/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/html/deploy.sh -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/html/index.html -------------------------------------------------------------------------------- /html/main.css: -------------------------------------------------------------------------------- 1 | .scrollable { 2 | max-height: 800px; 3 | overflow-y: auto; 4 | } 5 | -------------------------------------------------------------------------------- /html/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/html/main.js -------------------------------------------------------------------------------- /html/query.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/html/query.cgi -------------------------------------------------------------------------------- /launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/launch.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/metrics.py -------------------------------------------------------------------------------- /minimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/minimize.py -------------------------------------------------------------------------------- /parameter_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/parameter_server.py -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/script.py -------------------------------------------------------------------------------- /setup_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/setup_all.sh -------------------------------------------------------------------------------- /setup_pretrained.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/setup_pretrained.sh -------------------------------------------------------------------------------- /setup_training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/setup_training.sh -------------------------------------------------------------------------------- /singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/singleton.py -------------------------------------------------------------------------------- /test_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/test_ensemble.py -------------------------------------------------------------------------------- /test_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/test_single.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/util.py -------------------------------------------------------------------------------- /viz/.gitignore: -------------------------------------------------------------------------------- 1 | *.jsonlines 2 | -------------------------------------------------------------------------------- /viz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/viz/index.html -------------------------------------------------------------------------------- /viz/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/viz/main.js -------------------------------------------------------------------------------- /viz/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python -m SimpleHTTPServer 8080 4 | -------------------------------------------------------------------------------- /worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcxdgit/e2e-coref-old/HEAD/worker.py --------------------------------------------------------------------------------