Commit a43e5e58 authored by Karl Leswing's avatar Karl Leswing
Browse files

Formatting

parent ab1975b3
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ import tensorflow as tf


class Layer(object):

  def __init__(self, **kwargs):
    if "name" not in kwargs:
      self.name = "%s%s" % (self.__class__.__name__, self._random_name())
@@ -174,6 +175,7 @@ class TimeSeriesDense(Layer):


class Input(Layer):

  def __init__(self, shape, pre_queue=False, **kwargs):
    self.shape = shape
    self.pre_queue = pre_queue
@@ -200,7 +202,6 @@ class Input(Layer):
    return "%s_pre_q" % self.name



class LossLayer(Layer):

  def __init__(self, **kwargs):