fastai/courses

NotJSONError in wordvectors.ipynb

markdyousef opened this issue · 1 comments

When trying to open the wordvectors notebook I receive the following:

Unreadable Notebook: /home/mark/projects/fastai/courses/deeplearning1/nbs/wordvectors.ipynb NotJSONError('Notebook does not appear to be JSON: \'{\\n "cells": [\\n {\\n "cell_type": "c...',)

There is a new line character between line 52 and 53. So you can fix it by opening the file with vi (or any kind of text editing tool) and changing from:

Line 52: "This section shows how we processed the original glove text files. However, there's no need for you to do this, since we provide the [pre-
Line 53: processed glove data](files.fast.ai/models/glove)."

to

Line 52: "This section shows how we processed the original glove text files. However, there's no need for you to do this, since we provide the [pre-processed glove data](files.fast.ai/models/glove)."