Skip to content

Commit e5d804a

Browse files
authored
Merge pull request #12 from levimcclenny/main
add info on custom networks
2 parents d4fe018 + d102264 commit e5d804a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tensordiffeq/networks.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
from tensorflow.keras import layers, activations
55

66

7-
# define the neural network model
7+
# define the baseline FC neural network model
8+
# information about how to define custom neural networks is available
9+
# in the docs - https://docs.tensordiffeq.io/hacks/networks/index.html
810
def neural_net(layer_sizes):
911
model = Sequential()
1012
model.add(layers.InputLayer(input_shape=(layer_sizes[0],)))

0 commit comments

Comments
 (0)