We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b0cee0 commit d102264Copy full SHA for d102264
tensordiffeq/networks.py
@@ -4,7 +4,9 @@
4
from tensorflow.keras import layers, activations
5
6
7
-# define the neural network model
+# 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
10
def neural_net(layer_sizes):
11
model = Sequential()
12
model.add(layers.InputLayer(input_shape=(layer_sizes[0],)))
0 commit comments