-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 882 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VLM-R1 Blog</title>
<link rel="stylesheet" href="css/index-styles.css">
</head>
<body>
<header>
<h1>VLM-R1 Blog</h1>
<p>Official blog for the VLM-R1 project - Solving Visual Understanding with Reinforced VLMs</p>
</header>
<main>
<ul class="blog-list">
<li>
<span class="date">March 20, 2025</span>
<h2><a href="2025_03_20.html">Improving Object Detection through Reinforcement Learning with VLM-R1</a></h2>
<p>A detailed exploration of how reinforcement learning enhances object detection performance compared to supervised fine-tuning in vision-language models.</p>
</li>
</ul>
</main>
</body>
</html>