Skip to content

Commit

Permalink
Increase buffer sizes
Browse files Browse the repository at this point in the history
Overflows were causing errors during computations.
  • Loading branch information
gmrukwa committed Jun 4, 2018
1 parent ca2617d commit 595af84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GMM/ms_gmm/ms_gmm_params.m
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@

% Buf_size_split_Par - size of the buffer for computing GMM paramters of
% splitters
Buf_size_split_Par=10;
Buf_size_split_Par=20;

% Buf_size_seg_Par - size of the buffer for computing GMM paramters of
% segments
Buf_size_seg_Par=30;
Buf_size_seg_Par=60;

% eps_Par - parameter for EM iterations - tolerance for mixture parameters
% change
Expand Down

1 comment on commit 595af84

@gmrukwa
Copy link
Contributor Author

@gmrukwa gmrukwa commented on 595af84 Jun 5, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.