add links inside the header
This commit is contained in:
parent
c54d6fad1b
commit
1fd053fc36
16
.vscode/settings.json
vendored
16
.vscode/settings.json
vendored
|
@ -1,5 +1,21 @@
|
||||||
{
|
{
|
||||||
"latex-workshop.latex.recipe.default": "latexmk (lualatex)",
|
"latex-workshop.latex.recipe.default": "latexmk (lualatex)",
|
||||||
|
"latex-workshop.latex.tools": [
|
||||||
|
{
|
||||||
|
"name": "lualatexmk",
|
||||||
|
"command": "latexmk",
|
||||||
|
"args": [
|
||||||
|
"-shell-escape",
|
||||||
|
"-synctex=1",
|
||||||
|
"-interaction=nonstopmode",
|
||||||
|
"-file-line-error",
|
||||||
|
"-lualatex",
|
||||||
|
"-outdir=%OUTDIR%",
|
||||||
|
"%DOC%"
|
||||||
|
],
|
||||||
|
"env": {},
|
||||||
|
}
|
||||||
|
],
|
||||||
"gitlens.codeLens.authors.enabled": false,
|
"gitlens.codeLens.authors.enabled": false,
|
||||||
"gitlens.codeLens.recentChange.enabled": false,
|
"gitlens.codeLens.recentChange.enabled": false,
|
||||||
"files.exclude": {
|
"files.exclude": {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
let pkgs = nixpkgs.legacyPackages.${system};
|
let pkgs = nixpkgs.legacyPackages.${system};
|
||||||
in {
|
in {
|
||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [ texlive.combined.scheme-full ];
|
buildInputs = with pkgs; [ texlive.combined.scheme-full inkscape ];
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
70
src/resume/hf-logo.svg
Normal file
70
src/resume/hf-logo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 30 KiB |
|
@ -47,6 +47,7 @@
|
||||||
\documentclass[]{resume}
|
\documentclass[]{resume}
|
||||||
\usepackage{fancyhdr}
|
\usepackage{fancyhdr}
|
||||||
\usepackage{fontawesome}
|
\usepackage{fontawesome}
|
||||||
|
\usepackage{svg}
|
||||||
|
|
||||||
\pagestyle{fancy}
|
\pagestyle{fancy}
|
||||||
\fancyhf{}
|
\fancyhf{}
|
||||||
|
@ -61,11 +62,17 @@
|
||||||
%
|
%
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
\namesection{Laurent}{Fainsin}{
|
\namesection{Laurent}{Fainsin}{
|
||||||
\faGlobe \ \href{https://laurent.fainsin.bzh/}{https://laurent.fainsin.bzh}
|
\faGlobe \ \href{https://laurent.fainsin.bzh/}{laurent.fainsin.bzh}
|
||||||
\quad
|
\quad
|
||||||
\faEnvelopeO \ \href{mailto:laurent@fainsin.bzh}{laurent@fainsin.bzh}
|
\faEnvelopeO \ \href{mailto:laurent@fainsin.bzh}{laurent@fainsin.bzh}
|
||||||
\quad
|
\quad
|
||||||
\faPhone \ \href{tel:+33781492838}{0781492838}
|
\faPhone \ \href{tel:+33781492838}{0781492838}
|
||||||
|
\\ \vspace*{2pt}
|
||||||
|
\faLinkedin \ \href{https://www.linkedin.com/in/laurent-fainsin/}{laurent-fainsin}
|
||||||
|
\quad
|
||||||
|
\faGithub \ \href{https://www.github.com/Laurent2916/}{Laurent2916}
|
||||||
|
\quad
|
||||||
|
\raisebox{-2pt}{\includesvg[height=11pt]{hf-logo.svg}} \href{https://huggingface.co/1aurent}{1aurent}
|
||||||
}
|
}
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
@ -131,8 +138,8 @@
|
||||||
Reproducible Nix Infrastructure \\
|
Reproducible Nix Infrastructure \\
|
||||||
Handwriting Denoising Diffusion \\
|
Handwriting Denoising Diffusion \\
|
||||||
GBA Collaborative Emulator \\
|
GBA Collaborative Emulator \\
|
||||||
AI or NOT Hackathon \\
|
SSL on Histology Datasets \\
|
||||||
ML on Medical Datasets \\
|
``AI or NOT" Hackathon \\
|
||||||
Diffusers.jl
|
Diffusers.jl
|
||||||
\sectionsep
|
\sectionsep
|
||||||
|
|
||||||
|
@ -175,7 +182,7 @@
|
||||||
\begin{tightemize}
|
\begin{tightemize}
|
||||||
\item Studied state of the art generative models for 3D data, such as PointNet++, Graph U-Net, PointFlow, Point Voxel Diffusion and LION.
|
\item Studied state of the art generative models for 3D data, such as PointNet++, Graph U-Net, PointFlow, Point Voxel Diffusion and LION.
|
||||||
\item Implemented a dozen architectures using libraries such as PyTorch Geometric, PyTorch Lightning, HuggingFace Diffusers, HuggingFace Datasets, etc. Settled on Latent Diffusion Models.
|
\item Implemented a dozen architectures using libraries such as PyTorch Geometric, PyTorch Lightning, HuggingFace Diffusers, HuggingFace Datasets, etc. Settled on Latent Diffusion Models.
|
||||||
\item Trained models on specific aircraft industrial parts, conditioned on perfomance metrics, such as drag coefficients, lift coefficients, etc.
|
\item Trained models on specific aircraft industrial parts, conditioned on performance metrics, such as drag coefficients, lift coefficients, etc.
|
||||||
\item Released internally the models and code, enabling Safran engineers to generate new parts with specific performance metrics and to easily reuse the code for other applications.
|
\item Released internally the models and code, enabling Safran engineers to generate new parts with specific performance metrics and to easily reuse the code for other applications.
|
||||||
\end{tightemize}
|
\end{tightemize}
|
||||||
\sectionsep
|
\sectionsep
|
||||||
|
|
Loading…
Reference in a new issue