Belle II Software  release-05-02-19
State Class Reference
Inheritance diagram for State:
Collaboration diagram for State:

Public Member Functions

def __init__ (self, x=None, y=None, activation=None, cost=None, optimizer=None, session=None)
 

Public Attributes

 x
 feature matrix placeholder
 
 y
 target placeholder
 
 activation
 activation function
 
 cost
 cost function
 
 optimizer
 optimizer used to minimize cost function
 
 session
 tensorflow session
 

Detailed Description

Tensorflow state

Definition at line 113 of file using_tfdeploy.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  x = None,
  y = None,
  activation = None,
  cost = None,
  optimizer = None,
  session = None 
)
Constructor of the state object 

Definition at line 118 of file using_tfdeploy.py.

118  def __init__(self, x=None, y=None, activation=None, cost=None, optimizer=None, session=None):
119  """ Constructor of the state object """
120 
121  self.x = x
122 
123  self.y = y
124 
125  self.activation = activation
126 
127  self.cost = cost
128 
129  self.optimizer = optimizer
130 
131  self.session = session
132 
133 

The documentation for this class was generated from the following file: