-
Notifications
You must be signed in to change notification settings - Fork 0
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
added hardware metric tracking #10
Conversation
Dependency Review✅ No vulnerabilities or license issues found.Scanned Manifest Filespoetry.lock
pyproject.toml
|
from collections import namedtuple | ||
#from opsml.projects.active_run import ActiveRun | ||
|
||
LOGGER = logging.getLogger(__name__) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
im going to change this up to use the opsml
logger
LOGGER = logging.getLogger(__name__) | ||
|
||
|
||
class BaseMetricsDataLogger(abc.ABC): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥
I'm going to add some unit tests in |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #10 +/- ##
========================================
Coverage 92.70% 92.70%
========================================
Files 113 114 +1
Lines 8483 8649 +166
========================================
+ Hits 7864 8018 +154
- Misses 619 631 +12
|
Pull Request
Short Summary
Added cpu, network, and memory metrics logging
Context
Concurrent hardware metric logging added to active_run. This will run in the background of an active run for its duration, continuously logging hardware metrics.