We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54e45ec commit 8b481cfCopy full SHA for 8b481cf
fbgemm_gpu/src/tbe/eeg/indices_estimator.cpp
@@ -163,16 +163,12 @@ ZipfParameters IndicesEstimator::zipfParams(
163
164
if ((ratio < kHeavyHitterLowerBound_) ||
165
(ratio > kHeavyHitterUpperBound_)) {
166
- std::cout << "Skipping (s,q) (" << s << ", " << q
167
- << "): " << " inconsistent with heavy hitters!" << "\n";
168
continue;
169
}
170
171
double logLikelihood = -zipfTotalFreq * log(normalizeConst) +
172
s * freqTerm - kQRegularizer_ * q;
173
if (logLikelihood > maxLogLikelihood) {
174
- std::cout << "Found best Log likelihood so far on (s,q) (" << s << ", "
175
- << q << "): " << logLikelihood << "\n";
176
maxLogLikelihood = logLikelihood;
177
zipfParams.q = q;
178
zipfParams.s = s;
0 commit comments