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 d8ea335 commit 107f970Copy full SHA for 107f970
deepxde/nn/jax/nn.py
@@ -1,10 +1,12 @@
1
from flax import linen as nn
2
+
3
from .. import regularizers
4
5
class NN(nn.Module):
6
"""Base class for all neural network modules."""
7
8
# All sub-modules should have the following variables:
9
+ # regularization: Any = None
10
# params: Any = None
11
# _input_transform: Optional[Callable] = None
12
# _output_transform: Optional[Callable] = None
0 commit comments