From c9cb7f995072ac990799994f1e2b62828d7e6b27 Mon Sep 17 00:00:00 2001 From: "Robert L. Logan IV" Date: Thu, 16 Jan 2020 15:05:25 -0800 Subject: [PATCH] Update README.md (#57) * Update README.md * Attempt to fix ImportError issue in CI build * Move from trusty to xenial --- .travis.yml | 2 +- README.md | 1 + build_tools/travis/install.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 78776b7..cd5a737 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ sudo: false -dist: trusty +dist: xenial language: python cache: diff --git a/README.md b/README.md index bdec8d2..fb97478 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ KGLM is trained on the *Linked WikiText-2* dataset which can be downloaded at ht Additionally, you will need embeddings for entities/relations in the [Wikidata](https://www.wikidata.org/) knowledge graph, as well as access to the knowledge graph itself (in order to look up entity aliases/related entities). For convenience, we provide pre-trained embeddings and pickled dictionaries containing the relevant portions of Wikidata [here](https://drive.google.com/file/d/1odypT9EDwtAYqzvRYnA2B_97hN_BWFnr/view?usp=sharing). +If you would like to apply our annotation pipeline to your own data, please refer to: https://github.com/rloganiv/kglm-data. Training --- diff --git a/build_tools/travis/install.sh b/build_tools/travis/install.sh index f1ef22f..034ee77 100644 --- a/build_tools/travis/install.sh +++ b/build_tools/travis/install.sh @@ -34,7 +34,7 @@ then chmod +x miniconda.sh && ./miniconda.sh -b -f conda update --yes conda echo "Creating environment to run tests in." - conda create -q -n testenv --yes python="$PYTHON_VERSION" + conda create -q -n testenv --yes python=3.6.9 fi cd .. popd