|
| x |
| feature matrix placeholder
|
|
| y |
| target placeholder
|
|
| activation |
| activation function
|
|
| cost |
| cost function
|
|
| optimizer |
| optimizer used to minimize cost function
|
|
| session |
| tensorflow session
|
|
Tensorflow state
Definition at line 117 of file using_tfdeploy.py.
◆ __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 """
129 self.activation = activation
133 self.optimizer = optimizer
135 self.session = session
The documentation for this class was generated from the following file: