We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I ran the code block
its = pyemma.msm.its(cluster.dtrajs, lags=50, nits=10, errors='bayes') pyemma.plots.plot_implied_timescales(its, units='ns', dt=0.1);
It show "estimating BayesianMSM: 80%" and I ran it multiple times but it just fluctuated between 50%-90% and never reach 100%.
Can anyone help on this?
The text was updated successfully, but these errors were encountered:
Try this: its = pyemma.msm.its(cluster.dtrajs, lags=50, nits=6, errors="bayes" , n_jobs = 1) pyemma.plots.plot_implied_timescales(its, units='ns', dt=0.1);
n_jobs is ambiguous in this case. Hope this helps.
Sorry, something went wrong.
No branches or pull requests
When I ran the code block
its = pyemma.msm.its(cluster.dtrajs, lags=50, nits=10, errors='bayes')
pyemma.plots.plot_implied_timescales(its, units='ns', dt=0.1);
It show "estimating BayesianMSM: 80%" and I ran it multiple times but it just fluctuated between 50%-90% and never reach 100%.
Can anyone help on this?
The text was updated successfully, but these errors were encountered: