Skip to content

Commit

Permalink
change profile pic
Browse files Browse the repository at this point in the history
  • Loading branch information
MHashemzadeh committed Aug 8, 2024
1 parent 0ebec23 commit c98ada8
Show file tree
Hide file tree
Showing 39 changed files with 31 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}
Binary file modified assets/img/profile.jpg
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 assets/img/profile_old.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/publications/campari.jpg
Binary file not shown.
Binary file removed assets/img/publications/conv_onet.jpg
Binary file not shown.
Binary file removed assets/img/publications/cslf.jpg
Binary file not shown.
Binary file removed assets/img/publications/dreambooth3d.jpg
Binary file not shown.
Binary file removed assets/img/publications/dvr.jpg
Binary file not shown.
Binary file removed assets/img/publications/giraffe.jpg
Binary file not shown.
Binary file removed assets/img/publications/graf.jpg
Binary file not shown.
Binary file removed assets/img/publications/graf.png
Binary file not shown.
Binary file removed assets/img/publications/monosdf.jpg
Binary file not shown.
Binary file removed assets/img/publications/nerfmeshing.jpg
Binary file not shown.
Binary file removed assets/img/publications/newton.jpg
Binary file not shown.
Binary file removed assets/img/publications/oflow.jpg
Binary file not shown.
Binary file removed assets/img/publications/onet.jpg
Binary file not shown.
Binary file removed assets/img/publications/regnerf.jpg
Binary file not shown.
Binary file removed assets/img/publications/sap.jpg
Binary file not shown.
Binary file removed assets/img/publications/sdfstudio.jpg
Binary file not shown.
Binary file removed assets/img/publications/textmesh.jpg
Binary file not shown.
Binary file removed assets/img/publications/tfield.jpg
Binary file not shown.
Binary file removed assets/img/publications/voxgraf.jpg
Binary file not shown.
Binary file removed assets/img/talks/adobe-pres.jpg
Binary file not shown.
Binary file removed assets/img/talks/amazon.jpg
Binary file not shown.
Binary file removed assets/img/talks/diffrend.jpg
Binary file not shown.
Binary file removed assets/img/talks/fraunhofer.jpg
Binary file not shown.
Binary file removed assets/img/talks/games-talk.jpg
Diff not rendered.
Binary file removed assets/img/talks/gtc.jpg
Diff not rendered.
Binary file removed assets/img/talks/gtc.png
Diff not rendered.
Binary file removed assets/img/talks/mit.jpg
Diff not rendered.
Binary file removed assets/img/talks/tum-lecture-img.jpg
Diff not rendered.
Binary file removed assets/pdf/CV_Niemeyer_Michael.pdf
Binary file not shown.
Binary file removed assets/pdf/diffrend-slides.pdf
Binary file not shown.
Binary file removed assets/pdf/games-slides.pdf
Binary file not shown.
Binary file removed assets/pdf/gnsr-slides.pdf
Binary file not shown.
Binary file removed assets/pdf/gnsr_slides.pdf
Binary file not shown.
Binary file removed assets/pdf/isr_nr.pdf
Binary file not shown.
13 changes: 9 additions & 4 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ def get_personal_data():
github = "MHashemzadeh"
linkedin = "maryam-hashemzadeh-b76a7155"
bio_text = f"""
<!-- <p>I am a research associate at Mila working on LLM and RL.</p> -->
<!-- <p>I am a PhD student at Mila working on Continual Learning, LLM and RL.</p> -->
<p>
<span style="font-weight: bold;">Research:</span>
I'm passionate about leveraging learning-based systems to address complex challenges. Currently, my research focuses on Large Language Models (LLMs) and their application in interactive decision-making, akin to Reinforcement Learning (RL) agents, while emphasizing the prevention of hallucinations. Additionally, I'm exploring how LLMs can enhance generalization in Lifelong learning. </p>
I'm passionate about leveraging learning-based systems to address complex challenges. Currently, my research focuses on Large Language Models (LLMs) and their application in interactive decision-making, akin to Reinforcement Learning (RL) agents, while emphasizing online learning and adaptation. Additionally, I'm exploring how LLMs can enhance generalization in Lifelong learning. </p>
<p>
<span style="font-weight: bold;">Bio:</span>
I'm a research associate at <a href="https://mila.quebec/en/" target="_blank">Mila</a> supervised by <a href="http://sarathchandar.in/" target="_blank">Sarath Chandar</a> with close collaboration with <a href="https://www.microsoft.com/en-us/research/people/macote/" target="_blank">Marc-Alexandre Côté</a>.
I'm a PhD student at <a href="https://mila.quebec/en/" target="_blank">Mila</a> supervised by <a href="http://sarathchandar.in/" target="_blank">Sarath Chandar</a> with close collaboration with <a href="https://www.microsoft.com/en-us/research/people/macote/" target="_blank">Marc-Alexandre Côté</a>.
I hold an MSc from the University of Alberta, where I conducted research with <a href="http://webdocs.cs.ualberta.ca/~whitem/" target="_blank">Martha White</a> and <a href="http://webdocs.cs.ualberta.ca/~alona/" target="_blank">Alona Fyshe</a>, specializing in Offline Reinforcement Learning.
</p>
Expand Down Expand Up @@ -106,6 +106,11 @@ def get_paper_entry(entry_key, entry):
# else:
# s += f"""<a href="{entry.fields['html']}" target="_blank">{entry.fields['title']}</a> <br>"""

if 'award' in entry.fields.keys():
s += f"""<a href="{entry.fields['html']}" target="_blank">{entry.fields['title']}</a> <span style="color: red;">({entry.fields['award']})</span><br>"""
else:
s += f"""<b>{entry.fields['title']}</b> <br>"""

s += f"""{generate_person_html(entry.persons['author'])} <br>"""
s += f"""<span style="font-style: italic;">{entry.fields['booktitle']}</span>, {entry.fields['year']} <br>"""

Expand Down Expand Up @@ -211,7 +216,7 @@ def get_index_html():
</div>
<div class="row" style="margin-top: 3em; margin-bottom: 1em;">
{footer}
</div> -->
</div>
</div>
<!-- Optional JavaScript -->
Expand Down
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,27 +51,27 @@ <h3 class="display-4" style="text-align: center;"><span style="font-weight: bold
<div class="row" style="margin-top: 1em;">
<div class="col-sm-12" style="">
<h4>Publications</h4>
<div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9">Maryam Hashemzadeh, Wesley Chung, Martha White <br><span style="font-style: italic;">-</span>, 2021 <br><a href="-" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2021offline" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2021offline"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2021offline,
<div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9"><b>Offline-Online Reinforcement Learning: Extending Batch and Online RL</b> <br>Maryam Hashemzadeh, Wesley Chung, Martha White <br><span style="font-style: italic;">-</span>, 2021 <br><a href="-" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2021offline" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2021offline"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2021offline,
author = {Maryam Hashemzadeh and Wesley Chung and Martha White},
title = {Offline-Online Reinforcement Learning: Extending Batch and Online RL},
booktitle = {-},
year = {2021},
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9">Maryam Hashemzadeh, Greta Kaufeld, Martha White, Andrea Martin, Alona Fyshe <br><span style="font-style: italic;">EMNLP</span>, 2020 <br><a href="https://arxiv.org/pdf/2010.07435.pdf" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2020language" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2020language"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2020language,
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9"><b>From Language to Language-ish: How Brain-Like is an LSTM's Representation of Nonsensical Language Stimuli?</b> <br>Maryam Hashemzadeh, Greta Kaufeld, Martha White, Andrea Martin, Alona Fyshe <br><span style="font-style: italic;">EMNLP</span>, 2020 <br><a href="https://arxiv.org/pdf/2010.07435.pdf" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2020language" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2020language"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2020language,
author = {Maryam Hashemzadeh and Greta Kaufeld and Martha White and Andrea Martin and Alona Fyshe},
title = {From Language to Language-ish: How Brain-Like is an LSTM's Representation of Nonsensical Language Stimuli?},
booktitle = {EMNLP},
year = {2020},
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9">Aurelio Cortese, Asuka Yamamoto, Maryam Hashemzadeh, Pradyumna Sepulveda, Mitsuo Kawato, Benedetto De Martino <br><span style="font-style: italic;">Elife</span>, 2021 <br><a href="https://elifesciences.org/articles/68943.pdf" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsecortese2021value" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsecortese2021value"><div class="card card-body"><pre><code>@InProceedings{cortese2021value,
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9"><b>Value signals guide abstraction during learning</b> <br>Aurelio Cortese, Asuka Yamamoto, Maryam Hashemzadeh, Pradyumna Sepulveda, Mitsuo Kawato, Benedetto De Martino <br><span style="font-style: italic;">Elife</span>, 2021 <br><a href="https://elifesciences.org/articles/68943.pdf" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsecortese2021value" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsecortese2021value"><div class="card card-body"><pre><code>@InProceedings{cortese2021value,
author = {Aurelio Cortese and Asuka Yamamoto and Maryam Hashemzadeh and Pradyumna Sepulveda and Mitsuo Kawato and Benedetto De Martino},
title = {Value signals guide abstraction during learning},
booktitle = {Elife},
year = {2021},
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9">Maryam Hashemzadeh, Reshad Hosseini, Majid Ahmadabadi <br><span style="font-style: italic;">Evolving Systems, Springer</span>, 2020 <br><a href="https://link.springer.com/article/10.1007/s12530-019-09290-9" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2020clustering" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2020clustering"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2020clustering,
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9"><b>Clustering subspace generalization to obtain faster reinforcement learning</b> <br>Maryam Hashemzadeh, Reshad Hosseini, Majid Ahmadabadi <br><span style="font-style: italic;">Evolving Systems, Springer</span>, 2020 <br><a href="https://link.springer.com/article/10.1007/s12530-019-09290-9" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2020clustering" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2020clustering"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2020clustering,
author = {Maryam Hashemzadeh and Reshad Hosseini and Majid Ahmadabadi},
title = {Clustering subspace generalization to obtain faster reinforcement learning},
booktitle = {Evolving Systems, Springer},
year = {2020},
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9">Maryam Hashemzadeh, Reshad Hosseini, Majid Ahmadabadi <br><span style="font-style: italic;">IEEE transactions on neural networks and learning systems</span>, 2018 <br><a href="https://arxiv.org/pdf/1710.08012.pdf" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2018exploiting" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2018exploiting"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2018exploiting,
}</pre></code></div></div> </div> </div> </div><div style="margin-bottom: 3em;"> <div class="row"><div class="col-sm-3"></div><div class="col-sm-9"><b>Exploiting generalization in the subspaces for faster model-based reinforcement learning</b> <br>Maryam Hashemzadeh, Reshad Hosseini, Majid Ahmadabadi <br><span style="font-style: italic;">IEEE transactions on neural networks and learning systems</span>, 2018 <br><a href="https://arxiv.org/pdf/1710.08012.pdf" target="_blank">Paper</a> /<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapsehashemzadeh2018exploiting" aria-expanded="false" aria-controls="collapseExample" style="margin-left: -6px; margin-top: -2px;">Expand bibtex</button><div class="collapse" id="collapsehashemzadeh2018exploiting"><div class="card card-body"><pre><code>@InProceedings{hashemzadeh2018exploiting,
author = {Maryam Hashemzadeh and Reshad Hosseini and Majid Ahmadabadi},
title = {Exploiting generalization in the subspaces for faster model-based reinforcement learning},
booktitle = {IEEE transactions on neural networks and learning systems},
Expand All @@ -87,7 +87,7 @@ <h4>Publications</h4>
</p>
</div>

</div> -->
</div>
</div>

<!-- Optional JavaScript -->
Expand Down

0 comments on commit c98ada8

Please sign in to comment.