.coveragerc
.gitignore
.travis.yml
AUTHORS.md
CHANGELOG.md
LICENSE.txt
README.md
ThirdPartyNotices.txt
docs-requirements.txt
package.json
requirements.txt
setup.cfg
setup.py
test-requirements.txt
docs/README.md
docs/.vuepress/config.js
docs/.vuepress/enhanceApp.js
docs/.vuepress/_reference/_README.md
docs/.vuepress/_reference/_cli.md
docs/.vuepress/_reference/_component.md
docs/.vuepress/_reference/_execution.md
docs/.vuepress/_reference/_storage.md
docs/.vuepress/_reference/autogen.py
docs/.vuepress/components/Annotated.vue
docs/.vuepress/nav/en.js
docs/.vuepress/public/CNAME
docs/.vuepress/public/hero.png
docs/.vuepress/public/manifest.json
docs/.vuepress/public/pointer-white.svg
docs/.vuepress/public/pointer.svg
docs/.vuepress/public/icons/android-chrome-192x192.png
docs/.vuepress/public/icons/android-chrome-512x512.png
docs/.vuepress/public/icons/apple-touch-icon.png
docs/.vuepress/public/icons/favicon-16x16.png
docs/.vuepress/public/icons/favicon-32x32.png
docs/.vuepress/public/icons/favicon.ico
docs/.vuepress/public/icons/mstile-150x150.png
docs/.vuepress/public/icons/safari-pinned-tab.svg
docs/.vuepress/public/illustrations/observations_plot.png
docs/.vuepress/styles/index.styl
docs/.vuepress/styles/palette.styl
docs/faq/README.md
docs/guide/README.md
docs/guide/at-glance.md
docs/guide/components.md
docs/guide/engines.md
docs/guide/experiments.md
docs/guide/exporting.md
docs/guide/imports.md
docs/guide/installation.md
docs/guide/machinable-yaml.md
docs/guide/mixins.md
docs/guide/project-structure.md
docs/guide/storage.md
docs/guide/tuning.md
docs/logo/logo.png
docs/logo/logo.svg
docs/miscellaneous/app.md
docs/miscellaneous/best-practice.md
docs/miscellaneous/comparison.md
docs/miscellaneous/contribution-guide.md
docs/miscellaneous/design-principles.md
docs/miscellaneous/glossary.md
docs/miscellaneous/migration-guide.md
docs/reference/.gitignore
src/machinable/__init__.py
src/machinable.egg-info/PKG-INFO
src/machinable.egg-info/SOURCES.txt
src/machinable.egg-info/dependency_links.txt
src/machinable.egg-info/entry_points.txt
src/machinable.egg-info/not-zip-safe
src/machinable.egg-info/requires.txt
src/machinable.egg-info/top_level.txt
src/machinable/config/__init__.py
src/machinable/config/interface.py
src/machinable/config/loader.py
src/machinable/config/mapping.py
src/machinable/config/parser.py
src/machinable/console/__init__.py
src/machinable/console/cli.py
src/machinable/console/execute.py
src/machinable/console/server.py
src/machinable/console/vendor/__init__.py
src/machinable/console/vendor/commands.py
src/machinable/core/__init__.py
src/machinable/core/component.py
src/machinable/core/events.py
src/machinable/core/exceptions.py
src/machinable/core/settings.py
src/machinable/engines/__init__.py
src/machinable/engines/detached_engine.py
src/machinable/engines/dry_engine.py
src/machinable/engines/engine.py
src/machinable/engines/native_engine.py
src/machinable/engines/ray_engine.py
src/machinable/engines/remote_engine.py
src/machinable/engines/slurm_engine.py
src/machinable/execution/__init__.py
src/machinable/execution/execution.py
src/machinable/execution/identifiers.py
src/machinable/execution/schedule.py
src/machinable/experiment/__init__.py
src/machinable/experiment/experiment.py
src/machinable/experiment/parser.py
src/machinable/filesystem/__init__.py
src/machinable/filesystem/filesystem.py
src/machinable/project/__init__.py
src/machinable/project/manager.py
src/machinable/project/project.py
src/machinable/project/export/__init__.py
src/machinable/project/export/export.py
src/machinable/project/export/standalone.py
src/machinable/registration/__init__.py
src/machinable/registration/registration.py
src/machinable/server/__init__.py
src/machinable/server/filesystem.py
src/machinable/server/server.py
src/machinable/server/graphql/__init__.py
src/machinable/server/graphql/scalars.py
src/machinable/server/graphql/schema/mutation.graphql
src/machinable/server/graphql/schema/query.graphql
src/machinable/server/graphql/schema/scalars.graphql
src/machinable/server/graphql/schema/subscription.graphql
src/machinable/server/graphql/types/__init__.py
src/machinable/server/graphql/types/mutation/__init__.py
src/machinable/server/graphql/types/mutation/execute.py
src/machinable/server/graphql/types/mutation/mutation_type.py
src/machinable/server/graphql/types/query/__init__.py
src/machinable/server/graphql/types/query/query_type.py
src/machinable/server/graphql/types/query/server.py
src/machinable/server/graphql/types/subscription/__init__.py
src/machinable/server/graphql/types/subscription/observations.py
src/machinable/server/graphql/types/subscription/subscription_type.py
src/machinable/storage/__init__.py
src/machinable/storage/component.py
src/machinable/storage/experiment.py
src/machinable/storage/storage.py
src/machinable/storage/collections/__init__.py
src/machinable/storage/collections/base.py
src/machinable/storage/collections/components.py
src/machinable/storage/collections/experiments.py
src/machinable/storage/collections/records.py
src/machinable/store/__init__.py
src/machinable/store/log.py
src/machinable/store/record.py
src/machinable/store/store.py
src/machinable/utils/__init__.py
src/machinable/utils/dicts.py
src/machinable/utils/formatting.py
src/machinable/utils/host.py
src/machinable/utils/importing.py
src/machinable/utils/traits.py
src/machinable/utils/utils.py
src/machinable/utils/vcs.py
src/machinable/v1/__init__.py
tests/conftest.py
tests/config/config_interface_test.py
tests/config/config_loader_test.py
tests/config/config_mapping_test.py
tests/config/config_parser_test.py
tests/core/core_component_test.py
tests/core/core_execute_test.py
tests/core/core_settings_test.py
tests/engine/detached_engine_test.py
tests/engine/engine_test.py
tests/engine/native_engine_test.py
tests/engine/ray_engine_test.py
tests/engine/remote_engine_test.py
tests/execution/execution_identifiers_test.py
tests/execution/execution_resolver_test.py
tests/execution/execution_test.py
tests/experiment/experiment_parser_test.py
tests/experiment/experiment_test.py
tests/project/export_test.py
tests/project/project_manager_test.py
tests/project/project_test.py
tests/registration/registration_test.py
tests/server/server_test.py
tests/storage/storage_collections_test.py
tests/storage/storage_experiment_test.py
tests/storage/storage_test.py
tests/store/store_test.py
tests/test_project/.gitignore
tests/test_project/__init__.py
tests/test_project/_machinable.py
tests/test_project/childexp.py
tests/test_project/configmethods.py
tests/test_project/direct_mixin_inheritance.py
tests/test_project/dryrun.py
tests/test_project/export_model.py
tests/test_project/inherit.py
tests/test_project/inherited_mixin.py
tests/test_project/machinable.yaml
tests/test_project/main.py
tests/test_project/mixexp.py
tests/test_project/mixin_module.py
tests/test_project/outsourced.yaml
tests/test_project/thechildren.py
tests/test_project/thenode.py
tests/test_project/tunemodel.py
tests/test_project/engines/__init__.py
tests/test_project/engines/named.py
tests/test_project/experiments/__init__.py
tests/test_project/experiments/auto_directory.py
tests/test_project/failure/__init__.py
tests/test_project/failure/exceptions.py
tests/test_project/nodes/observations.py
tests/test_project/nodes/timings.py
tests/test_project/vendor/__init__.py
tests/test_project/vendor/fooba/__init__.py
tests/test_project/vendor/fooba/machinable.yaml
tests/test_project/vendor/fooba/experiments/__init__.py
tests/test_project/vendor/fooba/experiments/base.py
tests/test_project/vendor/fooba/experiments/dependent.py
tests/test_project/vendor/fooba/experiments/miximp.py
tests/test_project/vendor/fooba/experiments/start.py
tests/test_project/vendor/fooba/mixins/hidden.py
tests/test_project/vendor/fooba/mixins/nested.py
tests/test_project/vendor/fooba/models/__init__.py
tests/test_project/vendor/fooba/models/baseline.py
tests/test_project/vendor/fooba/models/chained_inheritance.py
tests/test_project/vendor/fooba/models/config_dependency_inheritance.py
tests/test_project/vendor/fooba/models/config_inheritance.py
tests/test_project/vendor/fooba/models/extended.py
tests/test_project/vendor/fooba/vendor/__init__.py
tests/test_project/vendor/fooba/vendor/bedrock/__init__.py
tests/test_project/vendor/fooba/vendor/bedrock/machinable.yaml
tests/test_project/vendor/fooba/vendor/bedrock/models/base.py
tests/test_project/workers/__init__.py
tests/test_project/workers/interactive.py
tests/utils/utils_test.py