gitextract_j98cv22l/ ├── .cruft.json ├── .gitattributes ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ ├── codecov.yml │ ├── dependabot.yml │ └── workflows/ │ ├── release.yml │ ├── tests.yml │ └── update-template.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.md ├── examples/ │ ├── DVCLive-Evidently.ipynb │ ├── DVCLive-Fabric.ipynb │ ├── DVCLive-HuggingFace.ipynb │ ├── DVCLive-PyTorch-Lightning.ipynb │ ├── DVCLive-Quickstart.ipynb │ ├── DVCLive-YOLO.ipynb │ └── DVCLive-scikit-learn.ipynb ├── noxfile.py ├── pyproject.toml ├── src/ │ └── dvclive/ │ ├── __init__.py │ ├── dvc.py │ ├── env.py │ ├── error.py │ ├── fabric.py │ ├── fastai.py │ ├── huggingface.py │ ├── keras.py │ ├── lgbm.py │ ├── lightning.py │ ├── live.py │ ├── monitor_system.py │ ├── optuna.py │ ├── plots/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── custom.py │ │ ├── image.py │ │ ├── metric.py │ │ ├── sklearn.py │ │ └── utils.py │ ├── py.typed │ ├── report.py │ ├── serialize.py │ ├── studio.py │ ├── utils.py │ ├── vscode.py │ └── xgb.py └── tests/ ├── __init__.py ├── conftest.py ├── frameworks/ │ ├── test_fabric.py │ ├── test_fastai.py │ ├── test_huggingface.py │ ├── test_keras.py │ ├── test_lgbm.py │ ├── test_lightning.py │ ├── test_optuna.py │ └── test_xgboost.py ├── plots/ │ ├── test_custom.py │ ├── test_image.py │ ├── test_metric.py │ └── test_sklearn.py ├── test_cleanup.py ├── test_context_manager.py ├── test_dvc.py ├── test_log_artifact.py ├── test_log_metric.py ├── test_log_param.py ├── test_logging.py ├── test_make_dvcyaml.py ├── test_make_report.py ├── test_make_summary.py ├── test_monitor_system.py ├── test_post_to_studio.py ├── test_resume.py ├── test_step.py ├── test_utils.py └── test_vscode.py