├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── main.yml │ └── publish-test-results.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── CITATION.cff ├── CLA ├── Entropy_CLA.pdf └── Entropy_CLA_Corporate.pdf ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Versioning.md ├── entropylab ├── __init__.py ├── cli │ ├── __init__.py │ ├── cli.md │ ├── main.py │ └── tests │ │ ├── __init__.py │ │ └── test_main.py ├── components │ ├── __init__.py │ ├── instrument_driver.py │ ├── lab_model.py │ ├── lab_topology.py │ ├── qcodes_adapter.py │ ├── readme.md │ └── tests │ │ ├── __init__.py │ │ ├── test_qcodes_dummy.py │ │ ├── test_qcodes_dummy_lab.py │ │ └── test_resources.py ├── config.py ├── conftest.py ├── dashboard │ ├── __init__.py │ ├── app.py │ ├── assets │ │ ├── dashboard.css │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── entropy_icon.svg │ │ │ ├── entropy_logo.svg │ │ │ ├── entropy_logo_dark.svg │ │ │ ├── favicon.png │ │ │ └── favicon.svg │ │ └── params.css │ ├── pages │ │ ├── __init__.py │ │ ├── components │ │ │ ├── __init__.py │ │ │ ├── footer.py │ │ │ └── top_bar.py │ │ ├── params │ │ │ ├── __init__.py │ │ │ ├── callbacks.py │ │ │ ├── layout.py │ │ │ └── utils.py │ │ └── results │ │ │ ├── __init__.py │ │ │ ├── auto_plot.py │ │ │ ├── callbacks.py │ │ │ ├── dashboard_data.py │ │ │ ├── layout.py │ │ │ └── table.py │ ├── readme.md │ ├── tests │ │ ├── .entropy │ │ │ ├── entropy.db │ │ │ ├── entropy.hdf5.bak │ │ │ ├── hdf5 │ │ │ │ ├── 1.hdf5 │ │ │ │ ├── 2.hdf5 │ │ │ │ ├── 3.hdf5 │ │ │ │ ├── 4.hdf5 │ │ │ │ ├── 5.hdf5 │ │ │ │ └── 6.hdf5 │ │ │ └── params.json │ │ ├── in_process_param_store.json │ │ ├── test_auto_plot.py │ │ └── test_dashboard.py │ └── theme.py ├── flame │ └── readme.md ├── logger.py ├── pipeline │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── data_reader.py │ │ ├── data_writer.py │ │ ├── errors.py │ │ ├── execution.py │ │ ├── experiment.py │ │ ├── graph.py │ │ ├── memory_reader_writer.py │ │ ├── plot.py │ │ └── tests │ │ │ └── test_tinydb_persistence.py │ ├── graph_experiment.py │ ├── params │ │ ├── __init__.py │ │ ├── param_store.py │ │ ├── persistence │ │ │ ├── __init__.py │ │ │ ├── migrations.py │ │ │ ├── persistence.py │ │ │ ├── sqlalchemy │ │ │ │ ├── __init__.py │ │ │ │ ├── alembic.ini │ │ │ │ ├── alembic │ │ │ │ │ ├── README.md │ │ │ │ │ ├── env.py │ │ │ │ │ ├── script.py.mako │ │ │ │ │ └── versions │ │ │ │ │ │ └── 2022-08-23-15-01-32_000c6a88457f_initial_migration.py │ │ │ │ ├── model.py │ │ │ │ ├── sqlalchemypersistence.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── test_sqlalchemypersistence.py │ │ │ ├── tests │ │ │ │ └── test_persistence.py │ │ │ └── tinydb │ │ │ │ ├── __init__.py │ │ │ │ ├── storage.py │ │ │ │ └── tinydbpersistence.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── test_param_store.py │ ├── readme.md │ ├── results_backend │ │ ├── __init__.py │ │ └── sqlalchemy │ │ │ ├── __init__.py │ │ │ ├── alembic.ini │ │ │ ├── alembic │ │ │ ├── README.md │ │ │ ├── alembic_util.py │ │ │ ├── env.py │ │ │ ├── script.py.mako │ │ │ └── versions │ │ │ │ ├── 2021-08-01-13-45-43_1318a586f31d_initial_migration.py │ │ │ │ ├── 2021-08-01-14-18-43_04ae19b32c08_add_col_saved_in_hdf5.py │ │ │ │ ├── 2022-03-17-15-57-28_f1ada2484fe2_create_figures_table.py │ │ │ │ ├── 2022-04-10-08-26-35_9ffd2ba0d5bf_simplifying_node_id.py │ │ │ │ ├── 2022-05-19-09-12-01_06140c96c8c4_wrapping_param_store_values.py │ │ │ │ ├── 2022-06-16-09-26-06_7fa75ca1263f_del_results_and_metadata.py │ │ │ │ ├── 2022-06-23-10-16-39_273a9fae6206_experiments_favorite_col.py │ │ │ │ ├── 2022-06-28-12-13-39_09f3b5a1689c_fixing_param_qualified_name.py │ │ │ │ └── 2022-08-07-11-53-59_997e336572b8_paramstore_json_v0_3.py │ │ │ ├── db.py │ │ │ ├── db_initializer.py │ │ │ ├── model.py │ │ │ ├── project.py │ │ │ ├── storage.py │ │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── db_templates │ │ │ ├── empty.db │ │ │ ├── empty_after_2021-08-01-13-45-43_1318a586f31d_initial_migration.db │ │ │ ├── empty_after_2021-08-01-14-18-43_04ae19b32c08_add_col_saved_in_hdf5.db │ │ │ ├── empty_after_2022-03-17-15-57-28_f1ada2484fe2_create_figures_table.db │ │ │ ├── empty_after_2022-04-10-08-26-35_9ffd2ba0d5bf_simplifying_node_id.db │ │ │ ├── empty_after_2022-05-19-09-12-01_06140c96c8c4_wrapping_param_store_values.db │ │ │ ├── empty_after_2022-06-16-09-26-06_7fa75ca1263f_del_results_and_metadata.db │ │ │ ├── empty_after_2022-06-23-10-16-39_273a9fae6206_experiments_favorite_col.db │ │ │ ├── empty_after_2022-06-28-12-13-39_09f3b5a1689c_fixing_param_qualified_name.db │ │ │ ├── empty_after_2022-08-07-11-53-59_997e336572b8_paramstore_json_v0_3.db │ │ │ ├── param_store_v0_1.json │ │ │ ├── per_project.hdf5 │ │ │ ├── with_result_and_metadata_records_saved_in_hdf5.db │ │ │ └── with_saved_in_hdf5_col_with_data.db │ │ │ ├── test_db.py │ │ │ ├── test_db_upgrader.py │ │ │ ├── test_imports.py │ │ │ ├── test_migrations.py │ │ │ ├── test_model.py │ │ │ └── test_storage.py │ ├── script_experiment.py │ └── tests │ │ ├── Digraph.gv │ │ ├── Digraph.gv.pdf │ │ ├── Digraph.gv.png │ │ ├── __init__.py │ │ ├── entropynodes │ │ ├── library │ │ │ └── TestNode.py │ │ └── schema │ │ │ └── TestNode.json │ │ ├── fix_param_qualified_name.json │ │ ├── migrate_param_store_0_1_to_0_2.json │ │ ├── migrate_param_store_0_2_to_0_3.json │ │ ├── mock_instruments.py │ │ ├── test_async_graph.py │ │ ├── test_example.py │ │ ├── test_executor.py │ │ ├── test_executor_and_read_result.py │ │ ├── test_graph.py │ │ ├── test_graph_read_results.py │ │ ├── test_issue_204.py │ │ ├── test_plot.py │ │ ├── test_pynode_parameters.py │ │ └── test_retry.py └── quam │ ├── __init__.py │ ├── core.py │ ├── readme.md │ └── tests │ ├── __init__.py │ └── test_quam.py ├── poetry.lock └── pyproject.toml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-test-results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.github/workflows/publish-test-results.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CLA/Entropy_CLA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/CLA/Entropy_CLA.pdf -------------------------------------------------------------------------------- /CLA/Entropy_CLA_Corporate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/CLA/Entropy_CLA_Corporate.pdf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/README.md -------------------------------------------------------------------------------- /Versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/Versioning.md -------------------------------------------------------------------------------- /entropylab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/__init__.py -------------------------------------------------------------------------------- /entropylab/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/cli/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/cli/cli.md -------------------------------------------------------------------------------- /entropylab/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/cli/main.py -------------------------------------------------------------------------------- /entropylab/cli/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/cli/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/cli/tests/test_main.py -------------------------------------------------------------------------------- /entropylab/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/components/instrument_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/instrument_driver.py -------------------------------------------------------------------------------- /entropylab/components/lab_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/lab_model.py -------------------------------------------------------------------------------- /entropylab/components/lab_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/lab_topology.py -------------------------------------------------------------------------------- /entropylab/components/qcodes_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/qcodes_adapter.py -------------------------------------------------------------------------------- /entropylab/components/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/readme.md -------------------------------------------------------------------------------- /entropylab/components/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/components/tests/test_qcodes_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/tests/test_qcodes_dummy.py -------------------------------------------------------------------------------- /entropylab/components/tests/test_qcodes_dummy_lab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/tests/test_qcodes_dummy_lab.py -------------------------------------------------------------------------------- /entropylab/components/tests/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/components/tests/test_resources.py -------------------------------------------------------------------------------- /entropylab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/config.py -------------------------------------------------------------------------------- /entropylab/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/conftest.py -------------------------------------------------------------------------------- /entropylab/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/__init__.py -------------------------------------------------------------------------------- /entropylab/dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/app.py -------------------------------------------------------------------------------- /entropylab/dashboard/assets/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/dashboard.css -------------------------------------------------------------------------------- /entropylab/dashboard/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/favicon.ico -------------------------------------------------------------------------------- /entropylab/dashboard/assets/images/entropy_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/images/entropy_icon.svg -------------------------------------------------------------------------------- /entropylab/dashboard/assets/images/entropy_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/images/entropy_logo.svg -------------------------------------------------------------------------------- /entropylab/dashboard/assets/images/entropy_logo_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/images/entropy_logo_dark.svg -------------------------------------------------------------------------------- /entropylab/dashboard/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/images/favicon.png -------------------------------------------------------------------------------- /entropylab/dashboard/assets/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/images/favicon.svg -------------------------------------------------------------------------------- /entropylab/dashboard/assets/params.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/assets/params.css -------------------------------------------------------------------------------- /entropylab/dashboard/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/dashboard/pages/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/dashboard/pages/components/footer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/components/footer.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/components/top_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/components/top_bar.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/params/__init__.py: -------------------------------------------------------------------------------- 1 | from . import layout, callbacks 2 | -------------------------------------------------------------------------------- /entropylab/dashboard/pages/params/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/params/callbacks.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/params/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/params/layout.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/params/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/params/utils.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/results/__init__.py: -------------------------------------------------------------------------------- 1 | from . import layout, callbacks 2 | -------------------------------------------------------------------------------- /entropylab/dashboard/pages/results/auto_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/results/auto_plot.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/results/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/results/callbacks.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/results/dashboard_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/results/dashboard_data.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/results/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/results/layout.py -------------------------------------------------------------------------------- /entropylab/dashboard/pages/results/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/pages/results/table.py -------------------------------------------------------------------------------- /entropylab/dashboard/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/readme.md -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/entropy.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/entropy.db -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/entropy.hdf5.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/entropy.hdf5.bak -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/hdf5/1.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/hdf5/1.hdf5 -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/hdf5/2.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/hdf5/2.hdf5 -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/hdf5/3.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/hdf5/3.hdf5 -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/hdf5/4.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/hdf5/4.hdf5 -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/hdf5/5.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/hdf5/5.hdf5 -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/hdf5/6.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/hdf5/6.hdf5 -------------------------------------------------------------------------------- /entropylab/dashboard/tests/.entropy/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/.entropy/params.json -------------------------------------------------------------------------------- /entropylab/dashboard/tests/in_process_param_store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/in_process_param_store.json -------------------------------------------------------------------------------- /entropylab/dashboard/tests/test_auto_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/test_auto_plot.py -------------------------------------------------------------------------------- /entropylab/dashboard/tests/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/tests/test_dashboard.py -------------------------------------------------------------------------------- /entropylab/dashboard/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/dashboard/theme.py -------------------------------------------------------------------------------- /entropylab/flame/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/flame/readme.md -------------------------------------------------------------------------------- /entropylab/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/logger.py -------------------------------------------------------------------------------- /entropylab/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/api/data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/data_reader.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/data_writer.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/errors.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/execution.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/experiment.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/graph.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/memory_reader_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/memory_reader_writer.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/plot.py -------------------------------------------------------------------------------- /entropylab/pipeline/api/tests/test_tinydb_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/api/tests/test_tinydb_persistence.py -------------------------------------------------------------------------------- /entropylab/pipeline/graph_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/graph_experiment.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/params/param_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/param_store.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/migrations.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/persistence.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/alembic.ini -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/alembic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/alembic/README.md -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/alembic/env.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/alembic/script.py.mako -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/alembic/versions/2022-08-23-15-01-32_000c6a88457f_initial_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/alembic/versions/2022-08-23-15-01-32_000c6a88457f_initial_migration.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/model.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/sqlalchemypersistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/sqlalchemypersistence.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/sqlalchemy/tests/test_sqlalchemypersistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/sqlalchemy/tests/test_sqlalchemypersistence.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/tests/test_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/tests/test_persistence.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/tinydb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/tinydb/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/tinydb/storage.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/persistence/tinydb/tinydbpersistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/persistence/tinydb/tinydbpersistence.py -------------------------------------------------------------------------------- /entropylab/pipeline/params/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/params/tests/test_param_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/params/tests/test_param_store.py -------------------------------------------------------------------------------- /entropylab/pipeline/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/readme.md -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/__init__.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic.ini -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/README.md -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/alembic_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/alembic_util.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/env.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/script.py.mako -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2021-08-01-13-45-43_1318a586f31d_initial_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2021-08-01-13-45-43_1318a586f31d_initial_migration.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2021-08-01-14-18-43_04ae19b32c08_add_col_saved_in_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2021-08-01-14-18-43_04ae19b32c08_add_col_saved_in_hdf5.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-03-17-15-57-28_f1ada2484fe2_create_figures_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-03-17-15-57-28_f1ada2484fe2_create_figures_table.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-04-10-08-26-35_9ffd2ba0d5bf_simplifying_node_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-04-10-08-26-35_9ffd2ba0d5bf_simplifying_node_id.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-05-19-09-12-01_06140c96c8c4_wrapping_param_store_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-05-19-09-12-01_06140c96c8c4_wrapping_param_store_values.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-06-16-09-26-06_7fa75ca1263f_del_results_and_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-06-16-09-26-06_7fa75ca1263f_del_results_and_metadata.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-06-23-10-16-39_273a9fae6206_experiments_favorite_col.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-06-23-10-16-39_273a9fae6206_experiments_favorite_col.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-06-28-12-13-39_09f3b5a1689c_fixing_param_qualified_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-06-28-12-13-39_09f3b5a1689c_fixing_param_qualified_name.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-08-07-11-53-59_997e336572b8_paramstore_json_v0_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/alembic/versions/2022-08-07-11-53-59_997e336572b8_paramstore_json_v0_3.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/db.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/db_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/db_initializer.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/model.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/project.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/storage.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2021-08-01-13-45-43_1318a586f31d_initial_migration.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2021-08-01-13-45-43_1318a586f31d_initial_migration.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2021-08-01-14-18-43_04ae19b32c08_add_col_saved_in_hdf5.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2021-08-01-14-18-43_04ae19b32c08_add_col_saved_in_hdf5.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-03-17-15-57-28_f1ada2484fe2_create_figures_table.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-03-17-15-57-28_f1ada2484fe2_create_figures_table.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-04-10-08-26-35_9ffd2ba0d5bf_simplifying_node_id.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-04-10-08-26-35_9ffd2ba0d5bf_simplifying_node_id.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-05-19-09-12-01_06140c96c8c4_wrapping_param_store_values.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-05-19-09-12-01_06140c96c8c4_wrapping_param_store_values.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-06-16-09-26-06_7fa75ca1263f_del_results_and_metadata.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-06-16-09-26-06_7fa75ca1263f_del_results_and_metadata.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-06-23-10-16-39_273a9fae6206_experiments_favorite_col.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-06-23-10-16-39_273a9fae6206_experiments_favorite_col.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-06-28-12-13-39_09f3b5a1689c_fixing_param_qualified_name.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-06-28-12-13-39_09f3b5a1689c_fixing_param_qualified_name.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-08-07-11-53-59_997e336572b8_paramstore_json_v0_3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/empty_after_2022-08-07-11-53-59_997e336572b8_paramstore_json_v0_3.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/param_store_v0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/param_store_v0_1.json -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/per_project.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/per_project.hdf5 -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/with_result_and_metadata_records_saved_in_hdf5.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/with_result_and_metadata_records_saved_in_hdf5.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/with_saved_in_hdf5_col_with_data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/db_templates/with_saved_in_hdf5_col_with_data.db -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/test_db.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/test_db_upgrader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/test_db_upgrader.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/test_imports.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/test_migrations.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/test_model.py -------------------------------------------------------------------------------- /entropylab/pipeline/results_backend/sqlalchemy/tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/results_backend/sqlalchemy/tests/test_storage.py -------------------------------------------------------------------------------- /entropylab/pipeline/script_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/script_experiment.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/Digraph.gv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/Digraph.gv -------------------------------------------------------------------------------- /entropylab/pipeline/tests/Digraph.gv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/Digraph.gv.pdf -------------------------------------------------------------------------------- /entropylab/pipeline/tests/Digraph.gv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/Digraph.gv.png -------------------------------------------------------------------------------- /entropylab/pipeline/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/tests/entropynodes/library/TestNode.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/pipeline/tests/entropynodes/schema/TestNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/entropynodes/schema/TestNode.json -------------------------------------------------------------------------------- /entropylab/pipeline/tests/fix_param_qualified_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/fix_param_qualified_name.json -------------------------------------------------------------------------------- /entropylab/pipeline/tests/migrate_param_store_0_1_to_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/migrate_param_store_0_1_to_0_2.json -------------------------------------------------------------------------------- /entropylab/pipeline/tests/migrate_param_store_0_2_to_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/migrate_param_store_0_2_to_0_3.json -------------------------------------------------------------------------------- /entropylab/pipeline/tests/mock_instruments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/mock_instruments.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_async_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_async_graph.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_example.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_executor.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_executor_and_read_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_executor_and_read_result.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_graph.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_graph_read_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_graph_read_results.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_issue_204.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_issue_204.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_plot.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_pynode_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_pynode_parameters.py -------------------------------------------------------------------------------- /entropylab/pipeline/tests/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/pipeline/tests/test_retry.py -------------------------------------------------------------------------------- /entropylab/quam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/quam/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/quam/core.py -------------------------------------------------------------------------------- /entropylab/quam/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/quam/readme.md -------------------------------------------------------------------------------- /entropylab/quam/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /entropylab/quam/tests/test_quam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/entropylab/quam/tests/test_quam.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/entropy-lab/entropy/HEAD/pyproject.toml --------------------------------------------------------------------------------