-
Suppose in resnet, there is an activation function after add the shortcut. However, in tl, ElementwiseLayer doesn't have activation function. As I know, the way to add the activation function after El…
-
In binary_cross_entropy function, now that "loss(x, z) = - sum_i (x[i] * log(z[i]) + (1 - x[i]) * log(1 - z[i]))", I think the code should be written like the following form:
return tf.reduce_mean(tf…
-
Would be nice to have something to load folder structures like this:
```
train_images
├── class1
│ ├── img1
│ ├── img2
│ ├── img3
│ └── img4
└── class2
├── img1
├── img2
…
-
I didn't see any biography for tensorlayer, could anyone suggest how the cite this software if use it in a paper.
-
![image](https://user-images.githubusercontent.com/6689783/29157008-63c5f14c-7dd7-11e7-87c7-907133d053f6.png)
While the code is
```
def subconv(net,i):
blockname='SubConv%d'%i
with tf.…
-
`out_keep_prob` defined in [BiDynamicRNNLayer](https://github.com/zsdonghao/tensorlayer/blob/b87f30ac49747c97fef73fb44aaed87248aebebf/tensorlayer/layers.py#L4708) is not used in the followed code sect…
-
I use the latest tensorflow and tensorlayer,I only changed batch_size from 16 to 4, but get the following error:
`Epoch [ 0/100] 0 time: 14.7791s, mse: 0.21392143
Epoch [ 0/100] 1 time: 0.8…
-
Tensorboard is really powerful in tracking the training process. Currently, does tensorlayer support summaries?
E.g. with the netwrok stacked by several tensorlayers , I want to use _histogram_summa…
-
Running minist example with Tensorflow 1.2 in [documents](http://tensorlayercn.readthedocs.io/zh/latest/user/tutorial.html)
shows error of :
`"Please give a unique name to tl.cost.cross_entropy for …
-
```python
in ()
3 tf.reset_default_graph()
4 tl.layers.set_name_reuse(True)
----> 5 placehold_mapping, networks = gen_network(None, label_indices=label_index, feature_indices=feature_…