Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wiltonwu committed Sep 23, 2020
1 parent 09a9ccf commit c44f01e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mlio-py/mlio/contrib/insights/column_analyzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ void Column_analyzer::analyze(const mlio::Example &example) const

Column_analysis &stats = (*columns_)[feature_idx];

// Used to update the mean and median.
// Used to update the mean.
// We do this here to aggregate several entries together and avoid
// potential numerical problems updating the mean a single entry at a
// time. For median, we assume input is randomized and
// time.
double numeric_column_sum = 0.0;
std::size_t numeric_column_count = 0.0;

Expand Down

0 comments on commit c44f01e

Please sign in to comment.