-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsidebars.js
129 lines (126 loc) · 3.4 KB
/
sidebars.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const fs = require("fs");
const path = require("path");
const docs = path.join(__dirname, "docs");
const tutorials = path.join(docs, "rune", "tutorials");
const lessons = fs
.readdirSync(tutorials)
.filter(
(dir) =>
dir.includes("lesson-") &&
fs.existsSync(path.join(tutorials, dir, "README.md"))
)
.map((dir) => path.join("rune", "tutorials", dir, "README"));
module.exports = {
docs: [
{
type: "category",
label: "What is HOT-G",
collapsed: true,
items: [
"hot-g/welcome-to-tinyverse",
"hot-g/what-hotg-has-created",
"hot-g/where-can-hotg-help",
"hot-g/how-will-this-benefit-you",
],
},
{
type: "category",
label: "Hammer Forge Studio",
collapsed: true,
items: [
"hammer-forge-studio/overview", // <-- links to an existing template + general workflow (build with canvas, test, deploy, etc.)
{
type: "category",
label: "Forge SDK",
items: [
"hammer-forge-studio/javascript-sdk",
"hammer-forge-studio/dart-sdk",
"hammer-forge-studio/native-sdk",
],
},
{
type: "category",
label: "Tutorial",
items: ["hammer-forge-studio/tutorial/lobe_ai"],
},
{
type: "category",
label: "Studio Pipeline Examples",
collapsed: true,
items: [
"hammer-forge-studio/pipeline/bird_classifier",
"hammer-forge-studio/pipeline/food",
"hammer-forge-studio/pipeline/gesture_recognition",
"hammer-forge-studio/pipeline/inception",
"hammer-forge-studio/pipeline/mobileNet",
"hammer-forge-studio/pipeline/person_detection",
"hammer-forge-studio/pipeline/plant_classifier",
"hammer-forge-studio/pipeline/yolo",
"hammer-forge-studio/pipeline/microspeech",
"hammer-forge-studio/pipeline/mobileBert",
],
},
],
},
{
type: "category",
label: "Rune",
collapsed: true,
items: [
"rune/overview",
"rune/install",
"rune/building-a-rune",
{
type: "category",
label: "Tutorial",
collapsed: true,
items: lessons,
},
],
},
{
type: "category",
label: "The Reference",
collapsed: true,
items: [
"reference/runefile",
"reference/capabilities",
"reference/proc-blocks",
"reference/models",
"reference/outputs",
],
},
{
type: "category",
label: "For Rune Developers",
items: ["internal/contributing"],
},
{
type: "category",
label: "Videos",
collapsed: false,
items: [
"videos/Forge-overview",
"videos/Proc-block",
"videos/build-a-pipeline",
"videos/test-your-pipeline-with-PWA",
{
type: "category",
label: "TF-to-Tflite",
collapsed: true,
items: [
"videos/TF-to-Tflite/model-optimization-techniques",
"videos/TF-to-Tflite/quantization-techniques",
"videos/TF-to-Tflite/testing-accuracy-of-quantization-techniques",
],
},
],
},
{
type: "category",
label: "Cool Ideas",
collapsed: true,
items: ["cool-ideas/controlling-nodes"],
},
],
};