Tensorflow state
Definition at line 15 of file contrib_keras.py.
◆ __init__()
def __init__ |
( |
|
self, |
|
|
|
model = None , |
|
|
|
custom_objects = None , |
|
|
** |
kwargs |
|
) |
| |
Constructor of the state object
Definition at line 20 of file contrib_keras.py.
20 def __init__(self, model=None, custom_objects=None, **kwargs):
21 """ Constructor of the state object """
25 self.custom_objects = custom_objects
27 self.collection_keys = []
30 for key, value
in kwargs.items():
31 self.collection_keys.append(key)
32 setattr(self, key, value)
The documentation for this class was generated from the following file: