Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Add Lightning interface, Backbone classes, new classifiers, and data utils. source code.tar.gz | 2021-09-07 | 6.0 MB | |
Add Lightning interface, Backbone classes, new classifiers, and data utils. source code.zip | 2021-09-07 | 6.2 MB | |
README.md | 2021-09-07 | 692 Bytes | |
Totals: 3 Items | 12.2 MB | 0 |
v0.1.6
Added
- PyTorch Lightning interface to MAML, ANIL, ProtoNet, MetaOptNet.
- Automatic batcher for Lightning:
l2l.data.EpisodicBatcher
. l2l.nn.PrototypicalClassifier
andl2l.nn.SVMClassifier
.- Add
l2l.vision.models.WRN28
. - Separate modules for
CNN4Backbone
,ResNet12Backbone
,WRN28Backbones
w/ pretrained weights. - Add
l2l.data.OnDeviceDataset
and implementdevice
parameter for benchmarks. - (Beta) Add
l2l.data.partition_task
andl2l.data.InfiniteIterator
.
Changed
- Renamed and clarify dropout parameters for
ResNet12
.
Fixed
- Improved support for 1D inputs in
l2l.nn.KroneckerLinear
. (@timweiland)