picture

I am a third-year PhD student between the Gepetto team at LAAS-CNRS, and the WILLOW team of Inria Paris, under the supervision of Nicolas Mansard and Justin Carpentier.

Previously, I obtained an engineering degree from École polytechnique, in the Paris area, and a master's degree in applied mathematics and CS (MVA) from École normale supérieure Paris-Saclay.

My work focuses on optimization and control for robotics.

Optimal Transport and Mean-field games

Last time we had an introductory look at OT, the definition and computation of the Wasserstein distance.

A few years ago, I wrote a solver for this variational formulation of mean-field games, as part of a project. This eventually led to a small C++ library as a toy project, which might or might not be usable.

Read more  ↩︎

Asking ChatGPT to implement the LQR

There's been a lot of noise about large language models (LLMs) and them possibly replacing programmers in the near future -- a perspective shared by many technology enthusiasts but met with a tad more skepticism from researchers and software engineers. OpenAI's release of ChatGPT has generated lots of discussion on the subject. Although complete automation might be far off, some folks have already found some use for Copilot, automating things like rote boilerplate code. However, that does not necessarily translate to correct, let alone efficient, code especially in complex applications and specific domains. An obvious caveat: different language models lead to different results, and the randomness in the inference process can create a lot of variability -- some friends have told me OpenAI playground does generate more reliable code.

Read more  ↩︎

Optimal Control III: what is the Hamilton-Jacobi-Bellman equation?

Consider once again an optimal control problem (OCP) in continuous time: $$ \begin{equation} \begin{alignedat}{2} &\min_{x, u}{}&& \int_0^T \ell(x(t), u(t)) dt + h(x(T)) \ &\suchthat&& \dot{x} = f(x, u), \quad t \in [0, T) \end{alignedat} \end{equation} $$

Read more  ↩︎

Augmented Lagrangian methods

In general nonlinear optimization, we seek to solve problems of the form $$ \begin{equation}\tag{NLP} \begin{aligned} \min_z{} &\ell(z) \ \suchthat &c(z) = 0 \end{aligned} \end{equation} $$ This kind of formulation is often encountered in machine learning, control problems and others where structured, constrained optimization crops up.

Read more  ↩︎