├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── code ├── attention_lstm.py ├── blstm.py ├── convNet.py ├── crawl │ ├── README.md │ ├── crawl.py │ └── run_crawl.sh ├── domain_embeddings.py ├── draw.py ├── drawNormal.py ├── drawVariable.py ├── elsevier_util.py ├── eval.py ├── extract.py ├── extras.py ├── reader.py ├── representation.py ├── skip-thoughts │ ├── README_docClassifier.txt │ └── TomKenter-siamese-cbow-faf752ef6a99 │ │ ├── PREDS │ │ └── train+dev+test.out │ │ ├── docClassify.py │ │ ├── docRepresenter2.py │ │ ├── makeOutputFileName.py │ │ ├── ppdbutils │ │ ├── makeVocab.sh │ │ └── ppdbUtils.py │ │ ├── runDoClassifier.py │ │ ├── siamese-cbow.py │ │ ├── siamese_cbowUtils.py │ │ ├── stack5.py │ │ ├── vocabUtils.py │ │ └── wordEmbeddings.py ├── stack5.py ├── stackedLearner.py └── writeout.py ├── requirements.txt ├── scripts ├── README.md ├── eval.py ├── eval_py27.py ├── scienceie2017_scripts.zip ├── util.py └── xml_utils.py └── scripts_submission ├── blstm_configs.txt ├── run_blstm.sh ├── run_cnn1.sh ├── run_cnn2.sh ├── run_stacker1.sh ├── run_stacker2.sh └── run_stacker3.sh /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/README.md -------------------------------------------------------------------------------- /code/attention_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/attention_lstm.py -------------------------------------------------------------------------------- /code/blstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/blstm.py -------------------------------------------------------------------------------- /code/convNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/convNet.py -------------------------------------------------------------------------------- /code/crawl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/crawl/README.md -------------------------------------------------------------------------------- /code/crawl/crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/crawl/crawl.py -------------------------------------------------------------------------------- /code/crawl/run_crawl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/crawl/run_crawl.sh -------------------------------------------------------------------------------- /code/domain_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/domain_embeddings.py -------------------------------------------------------------------------------- /code/draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/draw.py -------------------------------------------------------------------------------- /code/drawNormal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/drawNormal.py -------------------------------------------------------------------------------- /code/drawVariable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/drawVariable.py -------------------------------------------------------------------------------- /code/elsevier_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/elsevier_util.py -------------------------------------------------------------------------------- /code/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/eval.py -------------------------------------------------------------------------------- /code/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/extract.py -------------------------------------------------------------------------------- /code/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/extras.py -------------------------------------------------------------------------------- /code/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/reader.py -------------------------------------------------------------------------------- /code/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/representation.py -------------------------------------------------------------------------------- /code/skip-thoughts/README_docClassifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/README_docClassifier.txt -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/PREDS/train+dev+test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/PREDS/train+dev+test.out -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/docClassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/docClassify.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/docRepresenter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/docRepresenter2.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/makeOutputFileName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/makeOutputFileName.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/ppdbutils/makeVocab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/ppdbutils/makeVocab.sh -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/ppdbutils/ppdbUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/ppdbutils/ppdbUtils.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/runDoClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/runDoClassifier.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/siamese-cbow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/siamese-cbow.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/siamese_cbowUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/siamese_cbowUtils.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/stack5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/stack5.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/vocabUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/vocabUtils.py -------------------------------------------------------------------------------- /code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/wordEmbeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/skip-thoughts/TomKenter-siamese-cbow-faf752ef6a99/wordEmbeddings.py -------------------------------------------------------------------------------- /code/stack5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/stack5.py -------------------------------------------------------------------------------- /code/stackedLearner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/stackedLearner.py -------------------------------------------------------------------------------- /code/writeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/code/writeout.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts/eval.py -------------------------------------------------------------------------------- /scripts/eval_py27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts/eval_py27.py -------------------------------------------------------------------------------- /scripts/scienceie2017_scripts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts/scienceie2017_scripts.zip -------------------------------------------------------------------------------- /scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts/util.py -------------------------------------------------------------------------------- /scripts/xml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts/xml_utils.py -------------------------------------------------------------------------------- /scripts_submission/blstm_configs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/blstm_configs.txt -------------------------------------------------------------------------------- /scripts_submission/run_blstm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/run_blstm.sh -------------------------------------------------------------------------------- /scripts_submission/run_cnn1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/run_cnn1.sh -------------------------------------------------------------------------------- /scripts_submission/run_cnn2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/run_cnn2.sh -------------------------------------------------------------------------------- /scripts_submission/run_stacker1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/run_stacker1.sh -------------------------------------------------------------------------------- /scripts_submission/run_stacker2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/run_stacker2.sh -------------------------------------------------------------------------------- /scripts_submission/run_stacker3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UKPLab/semeval2017-scienceie/HEAD/scripts_submission/run_stacker3.sh --------------------------------------------------------------------------------