Skip to content

Commit 1ad7fbf

Browse files
author
Julia Puig
committed
update and add teachings
1 parent 2682282 commit 1ad7fbf

19 files changed

Lines changed: 53 additions & 770 deletions

_config.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ collections:
162162
layout: post
163163
output: true
164164
projects:
165-
output: true
165+
output: false
166166
teachings:
167167
output: true
168168

@@ -210,11 +210,9 @@ exclude:
210210
- _pages/repositories.md
211211
- _pages/books.md
212212
- _pages/dropdown.md
213-
- _pages/projects.md
214213
- _pages/news.md
215214
- _pages/profiles.md
216215
- _posts/
217-
- _projects/
218216
- assets/jupyter/blog.ipynb
219217
keep_files:
220218
- CNAME

_data/cv.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cv:
77
Education:
88
- institution: CREATIS Lab, INSA Lyon
99
location: Lyon, France
10-
studyType: PhD in Signal and image processing
10+
studyType: PhD in Signal and Image Processing
1111
start_date: 2021
1212
end_date: 2025
1313

@@ -60,10 +60,12 @@ cv:
6060
- npj Digital Medicine
6161
- name: Science communication
6262
highlights:
63-
- Workshop on basics of signal processing for primary school students
63+
- "[Workshop](https://www.creatis.insa-lyon.fr/site/fr/animation-scientifique-grand-public-atelier-trace-ton-son) on basics of signal processing for primary school students"
6464
- Workshop on research careers and women in science for primary school students
65+
- "Participation to a [podcast](https://open.spotify.com/episode/4K7tFBMAT4T0hfnNQCJu2f) on sound and the Doppler effect for the general public"
6566
- name: Conference staff volunteer
6667
highlights:
68+
- French Workshop on AI for Biomedical Imaging (IABM) (Lyon, March 2026)
6769
- Functional Imaging and Modelling of the Heart (FIMH) (Lyon, June 2023)
6870
- Spring school on Deep Learning for Medical Imaging (DLMI) (Lyon, April 2023)
6971

_includes/projects.liquid

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
include figure.liquid
77
loading="eager"
88
path=project.img
9-
sizes = "250px"
9+
sizes = "1250px"
1010
alt="project thumbnail"
1111
class="card-img-top"
1212
%}

_pages/about.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ latest_posts:
2525
limit: 3 # leave blank to include all the blog posts
2626
---
2727

