Skip to content

Commit

Permalink
Merge branch 'master' into fix_256
Browse files Browse the repository at this point in the history
  • Loading branch information
philipperemy authored Aug 13, 2024
2 parents ee8cd94 + 55403a2 commit 9a10fbf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ 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
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
Expand Down

0 comments on commit 9a10fbf

Please sign in to comment.