update package info (#768)
* update info * fix duplicate #733 * update Appveyor budge #626 * budge to master
This commit is contained in:
parent
589815f6ab
commit
5e97e66146
|
@ -10,7 +10,7 @@
|
|||
[![PyPI Status](https://badge.fury.io/py/pytorch-lightning.svg)](https://badge.fury.io/py/pytorch-lightning)
|
||||
[![PyPI Status](https://pepy.tech/badge/pytorch-lightning)](https://pepy.tech/project/pytorch-lightning)
|
||||
[![Build Status](https://travis-ci.org/PytorchLightning/pytorch-lightning.svg?branch=master)](https://travis-ci.org/PytorchLightning/pytorch-lightning)
|
||||
[![Build status](https://ci.appveyor.com/api/projects/status/NEW-PROJECT-ID?svg=true)](https://ci.appveyor.com/project/PytorchLightning/pytorch-lightning)
|
||||
[![Build status](https://ci.appveyor.com/api/projects/status/nwr730s1qd9199g3/branch/master?svg=true)](https://ci.appveyor.com/project/PyTorchLightning/pytorch-lightning/branch/master)
|
||||
[![Coverage](docs/source/_static/images/coverage.svg)](https://github.com/PytorchLightning/pytorch-lightning/tree/master/tests#running-coverage)
|
||||
[![CodeFactor](https://www.codefactor.io/repository/github/borda/pytorch-lightning/badge)](https://www.codefactor.io/repository/github/borda/pytorch-lightning)
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
"""Package info"""
|
||||
"""Root package info."""
|
||||
|
||||
__version__ = '0.6.0'
|
||||
__version__ = '0.6.0.dev'
|
||||
__author__ = 'William Falcon et al.'
|
||||
__author_email__ = 'waf2107@columbia.edu'
|
||||
__license__ = 'Apache-2.0'
|
||||
__copyright__ = 'Copyright (c) 2018-2019, %s.' % __author__
|
||||
__copyright__ = 'Copyright (c) 2018-2020, %s.' % __author__
|
||||
__homepage__ = 'https://github.com/PyTorchLightning/pytorch-lightning'
|
||||
# this has to be simple string, see: https://github.com/pypa/twine/issues/522
|
||||
__docs__ = "PyTorch Lightning is the lightweight PyTorch wrapper for ML researchers." \
|
||||
|
@ -21,7 +21,7 @@ except NameError:
|
|||
|
||||
if __LIGHTNING_SETUP__:
|
||||
import sys
|
||||
sys.stderr.write('Partial import of torchlightning during the build process.\n')
|
||||
sys.stderr.write('Partial import of `torchlightning` during the build process.\n')
|
||||
# We are not importing the rest of the scikit during the build
|
||||
# process, as it may not be compiled yet
|
||||
else:
|
||||
|
|
|
@ -498,7 +498,6 @@ class TrainerTrainLoopMixin(ABC):
|
|||
|
||||
# track progress bar metrics
|
||||
self.add_tqdm_metrics(progress_bar_metrics)
|
||||
self.add_tqdm_metrics(progress_bar_metrics)
|
||||
all_log_metrics.append(log_metrics)
|
||||
|
||||
# insert after step hook
|
||||
|
|
Loading…
Reference in New Issue