Once again, thank you for the wonderful work.
I hope to switch over to Stepmix from MPlus, but a few tests that my group uses to evaluate models with different numbers of classes aren't yet in the package, and I was curious about the roadmap.
In the future, are there plans to add other inference measures to the stepmix class? I am thinking in particular of other IC and LRT-type stats:
-
Sample-size adjusted BIC, e.g., -2 * model.score(X) * X.shape[0] + model.n_parameters * np.log((X.shape[0] + 2) / 24)
-
CAIC, e.g., -2 * model.score(X) * X.shape[0] + model.n_parameters * (np.log(X.shape[0]) + 1)
-
Bootstrap likelihood ratio test (BLRT). E.g., page 543 of https://doi.org/10.1080/10705510701575396
-
Possibly also the Lo–Mendell–Rubin (LMR) and/or Vuong–Lo–Mendell–Rubin (VLMR) tests.
The IC stats are simple enough to implement, but the BLRT would take a little time.
Thanks again
Once again, thank you for the wonderful work.
I hope to switch over to Stepmix from MPlus, but a few tests that my group uses to evaluate models with different numbers of classes aren't yet in the package, and I was curious about the roadmap.
In the future, are there plans to add other inference measures to the stepmix class? I am thinking in particular of other IC and LRT-type stats:
Sample-size adjusted BIC, e.g.,
-2 * model.score(X) * X.shape[0] + model.n_parameters * np.log((X.shape[0] + 2) / 24)CAIC, e.g.,
-2 * model.score(X) * X.shape[0] + model.n_parameters * (np.log(X.shape[0]) + 1)Bootstrap likelihood ratio test (BLRT). E.g., page 543 of https://doi.org/10.1080/10705510701575396
Possibly also the Lo–Mendell–Rubin (LMR) and/or Vuong–Lo–Mendell–Rubin (VLMR) tests.
The IC stats are simple enough to implement, but the BLRT would take a little time.
Thanks again