-
Notifications
You must be signed in to change notification settings - Fork 296
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
Adding SingleTaskConfigurator, some cleanup #1135
Conversation
@@ -38,10 +38,175 @@ def cap_examples(num_examples, cap): | |||
return min(num_examples, cap) | |||
|
|||
|
|||
@Registry.register | |||
@zconf.run_config | |||
class SingleTaskConfigurator(zconf.RunConfig): |
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.
Would prefer to not duplicate everything here. Can the configurators be combined?
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.
This is meant to be a much more streamlined configurator since it only supports one task - the multi-task configurator has a lot more complexity because it needs to deal with potentially different tasks in different phases.
Codecov Report
@@ Coverage Diff @@
## master #1135 +/- ##
==========================================
- Coverage 57.04% 56.87% -0.17%
==========================================
Files 132 132
Lines 9584 9652 +68
==========================================
+ Hits 5467 5490 +23
- Misses 4117 4162 +45
Continue to review full report at Codecov.
|
* Colab fix * single-task configurator * configurator * blake Co-authored-by: jeswan <57466294+jeswan@users.noreply.github.com>
No description provided.