File size: 9,323 Bytes
0398dc6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AIaaS Platform - Infographic</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="components/navbar.js"></script>
    <script src="components/infographic-card.js"></script>
</head>
<body class="bg-gray-50">
    <custom-navbar></custom-navbar>
    
    <main class="container mx-auto px-4 py-8">
        <section class="text-center mb-16">
            <h1 class="text-5xl font-bold text-indigo-800 mb-4">End-to-End AI Platform</h1>
            <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                A visual journey from data ingestion to Model-as-a-Service
            </p>
        </section>

        <!-- Core Pipeline Section -->
        <section class="mb-20">
            <h2 class="text-3xl font-semibold text-indigo-700 mb-8 text-center">Core Pipeline Design</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
                <infographic-card 
                    icon="database" 
                    title="Data Ingestion" 
                    content="Utilities to ingest data from logs, databases or APIs"
                    color="bg-blue-100"
                ></infographic-card>
                
                <infographic-card 
                    icon="cpu" 
                    title="Preprocessing" 
                    content="Routines for cleaning data, handling missing values, and feature generation"
                    color="bg-purple-100"
                ></infographic-card>
                
                <infographic-card 
                    icon="activity" 
                    title="Model Training" 
                    content="Components for algorithm selection, hyperparameter tuning and evaluation"
                    color="bg-green-100"
                ></infographic-card>
                
                <infographic-card 
                    icon="check-circle" 
                    title="Validation" 
                    content="Utilities for data validation and synthetic data generation"
                    color="bg-yellow-100"
                ></infographic-card>
                
                <infographic-card 
                    icon="share-2" 
                    title="Inferencing" 
                    content="Standardized services that expose trained models as APIs"
                    color="bg-red-100"
                ></infographic-card>
                
                <infographic-card 
                    icon="shield" 
                    title="Governance" 
                    content="Mechanisms like data catalogues and lineage tracking"
                    color="bg-indigo-100"
                ></infographic-card>
            </div>
        </section>

        <!-- Services Section -->
        <section class="mb-20">
            <h2 class="text-3xl font-semibold text-indigo-700 mb-8 text-center">AI Services Ecosystem</h2>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
                <div class="service-card bg-gradient-to-br from-blue-500 to-indigo-600">
                    <i data-feather="clock" class="text-white"></i>
                    <h3>Forecasting</h3>
                    <p>Time-series prediction with ARIMA, Prophet</p>
                </div>
                
                <div class="service-card bg-gradient-to-br from-purple-500 to-pink-600">
                    <i data-feather="message-square" class="text-white"></i>
                    <h3>NLP/Gen AI</h3>
                    <p>Classification, generation, translation</p>
                </div>
                
                <div class="service-card bg-gradient-to-br from-green-500 to-teal-600">
                    <i data-feather="alert-triangle" class="text-white"></i>
                    <h3>Anomaly Detection</h3>
                    <p>Identify unusual patterns in data</p>
                </div>
                
                <div class="service-card bg-gradient-to-br from-red-500 to-orange-600">
                    <i data-feather="eye" class="text-white"></i>
                    <h3>Computer Vision</h3>
                    <p>Face recognition, video analytics</p>
                </div>
            </div>
        </section>

        <!-- Governance Section -->
        <section class="mb-20">
            <h2 class="text-3xl font-semibold text-indigo-700 mb-8 text-center">Governance Framework</h2>
            <div class="bg-white rounded-xl shadow-lg p-8">
                <div class="flex flex-col md:flex-row gap-8">
                    <div class="flex-1">
                        <h3 class="text-xl font-semibold text-gray-800 mb-4">Key Components</h3>
                        <ul class="space-y-3">
                            <li class="flex items-start">
                                <i data-feather="lock" class="text-indigo-600 mr-3 mt-1"></i>
                                <span>PII Masking & Data Protection</span>
                            </li>
                            <li class="flex items-start">
                                <i data-feather="clipboard" class="text-indigo-600 mr-3 mt-1"></i>
                                <span>Model Documentation & Provenance</span>
                            </li>
                            <li class="flex items-start">
                                <i data-feather="shield" class="text-indigo-600 mr-3 mt-1"></i>
                                <span>Access Controls & Lineage Tracking</span>
                            </li>
                        </ul>
                    </div>
                    <div class="flex-1">
                        <h3 class="text-xl font-semibold text-gray-800 mb-4">Explainability Tools</h3>
                        <ul class="space-y-3">
                            <li class="flex items-start">
                                <i data-feather="bar-chart-2" class="text-indigo-600 mr-3 mt-1"></i>
                                <span>SHAP & LIME Analysis</span>
                            </li>
                            <li class="flex items-start">
                                <i data-feather="pie-chart" class="text-indigo-600 mr-3 mt-1"></i>
                                <span>Feature Importance Charts</span>
                            </li>
                            <li class="flex items-start">
                                <i data-feather="file-text" class="text-indigo-600 mr-3 mt-1"></i>
                                <span>Model Card Generation</span>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </section>

        <!-- Flow Diagram Section -->
        <section class="mb-20">
            <h2 class="text-3xl font-semibold text-indigo-700 mb-8 text-center">End-to-End Flow</h2>
            <div class="bg-white p-8 rounded-xl shadow-lg">
                <div class="flow-diagram">
                    <div class="flow-step">
                        <div class="flow-icon">
                            <i data-feather="download"></i>
                        </div>
                        <h4>Data Ingestion</h4>
                    </div>
                    <div class="flow-arrow">
                        <i data-feather="arrow-right"></i>
                    </div>
                    <div class="flow-step">
                        <div class="flow-icon">
                            <i data-feather="filter"></i>
                        </div>
                        <h4>Preprocessing</h4>
                    </div>
                    <div class="flow-arrow">
                        <i data-feather="arrow-right"></i>
                    </div>
                    <div class="flow-step">
                        <div class="flow-icon">
                            <i data-feather="cpu"></i>
                        </div>
                        <h4>Model Training</h4>
                    </div>
                    <div class="flow-arrow">
                        <i data-feather="arrow-right"></i>
                    </div>
                    <div class="flow-step">
                        <div class="flow-icon">
                            <i data-feather="share-2"></i>
                        </div>
                        <h4>Deployment</h4>
                    </div>
                    <div class="flow-arrow">
                        <i data-feather="arrow-right"></i>
                    </div>
                    <div class="flow-step">
                        <div class="flow-icon">
                            <i data-feather="monitor"></i>
                        </div>
                        <h4>Monitoring</h4>
                    </div>
                </div>
            </div>
        </section>
    </main>

    <script>
        feather.replace();
    </script>
    <script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>