From 9362cee6319847c6e43776c38e7a7769a4289c4c Mon Sep 17 00:00:00 2001 From: Davor Runje Date: Mon, 5 Jun 2023 12:36:18 +0000 Subject: [PATCH] release 0.3.0rc0 --- nbs/experiments/AutoMPG.ipynb | 2 +- nbs/experiments/Blog.ipynb | 2 +- nbs/experiments/Compas.ipynb | 2 +- nbs/experiments/Heart.ipynb | 2 +- nbs/experiments/Loan.ipynb | 2 +- settings.ini | 2 +- setup.py | 13 ++++++++----- 7 files changed, 14 insertions(+), 11 deletions(-) diff --git a/nbs/experiments/AutoMPG.ipynb b/nbs/experiments/AutoMPG.ipynb index 3d89803..b9ea09b 100644 --- a/nbs/experiments/AutoMPG.ipynb +++ b/nbs/experiments/AutoMPG.ipynb @@ -118,7 +118,7 @@ "# | hide\n", "\n", "if in_colab:\n", - " !pip install monotonic-nn" + " !pip install \"monotonic-nn[experiments]\"" ] }, { diff --git a/nbs/experiments/Blog.ipynb b/nbs/experiments/Blog.ipynb index 0aad583..305fecd 100644 --- a/nbs/experiments/Blog.ipynb +++ b/nbs/experiments/Blog.ipynb @@ -98,7 +98,7 @@ "# | hide\n", "\n", "if in_colab:\n", - " !pip install monotonic-nn" + " !pip install \"monotonic-nn[experiments]\"" ] }, { diff --git a/nbs/experiments/Compas.ipynb b/nbs/experiments/Compas.ipynb index 671f8ff..10eada5 100644 --- a/nbs/experiments/Compas.ipynb +++ b/nbs/experiments/Compas.ipynb @@ -146,7 +146,7 @@ "# | hide\n", "\n", "if in_colab:\n", - " !pip install monotonic-nn" + " !pip install \"monotonic-nn[experiments]\"" ] }, { diff --git a/nbs/experiments/Heart.ipynb b/nbs/experiments/Heart.ipynb index 10f46a7..4fc0102 100644 --- a/nbs/experiments/Heart.ipynb +++ b/nbs/experiments/Heart.ipynb @@ -134,7 +134,7 @@ "# | hide\n", "\n", "if in_colab:\n", - " !pip install monotonic-nn" + " !pip install \"monotonic-nn[experiments]\"" ] }, { diff --git a/nbs/experiments/Loan.ipynb b/nbs/experiments/Loan.ipynb index d558199..9c04c64 100644 --- a/nbs/experiments/Loan.ipynb +++ b/nbs/experiments/Loan.ipynb @@ -95,7 +95,7 @@ "# | hide\n", "\n", "if in_colab:\n", - " !pip install monotonic-nn" + " !pip install \"monotonic-nn[experiments]\"" ] }, { diff --git a/settings.ini b/settings.ini index ef5204d..cdcb4bc 100644 --- a/settings.ini +++ b/settings.ini @@ -5,7 +5,7 @@ ### Python library ### repo = monotonic-nn lib_name = %(repo)s -version = 0.2.0 +version = 0.3.0rc0 min_python = 3.8 license = cc diff --git a/setup.py b/setup.py index 8167860..81701d7 100644 --- a/setup.py +++ b/setup.py @@ -29,9 +29,12 @@ lic = licenses.get(cfg['license'].lower(), (cfg['license'], None)) requirements = ["tensorflow>=2.10.0"] - + +experiments_requirements = [ + "keras-tuner[bayesian]==1.3.5" +] + dev_requirements = [ - "keras-tuner[bayesian]==1.3.5", "nbdev_mkdocs==0.5.1", "pytest==7.3.1", "pandas>=1.3.5", @@ -49,8 +52,8 @@ project_urls = { 'Bug Tracker': cfg['git_url'] + '/issues', 'CI': cfg['git_url'] + '/actions', - 'Documentation': 'https://mono-dense-keras.airt.ai/', -# 'Tutorial': 'https://colab.research.google.com/github/airtai/fastkafka/blob/main/nbs/guides/Guide_00_FastKafka_Demo.ipynb' + 'Documentation': 'https://monotonic.airt.ai/', + 'Tutorial': 'https://colab.research.google.com/github/airtai/monotonic-nn/blob/main/nbs/index.ipynb' } setuptools.setup( @@ -66,7 +69,7 @@ packages = setuptools.find_packages(), include_package_data = True, install_requires = requirements, - extras_require={ 'dev': dev_requirements }, + extras_require={ 'dev': dev_requirements + experiments_requirements, "experiments": experiments_requirements }, dependency_links = cfg.get('dep_links','').split(), python_requires = '>=' + cfg['min_python'], long_description = open('README.md').read(),