-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwork.html
More file actions
151 lines (147 loc) · 5.66 KB
/
work.html
File metadata and controls
151 lines (147 loc) · 5.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>What I'm Working On When I'm Not Working | Ramin Anushiravani</title>
<style>
body {
font-family: sans-serif;
line-height: 1.6;
margin: 20px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
color: #333;
}
h1, h2, h3 {
color: #2c3e50;
}
h1 {
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
}
h2 {
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
}
code {
background-color: #f4f4f4;
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
}
pre code {
display: block;
padding: 15px;
overflow-x: auto;
white-space: pre;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
ul {
margin-bottom: 15px;
}
li {
margin-bottom: 5px;
}
nav { margin-bottom: 30px; padding: 10px; background: #ecf0f1; border: 1px solid #bdc3c7; border-radius: 4px;}
nav ul { list-style: none; padding: 0; }
nav li { display: inline-block; margin-right: 15px; }
nav a { text-decoration: none; color: #3498db; font-weight: bold;}
nav a:hover { text-decoration: underline; color: #2980b9;}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
</nav>
<div class="container">
<header>
<h1>What I'm Working On</h1>
</header>
<section>
<h2>Research & Concepts</h2>
<div class="project-group">
<div class="project">
<strong><a href="https://github.com/raminAudio/Machine-Learning-Concepts" target="_blank">Machine Learning Concepts</a></strong><br>
A collection of tutorials, demos, and insights into various machine learning techniques.
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/SubReddits-AskScience" target="_blank">SubReddits-AskScience</a></strong><br>
Exploring question answering and discussion dynamics in online communities.
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/Mouse-Only-Walk-Oooh-MOWO" target="_blank">Yolo</a></strong><br>
Training and inference scripts for tracking a mouse on a transparent treadmill.
</div>
</div>
</section>
<section>
<h2>Application Projects</h2>
<div class="project-group">
<div class="project">
<strong><a href="https://github.com/raminAudio/RedditGPT" target="_blank">RedditGPT</a></strong><br>
Fine-tuning GPT-2 model to generate and summarize content based on Reddit data.
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/TennisGym" target="_blank">Tennis Gym</a></strong><br>
Reinforcement learning for the tennis gym - Multi-DDPG agent
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/RF-DDPG" target="_blank">Reacher Gym</a></strong><br>
Reinforcement learning for the reacher gym - DDPG
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/Value-based-methods" target="_blank">Smart Banana</a></strong><br>
Reinforcement learning value based methods
</div>
<div class="project">
<strong><a href="https://github.com/raminaeye/ai_realestate_agent" target="_blank">AI Real Estate Agent</a></strong><br>
Developing AI-powered tools to optimize real estate search and engagement using RAG, instruction fine-tuning with OpenAI API.
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/Instruction-Tuning-LLM" target="_blank">Instruction-Tuning-LLM</a></strong><br>
Fine-tuning large language models for improved instruction following and domain-specific tasks.
</div>
</div>
</section>
<section>
<h2>Infrastructure & MLOps</h2>
<div class="project-group">
<div class="project">
<strong><a href="https://github.com/raminAudio/MLOps_AWS" target="_blank">MLOps AWS</a></strong><br>
Showcasing scalable machine learning pipelines and deployment strategies using AWS services.
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/ML-Workflow" target="_blank">ML Workflow</a></strong><br>
Building ML Workflows using variety of tools
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/risk_assessment" target="_blank">Risk Assessment</a></strong><br>
Applying AI and data science for robust risk evaluation and management.
</div>
<div class="project">
<strong><a href="https://github.com/raminAudio/Rental-Prices-in-NYC" target="_blank">ML Pipeline</a></strong><br>
ML Pipeline for Short-Term Rental Prices in NYC
</div>
</div>
</section>
<footer>
<p>Discover more on my <a href="https://github.com/raminaeye/" target="_blank">GitHub</a>.</p>
<p>© 2025 Ramin Anushiravani</p>
</footer>
</div>
</body>
</html>