Skip to content

Commit 3a4a012

Browse files
committed
added the missing repository links and the homepage takes you to the repos
1 parent ead412f commit 3a4a012

File tree

5 files changed

+619
-386
lines changed

5 files changed

+619
-386
lines changed

Website/about.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,38 @@
220220
<div class="paragraph">
221221
<h3>Explore Our Models</h3>
222222
</div>
223+
223224
<div class="repo-section">
225+
<div class="repo">
226+
<a
227+
href="https://github.com/recodehive/machine-learning-repos/tree/main/OpenCV%20Projects"
228+
target="_blank"
229+
>
230+
<img
231+
src="./assets/Images/Opencv.png"
232+
alt="OpencvModels"
233+
/>
234+
<div class="repo-title">Open CV projects</div>
235+
<div class="repo-description">
236+
Real-time applications involving image processing, object detection, facial recognition, gesture detection, and more.
237+
</div>
238+
</a>
239+
</div>
240+
<div class="repo">
241+
<a
242+
href="https://github.com/recodehive/machine-learning-repos/tree/main/NLP"
243+
target="_blank"
244+
>
245+
<img
246+
src="./assets/Images/NLP.png"
247+
alt="NLP Models"
248+
/>
249+
<div class="repo-title">NLP Models</div>
250+
<div class="repo-description">
251+
These models power applications such as chatbots, sentiment analysis, language translation, and text summarization.
252+
</div>
253+
</a>
254+
</div>
224255
<div class="repo">
225256
<a
226257
href="https://github.com/recodehive/machine-learning-repos/tree/main/Recommendation%20Models"

Website/assets/Images/NLP.png

350 KB
Loading

Website/assets/Images/Opencv.png

703 KB
Loading

Website/index.html

Lines changed: 204 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,65 @@
4343
transition: width 0.09s ease-in-out;
4444
border-radius: 10px;
4545
}
46+
.repo {
47+
background-color: #f9f9f9;
48+
padding: 20px;
49+
margin: 15px;
50+
border-radius: 12px;
51+
width: 250px;
52+
text-align: center;
53+
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
54+
transition: transform 0.3s ease, box-shadow 0.3s ease;
55+
animation: fadeInUp 1.2s ease-in-out;
56+
}
57+
.repo a {
58+
text-decoration: none;
59+
}
60+
.repo:hover {
61+
transform: translateY(-10px);
62+
box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
63+
}
64+
.repo img {
65+
max-width: 100%;
66+
border-radius: 8px;
67+
transition: transform 0.3s ease;
68+
}
69+
.repo:hover img {
70+
transform: scale(1.05);
71+
}
72+
.repo-title {
73+
font-size: 1.4em;
74+
margin-top: 15px;
75+
margin-bottom: 10px;
76+
color: #333;
77+
}
78+
.repo-description {
79+
font-size: 1em;
80+
color: #777;
81+
}
82+
.paragraph {
83+
font-size: 1.2em;
84+
line-height: 1.8em;
85+
margin-bottom: 30px;
86+
color: #ffffff;
87+
text-align: center;
88+
animation: fadeInUp 1.2s ease-in-out;
89+
}
90+
.repo-section {
91+
display: flex;
92+
flex-wrap: wrap;
93+
justify-content: space-around;
94+
margin-bottom: 30px;
95+
}
96+
.dark-mode .content{
97+
background-color: white;
98+
}
99+
.dark-mode .title{
100+
color: #333;
101+
}
102+
.dark-mode .paragraph{
103+
color: #555;
104+
}
46105

47106
</style>
48107
</head>
@@ -177,8 +236,151 @@ <h3>Most Used Language</h3>
177236

