Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
keras-team
GitHub Repository: keras-team/keras-io
Path: blob/master/scripts/master.py
3273 views
1
from guides_master import GUIDES_MASTER
2
from examples_master import EXAMPLES_MASTER
3
from api_master import API_MASTER
4
from tuner_master import TUNER_MASTER
5
from hub_master import HUB_MASTER
6
from rs_master import RS_MASTER
7
from keras2_api_master import KERAS2_API_MASTER
8
9
MASTER = {
10
"path": "/",
11
"title": "Keras: the Python Deep Learning library",
12
"children": [
13
{
14
"path": "getting_started/",
15
"title": "Getting started",
16
"children": [
17
{
18
"path": "about",
19
"title": "About Keras",
20
},
21
{
22
"path": "intro_to_keras_for_engineers",
23
"title": "Introduction to Keras for engineers",
24
},
25
{
26
"path": "benchmarks",
27
"title": "Keras 3 benchmarks",
28
},
29
{
30
"path": "ecosystem",
31
"title": "The Keras ecosystem",
32
},
33
{
34
"path": "faq",
35
"title": "Frequently Asked Questions",
36
"outline": False,
37
},
38
],
39
},
40
GUIDES_MASTER,
41
EXAMPLES_MASTER,
42
API_MASTER,
43
KERAS2_API_MASTER,
44
TUNER_MASTER,
45
HUB_MASTER,
46
RS_MASTER,
47
],
48
}
49
50