-
-
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
Fix epsilon according to dtype in LdaModel #1770
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
db1ce0f
add type check + adopt eps for different dtypes
menshikh-iv 5f56a1c
fix typo
menshikh-iv 488dfd1
improve readability
menshikh-iv e4e96e4
move mapping to module level, remove duplication
menshikh-iv 3d46db8
fix typo + remove duplication
menshikh-iv 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -286,6 +286,9 @@ def __init__(self, corpus=None, num_topics=100, id2word=None, | |
>>> lda = LdaModel(corpus, num_topics=50, alpha='auto', eval_every=5) # train asymmetric alpha from data | ||
|
||
""" | ||
if dtype not in {np.float16, np.float32, np.float64}: | ||
raise ValueError("Incorrect 'dtype', please choice one of numpy.float16, numpy.float32 or numpy.float64") | ||
|
||
self.dtype = dtype | ||
|
||
# store user-supplied parameters | ||
|
@@ -498,7 +501,8 @@ def inference(self, chunk, collect_sstats=False): | |
# The optimal phi_{dwk} is proportional to expElogthetad_k * expElogbetad_w. | ||
# phinorm is the normalizer. | ||
# TODO treat zeros explicitly, instead of adding 1e-100? | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should update comment too: |
||
phinorm = np.dot(expElogthetad, expElogbetad) + 1e-100 | ||
eps = 1e-100 if self.dtype == np.float64 else (1e-35 if self.dtype == np.float32 else 1e-5) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Easier to read and maintain as a mapping? dtype_to_eps = {
np.float64: 1e-100,
np.float32: 1e-35,
np.float16: 1e-5,
} And then also |
||
phinorm = np.dot(expElogthetad, expElogbetad) + eps | ||
|
||
# Iterate between gamma and phi until convergence | ||
for _ in xrange(self.iterations): | ||
|
@@ -509,7 +513,7 @@ def inference(self, chunk, collect_sstats=False): | |
gammad = self.alpha + expElogthetad * np.dot(cts / phinorm, expElogbetad.T) | ||
Elogthetad = dirichlet_expectation(gammad) | ||
expElogthetad = np.exp(Elogthetad) | ||
phinorm = np.dot(expElogthetad, expElogbetad) + 1e-100 | ||
phinorm = np.dot(expElogthetad, expElogbetad) + eps | ||
# If gamma hasn't changed much, we're done. | ||
meanchange = np.mean(abs(gammad - lastgamma)) | ||
if meanchange < self.gamma_threshold: | ||
|
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.
choice
=>choose