-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
283 lines (259 loc) Β· 13 KB
/
resources.html
File metadata and controls
283 lines (259 loc) Β· 13 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="LLMNetOps Resources - Training modules, case studies, reports, and documentation for privacy-aware AI in network operations.">
<title>Resources - LLMNetOps</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/components.css">
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-container">
<a href="index.html" class="logo">
<img src="images/llmnetops-logo-formal.png" alt="LLMNetOps Logo">
</a>
<button class="mobile-menu-btn" aria-label="Toggle navigation menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="workshops.html">Workshops</a></li>
<li><a href="news.html">News</a></li>
<li><a href="resources.html" class="active">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!-- Page Header -->
<section class="page-header">
<div class="breadcrumb">
<a href="index.html">Home</a>
<span>/</span>
<span>Resources</span>
</div>
<h1>Learning Resources</h1>
<p>Training modules, case studies, and documentation for privacy-aware AI deployment</p>
</section>
<!-- Resource Filters -->
<section>
<div class="container">
<div class="resource-filters">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="training_module">Training Modules</button>
<button class="filter-btn" data-filter="case_study">Case Studies</button>
<button class="filter-btn" data-filter="report">Reports</button>
<button class="filter-btn" data-filter="whitepaper">White Papers</button>
</div>
</div>
</section>
<!-- Training Modules -->
<section class="about">
<div class="container">
<h2 class="section-title">Training Modules</h2>
<p class="section-subtitle">Comprehensive curriculum on locally-hosted LLMs for network operations</p>
<div class="alert alert-info mb-4">
<span class="alert-icon">π</span>
<div>
<strong>Coming Soon</strong><br>
Training modules are currently in development and will be available after the first workshop session.
</div>
</div>
<div class="card-grid">
<div class="resource-card">
<span class="resource-type type-module">Training Module</span>
<h3>Module 1: Introduction to Large Language Models</h3>
<p>Comprehensive introduction to LLMs covering architecture, capabilities, and applications in network operations.</p>
<div class="resource-meta">
<span>π Bilingual (ID/EN)</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
<div class="resource-card">
<span class="resource-type type-module">Training Module</span>
<h3>Module 2: Privacy-Aware AI Deployment</h3>
<p>Deep dive into privacy considerations, data protection, and institutional autonomy in AI deployment.</p>
<div class="resource-meta">
<span>π Bilingual (ID/EN)</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
<div class="resource-card">
<span class="resource-type type-module">Training Module</span>
<h3>Module 3: RAG Pipelines for Network Documentation</h3>
<p>Practical guide to building Retrieval-Augmented Generation pipelines for network documentation and troubleshooting.</p>
<div class="resource-meta">
<span>π Bilingual (ID/EN)</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
<div class="resource-card">
<span class="resource-type type-module">Training Module</span>
<h3>Module 4: AI Agentic Workflows</h3>
<p>Advanced module on building AI agents for automated network operations tasks.</p>
<div class="resource-meta">
<span>π Bilingual (ID/EN)</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
<div class="resource-card">
<span class="resource-type type-module">Training Module</span>
<h3>Module 5: Infrastructure Integration</h3>
<p>Guide to integrating locally-hosted LLMs with existing network infrastructure and monitoring systems.</p>
<div class="resource-meta">
<span>π Bilingual (ID/EN)</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
</div>
</div>
</section>
<!-- Reports & White Papers -->
<section>
<div class="container">
<h2 class="section-title">Reports & White Papers</h2>
<p class="section-subtitle">Research outputs and policy insights</p>
<div class="card-grid">
<div class="resource-card">
<span class="resource-type type-report">Report</span>
<h3>Initial Needs Assessment Report</h3>
<p>Survey results and analysis of AI adoption challenges across IDREN member institutions.</p>
<div class="resource-meta">
<span>π PDF</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
<div class="resource-card">
<span class="resource-type" style="background: #e0e7ff; color: #4338ca;">White Paper</span>
<h3>NetOps with AI: Policy Insights for IDREN</h3>
<p>Comprehensive whitepaper on AI adoption policies and recommendations for network operations in educational institutions.</p>
<div class="resource-meta">
<span>π PDF</span>
<span class="status-badge status-not-started">Coming Soon</span>
</div>
</div>
</div>
</div>
</section>
<!-- Case Studies -->
<section class="about">
<div class="container">
<h2 class="section-title">Case Studies</h2>
<p class="section-subtitle">Real-world implementation examples from IDREN institutions</p>
<div class="alert alert-info">
<span class="alert-icon">π</span>
<div>
<strong>Case Studies Coming Soon</strong><br>
Case studies will be developed after workshop completion, documenting real-world implementation experiences from participating institutions.
</div>
</div>
<div class="card mt-4">
<h3>Contribute a Case Study</h3>
<p>Are you implementing locally-hosted LLMs in your institution? We welcome case study contributions from IDREN member institutions. Your experience could help others on their AI adoption journey.</p>
<a href="contact.html" class="btn btn-outline mt-2">Contact Us to Contribute</a>
</div>
</div>
</section>
<!-- External Resources -->
<section>
<div class="container">
<h2 class="section-title">Helpful External Resources</h2>
<p class="section-subtitle">Recommended resources for learning about LLMs and AI deployment</p>
<div class="card-grid">
<div class="card">
<div class="card-icon">π¦</div>
<h3>Ollama</h3>
<p>Run large language models locally. An easy way to get started with locally-hosted LLMs.</p>
<a href="https://ollama.ai" target="_blank" rel="noopener noreferrer" class="btn btn-outline mt-2">Visit Website β</a>
</div>
<div class="card">
<div class="card-icon">π€</div>
<h3>Hugging Face</h3>
<p>The AI community building the future. Access thousands of open-source models and datasets.</p>
<a href="https://huggingface.co" target="_blank" rel="noopener noreferrer" class="btn btn-outline mt-2">Visit Website β</a>
</div>
<div class="card">
<div class="card-icon">π</div>
<h3>LangChain</h3>
<p>Build applications with LLMs through composability. Framework for RAG pipelines and AI agents.</p>
<a href="https://langchain.com" target="_blank" rel="noopener noreferrer" class="btn btn-outline mt-2">Visit Website β</a>
</div>
<div class="card">
<div class="card-icon">π</div>
<h3>APNIC Blog</h3>
<p>Latest news and insights from the Asia-Pacific networking community.</p>
<a href="https://blog.apnic.net" target="_blank" rel="noopener noreferrer" class="btn btn-outline mt-2">Visit Website β</a>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="contact">
<h2 class="section-title">Need Help?</h2>
<p class="section-subtitle">Questions about resources or looking for specific materials?</p>
<div class="btn-group">
<a href="contact.html" class="btn btn-primary">Contact Us</a>
<a href="workshops.html" class="btn btn-secondary">View Workshops</a>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>LLMNetOps</h4>
<p>Strengthening Network Operations Knowledge-Base through Locally-Hosted Generative AI</p>
<p><a href="https://apnic.foundation/projects/llmnetops/" target="_blank">View Project on APNIC Foundation</a></p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="workshops.html">Workshops</a></li>
<li><a href="news.html">News</a></li>
<li><a href="resources.html">Resources</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Funded By</h4>
<div class="partner-logos">
<img src="images/APNIC-Foundation-and-ISIF-Logo-white-stacked-01.svg" alt="APNIC Foundation and ISIF Asia">
</div>
</div>
<div class="footer-section">
<h4>Implemented By</h4>
<div class="partner-logos">
<img src="images/Logo_Universitas_Brawijaya.png" alt="Universitas Brawijaya">
<img src="images/logo-idren.png" alt="IDREN">
</div>
</div>
</div>
<div class="footer-bottom">
<p>© <span class="current-year">2024</span> LLMNetOps. All rights reserved.</p>
</div>
</footer>
<!-- Back to Top Button -->
<button class="back-to-top" aria-label="Back to top">β</button>
<!-- Scripts -->
<script src="js/navigation.js"></script>
<script src="js/animations.js"></script>
<script src="js/main.js"></script>
<script>
// Resource filter functionality
document.querySelectorAll('.filter-btn').forEach(btn => {
btn.addEventListener('click', function() {
document.querySelectorAll('.filter-btn').forEach(b => b.classList.remove('active'));
this.classList.add('active');
// Add filter logic here when resources are available
});
});
</script>
</body>
</html>