Skip to content

Commit

Permalink
fix to bug in test code for FixedScaleComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
danpovey committed Mar 8, 2016
1 parent a8f029d commit 5ad542f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nnet3/nnet-test-utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ static void GenerateRandomComponentConfig(std::string *component_type,
}
case 12: {
*component_type = "FixedScaleComponent";
os << "dim=" << RandInt(1, 100);
os << "dim=" << RandInt(1, 100) << " scale=" << RandInt(1, 10);
break;
}
case 13: {
Expand Down

0 comments on commit 5ad542f

Please sign in to comment.