You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you! I am having that exact problem while running that nb in jupyter on a server. I'll try making that change to my notebook. Also, #37 was just merged which made some substantial changes to nb 5 but I'm going to stick to the old one for the moment so I can directly follow along with the lecture.
At least in the Google Colab version doc, the line below points to a file that doesn't exist and thus causes an error:
wiki_itos = pickle.load(open(Config().model_path()/'wt103-1/itos_wt103.pkl', 'rb'))
Quick fix is to change the name of directory as shown below:
wiki_itos = pickle.load(open(Config().model_path()/'wt103-fwd/itos_wt103.pkl', 'rb'))
Hope this helps!
The text was updated successfully, but these errors were encountered: