-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "id" support. Refactor Writers. Add Writer additional format exte…
…nsibility. (#78) * Remove loss logging when predicting * Add "id" for each batch sample ID-ing purposes. Refactor Writers, add easy extensibility for new formats * Remove interval arg, group_tensors fn, and on pred epoch end writing. Add decollate_batch when writing. * Small fixes * Remove multi opt and scheduler support. Replace remaininig sys.exit's. * Update configure_optimizers docstring * Fix index ID issue in DDP writing. Replace broadcast with gather in the TableWriter. * Add missing if DDP check * Update docstrings, rename and refactor parse_data * Add freezer to init file * Change property to attribute * Add support for dict metrics. Refactor system. * Fix typos * Remove unused imports * Update logger.py to support the temp ModuleDict fix * Add continue to freezer and detach cpu to image logging * Remove multi_pred, refactor Writer, Logger, and optional imports * Bump gitpython from 3.1.32 to 3.1.35 Bumps [gitpython](https://github.com/gitpython-developers/GitPython) from 3.1.32 to 3.1.35. - [Release notes](https://github.com/gitpython-developers/GitPython/releases) - [Changelog](https://github.com/gitpython-developers/GitPython/blob/main/CHANGES) - [Commits](gitpython-developers/GitPython@3.1.32...3.1.35) --- updated-dependencies: - dependency-name: gitpython dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Bump certifi from 2023.5.7 to 2023.7.22 Bumps [certifi](https://github.com/certifi/python-certifi) from 2023.5.7 to 2023.7.22. - [Commits](certifi/python-certifi@2023.05.07...2023.07.22) --- updated-dependencies: - dependency-name: certifi dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * Remove add_batch_dim --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
7de0b58
commit a22442f
Showing
14 changed files
with
508 additions
and
560 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from .freezer import LighterFreezer | ||
from .logger import LighterLogger | ||
from .writer.file import LighterFileWriter | ||
from .writer.table import LighterTableWriter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.