Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

15.4 Train a music recommender -- NameError: name 'model_input' is not defined #80

Open
mikechen66 opened this issue May 12, 2020 · 0 comments

Comments

@mikechen66
Copy link

It show NameError: name 'model_input' is not defined.

1. Lines of Code

class WordSplitter(object):
    def __init__(self, filename):
        self.filename = filename
 
    def __iter__(self):
        with open(self.filename) as fin:
            for line in fin:
                yield line.split()

model = gensim.models.Word2Vec(model_input, min_count=4)

2. NameError Message


NameError Traceback (most recent call last)
in
8 yield line.split()
9
---> 10 model = gensim.models.Word2Vec(model_input, min_count=4)

NameError: name 'model_input' is not defined

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant