File tree Expand file tree Collapse file tree 6 files changed +5
-10
lines changed Expand file tree Collapse file tree 6 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) .
66
7- ## [ Unreleased ]
7+ ## [ 0.7.0 ] - 2020-03-06
88
99### Added
1010
Original file line number Diff line number Diff line change 1212import torchvision .transforms as transforms
1313from torch import optim
1414from torch .utils .data import DataLoader
15- from torch .utils .data .distributed import DistributedSampler
1615from torchvision .datasets import MNIST
1716
1817from pytorch_lightning .core import LightningModule
19- from pytorch_lightning .core import data_loader
2018
2119
2220class LightningTemplateModel (LightningModule ):
Original file line number Diff line number Diff line change 2020from torchvision .datasets import MNIST
2121
2222from pytorch_lightning .core import LightningModule
23- from pytorch_lightning .core import data_loader
2423from pytorch_lightning .trainer import Trainer
2524
2625
Original file line number Diff line number Diff line change 11"""Root package info."""
22
3- __version__ = '0.6.3 .dev'
3+ __version__ = '0.6.4 .dev'
44__author__ = 'William Falcon et al.'
55__author_email__ = '[email protected] ' 66__license__ = 'Apache-2.0'
2424 # We are not importing the rest of the scikit during the build
2525 # process, as it may not be compiled yet
2626else :
27- from .core import data_loader , LightningModule
27+ from .core import LightningModule
2828 from .trainer import Trainer
2929 from .callbacks import Callback
3030
3131 __all__ = [
3232 'Trainer' ,
3333 'LightningModule' ,
3434 'Callback' ,
35- 'data_loader' ,
3635 ]
3736 # __call__ = __all__
Original file line number Diff line number Diff line change @@ -312,8 +312,7 @@ def test_dataloader(self):
312312
313313"""
314314
315- from .decorators import data_loader
316315from .lightning import LightningModule
317316
318- __all__ = ['LightningModule' , 'data_loader' ]
317+ __all__ = ['LightningModule' ]
319318# __call__ = __all__
Original file line number Diff line number Diff line change 33import torch
44
55import tests .models .utils as tutils
6- from pytorch_lightning import Trainer , data_loader
6+ from pytorch_lightning import Trainer
77from pytorch_lightning .callbacks import (
88 EarlyStopping ,
99)
You can’t perform that action at this time.
0 commit comments