forked from keras-team/keras-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_master.py
52 lines (52 loc) · 1.82 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
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": "feature_space",
"title": "Structured data preprocessing utilities",
"generate": [
"tensorflow.keras.utils.FeatureSpace",
],
},
{
"path": "python_utils",
"title": "Python & NumPy utilities",
"generate": [
"tensorflow.keras.utils.set_random_seed",
"tensorflow.keras.utils.split_dataset",
"tensorflow.keras.utils.get_file",
"tensorflow.keras.utils.Progbar",
"tensorflow.keras.utils.Sequence",
"tensorflow.keras.utils.to_categorical",
"tensorflow.keras.utils.to_ordinal",
"tensorflow.keras.utils.normalize",
],
},
{
"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",
],
},
],
}