From fcb9e317e8bf95e4695c7413941a6522ad54de25 Mon Sep 17 00:00:00 2001 From: Mikko Kotila Date: Sun, 21 Apr 2024 10:31:47 +0300 Subject: [PATCH] remove Adadelta from legacy optimizers --- .github/PULL_REQUEST_TEMPLATE.md | 1 - docs/Examples_Generator.md | 2 +- docs/Examples_Generator_Code.md | 2 +- docs/_coverpage.md | 2 +- docs/index.html | 2 +- talos/__init__.py | 2 +- talos/autom8/autoparams.py | 4 ++-- talos/model/normalizers.py | 6 ++---- tests/performance/memory_pressure.py | 2 +- 9 files changed, 10 insertions(+), 13 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index b1e97add..e0c863cc 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -9,7 +9,6 @@ the below items: - [ ] Code is [PEP8](https://www.python.org/dev/peps/pep-0008/) - [ ] I'm making the PR to `master` - [ ] I've updated the versions based on [Semantic Versioning](https://semver.org/) - - [ ] `setup.py` - [ ] `talos/__init__.py` - [ ] `docs/index.html` - [ ] `docs/_coverpage.md` diff --git a/docs/Examples_Generator.md b/docs/Examples_Generator.md index 32826327..304e7a5d 100644 --- a/docs/Examples_Generator.md +++ b/docs/Examples_Generator.md @@ -83,7 +83,7 @@ return out, model ### Parameter Dictionary ```python p = {'activation':['relu', 'elu'], - 'optimizer': ['AdaDelta'], + 'optimizer': ['Adam'], 'losses': ['logcosh'], 'shapes': ['brick'], 'first_neuron': [32], diff --git a/docs/Examples_Generator_Code.md b/docs/Examples_Generator_Code.md index 010a53cd..103a46f3 100644 --- a/docs/Examples_Generator_Code.md +++ b/docs/Examples_Generator_Code.md @@ -36,7 +36,7 @@ def mnist_model(x_train, y_train, x_val, y_val, params): return out, model p = {'activation':['relu', 'elu'], - 'optimizer': ['AdaDelta'], + 'optimizer': ['Adam'], 'losses': ['logcosh'], 'shapes': ['brick'], 'first_neuron': [32], diff --git a/docs/_coverpage.md b/docs/_coverpage.md index 0e1635c2..463ba67f 100644 --- a/docs/_coverpage.md +++ b/docs/_coverpage.md @@ -1,6 +1,6 @@ ![logo](_media/talos_logo_bg.png) -## v1.3.3 +## v1.4 > Hyperparameter Experiments with Tensorflow, PyTorch and Keras diff --git a/docs/index.html b/docs/index.html index 7b917bff..a6f97f90 100644 --- a/docs/index.html +++ b/docs/index.html @@ -16,7 +16,7 @@