-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
LsiModel.docs_processed attribute #763
Merged
Merged
Changes from 15 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b673991
user smart_open before smart_extension or projection.save or lsi.save
cc2474a
add debug print to logger and use __name__ logger
c7491d7
fix plot and make_tfidf
12d9c76
Use LsiModel.num_documents_processed to keep track of num_documents_p…
b84719a
Merge branch 'develop' of github.com:RaRe-Technologies/gensim into tp
7d5a7c2
python 2.6-compatible format
02dc50c
num_documents_processed => docs_processed
cd78a03
test should fail
4208045
get the corpus shape too
b5dcdc8
shape for test.mm is Nx9
35b3077
fix tests, add more, and lint
6313234
lint test_lsimodel.py
30a54eb
coerce to tuple to compar np arrays
1b63366
revert unrelated logger.debug(docid)
1f9b04b
respond to Lev comment
0d9ad8a
respond to piskvorky comment
a5a799f
not sure where to add line for PR, so added to ver 0.13.2 (no git tag…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove import if no longer needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Side Note: There are many more unused imports throughout gensim. They can be dangerous to remove, though, for someone like me unfamiliar with the internals of those packages being imported. For example
import seaborn
has side-effects, and obviouslyfrom future import division
does too.