Belle II Software  release-06-02-00
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 117 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 122 of file using_tfdeploy.py.

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

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