Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions neuroptica/layers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import numpy as np

from neuroptica.components.component_layers import MZILayer, OpticalMesh, PhaseShifterLayer
from neuroptica.nonlinearities import ComplexNonlinearity
from neuroptica.nonlinearities import Nonlinearity
from neuroptica.settings import NP_COMPLEX


Expand Down Expand Up @@ -63,7 +63,7 @@ class Activation(NetworkLayer):
X is output, input for next linear layer)
'''

def __init__(self, nonlinearity: ComplexNonlinearity):
def __init__(self, nonlinearity: Nonlinearity):
super().__init__(nonlinearity.N, nonlinearity.N)
self.nonlinearity = nonlinearity

Expand Down
Loading