Skip to content

Commit d102264

Browse files
committed
add info on custom networks
1 parent 8b0cee0 commit d102264

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)