| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [View Raw Code] [Original HTTPS Page] |
[INSERT DESCRIPTION OF THE PROBLEM]
[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 |