-
Notifications
You must be signed in to change notification settings - Fork 454
Logger Destination Refactor #1416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 39 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
b3a0ac2
Refactor loggers.
eracah fcd2e2e
Change:
eracah c82e027
update progress bar logger
eracah 6abb9c7
remove log levels from engine
eracah 56a51ca
Fix tests
eracah 61ae68f
pre-commit fixes
eracah 21f75e4
cleaned up current_metrics test
eracah fd03501
add fixtures
eracah 8111c7a
remove import
eracah adb4465
isoooort!
eracah 83d9913
update docs
eracah d70c61a
Merge branch 'dev' of https://github.com/mosaicml/composer into final…
eracah 1f4f562
Add back in self._enabled
eracah 32862f0
Add notimplementederror to old logging functions.
eracah b79eae9
Add log_traces to progressbarlogger for console logging
eracah 582c9da
pre-commit fixes
eracah 36660f8
Make a sacrifice for the pyright gods.
eracah 0d314fe
Last pyright fix
eracah 0ea4bea
fix args indent
eracah 61eb658
Merge branch 'dev' of https://github.com/mosaicml/composer into final…
eracah 6485238
Move pyright to be done last for pre-commit, so pyright errors
eracah 4415bea
Manually fix wandb_logger imports.
eracah aa612fe
delete blank line
eracah aa3978f
Fix wandb logging bug
eracah f2cd6c5
fix doctest failures
eracah c3e0e64
ci trigger
eracah a952294
delete trigger
eracah d4b3425
trigger ci
eracah 701af7d
Merge branch 'dev' of https://github.com/mosaicml/composer into final…
eracah 72a50bf
fix pre-commit
eracah cf053ae
add automatic step setting
eracah f9fe90c
fix doctest
eracah 51b0d4e
add step argument to log_metrics call
eracah b6a8f0e
fix test_current_metrics test
eracah 6a78ee6
pre-commit
eracah 17fc12f
Set isort to treat wandb as a third party import for
eracah 713135e
potential metrics test fix
eracah 3180c6f
pre-commit
eracah beeef92
reworked test_current_metrics test
eracah 5cb7a60
Merge branch 'dev' into final-log-refac
mvpatel2000 3c8a34e
Merge branch 'dev' of https://github.com/mosaicml/composer into final…
eracah 2bd99e7
remove step
eracah e38adf0
pre-commit corrections.
eracah e0ce9f5
remove loglevels
eracah File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -26,16 +26,6 @@ repos: | |
# types: [python] | ||
# require_serial: true | ||
# rev: v2.12.2 | ||
- repo: local | ||
hooks: | ||
- id: pyright | ||
name: pyright | ||
entry: pyright | ||
language: node | ||
types: [python] | ||
pass_filenames: false | ||
args: [--warnings] | ||
additional_dependencies: ["[email protected]"] | ||
- repo: https://github.com/PyCQA/pydocstyle | ||
hooks: | ||
- id: pydocstyle | ||
|
@@ -103,5 +93,15 @@ repos: | |
metadata.kernelspec metadata.language_info.version | ||
cell.metadata.heading_collapsed metadata.name metadata.nbconvert_exporter | ||
metadata.version metadata.vscode | ||
- repo: local | ||
hooks: | ||
- id: pyright | ||
name: pyright | ||
entry: pyright | ||
language: node | ||
types: [python] | ||
pass_filenames: false | ||
args: [--warnings] | ||
additional_dependencies: ["[email protected]"] | ||
|
||
exclude: .ci\/release_tests\/.* |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.