Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
koheiw committed Aug 21, 2024
1 parent b74cd04 commit 6fdb999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lda.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void LDA::set_default_values() {
K = 100;
N = 0;
alpha = std::vector<double>(K, 0.5);
epsilon = std::vector<double>(K, 0);
epsilon = std::vector<double>(K, 0.0);
adjust = 0;
beta = std::vector<double>(K, 0.1);
max_iter = 2000;
Expand Down

0 comments on commit 6fdb999

Please sign in to comment.