Skip to content

Commit

Permalink
updated status with description, fixed naming in fastai (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubczakon committed Oct 17, 2019
1 parent b395621 commit 84a4309
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# The short X.Y version
version = '0.13'
# The full version, including alpha/beta/rc tags
release = '0.13.7'
release = '0.13.8'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion neptunecontrib/monitoring/fastai.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def on_epoch_end(self, **kwargs):
metric_name = getattr(metric_name, '__name__', metric_name)
self._exp.send_metric(self._prefix + str(metric_name), float(metric_value))

def on_batch_end(self, last_loss, iteration, train, **kwars):
def on_batch_end(self, last_loss, iteration, train, **kwargs):
if iteration == 0 or not train:
return
self._exp.send_metric('{}last_loss'.format(self._prefix), last_loss)
2 changes: 1 addition & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ load-plugins=pylintfileheader
# W0511 Allow TODO/FIXME comments.
# W0703 Allow too broad except clause (Exception).
# I0011 Do not show Locally disabled warnings in report
disable=R,C0103,C0111,W0401,W0511,W0614,W0703,I0011,W0613,E0401,C0411,E0611
disable=R,C0103,C0111,W0401,W0511,W0614,W0703,I0011,W0613,E0401,C0411,E0611,W0221

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@


def main():
with open('README.md') as readme_file:
readme = readme_file.read()

extras = {
'bots': ['python-telegram-bot'],
'hpo': ['scikit-optimize==0.5.2', 'scipy'],
Expand All @@ -20,12 +23,13 @@ def main():

setup(
name='neptune-contrib',
version='0.13.7',
description='Neptune Python library contributions',
version='0.13.8',
description='Neptune.ml contributions library',
author='neptune.ml',
support='contact@neptune.ml',
author_email='contact@neptune.ml',
url="https://github.com/neptune-ml/neptune-contrib",
long_description='Neptune Python library contributions',
long_description=readme,
license='MIT License',
install_requires=base_libs,
extras_require=extras,
Expand Down

0 comments on commit 84a4309

Please sign in to comment.