gitextract_957adg6p/ ├── .codecov.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples/ │ ├── base_config.json │ ├── getting_started.ipynb │ ├── protocol_gcs.py │ ├── protocol_local.py │ ├── run_infrastructure.py │ └── train.py ├── mle_monitor/ │ ├── __init__.py │ ├── _version.py │ ├── dashboard/ │ │ ├── __init__.py │ │ ├── components/ │ │ │ ├── __init__.py │ │ │ ├── plots.py │ │ │ ├── protocol.py │ │ │ └── usage.py │ │ ├── layout.py │ │ └── update.py │ ├── mle_dashboard.py │ ├── mle_protocol.py │ ├── mle_resource.py │ ├── protocol/ │ │ ├── __init__.py │ │ ├── add.py │ │ ├── gcs_sync.py │ │ ├── load.py │ │ ├── summary.py │ │ └── tables.py │ ├── resource/ │ │ ├── __init__.py │ │ ├── gcp.py │ │ ├── local.py │ │ ├── sge.py │ │ └── slurm.py │ └── utils/ │ ├── __init__.py │ ├── gcs_zip.py │ ├── helpers.py │ └── tracker.py ├── requirements/ │ ├── requirements-examples.txt │ ├── requirements-test.txt │ └── requirements.txt ├── setup.py └── tests/ ├── fixtures/ │ └── base_config.json ├── test_dashboard.py ├── test_protocol.py └── test_resource.py