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