TensorLayer icon indicating copy to clipboard operation
TensorLayer copied to clipboard

Deep Learning and Reinforcement Learning Library for Scientists and Engineers

Results 36 TensorLayer issues
Sort by recently updated
recently updated
newest added

I used tf.reset_default_graph() in tensorflow 1.x to repeat run a cell and it worked well (to generate many trianed model in one run). However, in tensorflow 2.0, tf.compat.v1.reset_default_graph() is not...

### New Issue Checklist - [ ] I have read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md) - [ ] I searched for [existing GitHub issues](https://github.com/tensorlayer/tensorlayer/issues) ### Issue Description When I using the function...

### New Issue Checklist - [ ] I have read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md) - [ ] I searched for [existing GitHub issues](https://github.com/tensorlayer/tensorlayer/issues) ### Issue Description [INSERT DESCRIPTION OF THE PROBLEM]...

![image](https://user-images.githubusercontent.com/17508662/79410167-3fe42f00-7fd2-11ea-93b6-bff9fab695a6.png) ![image](https://user-images.githubusercontent.com/17508662/79410199-4ffc0e80-7fd2-11ea-8055-573836a74d52.png)

Request to implement ACKTR algorithm in this link: https://github.com/openai/baselines/tree/f2729693253c0ef4d4086231d36e0a4307ec1cb3/baselines/acktr

### Checklist - [x] I've tested that my changes are compatible with the latest version of Tensorflow. - [x] I've read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md) - [x] I've updated the documentation...

### Checklist - [x] I've tested that my changes are compatible with the latest version of Tensorflow. - [x] I've read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md) - [ ] I've updated the...

Add octconv layers and obj coord preprocessing ops. ### Checklist - [x] I've tested that my changes are compatible with the latest version of Tensorflow. - [x] I've read the...

### Checklist - [x] I've tested that my changes are compatible with the latest version of Tensorflow. - [x] I've read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md) - [x] I've updated the documentation...

In English: tensorlayer2.2.5 function _load_weights_from_hdf5_group_in_order() have errors in: layer_names = [n.decode('utf8') for n in f.attrs["layer_names"]]. Need to be modified to: layer_names = [n if isinstance(n, str) else n.decode('utf8') for n...