-
Notifications
You must be signed in to change notification settings - Fork 4
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
evaluation of short sentences #96
Comments
I changed line 138 of word_tagger_dataset.py (if len(word) < 3; continue to if len(word)< 1, continue), when tring to train in the resulted dataset I got the error below Traceback (most recent call last): HINT: Re-running with most Theano optimization disabled could give you a back-trace of when this node was created. This can be done with by setting the Theano flag 'optimizer=fast_compile'. If that does not work, Theano optimizations can be disabled with 'optimizer=None'. |
I think Theano/Theano#3276 will solve the issue, so only an update of theano is needed, but still testing... |
solved in #102 |
currently while preparing datasets very short sentences are dropped.
even if training is not possible with them the test data could contain them so that test results are reliable
The text was updated successfully, but these errors were encountered: