forked from academicpages/academicpages.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ab1bfe
commit 4858b56
Showing
12 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
layout: archive | ||
title: "OpenAccess" | ||
permalink: /openaccess/ | ||
author_profile: true | ||
--- | ||
|
||
|
||
{% include base_path %} | ||
|
||
{% assign categories_order = "Datasets,Software,Teaching,Misc" | split: "," %} | ||
|
||
{% for category in categories_order %} | ||
{% assign publications_in_category = site.portfolio | where: "category", category %} | ||
|
||
{% if publications_in_category.size > 0 %} | ||
<h2 class="category-toggle">{{ category | capitalize }} <span class="toggle-icon">+</span></h2> | ||
<div id="publications-{{ category | slugify }}" class="publications-section"> | ||
{% for post in publications_in_category %} | ||
{% include archive-single.html %} | ||
{% endfor %} | ||
</div> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
|
||
<script> | ||
var categoryToggles = document.querySelectorAll('.category-toggle'); | ||
categoryToggles.forEach(function(toggle) { | ||
toggle.addEventListener('click', function() { | ||
var publicationsSection = this.nextElementSibling; | ||
var toggleIcon = this.querySelector('.toggle-icon'); | ||
|
||
if (publicationsSection.style.display === 'none') { | ||
publicationsSection.style.display = 'block'; | ||
toggleIcon.innerHTML = '-'; | ||
} else { | ||
publicationsSection.style.display = 'none'; | ||
toggleIcon.innerHTML = '+'; | ||
} | ||
}); | ||
}); | ||
</script> | ||
|
||
<style> | ||
.category-toggle { | ||
cursor: pointer; | ||
} | ||
|
||
.publications-section { | ||
display: none; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.toggle-icon { | ||
margin-left: 5px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: "CUCO Database: A voice and speech corpus of patients who underwent upper airway surgery in pre- and post-operative states" | ||
excerpt: "Our dataset includes 3,800 audio files, averaging 35.51 ± 5.91 recordings per patient, covering surgeries like Tonsillectomy, Functional Endoscopic Sinus Surgery, and Septoplasty." | ||
collection: portfolio | ||
category: "Datasets" | ||
--- | ||
|
||
## CUCO Database: A voice and speech corpus of patients who underwent upper airway surgery in pre- and post-operative states | ||
We have developed a comprehensive voice and speech corpus featuring 107 Spanish Castilian speakers, including both control participants and patients who underwent upper airway surgeries such as Tonsillectomy, Functional Endoscopic Sinus Surgery, and Septoplasty. | ||
|
||
Our dataset contains 3,800 audio files, averaging 35.51 ± 5.91 recordings per patient. This resource is designed to facilitate systematic investigations into the effects of upper respiratory tract surgery on voice and speech. Previous studies using this corpus have demonstrated no significant changes in key acoustic parameters for sustained vowel phonation, aligning with our initial hypotheses. However, further research into speech recordings, particularly nasalised segments, is encouraged. | ||
|
||
Additionally, this dataset is instrumental in exploring the impact of upper airway surgery on speaker recognition and identification methods, as well as in testing anti-spoofing methodologies to enhance robustness. | ||
|
||
🔗 Read our paper: [Scientific Data - Paper Link](https://www.nature.com/articles/s41597-024-03540-5#citeas) | ||
📂 Access the dataset: [Zenodo Dataset](https://zenodo.org/records/11654546) | ||
💻 Github Repository: [CUCO Database on Github](https://github.com/BYO-UPM/CUCO_Database) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: "Introduction to SNN: from theory to Pytorch" | ||
excerpt: "Slides of the BioInspired Learning course at MUIT UPM" | ||
collection: portfolio | ||
category: "Teaching" | ||
--- | ||
|
||
## Introduction to SNN: from theory to Pytorch | ||
Slides of the introduction to SNNs given at the Master program MUIT at the UPM 2023/2024. | ||
|
||
[Introduction to SNN: from theory to Pytorch](https://aguerrerolopez.github.io/portfolio/teaching/bio-inspired-learning/snntorch_intro.ipynb) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters