Skip to content

Commit

Permalink
Fix path to data
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr Katrutsa committed Nov 3, 2019
1 parent 44edd4c commit 2ac0456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectures/svd_part1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@
],
"source": [
"documents = []\n",
"with open(\"./test_articles.txt\",\"r\") as fin:\n",
"with open(\"./data/test_articles.txt\",\"r\") as fin:\n",
" for line in fin.readlines():\n",
" text = line.strip()\n",
" documents.append(text)\n",
Expand Down

0 comments on commit 2ac0456

Please sign in to comment.