kceager commited on
Commit
4b8b4a0
·
verified ·
1 Parent(s): 508b892

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +490 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ml Pipleline
3
- emoji: 📚
4
- colorFrom: indigo
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: ml-pipleline
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,490 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ML Pipeline Pro | From Data to Deployment</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb, #a777e3);
12
+ }
13
+ .pipeline-step {
14
+ transition: all 0.3s ease;
15
+ }
16
+ .pipeline-step:hover {
17
+ transform: translateY(-5px);
18
+ box-shadow: 0 10px 25px rgba(0,0,0,0.1);
19
+ }
20
+ .code-block {
21
+ font-family: 'Courier New', monospace;
22
+ background-color: #2d3748;
23
+ color: #f7fafc;
24
+ }
25
+ .animated-arrow {
26
+ animation: bounce 2s infinite;
27
+ }
28
+ @keyframes bounce {
29
+ 0%, 20%, 50%, 80%, 100% {transform: translateX(0);}
30
+ 40% {transform: translateX(10px);}
31
+ 60% {transform: translateX(5px);}
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50 font-sans">
36
+ <!-- Navigation -->
37
+ <nav class="bg-white shadow-lg">
38
+ <div class="max-w-6xl mx-auto px-4">
39
+ <div class="flex justify-between items-center py-4">
40
+ <div class="flex items-center space-x-4">
41
+ <div class="flex items-center">
42
+ <i class="fas fa-robot text-2xl text-purple-600 mr-2"></i>
43
+ <span class="font-bold text-xl text-gray-800">ML Pipeline Pro</span>
44
+ </div>
45
+ </div>
46
+ <div class="hidden md:flex items-center space-x-8">
47
+ <a href="#features" class="text-gray-700 hover:text-purple-600">Features</a>
48
+ <a href="#pipeline" class="text-gray-700 hover:text-purple-600">Pipeline</a>
49
+ <a href="#resources" class="text-gray-700 hover:text-purple-600">Resources</a>
50
+ <a href="#contact" class="text-gray-700 hover:text-purple-600">Contact</a>
51
+ <button class="bg-purple-600 text-white px-4 py-2 rounded-md hover:bg-purple-700 transition">Get Started</button>
52
+ </div>
53
+ <div class="md:hidden">
54
+ <button class="text-gray-700 focus:outline-none">
55
+ <i class="fas fa-bars text-2xl"></i>
56
+ </button>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ </nav>
61
+
62
+ <!-- Hero Section -->
63
+ <section class="gradient-bg text-white py-20">
64
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
65
+ <div class="flex flex-col md:flex-row items-center">
66
+ <div class="md:w-1/2 mb-10 md:mb-0">
67
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Your Complete ML Pipeline Solution</h1>
68
+ <p class="text-xl mb-8">From data collection to model deployment, we guide you through every step of the machine learning process with expert tools and resources.</p>
69
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
70
+ <button class="bg-white text-purple-600 px-6 py-3 rounded-lg font-semibold hover:bg-gray-100 transition">Start Your Project</button>
71
+ <button class="border-2 border-white text-white px-6 py-3 rounded-lg font-semibold hover:bg-white hover:text-purple-600 transition">Learn More</button>
72
+ </div>
73
+ </div>
74
+ <div class="md:w-1/2 flex justify-center">
75
+ <img src="https://illustrations.popsy.co/amber/artificial-intelligence.svg" alt="ML Illustration" class="w-4/5">
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </section>
80
+
81
+ <!-- Features Section -->
82
+ <section id="features" class="py-16 bg-white">
83
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
84
+ <div class="text-center mb-16">
85
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Powerful Features for Your ML Journey</h2>
86
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Everything you need to build, train, and deploy machine learning models efficiently</p>
87
+ </div>
88
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
89
+ <div class="bg-gray-50 p-8 rounded-xl shadow-md hover:shadow-xl transition pipeline-step">
90
+ <div class="text-purple-600 mb-4">
91
+ <i class="fas fa-database text-4xl"></i>
92
+ </div>
93
+ <h3 class="text-xl font-semibold mb-3">Data Management</h3>
94
+ <p class="text-gray-600">Automated data collection, cleaning, and preprocessing tools to prepare your datasets for modeling.</p>
95
+ </div>
96
+ <div class="bg-gray-50 p-8 rounded-xl shadow-md hover:shadow-xl transition pipeline-step">
97
+ <div class="text-purple-600 mb-4">
98
+ <i class="fas fa-brain text-4xl"></i>
99
+ </div>
100
+ <h3 class="text-xl font-semibold mb-3">Model Training</h3>
101
+ <p class="text-gray-600">Intuitive interfaces for model selection, hyperparameter tuning, and training with real-time monitoring.</p>
102
+ </div>
103
+ <div class="bg-gray-50 p-8 rounded-xl shadow-md hover:shadow-xl transition pipeline-step">
104
+ <div class="text-purple-600 mb-4">
105
+ <i class="fas fa-rocket text-4xl"></i>
106
+ </div>
107
+ <h3 class="text-xl font-semibold mb-3">Deployment</h3>
108
+ <p class="text-gray-600">One-click deployment to various platforms with monitoring and scaling capabilities built-in.</p>
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </section>
113
+
114
+ <!-- Pipeline Steps Section -->
115
+ <section id="pipeline" class="py-16 bg-gray-50">
116
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
117
+ <div class="text-center mb-16">
118
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">The Complete ML Pipeline</h2>
119
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Follow our step-by-step guide to navigate through your machine learning project</p>
120
+ </div>
121
+
122
+ <!-- Pipeline Visualization -->
123
+ <div class="relative">
124
+ <!-- Progress line -->
125
+ <div class="hidden md:block absolute left-8 top-0 h-full w-1 bg-purple-200 ml-4"></div>
126
+
127
+ <!-- Step 1 -->
128
+ <div class="relative mb-12">
129
+ <div class="flex flex-col md:flex-row items-center">
130
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
131
+ 1
132
+ </div>
133
+ <div class="md:ml-8 w-full md:w-auto">
134
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
135
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Data Collection</h3>
136
+ <p class="text-gray-600 mb-4">Gather your raw data from various sources including databases, APIs, or files.</p>
137
+ <div class="code-block p-4 rounded-md mb-4">
138
+ <code class="text-sm">
139
+ # Python example: Loading data from CSV<br>
140
+ import pandas as pd<br>
141
+ data = pd.read_csv('dataset.csv')
142
+ </code>
143
+ </div>
144
+ <button class="text-purple-600 font-medium hover:underline">Explore Data Sources</button>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Step 2 -->
151
+ <div class="relative mb-12">
152
+ <div class="flex flex-col md:flex-row items-center">
153
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
154
+ 2
155
+ </div>
156
+ <div class="md:ml-8 w-full md:w-auto">
157
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
158
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Data Preprocessing</h3>
159
+ <p class="text-gray-600 mb-4">Clean and transform your data to make it suitable for modeling.</p>
160
+ <div class="code-block p-4 rounded-md mb-4">
161
+ <code class="text-sm">
162
+ # Handling missing values<br>
163
+ data = data.fillna(data.mean())<br><br>
164
+ # Feature scaling<br>
165
+ from sklearn.preprocessing import StandardScaler<br>
166
+ scaler = StandardScaler()<br>
167
+ scaled_data = scaler.fit_transform(data)
168
+ </code>
169
+ </div>
170
+ <button class="text-purple-600 font-medium hover:underline">Preprocessing Tools</button>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Step 3 -->
177
+ <div class="relative mb-12">
178
+ <div class="flex flex-col md:flex-row items-center">
179
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
180
+ 3
181
+ </div>
182
+ <div class="md:ml-8 w-full md:w-auto">
183
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
184
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Feature Engineering</h3>
185
+ <p class="text-gray-600 mb-4">Create meaningful features that will help your model make better predictions.</p>
186
+ <div class="code-block p-4 rounded-md mb-4">
187
+ <code class="text-sm">
188
+ # Creating interaction features<br>
189
+ data['feature_interaction'] = data['feat1'] * data['feat2']<br><br>
190
+ # One-hot encoding<br>
191
+ data = pd.get_dummies(data, columns=['categorical_feature'])
192
+ </code>
193
+ </div>
194
+ <button class="text-purple-600 font-medium hover:underline">Feature Techniques</button>
195
+ </div>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Step 4 -->
201
+ <div class="relative mb-12">
202
+ <div class="flex flex-col md:flex-row items-center">
203
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
204
+ 4
205
+ </div>
206
+ <div class="md:ml-8 w-full md:w-auto">
207
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
208
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Selection</h3>
209
+ <p class="text-gray-600 mb-4">Choose the right algorithm for your problem type and data characteristics.</p>
210
+ <div class="flex flex-wrap gap-4 mb-4">
211
+ <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Linear Regression</span>
212
+ <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Random Forest</span>
213
+ <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Neural Networks</span>
214
+ <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">SVM</span>
215
+ </div>
216
+ <button class="text-purple-600 font-medium hover:underline">Algorithm Guide</button>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Step 5 -->
223
+ <div class="relative mb-12">
224
+ <div class="flex flex-col md:flex-row items-center">
225
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
226
+ 5
227
+ </div>
228
+ <div class="md:ml-8 w-full md:w-auto">
229
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
230
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Training</h3>
231
+ <p class="text-gray-600 mb-4">Train your model on the prepared dataset and evaluate its performance.</p>
232
+ <div class="code-block p-4 rounded-md mb-4">
233
+ <code class="text-sm">
234
+ # Splitting data<br>
235
+ from sklearn.model_selection import train_test_split<br>
236
+ X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)<br><br>
237
+ # Training a model<br>
238
+ from sklearn.ensemble import RandomForestClassifier<br>
239
+ model = RandomForestClassifier()<br>
240
+ model.fit(X_train, y_train)
241
+ </code>
242
+ </div>
243
+ <button class="text-purple-600 font-medium hover:underline">Training Options</button>
244
+ </div>
245
+ </div>
246
+ </div>
247
+ </div>
248
+
249
+ <!-- Step 6 -->
250
+ <div class="relative mb-12">
251
+ <div class="flex flex-col md:flex-row items-center">
252
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
253
+ 6
254
+ </div>
255
+ <div class="md:ml-8 w-full md:w-auto">
256
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
257
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Evaluation</h3>
258
+ <p class="text-gray-600 mb-4">Assess your model's performance using appropriate metrics.</p>
259
+ <div class="code-block p-4 rounded-md mb-4">
260
+ <code class="text-sm">
261
+ # Evaluation metrics<br>
262
+ from sklearn.metrics import accuracy_score, precision_score, recall_score<br>
263
+ predictions = model.predict(X_test)<br><br>
264
+ print("Accuracy:", accuracy_score(y_test, predictions))<br>
265
+ print("Precision:", precision_score(y_test, predictions))<br>
266
+ print("Recall:", recall_score(y_test, predictions))
267
+ </code>
268
+ </div>
269
+ <div class="flex items-center text-purple-600">
270
+ <span>View Evaluation Dashboard</span>
271
+ <i class="fas fa-arrow-right ml-2 animated-arrow"></i>
272
+ </div>
273
+ </div>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Step 7 -->
279
+ <div class="relative">
280
+ <div class="flex flex-col md:flex-row items-center">
281
+ <div class="flex items-center justify-center w-16 h-16 rounded-full bg-purple-600 text-white text-xl font-bold mb-4 md:mb-0 z-10">
282
+ 7
283
+ </div>
284
+ <div class="md:ml-8 w-full md:w-auto">
285
+ <div class="bg-white p-6 rounded-lg shadow-md pipeline-step">
286
+ <h3 class="text-xl font-semibold mb-3 text-purple-600">Model Deployment</h3>
287
+ <p class="text-gray-600 mb-4">Deploy your trained model to production for real-world use.</p>
288
+ <div class="code-block p-4 rounded-md mb-4">
289
+ <code class="text-sm">
290
+ # Saving the model<br>
291
+ import joblib<br>
292
+ joblib.dump(model, 'model.pkl')<br><br>
293
+ # Flask API example<br>
294
+ from flask import Flask, request, jsonify<br>
295
+ app = Flask(__name__)<br>
296
+ @app.route('/predict', methods=['POST'])<br>
297
+ def predict():<br>
298
+ &nbsp;&nbsp;data = request.json<br>
299
+ &nbsp;&nbsp;prediction = model.predict([data['features']])<br>
300
+ &nbsp;&nbsp;return jsonify({'prediction': prediction.tolist()})
301
+ </code>
302
+ </div>
303
+ <button class="bg-purple-600 text-white px-4 py-2 rounded-md hover:bg-purple-700 transition">Deploy Now</button>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ </div>
310
+ </section>
311
+
312
+ <!-- Resources Section -->
313
+ <section id="resources" class="py-16 bg-white">
314
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
315
+ <div class="text-center mb-16">
316
+ <h2 class="text-3xl font-bold text-gray-800 mb-4">Learning Resources</h2>
317
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Expand your machine learning knowledge with our curated resources</p>
318
+ </div>
319
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
320
+ <div class="border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition pipeline-step">
321
+ <div class="h-48 bg-purple-100 flex items-center justify-center">
322
+ <i class="fas fa-book-open text-5xl text-purple-600"></i>
323
+ </div>
324
+ <div class="p-6">
325
+ <h3 class="text-xl font-semibold mb-2">ML Fundamentals</h3>
326
+ <p class="text-gray-600 mb-4">Learn the core concepts of machine learning with our beginner-friendly guide.</p>
327
+ <a href="#" class="text-purple-600 font-medium hover:underline">Start Learning</a>
328
+ </div>
329
+ </div>
330
+ <div class="border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition pipeline-step">
331
+ <div class="h-48 bg-purple-100 flex items-center justify-center">
332
+ <i class="fas fa-laptop-code text-5xl text-purple-600"></i>
333
+ </div>
334
+ <div class="p-6">
335
+ <h3 class="text-xl font-semibold mb-2">Hands-on Tutorials</h3>
336
+ <p class="text-gray-600 mb-4">Step-by-step tutorials for real-world ML projects across different domains.</p>
337
+ <a href="#" class="text-purple-600 font-medium hover:underline">Explore Tutorials</a>
338
+ </div>
339
+ </div>
340
+ <div class="border border-gray-200 rounded-lg overflow-hidden shadow-sm hover:shadow-md transition pipeline-step">
341
+ <div class="h-48 bg-purple-100 flex items-center justify-center">
342
+ <i class="fas fa-chart-line text-5xl text-purple-600"></i>
343
+ </div>
344
+ <div class="p-6">
345
+ <h3 class="text-xl font-semibold mb-2">Advanced Techniques</h3>
346
+ <p class="text-gray-600 mb-4">Dive deep into advanced ML concepts and cutting-edge research.</p>
347
+ <a href="#" class="text-purple-600 font-medium hover:underline">Advance Your Skills</a>
348
+ </div>
349
+ </div>
350
+ </div>
351
+ </div>
352
+ </section>
353
+
354
+ <!-- CTA Section -->
355
+ <section class="gradient-bg text-white py-20">
356
+ <div class="max-w-4xl mx-auto px-4 text-center">
357
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Build Your ML Pipeline?</h2>
358
+ <p class="text-xl mb-8">Join thousands of data scientists and ML engineers who are accelerating their workflows with ML Pipeline Pro.</p>
359
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
360
+ <button class="bg-white text-purple-600 px-8 py-4 rounded-lg font-semibold text-lg hover:bg-gray-100 transition">Get Started for Free</button>
361
+ <button class="border-2 border-white text-white px-8 py-4 rounded-lg font-semibold text-lg hover:bg-white hover:text-purple-600 transition">Schedule a Demo</button>
362
+ </div>
363
+ </div>
364
+ </section>
365
+
366
+ <!-- Contact Section -->
367
+ <section id="contact" class="py-16 bg-white">
368
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
369
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12">
370
+ <div>
371
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Get In Touch</h2>
372
+ <p class="text-gray-600 mb-8">Have questions about our platform or need help with your ML project? Our team is here to help.</p>
373
+ <div class="space-y-6">
374
+ <div class="flex items-start">
375
+ <div class="text-purple-600 mt-1 mr-4">
376
+ <i class="fas fa-envelope text-xl"></i>
377
+ </div>
378
+ <div>
379
+ <h3 class="text-lg font-semibold text-gray-800">Email Us</h3>
380
+ <p class="text-gray-600">support@mlpipelinepro.com</p>
381
+ </div>
382
+ </div>
383
+ <div class="flex items-start">
384
+ <div class="text-purple-600 mt-1 mr-4">
385
+ <i class="fas fa-comments text-xl"></i>
386
+ </div>
387
+ <div>
388
+ <h3 class="text-lg font-semibold text-gray-800">Live Chat</h3>
389
+ <p class="text-gray-600">Available 24/7 for immediate support</p>
390
+ </div>
391
+ </div>
392
+ <div class="flex items-start">
393
+ <div class="text-purple-600 mt-1 mr-4">
394
+ <i class="fas fa-map-marker-alt text-xl"></i>
395
+ </div>
396
+ <div>
397
+ <h3 class="text-lg font-semibold text-gray-800">Our Office</h3>
398
+ <p class="text-gray-600">123 ML Street, Tech City, TC 10001</p>
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </div>
403
+ <div>
404
+ <form class="bg-gray-50 p-8 rounded-xl shadow-sm">
405
+ <div class="mb-6">
406
+ <label for="name" class="block text-gray-700 font-medium mb-2">Your Name</label>
407
+ <input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500">
408
+ </div>
409
+ <div class="mb-6">
410
+ <label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
411
+ <input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500">
412
+ </div>
413
+ <div class="mb-6">
414
+ <label for="message" class="block text-gray-700 font-medium mb-2">Your Message</label>
415
+ <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-purple-500"></textarea>
416
+ </div>
417
+ <button type="submit" class="w-full bg-purple-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-purple-700 transition">Send Message</button>
418
+ </form>
419
+ </div>
420
+ </div>
421
+ </div>
422
+ </section>
423
+
424
+ <!-- Footer -->
425
+ <footer class="bg-gray-900 text-white py-12">
426
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
427
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
428
+ <div>
429
+ <div class="flex items-center mb-4">
430
+ <i class="fas fa-robot text-2xl text-purple-400 mr-2"></i>
431
+ <span class="font-bold text-xl">ML Pipeline Pro</span>
432
+ </div>
433
+ <p class="text-gray-400">Your complete solution for machine learning from data to deployment.</p>
434
+ <div class="flex space-x-4 mt-4">
435
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
436
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
437
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin"></i></a>
438
+ <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
439
+ </div>
440
+ </div>
441
+ <div>
442
+ <h3 class="text-lg font-semibold mb-4">Product</h3>
443
+ <ul class="space-y-2">
444
+ <li><a href="#" class="text-gray-400 hover:text-white">Features</a></li>
445
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
446
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
447
+ <li><a href="#" class="text-gray-400 hover:text-white">API</a></li>
448
+ </ul>
449
+ </div>
450
+ <div>
451
+ <h3 class="text-lg font-semibold mb-4">Resources</h3>
452
+ <ul class="space-y-2">
453
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
454
+ <li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li>
455
+ <li><a href="#" class="text-gray-400 hover:text-white">Community</a></li>
456
+ <li><a href="#" class="text-gray-400 hover:text-white">Case Studies</a></li>
457
+ </ul>
458
+ </div>
459
+ <div>
460
+ <h3 class="text-lg font-semibold mb-4">Company</h3>
461
+ <ul class="space-y-2">
462
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
463
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
464
+ <li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
465
+ <li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
466
+ </ul>
467
+ </div>
468
+ </div>
469
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
470
+ <p>&copy; 2023 ML Pipeline Pro. All rights reserved.</p>
471
+ </div>
472
+ </div>
473
+ </footer>
474
+
475
+ <script>
476
+ // Simple script for smooth scrolling
477
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
478
+ anchor.addEventListener('click', function (e) {
479
+ e.preventDefault();
480
+ document.querySelector(this.getAttribute('href')).scrollIntoView({
481
+ behavior: 'smooth'
482
+ });
483
+ });
484
+ });
485
+
486
+ // Mobile menu toggle would go here
487
+ // This is a placeholder for actual implementation
488
+ </script>
489
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=kceager/ml-pipleline" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
490
+ </html>