Skip to content

Commit

Permalink
docs: docstrings for Identity module
Browse files Browse the repository at this point in the history
  • Loading branch information
SauravMaheshkar committed Sep 13, 2024
1 parent 09d1e08 commit 52776d6
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions jflux/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,15 +206,7 @@ def __call__(self, z: Array) -> Array:


class Identity(nnx.Module):
"""
Identity module.
Args:
x (Array): Input array.
Returns:
Array: The input array.
"""
"""Identity module."""

def __call__(self, x: Array) -> Array:
return x

0 comments on commit 52776d6

Please sign in to comment.