Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Social media logos #12

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added images/gmail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/linkedin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/people/Subhaditya_Mukherjee.webp
Binary file not shown.
Binary file added images/personalsite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/scholar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 17 additions & 2 deletions people/people.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def make_person_description(name, attrs):
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}

.image-container {
Expand All @@ -39,7 +40,15 @@ def make_person_description(name, attrs):
display: flex;
align-items: center;
padding: 10px;
margin-bottom: 0px;
}
.social-icons {
display: flex;
justify-content: center;
}

.social-icons img {
width: 20px; /* Adjust size as needed */
margin: 0 10px; /* Adjust spacing */
}
</style>
<body>
Expand All @@ -50,6 +59,12 @@ def make_person_description(name, attrs):
<div class="text">
$description
</div>
<div class="social-icons">
<a href = "mailto:$mail"><img src="../images/gmail.png" alt="Email"></a>
<a href = "$link"><img src="../images/linkedin.png" alt="Linkedin"></a>
<a href = "$scholar"><img src="../images/scholar.png" alt="Google Scholar"></a>
<a href = "$personal"><img src="../images/personalsite.png" alt="Personal"></a>
</div>
</div>
</body>
<br>
Expand All @@ -58,7 +73,7 @@ def make_person_description(name, attrs):
template = Template(s)
description = "<p>" + attrs["description"] + "</p>"
description = description.replace("<name>", "<b>" + name + "</b>") # Add bold name
return template.substitute(picture=attrs["picture"], description=description)
return template.substitute(picture=attrs["picture"], description=description, mail = attrs["mail"], link = attrs["linkedin"], scholar = attrs["scholar"], personal = attrs["personal"])


yaml_data = yaml.safe_load(open("people.yml"))
Expand Down
38 changes: 38 additions & 0 deletions people/people.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,31 @@ Andrei Simion-Constantinescu: # Put your name here, it will replace <name> in th
<a href="https://repository.tudelft.nl/islandora/object/uuid%3A6b74a0e6-37aa-4ff4-bada-3e414498eafd" target="_blank">contrastive learning for unlabeled videos</a>.
His current research focuses on adapting state-of-the-art self-supervise techniques for greenhouse/vertical farm images to predict the crop growing parameters (such as fresh weight, height, diameter a.s.o).
picture: ../images/people/andrei_simion.webp
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Alexis Cvetkov-Iliev: # Put your name here, it will replace <name> in the description
position: postdoc # permanent, engineer, postdoc or phd
description:
<name> is a postdoc in the group, applying machine-learning techniques to study and optimize building renovation. His research interests include active learning, Bayesian optimization, and transfer learning.
picture: ../images/people/alexis_cvetkov.webp
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Israel Campero Jurado:
position: PhD student
description:
<name> is a PhD student in computer science working on the European ITEA project called <a href="https://inno4health.eu/" target="_blank">INNO4HEALTH.
His interests focus on the application of automated machine learning (AutoML) and meta-learning to healthcare solutions.
picture: ../images/people/israel.webp
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Pieter Gijsbers:
position: engineer
Expand All @@ -28,23 +40,49 @@ Pieter Gijsbers:
started the <a href="https://github.com/openml/automlbenchmark" target="_blank">AutoML Benchmark</a> and
<a href="https://github.com/openml-labs/gama" target="_blank">GAMA</a>, and is currently rewriting the OpenML server in Python.
picture: ../images/people/pieter_gijsbers.webp
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Jiarong Pan:
position: phd
description:
<name> is a PhD student in the group, working on improving sample efficiency in machine learning algorithms. His research interests include meta-learning, Bayesian optimization and multi-objective optimization.
picture: ../images/people/jiarong_pan.jpg
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Taniya Das:
position: engineer
description:
<name> is a Research Engineer working on various engineering and machine learning tasks for <a href="https://github.com/openml" target="_blank">openml.org</a> and <a href="https://github.com/aiondemand/AIOD-rest-api" target="_blank">AI-on-Demand</a> platform (a EU project), and is currently thinking of ML methods to make OpenML better.
picture: ../images/people/taniya_image.webp
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Fangqin Zhou:
position: PhD student
description:
<name> is a PhD student working on the TWINERGY project, which aims to optimize the growth of cherry tomatos in a vertical farm.
Her interests focus on the Hyperspectral Imaging using deep learning and transformer models, as well as Reinforcement Learning.
picture: ../images/people/Fangqin Zhou.webp
mail: [email protected]
scholar: https://scholar.google.com/
linkedin: https://linkedin.com/
personal: https://github.com/

Subhaditya Mukherjee:
position: engineer
description:
<name> is a Research Engineer working on various engineering and machine learning tasks for <a href="https://github.com/openml" target="_blank">openml.org</a>. He is currently working on making the OpenML experience better and more user-friendly.
picture: ../images/people/Subhaditya_Mukherjee.webp
mail: [email protected]
scholar: https://scholar.google.com/scholar?hl=en&as_sdt=0%2C5&q=subhaditya+mukherjee&btnG=&oq=su
linkedin: https://www.linkedin.com/in/subhaditya-mukherjee-a36883100/
personal: https://www.github.com/SubhadityaMukherjee

26 changes: 0 additions & 26 deletions research/publications.md

This file was deleted.

Loading
Loading