-
-
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
[MRG] Lda training visualization in visdom #1399
Merged
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
bb65439
save log params in a dict
parulsethi 9d2e78d
remove redundant line
parulsethi 33818ec
add diff log
parulsethi 281222c
remove diff log
parulsethi c507bbb
write params to log directory
parulsethi 6f75ccc
add convergence, remove alpha
parulsethi d9db4e2
calculate perplexity/diff instead of using log function
parulsethi cd5f822
add docstrings and comments
parulsethi f4728e0
add coherence/diff labels in graphs
parulsethi 40cf092
Merge branch 'develop' of https://github.com/RaRe-Technologies/gensim…
parulsethi d4f69f5
optional measures for viz
parulsethi fde7d4d
add coherence params to lda init
parulsethi 3f18076
added Lda Visom viz notebook
parulsethi 546908e
add option to specify env
parulsethi 651a61a
made requested changes
parulsethi 13dfddc
Merge branch 'develop' of https://github.com/RaRe-Technologies/gensim…
parulsethi 1376d90
add generic callback API
parulsethi 44c8e58
modified Notebook for new API
parulsethi 92949a3
fix flake8
parulsethi 5b22e4d
correct lee corpus division
parulsethi c369fc5
added docstrings
parulsethi a32960d
fix flake8
parulsethi 48526d9
add shell example
parulsethi adf2a60
fix queue import for both py2/py3
parulsethi a272090
store metrics in model instance
parulsethi d3389bb
add nb example for getting metrics after train
parulsethi 96949f7
merge develop
parulsethi 7d0f0ec
made rquested changes
parulsethi dcc64a1
use dict for saving metrics
parulsethi 47434f9
use str method for metric classes
parulsethi 30c9b64
correct a notebook description
parulsethi e55af47
remove child-classes str method
parulsethi df5e01f
made requested changes
parulsethi b334c50
Merge branch 'develop' into tensorboard_logs
parulsethi c54e6bf
add visdom screenshot
parulsethi 5f3d902
Merge branch 'tensorboard_logs' of https://github.com/parulsethi/gens…
parulsethi 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
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.
By default, if you have no
method
in child-class, this method will be called fromparent
class -> no need to call__str__
from each callback explicitly.