-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
109 lines (98 loc) · 4.32 KB
/
portfolio.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Mohamed Desoky</title>
<link href="styles.css" rel="stylesheet"/>
<script src="contact.js"></script>
<style>
section {
margin-top:20px;
display: flex; /* Turn section into a flex container */
flex: 1; /* Allow section to take remaining space */
text-align: left; /* Align text in the center */
border-bottom: white 2px solid; /* Add a white border at the bottom */
}
</style>
</head>
<body>
<header>
<h3>Desoky Capital</h3>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">GitHub Portfolio</a></li>
<li><a href="real-estate.html">Real Estate</a></li>
<li><a href="investment-products.html">Investment Products</a></li>
<li><a href="venture-capital.html">Venture Capital</a></li>
<li><a href="literary-works.html">Literary Works</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>
Projects I've built, in no particular order
</h2>
</section>
<table>
<tr class="trh">
<td colspan="2">
<h3>Unsupervised Finance Models</h3>
</td>
</tr>
<tr class="bg">
<td>
<p>Developing advanced AI algorithms to analyze financial data using unsupervised learning techniques.
This project focuses on identifying hidden patterns, clustering similar investment strategies,
and detecting anomalies in market trends, enabling smarter, data-driven financial decisions without reliance on labeled data.</p>
</td>
<td>
<img alt="Motorcycle" src="./pics/unsupervised.webp"/>
</td>
</tr>
</table>
<table>
<tr class="trh">
<td colspan="2">
<h3>Supervised Finance Models</h3>
</td>
</tr>
<tr class="bg">
<td>
<img alt="Surfing" src="./pics/supervised.webp"/>
</td>
<td>
<p>Building AI models that leverage labeled financial data to predict outcomes such as stock price movements, credit risk, or loan defaults.
This project focuses on training algorithms to make accurate, real-time predictions, enhancing decision-making in investment strategies and risk management.</p>
</td>
</tr>
</table>
<table>
<tr class="trh">
<td colspan="2">
<h3>Generative Finance Models </h3>
</td>
</tr>
<tr class="bg">
<td>
<p>Exploring the use of generative AI to create realistic financial scenarios, generate synthetic data for stress testing, and design innovative investment strategies.
This project aims to enhance financial modeling, risk assessment, and personalized client experiences through AI-driven creativity and simulation.</p>
</td>
<td>
<img alt="Skiing" src="./pics/generative.png"/>
</td>
</tr>
</table>
</main>
<footer>
<p>© 2024 Mohamed Desoky. All Rights Reserved.</p>
<p><a href="https://www.linkedin.com/in/mohameddesoky/" target="_blank">LinkedIn</a></p>
<p><a href="https://www.facebook.com/desokycapital/" target="_blank">Facebook</a></p>
</footer>
</body>
</html>