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.
2 parents d4fe018 + d102264 commit e5d804aCopy full SHA for e5d804a
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