-
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
Tagging #50
Merged
Merged
Tagging #50
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Owner
zseder
commented
Mar 24, 2015
- input is in one-word-per-line format, output is the same, with tags
- lot of changes around generators in order not to read the whole corpus into memory
- eval and tagger now separated
- floatX instead of simple float for embedding reading to be compatible with gpus
- resetting Fscore computation when get_score is called
and added precision
modified: hunvec/datasets/word_tagger_dataset.py yield data sentence by sentence instead of reading into memory if not needed (useful for tagging; for training, we need all sentences)
modified: hunvec/datasets/word_tagger_dataset.py no need for reading everything into memory, dataset will contain data
for tagging
Conflicts: hunvec/seqtag/tagger.py
modified: hunvec/seqtag/sequence_tagger.py modified: hunvec/seqtag/tagger.py tagging preparation should have been done transparently
modified: hunvec/datasets/word_tagger_dataset.py modified: hunvec/seqtag/sequence_tagger.py modified: hunvec/seqtag/tagger.py modified: hunvec/utils/fscore.py one step closer: WordTaggerDataset is prepared for converting corpus sentence by sentence
modified: hunvec/seqtag/sequence_tagger.py modified: hunvec/seqtag/tagger.py tagging is now working for the first time tag_seq generator had to be removed, tagging sentence by sentence is introduced instead, but everybody is happy now
bugfix with self.A
float32 vectors from embeddings
theano floatX
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.