Skip to content

Conversation

@danpovey
Copy link
Contributor

No description provided.

int32 OnlineIvectorExtractionInfo::ExpectedFeatureDim() const {
int32 num_splice = 1 + splice_opts.left_context + splice_opts.right_context,
full_dim = lda_mat.NumCols();
if (!(full_dim % num_splice == 0) || (full_dim % num_splice == 1)) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Should be: if (!(full_dim % num_splice == 0 || full_dim % num_splice == 1)) {

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Thanks !!! Fixing

@francisr
Copy link
Contributor

francisr commented Feb 3, 2020

Is there anything that prevents merging this?

@danpovey
Copy link
Contributor Author

danpovey commented Feb 3, 2020

sorry, I thought I had already merged it. Merging now.

@danpovey danpovey merged commit 98f2edf into master Feb 3, 2020
@kkm000 kkm000 deleted the ivector_dim_fix branch June 27, 2020 07:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

3 participants