-
Notifications
You must be signed in to change notification settings - Fork 653
New issue
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
PCA not showing progress bar on mean structure calculation #3773
Comments
Progress bar is shown for mean structure calculation when PSF_pca = pca.PCA(u, select='backbone', verbose=True) |
It would also be convenient for |
As per comments in #4531 :) Screenshots attached to show how the progress bar looks now, for PCA.transform():Current version of MDAnalysisWhich version are you using? (run python -c "import MDAnalysis as mda; print(mda.version)") 2.8.0-dev0 Code to reproduce the behavior
Testing the function logic in JupyterLab for the older MDA 2.7.0 version, in a different environmentCurrent version of MDAnalysisWhich version are you using? (run python -c "import MDAnalysis as mda; print(mda.version)") 2.7.0 |
For completeness, can you also demonstrate pca_space = PSF_pca.transform(atomgroup, n_components=n_pcs, verbose=True) in a notebook, please? |
Fixes #3773 Adds tqdm progress bar to the `pca.transform` method.
Expected behavior
Progress bar should be shown when computing mean structure for PCA when
verbose=True
.Actual behavior
Progress bar is shown for PCA calculation but not for mean structure calculation.
Code to reproduce the behavior
Current version of MDAnalysis
python -c "import MDAnalysis as mda; print(mda.__version__)"
) 2.3.0-dev0python -V
)? 3.10.4The text was updated successfully, but these errors were encountered: