forked from keras-team/keras-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils_master.py
54 lines (53 loc) · 1.91 KB
/
utils_master.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
UTILS_MASTER = {
'path': 'utils/',
'title': 'Utilities',
'toc': True,
'children': [
{
'path': 'model_plotting_utils',
'title': 'Model plotting utilities',
'generate': [
'tensorflow.keras.utils.plot_model',
'tensorflow.keras.utils.model_to_dot',
]
},
{
'path': 'serialization_utils',
'title': 'Serialization utilities',
'generate': [
'tensorflow.keras.utils.custom_object_scope',
'tensorflow.keras.utils.get_custom_objects',
'tensorflow.keras.utils.register_keras_serializable',
'tensorflow.keras.utils.serialize_keras_object',
'tensorflow.keras.utils.deserialize_keras_object',
]
},
{
'path': 'python_utils',
'title': 'Python & NumPy utilities',
'generate': [
'tensorflow.keras.utils.to_categorical',
'tensorflow.keras.utils.normalize',
'tensorflow.keras.utils.get_file',
'tensorflow.keras.utils.Progbar',
'tensorflow.keras.utils.Sequence',
]
},
{
'path': 'backend_utils',
'title': 'Backend utilities',
'generate': [
'tensorflow.keras.backend.clear_session',
'tensorflow.keras.backend.floatx',
'tensorflow.keras.backend.set_floatx',
'tensorflow.keras.backend.image_data_format',
'tensorflow.keras.backend.set_image_data_format',
'tensorflow.keras.backend.epsilon',
'tensorflow.keras.backend.set_epsilon',
'tensorflow.keras.backend.is_keras_tensor',
'tensorflow.keras.backend.get_uid',
'tensorflow.keras.backend.rnn',
]
}
]
}