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
Problem in "Coursera-Deep-Learning/Natural Language Processing with Probabilistic Models/Week 2 - Part of Speech Tagging and Hidden Markov Models/C2_W2_Assignment.ipynb"
#4
Open
Aayush2542001 opened this issue
Jun 24, 2022
· 0 comments
Exercise 07:
Replace line
pred[m - 1] = states[k]
with
pred[m - 1] = states[z[m - 1]]
and line
for i in range(len(corpus) - 1, -1, -1):
with
for i in range(len(corpus) - 1, 0, -1):
The text was updated successfully, but these errors were encountered: