Skip to content
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

Finish inference_gendb. #220

Merged
merged 9 commits into from
Oct 4, 2024
Prev Previous commit
Clarify outer iteration in logging statement.
emilyfertig committed Oct 4, 2024
commit c3617bf37c6e0350503ee4a103cec82bf3a5cb42
2 changes: 1 addition & 1 deletion cxx/inference.cc
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@ void inference_gendb(std::mt19937* prng, GenDB* gendb, int iters,
clock_t t_begin = clock();
for (int i = 0; i < iters; ++i) {
// TRANSITION HIRM
printf("Starting iteration %d, model score = %f\n", i + 1,
printf("Starting outer iteration %d, model score = %f\n", i + 1,
gendb->logp_score());
inference_hirm(prng, gendb->hirm, hirm_iters_per_entity_iter, timeout,
verbose);