-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.html
More file actions
81 lines (62 loc) · 2.97 KB
/
Blog.html
File metadata and controls
81 lines (62 loc) · 2.97 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
---
layout: page
title: Blog
---
<head>
<title>Blog</title>
<style>
.title {
font-size: 24px;
font-weight: bold;
}
.abstract {
font-size: 16px;
}
.date-author {
font-size: 12px;
}
</style>
</head>
<body>
<p style="margin-top:1cm; font-size: 20px">
Here are a few blog posts about different topics of interest I encountered throughout my research journey.
</p>
<a class="blog-link" href="{{ site.baseurl }}/assets/blog_posts/policed_RL">
<div class="blog-button">
<span class="title">POLICEd RL</span> <br>
<span class="abstract">While safe RL typically does not provide hard safety guarantees, I have worked on addressing this issue with <strong>POLICEd RL</strong> to provably enforce hard constraint with a black-box environment....</span> <br>
<span class="date-author">June 4, 2024 | 13 min read | Jean-Baptiste Bouvier</span>
</div>
</a>
<a class="blog-link" href="{{ site.baseurl }}/assets/blog_posts/diffusion">
<div class="blog-button">
<span class="title">Introduction to Diffusion Models</span> <br>
<span class="abstract">Diffusion models have reached state-of-the-art performance in image and video generation. To better understand these models, I will show you how to code one in 100 lines of Python...</span> <br>
<span class="date-author">May 27, 2024 | 7 min read | Jean-Baptiste Bouvier</span>
</div>
</a>
<a class="blog-link" href="{{ site.baseurl }}/assets/blog_posts/safe_RL">
<div class="blog-button">
<span class="title">Safety in Reinforcement Learning</span> <br>
<span class="abstract">Safety in Reinforcement Learning (RL) typically consists in enforcing a constraint to prevent trajectories from entering some unsafe region...</span> <br>
<span class="date-author">April 30, 2024 | 7 min read | Jean-Baptiste Bouvier</span>
</div>
</a>
<a class="blog-link" href="{{ site.baseurl }}/assets/blog_posts/time_optimal">
<div class="blog-button">
<span class="title">Time Optimal Linear Control</span> <br>
<span class="abstract">During my PhD I came across the problem of determining the minimal time for a linear system to reach a state. This is problem is not as simple as it appears...</span> <br>
<span class="date-author">August 20, 2023 | 5 min read | Jean-Baptiste Bouvier</span>
</div>
</a>
<a class="blog-link" href="{{ site.baseurl }}/assets/blog_posts/resilience">
<div class="blog-button">
<span class="title">Understanding resilience</span> <br>
<span class="abstract">I developped <em>resilience theory</em> during my PhD to study how autonomous systems can handle a partial loss of control authority over their actuators...</span> <br>
<span class="date-author">June 18, 2023 | 24 min read | Jean-Baptiste Bouvier</span>
</div>
</a>
<!-- Code to add a button return to top -->
<button onclick="topFunction()" id="topBtn" title="Go to top">Top</button>
<script src="{{ site.baseurl }}/assets/js/top_button.js" ></script>
</body>