gitextract_g9bj2g2j/ ├── .github/ │ └── workflows/ │ ├── build.yml │ └── python-publish.yml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── clu/ │ ├── __init__.py │ ├── asynclib.py │ ├── asynclib_test.py │ ├── checkpoint.py │ ├── checkpoint_test.py │ ├── data/ │ │ ├── __init__.py │ │ ├── dataset_iterator.py │ │ └── dataset_iterator_test.py │ ├── deterministic_data.py │ ├── deterministic_data_test.py │ ├── internal/ │ │ ├── __init__.py │ │ ├── utils.py │ │ └── utils_test.py │ ├── metric_writers/ │ │ ├── __init__.py │ │ ├── async_writer.py │ │ ├── async_writer_test.py │ │ ├── interface.py │ │ ├── logging_writer.py │ │ ├── logging_writer_test.py │ │ ├── multi_writer.py │ │ ├── multi_writer_test.py │ │ ├── summary_writer.py │ │ ├── tf/ │ │ │ ├── __init__.py │ │ │ ├── summary_writer.py │ │ │ └── summary_writer_test.py │ │ ├── torch_tensorboard_writer.py │ │ ├── torch_tensorboard_writer_test.py │ │ ├── utils.py │ │ └── utils_test.py │ ├── metrics.py │ ├── metrics_test.py │ ├── parameter_overview.py │ ├── parameter_overview_test.py │ ├── periodic_actions.py │ ├── periodic_actions_test.py │ ├── platform/ │ │ ├── __init__.py │ │ ├── interface.py │ │ └── local.py │ ├── preprocess_spec.py │ ├── preprocess_spec_test.py │ ├── profiler.py │ ├── run_pytest.google.sh │ └── values.py ├── clu_synopsis.ipynb └── setup.py