Skip to content

Commit

Permalink
Revert the fix for the issue happened when performing ModelFinder on …
Browse files Browse the repository at this point in the history
…Q-Mixtures with same number of classes.
  • Loading branch information
thomaskf committed Jun 12, 2024
1 parent 6f1c4a8 commit d8e64b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion model/modelmixture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1595,7 +1595,8 @@ void ModelMixture::setCheckpoint(Checkpoint *checkpoint) {
}

void ModelMixture::startCheckpoint() {
checkpoint->startStruct("ModelMixture" + convertIntToString(getNMixtures()) + "_" + getName());
checkpoint->startStruct("ModelMixture" + convertIntToString(getNMixtures()));
// checkpoint->startStruct("ModelMixture" + convertIntToString(getNMixtures()) + "_" + getName());
}

void ModelMixture::saveCheckpoint() {
Expand Down

0 comments on commit d8e64b5

Please sign in to comment.