├── .github ├── CONTRIBUTING.md ├── labels.yml └── workflows │ ├── changelog.yml │ ├── deploy.yml │ └── labeler.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── .run_local_tests.sh ├── .wandb_utils_config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── core_requirements.txt ├── doc_requirements.txt ├── docs ├── autoapi_templates │ ├── module.rst_t │ └── package.rst_t ├── cli.rst ├── conf.py ├── download_run.rst ├── getting_data.rst ├── index.rst ├── managing_jobs_on_slurm.rst ├── processing_data.rst └── uploading_files_to_runs.rst ├── pyproject.toml ├── setup.cfg ├── setup.py ├── setup_env.sh ├── src └── wandb_utils │ ├── __init__.py │ ├── __main__.py │ ├── api │ ├── __init__.py │ ├── all_data.py │ └── client.py │ ├── commands │ ├── __init__.py │ ├── all_data.py │ ├── backup.py │ ├── best_models.py │ ├── common.py │ ├── download_from_wandb.py │ ├── files.py │ ├── filter.py │ ├── from_file.py │ ├── multiple_runs.py │ ├── print.py │ ├── remove_files_from_server.py │ ├── run_dir.py │ ├── slurm.py │ └── wandb_utils.py │ ├── config.py │ ├── file_filter │ ├── __init__.py │ ├── file_filter.py │ └── glob_filter.py │ ├── misc.py │ ├── run_filter │ ├── __init__.py │ ├── name_filter.py │ └── run_filter.py │ ├── slurm │ └── slurm_wandb_agent.py │ └── version.py ├── test_requirements.txt └── tests └── commands ├── all_data_test.py └── wandb_utils_test.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- 1 | python: 2 | version: "3.8" 3 | -------------------------------------------------------------------------------- /.run_local_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.run_local_tests.sh -------------------------------------------------------------------------------- /.wandb_utils_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/.wandb_utils_config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/README.md -------------------------------------------------------------------------------- /core_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/core_requirements.txt -------------------------------------------------------------------------------- /doc_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/doc_requirements.txt -------------------------------------------------------------------------------- /docs/autoapi_templates/module.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/autoapi_templates/module.rst_t -------------------------------------------------------------------------------- /docs/autoapi_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/autoapi_templates/package.rst_t -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/download_run.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/download_run.rst -------------------------------------------------------------------------------- /docs/getting_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/getting_data.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/managing_jobs_on_slurm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/managing_jobs_on_slurm.rst -------------------------------------------------------------------------------- /docs/processing_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/processing_data.rst -------------------------------------------------------------------------------- /docs/uploading_files_to_runs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/docs/uploading_files_to_runs.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/setup.py -------------------------------------------------------------------------------- /setup_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/setup_env.sh -------------------------------------------------------------------------------- /src/wandb_utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .misc import * 2 | -------------------------------------------------------------------------------- /src/wandb_utils/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/__main__.py -------------------------------------------------------------------------------- /src/wandb_utils/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/api/__init__.py -------------------------------------------------------------------------------- /src/wandb_utils/api/all_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/api/all_data.py -------------------------------------------------------------------------------- /src/wandb_utils/api/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/api/client.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/__init__.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/all_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/all_data.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/backup.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/best_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/best_models.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/common.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/download_from_wandb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/download_from_wandb.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/files.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/filter.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/from_file.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/multiple_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/multiple_runs.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/print.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/remove_files_from_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/remove_files_from_server.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/run_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/run_dir.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/slurm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/slurm.py -------------------------------------------------------------------------------- /src/wandb_utils/commands/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/commands/wandb_utils.py -------------------------------------------------------------------------------- /src/wandb_utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/config.py -------------------------------------------------------------------------------- /src/wandb_utils/file_filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/file_filter/__init__.py -------------------------------------------------------------------------------- /src/wandb_utils/file_filter/file_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/file_filter/file_filter.py -------------------------------------------------------------------------------- /src/wandb_utils/file_filter/glob_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/file_filter/glob_filter.py -------------------------------------------------------------------------------- /src/wandb_utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/misc.py -------------------------------------------------------------------------------- /src/wandb_utils/run_filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/run_filter/__init__.py -------------------------------------------------------------------------------- /src/wandb_utils/run_filter/name_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/run_filter/name_filter.py -------------------------------------------------------------------------------- /src/wandb_utils/run_filter/run_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/run_filter/run_filter.py -------------------------------------------------------------------------------- /src/wandb_utils/slurm/slurm_wandb_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/slurm/slurm_wandb_agent.py -------------------------------------------------------------------------------- /src/wandb_utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/src/wandb_utils/version.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/test_requirements.txt -------------------------------------------------------------------------------- /tests/commands/all_data_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/tests/commands/all_data_test.py -------------------------------------------------------------------------------- /tests/commands/wandb_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhruvdcoder/wandb-utils/HEAD/tests/commands/wandb_utils_test.py --------------------------------------------------------------------------------