Skip to content

Commit

Permalink
print log less frequently
Browse files Browse the repository at this point in the history
  • Loading branch information
zeyiwen committed Jun 21, 2018
1 parent 574318b commit a114e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/thundersvm/solver/csmosolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ CSMOSolver::solve(const KernelMatrix &k_mat, const SyncArray<int> &y, SyncArray<
second_last_local_diff = last_local_diff;
last_local_diff = diff_data[0];

//if (iter % 100 == 0)
if (iter % 100 == 0)
LOG(INFO) << "global iter = " << iter << ", total local iter = " << local_iter << ", diff = "
<< diff_data[0];
//todo find some other ways to deal unchanged diff
Expand Down

0 comments on commit a114e8b

Please sign in to comment.