Commit 429bb118 authored by leswing's avatar leswing
Browse files

Fix bad merge with personal feature branch on the Input Layer

parent fac130d6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -174,9 +174,9 @@ class TimeSeriesDense(Layer):


class Input(Layer):

  def __init__(self, shape, **kwargs):
    self.t_shape = shape
  def __init__(self, shape, pre_queue=False, **kwargs):
    self.shape = shape
    self.pre_queue = pre_queue
    super().__init__(**kwargs)

  def __call__(self, *parents):