forked from actionml/docs.actionml.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoclist.js
94 lines (93 loc) · 2.46 KB
/
doclist.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
DocList = [
{
title: 'Welcome to ActionML',
template: 'welcome_to_actionml',
sections: []
},
{
title: 'PredictionIO',
template: 'pio_by_actionml',
sections: [
{
title: 'Quickstart',
template: 'pio_quickstart'
},
{
title: 'Upgrading',
template: 'install'
},
{
title: 'Architecure and Workflow',
template: 'pio_architecture'
},
{
title: 'Introduction to Spark',
template: 'intro_to_spark'
},
{
title: 'PIO + UR AWS AMI',
template: 'awssetupguide'
},
{
title: 'Single Machine Setup',
template: 'single_machine'
},
{
title: 'Small HA Cluster',
template: 'small_ha_cluster'
},
{
title: 'Distributed Cluster',
template: 'single_driver_machine'
},
{
title: 'Cheatsheet',
template: 'pio_cli_cheatsheet'
},
{
title: 'Start/Stop PIO',
template: 'pio_start_stop'
},
{
title: 'Version History',
template: 'pio_versions'
}
]
},
{
title: 'The Universal Recommender',
template: 'ur',
sections: [
{
title: 'Quickstart',
template: 'ur_quickstart'
},
{
title: 'Configuration',
template: 'ur_config'
},
{
title: 'Input',
template: 'ur_input'
},
{
title: 'Queries',
template: 'ur_queries'
},
{
title: 'Advanced Tuning',
template: 'ur_advanced_tuning'
},
{
title: 'Model Debugging',
template: 'ur_elasticsearch_debugging'
}
]
}
];
DocListIndex = _(DocList).chain()
.zip(_(DocList).pluck('sections'))
.flatten()
.compact()
.pluck('template')
.value()