From 7acbcb03ad392c8e744c1660fea6cdd2ac5dc0c9 Mon Sep 17 00:00:00 2001 From: Andrey Zimovnov Date: Sun, 26 Aug 2018 13:55:35 +0300 Subject: [PATCH] link to utils --- project/utils.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/project/utils.py b/project/utils.py index 2c557d34..2e91b7ad 100644 --- a/project/utils.py +++ b/project/utils.py @@ -52,7 +52,9 @@ def load_embeddings(embeddings_path): # remove this when you're done raise NotImplementedError( - "Open utils.py and fill with your code or copy its contents to Jupyter cell and fill in the gaps!") + "Open utils.py and fill with your code OR copy its contents " + "(https://github.com/hse-aml/natural-language-processing/blob/master/project/utils.py) " + "to Jupyter cell and fill in the gaps (e.g. on Google Colab)!") def question_to_vec(question, embeddings, dim): @@ -66,7 +68,9 @@ def question_to_vec(question, embeddings, dim): # remove this when you're done raise NotImplementedError( - "Open utils.py and fill with your code or copy its contents to Jupyter cell and fill in the gaps!") + "Open utils.py and fill with your code OR copy its contents " + "(https://github.com/hse-aml/natural-language-processing/blob/master/project/utils.py) " + "to Jupyter cell and fill in the gaps! (e.g. on Google Colab)") def unpickle_file(filename):