relevant-search-book icon indicating copy to clipboard operation
relevant-search-book copied to clipboard

Typo in Chapter 8 notebook

Open consulthys opened this issue 9 years ago • 1 comments

In the Search-As-You-Type, Completion, and Suggestion (Elasticsearch).ipynb notebook, the two following typos (file name + path) needs to be corrected:

movies=pickle.load(open("../../movies_list.p","rb"))

should read

movies=pickle.load(open("../movies.p","rb"))

consulthys avatar Dec 23 '15 08:12 consulthys

movies=pickle.load(open("../movies.p","rb")) on Windows system it shoud be movies=pickle.load(open("../movies.p","r"))

yyi avatar Aug 29 '19 02:08 yyi