Skip to content

Commit e215879

Browse files
Merge pull request #495 from tensorlayer/github_templates
Github Templates Added
2 parents 6f539ad + f75d5e3 commit e215879

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
### New Issue Checklist
2+
3+
- [ ] I have read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md)
4+
- [ ] I searched for [existing GitHub issues](https://github.com/tensorlayer/tensorlayer/issues)
5+
6+
### Issue Description
7+
8+
[INSERT DESCRIPTION OF THE PROBLEM]
9+
10+
### Reproducible Code
11+
12+
- Which OS are you using ?
13+
- Please provide a reproducible code of your issue. Without any reproducible code, you will probably not receive any help.
14+
15+
[INSERT CODE HERE]
16+
17+
```python
18+
# ======================================================== #
19+
###### THIS CODE IS AN EXAMPLE, REPLACE WITH YOUR OWN ######
20+
# ======================================================== #
21+
22+
import tensorflow as tf
23+
import tensorlayer as tl
24+
25+
x = tf.placeholder(tf.float32, [None, 64])
26+
net_in = tl.layers.InputLayer(x)
27+
28+
net = tl.layers.DenseLayer(net_in, n_units=25, act=tf.nn.relu, name='relu1')
29+
30+
print("Output Shape:", net.outputs.get_shape().as_list()) ### Output Shape: [None, 25]
31+
32+
# ======================================================== #
33+
###### THIS CODE IS AN EXAMPLE, REPLACE WITH YOUR OWN ######
34+
# ======================================================== #
35+
```
36+
37+
38+

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- ============================================================================================================
2+
Thanks for contributing to _TensorLayer_! We really appreciate your help !
3+
Before you submit your pull request, please make sure to check the following boxes by putting an x in the [ ]
4+
============================================================================================================= -->
5+
6+
### Checklist
7+
- [ ] I've tested that my changes are compatible with the latest version of Tensorflow.
8+
- [ ] I've read the [Contribution Guidelines](https://github.com/tensorlayer/tensorlayer/blob/master/CONTRIBUTING.md)
9+
- [ ] I've updated the documentation if necessary.
10+
11+
### Motivation and Context
12+
<!--- Why is this change required? What problem does it solve? -->
13+
<!--- If it fixes an open issue, please link to the issue here. -->
14+
<!--- Please describe in detail how you tested your changes. --->
15+
16+
### Description
17+
<!--- Describe your changes in detail -->

0 commit comments

Comments
 (0)