28-
I am interested in how deep learning can be used to advance medical and biological imaging. I obtained my PhD degree from the CREATIS lab of INSA Lyon on May 2025 on the subject of accelerating cardiac ultrasound processing with deep learning.
28+
I am interested in how deep learning can be used to advance medical and biological imaging. I obtained my PhD degree from INSA Lyon on May 2025 on the subject of accelerating cardiac ultrasound processing with deep learning. I was part of the [MYRIAD team](https://creatis-myriad.github.io./) in the [CREATIS Lab](https://www.creatis.insa-lyon.fr/site/fr/).
2929

30-
Previously, I graduated from the BSc in Mathematics at Universitat Politècnica de Catalunya (UPC) and from the MSc in Applied and Industrial Mathematics at Université Grenobles-Alpes (UGA) and ENSIMAG.
30+
Previously, I graduated from the [BSc in Mathematics](https://fme.upc.edu/en/studies/degrees/bachelors-degree-in-mathematics-1) at Universitat Politècnica de Catalunya (UPC) and from the [MSc in Applied and Industrial Mathematics](https://ensimag.grenoble-inp.fr/fr/formation/master-of-science-in-industrial-and-applied-mathematics#page-presentation) at Université Grenobles-Alpes (UGA) and ENSIMAG.

_pages/projects.md

Lines changed: 7 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,19 @@
11
---
22
layout: page
3-
title: projects
3+
title: Research
44
permalink: /projects/
5-
description: A growing collection of your cool projects.
6-
nav: true
5+
description:
6+
nav: false
77
nav_order: 3
8-
display_categories: [work, fun]
9-
horizontal: false
8+
horizontal: true
109
---
1110

12-
<!-- pages/projects.md -->
13-
<div class="projects">
14-
{% if site.enable_project_categories and page.display_categories %}
15-
<!-- Display categorized projects -->
16-
{% for category in page.display_categories %}
17-
<a id="{{ category }}" href=".#{{ category }}">
18-
<h2 class="category">{{ category }}</h2>
19-
</a>
20-
{% assign categorized_projects = site.projects | where: "category", category %}
21-
{% assign sorted_projects = categorized_projects | sort: "importance" %}
22-
<!-- Generate cards for each project -->
23-
{% if page.horizontal %}
24-
<div class="container">
25-
<div class="row row-cols-1 row-cols-md-2">
26-
{% for project in sorted_projects %}
27-
{% include projects_horizontal.liquid %}
28-
{% endfor %}
29-
</div>
30-
</div>
31-
{% else %}
32-
<div class="row row-cols-1 row-cols-md-3">
33-
{% for project in sorted_projects %}
34-
{% include projects.liquid %}
35-
{% endfor %}
36-
</div>
37-
{% endif %}
38-
{% endfor %}
39-
40-
{% else %}
41-
42-
<!-- Display projects without categories -->
43-
4411
{% assign sorted_projects = site.projects | sort: "importance" %}
4512

46-
<!-- Generate cards for each project -->
47-
48-
{% if page.horizontal %}
49-
50-
<div class="container">
51-
<div class="row row-cols-1 row-cols-md-2">
52-
{% for project in sorted_projects %}
53-
{% include projects_horizontal.liquid %}
54-
{% endfor %}
55-
</div>
56-
</div>
57-
{% else %}
58-
<div class="row row-cols-1 row-cols-md-3">
13+
<div class="projects">
14+
<div class="row row-cols-1 row-cols-md-2">
5915
{% for project in sorted_projects %}
6016
{% include projects.liquid %}
6117
{% endfor %}
6218
</div>
63-
{% endif %}
64-
{% endif %}
65-
</div>
19+
</div>

_pages/publications.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ nav_order: 2
1919
- **J. Puig**, F. Millioz, D. Garcia, D. Friboulet. "Complex-Valued CNNs for Phase Shift Estimation in Color Doppler Imaging", *IEEE International Ultrasonics Symposium* (IUS), 2023, Montreal, Canada. (Oral presentation)
2020

2121
## National conferences
22+
- **J. Puig**, F. Millioz, D. Garcia, J. Cohen. "Separation of blood and tissue signals in echocardiography using autoencoders", *Colloque Français d’Intelligence Artificielle en Imagerie Biomédicale* (IABM), 2026, Lyon, France. (Poster)
2223
- **J. Puig**, F. Millioz, D. Garcia, D. Friboulet. "Filtre de paroi par apprentissage profond pour l’estimation de vitesse Doppler en échocardographie", GRETSI 2025 - *Colloque Francophone de Traitement du Signal et des Images*, 2025, Strasbourg, France.
2324
- **J. Puig**, D. Friboulet, J. Porée, J. Provost, D. Garcia, F. Millioz. "Accelerating the frame rate of echocardiography with deep learning", *Colloque Français d’Intelligence Artificielle en Imagerie Biomédicale* (IABM), 2025, Nice, France. (Poster)
2425
- **J. Puig**, F. Millioz, D. Garcia, D. Friboulet. "Clutter filtering in echocardiography with deep learning", *Colloque Français d’Intelligence Artificielle en Imagerie Biomédicale* (IABM), 2024, Grenoble, France. (Poster)

_pages/teaching.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,25 @@ layout: page
33
permalink: /teaching/
44
title: Teaching
55
description:
6-
nav: false
6+
nav: true
77
nav_order: 6
88
calendar: false
99
---
1010

11-
{% include courses.liquid %}
11+
## Polytech Lyon
12+
I teached in the [Biomedical Engineer degree of Polytech Lyon](https://polytech.univ-lyon1.fr/formation/cycle-ingenieur/genie-biomedical/ genie-biomedical-par-cursus-classique) to 1st year students
13+
- **Statistics for medical applications** [from 2022 to 2024, total of 46 hours]
14+
- Course content: descriptive statistics, combinatorics, basics of probability, random variables, discrete and continuous probability distributions, and statistical tests.
15+
- Problem sessions to apply the concepts introduced in lectures
16+
- Lab sessions with Python Jupyter notebooks to put into practice the statistical concepts covered in problem sessions
17+
- **Lab sessions of signal processing** [from 2022 to 2025, total of 18 hours]
18+
- Introduction to signal processing with Python and the NumPy package
19+
- Exploration of signal correlation and convolution, and Fourier transform with Python Jupyter notebooks
20+
21+
## Summer School *Deep Learning for Medical Imaging*
22+
I teached hands-on sessions during the 2022 and 2023 editions of [DLMI Summer School](https://deepimaging2023.sciencesconf.org/) to graduate students
23+
- **Deep learning for image segmentation** [8 hours]
24+
- **Introduction to variational autoencoders** [4 hours]
25+
- **Deep learning for image reconstrucion** [4 hours]
26+
27+

_projects/1_project.md

Lines changed: 6 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,12 @@
11
---
22
layout: page
3-
title: project 1
4-
description: with background image
5-
img: assets/img/12.jpg
6-
importance: 1
3+
title: Dynamical Systems for Theoretical Biology
4+
description: Bachelor Thesis
5+
img: assets/img/hypercycle.jpg
6+
importance: 3
77
category: work
8-
related_publications: true
98
---
109

11-
Every project has a beautiful feature showcase page.
12-
It's easy to include images in a flexible 3-column grid format.
13-
Make your photos 1/3, 2/3, or full width.
10+
This project focused on the mathematical study of hypercycles, closed loops of molecules that catalyze one another, so that each promotes the replication of the next and the whole system is collectively maintained. Hypercycles can be modeled using ordinary differential equations. We studied the bifurcations of asymmetric hypercycles, both analytically and numerically. In particular, we worked on the numerical approximation of the periodic orbits of this dynamical system using Poincaré maps.
1411

15-
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
16-
17-
---
18-
layout: page
19-
title: project
20-
description: a project with a background image
21-
img: /assets/img/12.jpg
22-
---
23-
24-
<div class="row">
25-
<div class="col-sm mt-3 mt-md-0">
26-
{% include figure.liquid loading="eager" path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
27-
</div>
28-
<div class="col-sm mt-3 mt-md-0">
29-
{% include figure.liquid loading="eager" path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
30-
</div>
31-
<div class="col-sm mt-3 mt-md-0">
32-
{% include figure.liquid loading="eager" path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
33-
</div>
34-
</div>
35-
<div class="caption">
36-
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
37-
</div>
38-
<div class="row">
39-
<div class="col-sm mt-3 mt-md-0">
40-
{% include figure.liquid loading="eager" path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
41-
</div>
42-
</div>
43-
<div class="caption">
44-
This image can also have a caption. It's like magic.
45-
</div>
46-
47-
You can also put regular text between your rows of images, even citations {% cite einstein1950meaning %}.
48-
Say you wanted to write a bit about your project before you posted the rest of the images.
49-
You describe how you toiled, sweated, _bled_ for your project, and then... you reveal its glory in the next row of images.
50-
51-
<div class="row justify-content-sm-center">
52-
<div class="col-sm-8 mt-3 mt-md-0">
53-
{% include figure.liquid path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
54-
</div>
55-
<div class="col-sm-4 mt-3 mt-md-0">
56-
{% include figure.liquid path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
57-
</div>
58-
</div>
59-
<div class="caption">
60-
You can also have artistically styled 2/3 + 1/3 images, like these.
61-
</div>
62-
63-
The code is simple.
64-
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
65-
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
66-
Here's the code for the last row of images above:
67-
68-
{% raw %}
69-
70-
```html
71-
<div class="row justify-content-sm-center">
72-
<div class="col-sm-8 mt-3 mt-md-0">
73-
{% include figure.liquid path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
74-
</div>
75-
<div class="col-sm-4 mt-3 mt-md-0">
76-
{% include figure.liquid path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
77-
</div>
78-
</div>
79-
```
80-
81-
{% endraw %}
12+
This work led to a [publication](https://web.mat.upc.edu/antoni.guillamon/papers/PuigEtAl-IJBC2017.pdf) in the journal International Journal of Bifurcation and Chaos (IJBC). The Bachelor Thesis is available [here](https://upcommons.upc.edu/entities/publication/b699c59a-ffaa-4891-bc1e-2503b22f56c7).

_projects/2_project.md

Lines changed: 6 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,13 @@
11
---
22
layout: page
3-
title: project 2
4-
description: a project with a background image and giscus comments
5-
img: assets/img/3.jpg
3+
title: Computational Biology for Cancer Genomics
4+
description: Reseacher Engineer
5+
img: assets/img/grn.jpg
66
importance: 2
77
category: work
8-
giscus_comments: true
8+
giscus_comments: false
99
---
1010

11-
Every project has a beautiful feature showcase page.
12-
It's easy to include images in a flexible 3-column grid format.
13-
Make your photos 1/3, 2/3, or full width.
11+
The aim of the project was to develop a computational biology approach to identify and compare gene co-regulation networks in the bladder under normal and tumoral conditions, and to assess which biological pathways are preserved or, conversely, altered in the tumoral context. In this framework, I contributed to improving the network inference method based on association rule mining algorithms, and I set up data mining and machine learning pipelines to analyze these networks. I also took part in interdisciplinary meetings bringing together the different project partners, during which I presented the progress made and the results obtained.
1412

15-
To give your project a background in the portfolio page, just add the img tag to the front matter like so:
16-
17-
---
18-
layout: page
19-
title: project
20-
description: a project with a background image
21-
img: /assets/img/12.jpg
22-
---
23-
24-
<div class="row">
25-
<div class="col-sm mt-3 mt-md-0">
26-
{% include figure.liquid loading="eager" path="assets/img/1.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
27-
</div>
28-
<div class="col-sm mt-3 mt-md-0">
29-
{% include figure.liquid loading="eager" path="assets/img/3.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
30-
</div>
31-
<div class="col-sm mt-3 mt-md-0">
32-
{% include figure.liquid loading="eager" path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
33-
</div>
34-
</div>
35-
<div class="caption">
36-
Caption photos easily. On the left, a road goes through a tunnel. Middle, leaves artistically fall in a hipster photoshoot. Right, in another hipster photoshoot, a lumberjack grasps a handful of pine needles.
37-
</div>
38-
<div class="row">
39-
<div class="col-sm mt-3 mt-md-0">
40-
{% include figure.liquid loading="eager" path="assets/img/5.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
41-
</div>
42-
</div>
43-
<div class="caption">
44-
This image can also have a caption. It's like magic.
45-
</div>
46-
47-
You can also put regular text between your rows of images.
48-
Say you wanted to write a little bit about your project before you posted the rest of the images.
49-
You describe how you toiled, sweated, _bled_ for your project, and then... you reveal its glory in the next row of images.
50-
51-
<div class="row justify-content-sm-center">
52-
<div class="col-sm-8 mt-3 mt-md-0">
53-
{% include figure.liquid path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
54-
</div>
55-
<div class="col-sm-4 mt-3 mt-md-0">
56-
{% include figure.liquid path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
57-
</div>
58-
</div>
59-
<div class="caption">
60-
You can also have artistically styled 2/3 + 1/3 images, like these.
61-
</div>
62-
63-
The code is simple.
64-
Just wrap your images with `<div class="col-sm">` and place them inside `<div class="row">` (read more about the <a href="https://getbootstrap.com/docs/4.4/layout/grid/">Bootstrap Grid</a> system).
65-
To make images responsive, add `img-fluid` class to each; for rounded corners and shadows use `rounded` and `z-depth-1` classes.
66-
Here's the code for the last row of images above:
67-
68-
{% raw %}
69-
70-
```html
71-
<div class="row justify-content-sm-center">
72-
<div class="col-sm-8 mt-3 mt-md-0">
73-
{% include figure.liquid path="assets/img/6.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
74-
</div>
75-
<div class="col-sm-4 mt-3 mt-md-0">
76-
{% include figure.liquid path="assets/img/11.jpg" title="example image" class="img-fluid rounded z-depth-1" %}
77-
</div>
78-
</div>
79-
```
80-
81-
{% endraw %}
13+
Part of this work was published in the journal BMC Bioinformatics.

0 commit comments

Comments
 (0)