FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [View Raw Code]   [Original HTTPS Page]

TensorLayerX/.github/ISSUE_TEMPLATE.md at main · tensorlayer/TensorLayerX · GitHub

Latest commit

 

History

History
37 lines (22 loc) · 1.08 KB

File metadata and controls

37 lines (22 loc) · 1.08 KB

New Issue Checklist

Issue Description

[INSERT DESCRIPTION OF THE PROBLEM]

Reproducible Code

  • Which OS are you using ?
  • Please provide a reproducible code of your issue. Without any reproducible code, you will probably not receive any help.

[INSERT CODE HERE]

# ======================================================== #
###### THIS CODE IS AN EXAMPLE, REPLACE WITH YOUR OWN ######
# ======================================================== #

import tensorflow as tf
import tensorlayerx as tl

net_in = tlx.layers.Input((3, 64))

net = tlx.nn.Linear(out_features=25, in_features=64, act='relu')

print("Output Shape:", net(net_in).shape) ### Output Shape: [None, 25]

# ======================================================== #
###### THIS CODE IS AN EXAMPLE, REPLACE WITH YOUR OWN ######
# ======================================================== #

Back | FazBrowse Home | New Git URL