-
Notifications
You must be signed in to change notification settings - Fork 5
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
Restructure of MLTSA repo #15
Labels
enhancement
New feature or request
Comments
Current directory tree, shown as reference for later discussion .
├── CHANGELOG.txt
├── LICENSE.txt
├── MANIFEST.in
├── MLTSA.egg-info
│ ├── PKG-INFO
│ ├── SOURCES.txt
│ ├── dependency_links.txt
│ ├── requires.txt
│ └── top_level.txt
├── MLTSA_datasets
│ ├── MD_DATA
│ │ ├── CV_from_MD.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ └── CV_from_MD.cpython-38.pyc
│ │ └── testing_analysis.py
│ ├── MD_RUN
│ │ ├── MD_openMM_data.py
│ │ └── __init__.py
│ ├── OneD_pot
│ │ ├── LSTM_OneD.py
│ │ ├── OneD_pot_data.py
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ └── OneD_pot_data.cpython-38.pyc
│ ├── TwoD_pot
│ │ ├── README.md
│ │ ├── TwoD_pot_data.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ └── TwoD_pot_data.cpython-38.pyc
│ │ ├── feature_projector.py
│ │ ├── src
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-38.pyc
│ │ │ │ ├── dataprocess.cpython-38.pyc
│ │ │ │ ├── generateTraj.cpython-38.pyc
│ │ │ │ ├── projection.cpython-38.pyc
│ │ │ │ ├── spiral.cpython-38.pyc
│ │ │ │ ├── utils.cpython-38.pyc
│ │ │ │ └── zshape.cpython-38.pyc
│ │ │ ├── dataprocess.py
│ │ │ ├── generateTraj.py
│ │ │ ├── projection.py
│ │ │ ├── spiral.py
│ │ │ ├── utils.py
│ │ │ └── zshape.py
│ │ └── test
│ │ ├── data_process_test.ipynb
│ │ ├── data_projection_test.ipynb
│ │ ├── potential_gen_test.ipynb
│ │ └── trajectory_gen_test.ipynb
│ └── __init__.py
├── MLTSA_sklearn
│ ├── MLTSA_sk.py
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── MLTSA_sk.cpython-38.pyc
│ │ └── models.cpython-38.pyc
│ └── models.py
├── MLTSA_tensorflow
│ ├── MLTSA_tf.py
│ ├── TF_2_LSTM.py
│ ├── TF_2_MLP.py
│ ├── TF_2_RNN.py
│ ├── TF_old_LSTM.py
│ ├── TF_old_MLP.py
│ ├── __init__.py
│ └── __pycache__
│ ├── MLTSA_tf.cpython-38.pyc
│ ├── TF_2_LSTM.cpython-38.pyc
│ ├── TF_2_MLP.cpython-38.pyc
│ ├── TF_2_RNN.cpython-38.pyc
│ ├── TF_old_LSTM.cpython-38.pyc
│ └── TF_old_MLP.cpython-38.pyc
├── README.rst
├── __init__.py
├── docs
│ ├── Makefile
│ ├── build
│ │ ├── doctrees
│ │ │ ├── _autosummary
│ │ │ │ ├── CV_from_MD.doctree
│ │ │ │ ├── MLTSA_sk.doctree
│ │ │ │ ├── MLTSA_tf.doctree
│ │ │ │ ├── OneD_pot_data.doctree
│ │ │ │ ├── TF_2_LSTM.doctree
│ │ │ │ ├── TF_2_MLP.doctree
│ │ │ │ ├── TF_2_RNN.doctree
│ │ │ │ ├── TF_old_LSTM.doctree
│ │ │ │ ├── TF_old_MLP.doctree
│ │ │ │ ├── TwoD_pot_data.doctree
│ │ │ │ └── models.doctree
│ │ │ ├── demos
│ │ │ │ ├── MD_data_analysis.doctree
│ │ │ │ ├── MLTSA_through_time.doctree
│ │ │ │ ├── MLTSA_vs_Feature_Permutation.doctree
│ │ │ │ ├── NaCl_ex.doctree
│ │ │ │ ├── OneD_MLP_example.doctree
│ │ │ │ ├── OneD_MLTSA_sklearn.doctree
│ │ │ │ ├── OneD_MLTSA_tensorflow.doctree
│ │ │ │ ├── example.doctree
│ │ │ │ └── testing_TF_architectures.doctree
│ │ │ ├── environment.pickle
│ │ │ ├── examples.doctree
│ │ │ ├── index.doctree
│ │ │ ├── nbsphinx
│ │ │ │ ├── demos
│ │ │ │ │ ├── MD_data_analysis.ipynb
│ │ │ │ │ ├── MLTSA_through_time.ipynb
│ │ │ │ │ ├── MLTSA_vs_Feature_Permutation.ipynb
│ │ │ │ │ ├── NaCl_ex.ipynb
│ │ │ │ │ ├── OneD_MLP_example.ipynb
│ │ │ │ │ ├── OneD_MLTSA_sklearn.ipynb
│ │ │ │ │ ├── OneD_MLTSA_tensorflow.ipynb
│ │ │ │ │ ├── example.ipynb
│ │ │ │ │ └── testing_TF_architectures.ipynb
│ │ │ │ ├── demos_MLTSA_through_time_14_1.png
│ │ │ │ ├── demos_MLTSA_through_time_14_2.png
│ │ │ │ ├── demos_MLTSA_through_time_15_1.png
│ │ │ │ ├── demos_MLTSA_through_time_16_1.png
│ │ │ │ ├── demos_MLTSA_through_time_7_1.png
│ │ │ │ ├── demos_MLTSA_through_time_7_2.png
│ │ │ │ ├── demos_MLTSA_through_time_8_1.png
│ │ │ │ ├── demos_MLTSA_through_time_9_0.png
│ │ │ │ ├── demos_MLTSA_through_time_9_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_2.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_3.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_4.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_0.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_2.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_3.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_4.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_5.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_16_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_28_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_30_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_30_2.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_7_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_7_2.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_7_3.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_0.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_1.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_2.png
│ │ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_3.png
│ │ │ │ ├── demos_OneD_MLTSA_sklearn_14_1.png
│ │ │ │ ├── demos_OneD_MLTSA_sklearn_26_1.png
│ │ │ │ ├── demos_OneD_MLTSA_sklearn_28_1.png
│ │ │ │ ├── demos_OneD_MLTSA_sklearn_28_2.png
│ │ │ │ ├── demos_OneD_MLTSA_sklearn_6_1.png
│ │ │ │ ├── demos_OneD_MLTSA_sklearn_9_1.png
│ │ │ │ ├── demos_OneD_MLTSA_tensorflow_14_1.png
│ │ │ │ ├── demos_OneD_MLTSA_tensorflow_17_1.png
│ │ │ │ ├── demos_OneD_MLTSA_tensorflow_19_1.png
│ │ │ │ └── demos_OneD_MLTSA_tensorflow_19_2.png
│ │ │ ├── onedfunctions.doctree
│ │ │ ├── sklearnfunctions.doctree
│ │ │ ├── summary.doctree
│ │ │ ├── tffunctions.doctree
│ │ │ ├── trajanalysis.doctree
│ │ │ ├── twodpots.doctree
│ │ │ └── twodpots_source.doctree
│ │ └── html
│ │ ├── _autosummary
│ │ │ ├── CV_from_MD.html
│ │ │ ├── MLTSA_sk.html
│ │ │ ├── MLTSA_tf.html
│ │ │ ├── OneD_pot_data.html
│ │ │ ├── TF_2_LSTM.html
│ │ │ ├── TF_2_MLP.html
│ │ │ ├── TF_2_RNN.html
│ │ │ ├── TF_old_LSTM.html
│ │ │ ├── TF_old_MLP.html
│ │ │ ├── TwoD_pot_data.html
│ │ │ └── models.html
│ │ ├── _images
│ │ │ ├── demos_MLTSA_through_time_14_1.png
│ │ │ ├── demos_MLTSA_through_time_14_2.png
│ │ │ ├── demos_MLTSA_through_time_15_1.png
│ │ │ ├── demos_MLTSA_through_time_16_1.png
│ │ │ ├── demos_MLTSA_through_time_7_1.png
│ │ │ ├── demos_MLTSA_through_time_7_2.png
│ │ │ ├── demos_MLTSA_through_time_8_1.png
│ │ │ ├── demos_MLTSA_through_time_9_0.png
│ │ │ ├── demos_MLTSA_through_time_9_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_2.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_3.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_12_4.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_0.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_2.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_3.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_4.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_13_5.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_16_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_28_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_30_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_30_2.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_7_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_7_2.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_7_3.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_0.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_1.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_2.png
│ │ │ ├── demos_MLTSA_vs_Feature_Permutation_8_3.png
│ │ │ ├── demos_OneD_MLTSA_sklearn_14_1.png
│ │ │ ├── demos_OneD_MLTSA_sklearn_26_1.png
│ │ │ ├── demos_OneD_MLTSA_sklearn_28_1.png
│ │ │ ├── demos_OneD_MLTSA_sklearn_28_2.png
│ │ │ ├── demos_OneD_MLTSA_sklearn_6_1.png
│ │ │ ├── demos_OneD_MLTSA_sklearn_9_1.png
│ │ │ ├── demos_OneD_MLTSA_tensorflow_14_1.png
│ │ │ ├── demos_OneD_MLTSA_tensorflow_17_1.png
│ │ │ ├── demos_OneD_MLTSA_tensorflow_19_1.png
│ │ │ └── demos_OneD_MLTSA_tensorflow_19_2.png
│ │ ├── _sources
│ │ │ ├── _autosummary
│ │ │ │ ├── CV_from_MD.rst.txt
│ │ │ │ ├── MLTSA_sk.rst.txt
│ │ │ │ ├── MLTSA_tf.rst.txt
│ │ │ │ ├── OneD_pot_data.rst.txt
│ │ │ │ ├── TF_2_LSTM.rst.txt
│ │ │ │ ├── TF_2_MLP.rst.txt
│ │ │ │ ├── TF_2_RNN.rst.txt
│ │ │ │ ├── TF_old_LSTM.rst.txt
│ │ │ │ ├── TF_old_MLP.rst.txt
│ │ │ │ ├── TwoD_pot_data.rst.txt
│ │ │ │ └── models.rst.txt
│ │ │ ├── demos
│ │ │ │ ├── MD_data_analysis.ipynb.txt
│ │ │ │ ├── MLTSA_through_time.ipynb.txt
│ │ │ │ ├── MLTSA_vs_Feature_Permutation.ipynb.txt
│ │ │ │ ├── NaCl_ex.ipynb.txt
│ │ │ │ ├── OneD_MLP_example.ipynb.txt
│ │ │ │ ├── OneD_MLTSA_sklearn.ipynb.txt
│ │ │ │ ├── OneD_MLTSA_tensorflow.ipynb.txt
│ │ │ │ ├── example.ipynb.txt
│ │ │ │ └── testing_TF_architectures.ipynb.txt
│ │ │ ├── examples.rst.txt
│ │ │ ├── index.rst.txt
│ │ │ ├── onedfunctions.rst.txt
│ │ │ ├── sklearnfunctions.rst.txt
│ │ │ ├── summary.rst.txt
│ │ │ ├── tffunctions.rst.txt
│ │ │ ├── trajanalysis.rst.txt
│ │ │ ├── twodpots.rst.txt
│ │ │ └── twodpots_source.rst.txt
│ │ ├── _static
│ │ │ ├── basic.css
│ │ │ ├── css
│ │ │ │ ├── badge_only.css
│ │ │ │ ├── fonts
│ │ │ │ │ ├── Roboto-Slab-Bold.woff
│ │ │ │ │ ├── Roboto-Slab-Bold.woff2
│ │ │ │ │ ├── Roboto-Slab-Regular.woff
│ │ │ │ │ ├── Roboto-Slab-Regular.woff2
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ │ ├── lato-bold-italic.woff
│ │ │ │ │ ├── lato-bold-italic.woff2
│ │ │ │ │ ├── lato-bold.woff
│ │ │ │ │ ├── lato-bold.woff2
│ │ │ │ │ ├── lato-normal-italic.woff
│ │ │ │ │ ├── lato-normal-italic.woff2
│ │ │ │ │ ├── lato-normal.woff
│ │ │ │ │ └── lato-normal.woff2
│ │ │ │ └── theme.css
│ │ │ ├── doctools.js
│ │ │ ├── documentation_options.js
│ │ │ ├── file.png
│ │ │ ├── jquery-3.5.1.js
│ │ │ ├── jquery.js
│ │ │ ├── js
│ │ │ │ ├── badge_only.js
│ │ │ │ ├── html5shiv-printshiv.min.js
│ │ │ │ ├── html5shiv.min.js
│ │ │ │ └── theme.js
│ │ │ ├── language_data.js
│ │ │ ├── minus.png
│ │ │ ├── plus.png
│ │ │ ├── pygments.css
│ │ │ ├── searchtools.js
│ │ │ ├── underscore-1.12.0.js
│ │ │ └── underscore.js
│ │ ├── demos
│ │ │ ├── MD_data_analysis.html
│ │ │ ├── MD_data_analysis.ipynb
│ │ │ ├── MLTSA_through_time.html
│ │ │ ├── MLTSA_through_time.ipynb
│ │ │ ├── MLTSA_vs_Feature_Permutation.html
│ │ │ ├── MLTSA_vs_Feature_Permutation.ipynb
│ │ │ ├── NaCl_ex.html
│ │ │ ├── NaCl_ex.ipynb
│ │ │ ├── OneD_MLP_example.html
│ │ │ ├── OneD_MLP_example.ipynb
│ │ │ ├── OneD_MLTSA_sklearn.html
│ │ │ ├── OneD_MLTSA_sklearn.ipynb
│ │ │ ├── OneD_MLTSA_tensorflow.html
│ │ │ ├── OneD_MLTSA_tensorflow.ipynb
│ │ │ ├── example.html
│ │ │ ├── example.ipynb
│ │ │ ├── testing_TF_architectures.html
│ │ │ └── testing_TF_architectures.ipynb
│ │ ├── examples.html
│ │ ├── genindex.html
│ │ ├── index.html
│ │ ├── objects.inv
│ │ ├── onedfunctions.html
│ │ ├── py-modindex.html
│ │ ├── search.html
│ │ ├── searchindex.js
│ │ ├── sklearnfunctions.html
│ │ ├── summary.html
│ │ ├── tffunctions.html
│ │ ├── trajanalysis.html
│ │ ├── twodpots.html
│ │ └── twodpots_source.html
│ ├── make.bat
│ ├── requirements.txt
│ └── source
│ ├── _autosummary
│ │ ├── CV_from_MD.rst
│ │ ├── MLTSA_sk.rst
│ │ ├── MLTSA_tf.rst
│ │ ├── OneD_pot_data.rst
│ │ ├── TF_2_LSTM.rst
│ │ ├── TF_2_MLP.rst
│ │ ├── TF_2_RNN.rst
│ │ ├── TF_old_LSTM.rst
│ │ ├── TF_old_MLP.rst
│ │ └── models.rst
│ ├── _templates
│ │ ├── custom-class-template.rst
│ │ └── custom-model-template.rst
│ ├── conf.py
│ ├── demos
│ │ ├── MD_data_analysis.ipynb
│ │ ├── MLTSA_through_time.ipynb
│ │ ├── MLTSA_vs_Feature_Permutation.ipynb
│ │ ├── NaCl_ex.ipynb
│ │ ├── OneD_MLP_example.ipynb
│ │ ├── OneD_MLTSA_sklearn.ipynb
│ │ ├── OneD_MLTSA_tensorflow.ipynb
│ │ ├── example.ipynb
│ │ └── testing_TF_architectures.ipynb
│ ├── examples.rst
│ ├── index.rst
│ ├── onedfunctions.rst
│ ├── sklearnfunctions.rst
│ ├── summary.rst
│ ├── tffunctions.rst
│ ├── trajanalysis.rst
│ ├── twodpots.rst
│ └── twodpots_source.rst
├── notebooks
│ ├── MD_data_analysis.ipynb
│ ├── MLTSA_through_time.ipynb
│ ├── MLTSA_vs_Feature_Permutation.ipynb
│ ├── NaCl_ex.ipynb
│ ├── OneD_MLP_example.ipynb
│ ├── OneD_MLTSA_sklearn.ipynb
│ ├── OneD_MLTSA_tensorflow.ipynb
│ └── testing_TF_architectures.ipynb
├── requirements.txt
└── setup.py
39 directories, 333 files |
directory tree without detailed file .
├── MLTSA.egg-info
├── MLTSA_datasets
│ ├── MD_DATA
│ │ └── __pycache__
│ ├── MD_RUN
│ ├── OneD_pot
│ │ └── __pycache__
│ └── TwoD_pot
│ ├── __pycache__
│ ├── src
│ │ └── __pycache__
│ └── test
├── MLTSA_sklearn
│ └── __pycache__
├── MLTSA_tensorflow
│ └── __pycache__
├── docs
│ ├── build
│ │ ├── doctrees
│ │ │ ├── _autosummary
│ │ │ ├── demos
│ │ │ └── nbsphinx
│ │ │ └── demos
│ │ └── html
│ │ ├── _autosummary
│ │ ├── _images
│ │ ├── _sources
│ │ │ ├── _autosummary
│ │ │ └── demos
│ │ ├── _static
│ │ └── demos
│ └── source
│ ├── _autosummary
│ ├── _templates
│ └── demos
└── notebooks |
After July 6th's discussion with pedro, those following things should be noted:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Per pedro's idea, the project management of MLTSA repository should be strengthen, by restructing the files in MLTSA repo.
Following the basic blueprint of aim analysis, this issue would discuss the following things:
from MLTSA import dataset
, then usedataset.functions
, avoid deep importing structure asfrom MLTSA.dataset.twoDdata.generator import ...
The text was updated successfully, but these errors were encountered: