.coveragerc
.gitignore
.travis.yml
AUTHORS.md
CHANGELOG.md
LICENSE.txt
README.md
ThirdPartyNotices.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/_observations.md
docs/.vuepress/_reference/autogen.py
docs/.vuepress/components/Annotated.vue
docs/.vuepress/includes/getting_started/machinable.yaml
docs/.vuepress/includes/getting_started/experiments/optimization.py
docs/.vuepress/includes/getting_started/models/linear_regression.py
docs/.vuepress/includes/getting_started/tasks/example.py
docs/.vuepress/includes/machinable_yaml/machinable.yaml
docs/.vuepress/includes/machinable_yaml/machinable_alias.yaml
docs/.vuepress/includes/machinable_yaml/machinable_imports.yaml
docs/.vuepress/includes/machinable_yaml/machinable_includes.yaml
docs/.vuepress/includes/machinable_yaml/machinable_inheritance.yaml
docs/.vuepress/includes/machinable_yaml/machinable_methods.yaml
docs/.vuepress/includes/machinable_yaml/machinable_references.yaml
docs/.vuepress/includes/machinable_yaml/machinable_versions.yaml
docs/.vuepress/includes/machinable_yaml/my_models/base_model.py
docs/.vuepress/includes/machinable_yaml/my_models/extended_model.py
docs/.vuepress/includes/machinable_yaml/path/to_module.py
docs/.vuepress/includes/mixins/classifier_mixed.py
docs/.vuepress/includes/mixins/classifier_standalone.py
docs/.vuepress/includes/mixins/data_mixin.py
docs/.vuepress/includes/mixins/machinable_mixed.yaml
docs/.vuepress/includes/mixins/machinable_mixed_controller.yaml
docs/.vuepress/includes/mixins/machinable_standalone.yaml
docs/.vuepress/includes/tasks/export.py
docs/.vuepress/includes/tasks/tune.py
docs/.vuepress/includes/tasks/yaml_inline_version.py
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/drivers.md
docs/guide/exporting.md
docs/guide/imports.md
docs/guide/installation.md
docs/guide/machinable-yaml.md
docs/guide/mixins.md
docs/guide/observations.md
docs/guide/project-structure.md
docs/guide/tasks.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/config.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/vendor/__init__.py
src/machinable/console/vendor/commands.py
src/machinable/core/__init__.py
src/machinable/core/core.py
src/machinable/core/exceptions.py
src/machinable/engine/__init__.py
src/machinable/engine/engine.py
src/machinable/engine/events.py
src/machinable/engine/functional.py
src/machinable/engine/handler.py
src/machinable/engine/history.py
src/machinable/engine/promise.py
src/machinable/engine/settings.py
src/machinable/engine/export/__init__.py
src/machinable/engine/export/export.py
src/machinable/engine/export/standalone.py
src/machinable/observations/__init__.py
src/machinable/observations/observations.py
src/machinable/observations/collections/__init__.py
src/machinable/observations/collections/collection.py
src/machinable/observations/collections/observation.py
src/machinable/observations/collections/records.py
src/machinable/observations/orm/migrations.py
src/machinable/observations/orm/query_builder.py
src/machinable/observations/orm/models/__init__.py
src/machinable/observations/orm/models/observation.py
src/machinable/observations/orm/models/storage.py
src/machinable/observations/orm/models/task.py
src/machinable/observations/views/__init__.py
src/machinable/observations/views/base.py
src/machinable/observations/views/observation.py
src/machinable/observations/views/records.py
src/machinable/observations/views/status.py
src/machinable/observations/views/task.py
src/machinable/observer/__init__.py
src/machinable/observer/host.py
src/machinable/observer/log.py
src/machinable/observer/observer.py
src/machinable/observer/record.py
src/machinable/project/__init__.py
src/machinable/project/manager.py
src/machinable/project/project.py
src/machinable/task/__init__.py
src/machinable/task/parser.py
src/machinable/task/task.py
src/machinable/utils/__init__.py
src/machinable/utils/dicts.py
src/machinable/utils/formatting.py
src/machinable/utils/strings.py
src/machinable/utils/utils.py
src/machinable/utils/vcs.py
tests/collection_test.py
tests/config_interface_test.py
tests/config_loader_test.py
tests/config_mapping_test.py
tests/config_method_test.py
tests/config_parser_test.py
tests/config_test.py
tests/config_versions_test.py
tests/core_component_test.py
tests/core_mixins_test.py
tests/engine_test.py
tests/events_test.py
tests/functional_api_test.py
tests/helpers.py
tests/observer_test.py
tests/project_manager_test.py
tests/project_test.py
tests/task_test.py
tests/test_tune.py
tests/utils_test.py
tests/observations/__init__.py
tests/observations/generator.py
tests/observations/observations_test.py
tests/test_project/.gitignore
tests/test_project/__init__.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/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