-
Notifications
You must be signed in to change notification settings - Fork 14
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
cmf and dvc integration #170
Conversation
self.mode = mode | ||
if tags: | ||
prefix = 'Training_Metrics_' + str(os.environ['stage_name'])+'_'+str(os.environ['execution_name']) | ||
prefixed = [filename for filename in os.listdir('.') if filename.startswith(prefix)] |
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.
Lets sync up on what you are doing here
def log(self, runner): | ||
tags = self.get_loggable_tags(runner) | ||
mode = self.get_mode(runner) | ||
print(mode) |
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.
Needed ?
self.cmf_logger = cmf.Cmf(filename="mlmd", pipeline_name=self.exp_name , graph=True) | ||
self.context = self.cmf_logger.create_context(os.environ['stage_name']) | ||
|
||
file_ = os.path.isfile(self.mlmdFilePath) |
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.
Is this used anywhere else ? can this be cleaned up ?
@@ -0,0 +1,68 @@ | |||
# Copyright (c) OpenMMLab. All rights reserved. |
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.
Is this file needed ?
Related Issues / Pull Requests
List all related issues and/or pull requests if there are any.
Description
Include a brief summary of the proposed changes.
What changes are proposed in this pull request?
examples in this repository need to be updated too).
Checklist:
uses Google-style formatting and any other formatting that is supported by mkdocs and plugins this project
uses.