1
Fork 0

fix: removed useless comment

This commit is contained in:
cedric 2026-04-02 18:00:53 +00:00
parent 95840b789b
commit 729f122be4

View file

@ -8,7 +8,6 @@ from typing import Sequence, Callable
from flax.linen.initializers import constant, orthogonal
# example usage: network = SemiGenericNetwork(layer_sizes=[256, 256], activation=nn.relu)
# semi generic so we can easily make a config for it in experiments
class SemiGenericNetwork(nn.Module):
layer_sizes: Sequence[int] = field(default_factory=lambda: [64, 64])