-
I'm looking for the way about to convert ckpt to npz.
I have founded this page http://tensorlayer.readthedocs.io/en/latest/modules/files.html.
I think if we use tensorlayer, we can convert its forma…
-
Hi,
It throws an exception when I tried to initialize parameters with tf.train.Supervisor where the net is contructed with tensorlayer. The code is like this:
```
init_op = tf.global_…
-
Can the tensorlayer support multi-input and multi-output models ?
Is there any multi-input demo or example?
-
Dropout and Batch Normalization are two major structures that should behave differently in both training and test phases.
According to the API reference (http://tensorlayer.readthedocs.io/en/latest…
-
flake8 testing of https://github.com/zsdonghao/seq2seq-chatbot on Python 2.7.13
$ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
```
./tensorlayer/layers.py:597…
-
Code is full of [print statements](https://github.com/zsdonghao/tensorlayer/blob/master/tensorlayer/utils.py#L108). Please use [logging](https://docs.python.org/3/library/logging.html) so that one can…
mitar updated
6 years ago
-
-
In general cases,
the seq2seq model will be used to generate the corresponding output.
In my implementation,
I want to use usual RNN to generate the sequence output.
However,
I didn't find any…
-
Hi,
LayerNormLayer doesn't collect the variables in tf.contrib.layers.layer_norm.
https://github.com/zsdonghao/tensorlayer/blob/0ede6653e4c3f5504d285ba929d8d885e1967285/tensorlayer/layers.py#L35…
ghost updated
7 years ago
-
It seems reading data with feed_dict is inefficient in tensorflow (I found it 3-4 times slower than a theano-based implementation with a totally same network structure), I turn to a queue-based method…