v0.10.0
What's new
Changed ⚠️
- Renamed
workspace
parameter ofBeakerWorkspace
class tobeaker_workspace
. Executor
class is now aRegistrable
base class.MulticoreExecutor
is registered as "multicore".
Removed 👋
- Removed
StepExecutionMetadata
. Its fields have been absorbed intoStepInfo
.
Fixed ✅
- Improved
Step.ensure_result()
such that the step's result doesn't have to be read from the cache. - Fixed an issue with the output from
MulticoreExecutor
such that it's now consistent with the defaultExecutor
for steps that were found in the cache. - One of our error messages referred to a configuration file that no longer exists.
- Improved performance of
BeakerWorkspace
.
Added 🎉
- Added the ability to train straight
Model
instead of justLazy[Model]
Commits
4e809f5 Eager models (#319)
361777b Metadata changes, make executor registrable (#331)
a6b0be9 Beaker workspace performance (#328)
f43e5ea Update torch requirement from <1.12,>=1.9 to >=1.9,<1.13 (#330)
8495c64 update dev dependencies (#333)
712d862 Make multicore executor output consistent with default (#325)
903569c Refer to the right config file (#324)
bd9e4be Modernize our issue templates (#323)