178237
<section id="repo-list">
179238
<h2 class="text-black-light-mode">Repositories</h2>
180-
<ul id="directories">
181-
</ul>
239+
<div class="paragraph">
240+
<h3>Explore Our Models</h3>
241+
</div>
242+
<div class="repo-section">
243+
<div class="repo">
244+
<a
245+
href="https://github.com/recodehive/machine-learning-repos/tree/main/OpenCV%20Projects"
246+
target="_blank"
247+
>
248+
<img
249+
src="./assets/Images/Opencv.png"
250+
alt="OpencvModels"
251+
/>
252+
<div class="repo-title">Open CV projects</div>
253+
<div class="repo-description">
254+
Real-time applications involving image processing, object detection, facial recognition, gesture detection, and more.
255+
</div>
256+
</a>
257+
</div>
258+
<div class="repo">
259+
<a
260+
href="https://github.com/recodehive/machine-learning-repos/tree/main/NLP"
261+
target="_blank"
262+
>
263+
<img
264+
src="./assets/Images/NLP.png"
265+
alt="NLP Models"
266+
/>
267+
<div class="repo-title">NLP Models</div>
268+
<div class="repo-description">
269+
These models power applications such as chatbots, sentiment analysis, language translation, and text summarization.
270+
</div>
271+
</a>
272+
</div>
273+
<div class="repo">
274+
<a
275+
href="https://github.com/recodehive/machine-learning-repos/tree/main/Recommendation%20Models"
276+
target="_blank"
277+
>
278+
<img
279+
src="./assets/Images/RecommendationModel.png"
280+
alt="Recommendation Models"
281+
/>
282+
<div class="repo-title">Recommendation Models</div>
283+
<div class="repo-description">
284+
Explore models that suggest products, services, or content to
285+
users based on their preferences and behaviors.
286+
</div>
287+
</a>
288+
</div>
289+
<div class="repo">
290+
<a
291+
href="https://github.com/recodehive/machine-learning-repos/tree/main/Prediction%20Models"
292+
target="_blank"
293+
>
294+
<img
295+
src="./assets/Images/PredictionModel.png"
296+
alt="Prediction Models"
297+
/>
298+
<div class="repo-title">Prediction Models</div>
299+
<div class="repo-description">
300+
Dive into models that forecast future outcomes based on historical
301+
data, such as stock prices or weather patterns.
302+
</div>
303+
</a>
304+
</div>
305+
306+
<div class="repo">
307+
<a
308+
href="https://github.com/recodehive/machine-learning-repos/tree/main/Detection%20Models"
309+
target="_blank"
310+
>
311+
<img
312+
src="./assets/Images/DetectionModel.png"
313+
alt="Detection Models"
314+
/>
315+
<div class="repo-title">Detection Models</div>
316+
<div class="repo-description">
317+
Browse models that identify objects, patterns, or anomalies in
318+
data, such as image or fraud detection.
319+
</div>
320+
</a>
321+
</div>
322+
323+
<div class="repo">
324+
<a
325+
href="https://github.com/recodehive/machine-learning-repos/tree/main/Data%20Analysis"
326+
target="_blank"
327+
>
328+
<img src="./assets/Images/DataAnalysis.png" alt="Data Analysis" />
329+
<div class="repo-title">Data Analysis</div>
330+
<div class="repo-description">
331+
Discover tools and models for analyzing datasets to extract
332+
meaningful insights and trends.
333+
</div>
334+
</a>
335+
</div>
336+
337+
<div class="repo">
338+
<a
339+
href="https://github.com/recodehive/machine-learning-repos/tree/main/Classification%20Models"
340+
target="_blank"
341+
>
342+
<img
343+
src="./assets/Images/ClassificationModel.png"
344+
alt="Classification Models"
345+
/>
346+
<div class="repo-title">Classification Models</div>
347+
<div class="repo-description">
348+
Check out models that categorize data into predefined classes,
349+
like spam detection or sentiment analysis.
350+
</div>
351+
</a>
352+
</div>
353+
354+
<div class="repo">
355+
<a
356+
href="https://github.com/recodehive/machine-learning-repos/tree/main/Algorithms%20and%20Deep%20Learning%20Models"
357+
target="_blank"
358+
>
359+
<img
360+
src="./assets/Images/DeepLearningModel.png"
361+
alt="Algorithms and Deep Learning"
362+
/>
363+
<div class="repo-title">Algorithms and Deep Learning Models</div>
364+
<div class="repo-description">
365+
Explore complex models and algorithms that leverage neural
366+
networks and deep learning techniques.
367+
</div>
368+
</a>
369+
</div>
370+
371+
<div class="paragraph">
372+
<h3>Join the Community</h3>
373+
Add your machine learning project to our collection by raising an
374+
issue in our GitHub repository.
375+
<a
376+
href="https://github.com/recodehive/machine-learning-repos/issues"
377+
target="_blank"
378+
>Contribute Here</a
379+
>
380+
</div>
381+
</div>
382+
</div>
383+
182384
</section>
183385

184386
<section id="contributors">

0 commit comments

Comments
 (0)