From 6ffaea6976ed027536a71be2476dfe47faea4cf2 Mon Sep 17 00:00:00 2001 From: philipperemy Date: Sat, 30 Sep 2023 11:52:14 +0700 Subject: [PATCH 1/7] TF 2.14 --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 2d4d851..9e57d6f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py3}-tensorflow-{2.7,2.8,2.9,2.10,2.11,2.12,2.13} +envlist = {py3}-tensorflow-{2.7,2.8,2.9,2.10,2.11,2.12,2.13,2.14} [testenv] setenv = @@ -15,6 +15,7 @@ deps = pytest tensorflow-2.11: tensorflow==2.11 tensorflow-2.12: tensorflow==2.12 tensorflow-2.13: tensorflow==2.13 + tensorflow-2.14: tensorflow==2.14 changedir = tasks/ commands = pylint --disable=R,C,W,E1136 ../tcn flake8 ../tcn --count --select=E9,F63,F7,F82 --show-source --statistics From 95289112ee86d6c354438630ef8bd9e5c8206c88 Mon Sep 17 00:00:00 2001 From: philipperemy Date: Sat, 30 Sep 2023 11:53:38 +0700 Subject: [PATCH 2/7] TF 2.14 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 792ee85..3fa4ea4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ *Keras Temporal Convolutional Network*. [[paper](https://arxiv.org/abs/1803.01271)] -Tested with Tensorflow 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12 and 2.13 (Jul 25, 2023). +Tested with Tensorflow 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13 and 2.14 (Sep 26, 2023). [![Downloads](https://pepy.tech/badge/keras-tcn)](https://pepy.tech/project/keras-tcn) [![Downloads](https://pepy.tech/badge/keras-tcn/month)](https://pepy.tech/project/keras-tcn) From 6498709d80020823f8e3b091d95dfaf64777dfb0 Mon Sep 17 00:00:00 2001 From: philipperemy Date: Sat, 30 Sep 2023 12:20:34 +0700 Subject: [PATCH 3/7] upgrade to python3.9 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04ebd7f..74ff0c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,12 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [ 3.8 ] + python-version: [ 3.9 ] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies From 4183bd845021c26eba4afa866a24b710daaf493b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20R=C3=A9my?= Date: Fri, 17 Nov 2023 17:35:06 +0700 Subject: [PATCH 4/7] Update tox.ini --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9e57d6f..6211743 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py3}-tensorflow-{2.7,2.8,2.9,2.10,2.11,2.12,2.13,2.14} +envlist = {py3}-tensorflow-{2.7,2.8,2.9,2.10,2.11,2.12,2.13,2.14,2.15} [testenv] setenv = @@ -16,6 +16,7 @@ deps = pytest tensorflow-2.12: tensorflow==2.12 tensorflow-2.13: tensorflow==2.13 tensorflow-2.14: tensorflow==2.14 + tensorflow-2.15: tensorflow==2.15 changedir = tasks/ commands = pylint --disable=R,C,W,E1136 ../tcn flake8 ../tcn --count --select=E9,F63,F7,F82 --show-source --statistics From ae82da6fb38333088536f9ca512b521e026ed94b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20R=C3=A9my?= Date: Fri, 17 Nov 2023 18:01:16 +0700 Subject: [PATCH 5/7] Update tox.ini --- tox.ini | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 6211743..a9b1e81 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py3}-tensorflow-{2.7,2.8,2.9,2.10,2.11,2.12,2.13,2.14,2.15} +envlist = {py3}-tensorflow-{2.9,2.10,2.11,2.12,2.13,2.14,2.15} [testenv] setenv = @@ -8,8 +8,6 @@ deps = pytest pylint flake8 -rrequirements.txt - tensorflow-2.7: tensorflow==2.7 - tensorflow-2.8: tensorflow==2.8 tensorflow-2.9: tensorflow==2.9 tensorflow-2.10: tensorflow==2.10 tensorflow-2.11: tensorflow==2.11 From fc6ffd30d01618e7a8e41f62feb1df7148eb7753 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20R=C3=A9my?= Date: Fri, 17 Nov 2023 19:02:52 +0700 Subject: [PATCH 6/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fa4ea4..8c029e1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ *Keras Temporal Convolutional Network*. [[paper](https://arxiv.org/abs/1803.01271)] -Tested with Tensorflow 2.7, 2.8, 2.9, 2.10, 2.11, 2.12, 2.13 and 2.14 (Sep 26, 2023). +Tested with Tensorflow 2.9, 2.10, 2.11, 2.12, 2.13, 2.14 and 2.15 (Nov 17, 2023). [![Downloads](https://pepy.tech/badge/keras-tcn)](https://pepy.tech/project/keras-tcn) [![Downloads](https://pepy.tech/badge/keras-tcn/month)](https://pepy.tech/project/keras-tcn) From 8b1fc9a5a52a7aa823e1ddd0238487300c5770a4 Mon Sep 17 00:00:00 2001 From: Philipp Simon Leibner <69346714+philipp-leibner@users.noreply.github.com> Date: Sun, 14 Apr 2024 14:52:32 +0200 Subject: [PATCH 7/7] Update README.md Minimal fix in the README: `use_batch_norm`, `use_weight_norm`, `use_weight_norm`: Use normalization... -> `use_batch_norm`, `use_weight_norm`, `use_layer_norm` (!!): Use normalization --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c029e1..289720f 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Here are some of my notes regarding my experience using TCN: - `activation`: Leave it to default. I have never changed it. - `kernel_initializer`: If the training of the TCN gets stuck, it might be worth changing this parameter. For example: `glorot_uniform`. -- `use_batch_norm`, `use_weight_norm`, `use_weight_norm`: Use normalization if your network is big enough and the task contains enough data. I usually prefer using `use_layer_norm`, but you can try them all and see which one works the best. +- `use_batch_norm`, `use_weight_norm`, `use_layer_norm`: Use normalization if your network is big enough and the task contains enough data. I usually prefer using `use_layer_norm`, but you can try them all and see which one works the best. ### Receptive field