Skip to content

Commit d200afb

Browse files
committed
docu
1 parent d19b018 commit d200afb

File tree

6 files changed

+702
-0
lines changed

6 files changed

+702
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/logs*
2+
/.idea*
3+
/.ipynb_checkpoints*

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

README.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
===================================
2+
TCN: Temporal Convolutional Network
3+
===================================
4+
5+
This is a generic **Temporal Convolutional Network** implementation as proposed in `An Empirical Evaluation of Generic Convolutional and Recurrent Networks
6+
for Sequence Modeling <https://arxiv.org/pdf/1803.01271.pdf>`_ by Bai et al. developed with **Tensorflow**.
7+
8+
The implementation has been tested on the following task contained in this repository:
9+
10+
- Sequential MNIST
11+
- Copy memory
12+
- Text classification on the IMDB movie dataset
13+
14+
15+
.. image:: https://raw.githubusercontent.com/jakeret/tf_unet/master/docs/tcn.png
16+
:alt: Temporal Convolutional Network
17+
:align: left
18+
19+
.. image:: https://raw.githubusercontent.com/jakeret/tf_unet/master/docs/layers.png
20+
:alt: Layers
21+
:align: left
22+
23+
.. image:: https://raw.githubusercontent.com/jakeret/tf_unet/master/docs/residual_block.png
24+
:alt: Residual block
25+
:align: left

docs/layers.png

45.2 KB
Loading

docs/residual_block.png

63.1 KB
Loading

docs/tcn.png

21.1 KB
Loading

0 commit comments

Comments
 (0)