-
Notifications
You must be signed in to change notification settings - Fork 6
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
skip previous trained batches #43
base: accuracy_workstream_trn
Are you sure you want to change the base?
Conversation
@@ -560,6 +560,11 @@ def run( | |||
output = None | |||
stop_trace_step = None | |||
|
|||
# skip previous batches | |||
for i in range(self.step): | |||
self.vlog(3, f"skipping batch for step {i}") |
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.
Do we need to add any unit tests for this case ?
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.
No unit tests planed for now since these are not merging to upstream.
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.
left a comment
46cb7e8
to
18212fd
Compare
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.
LGTM !
LGTM but needs a test we can run on both GPU and TRN |
No description provided.