-
Notifications
You must be signed in to change notification settings - Fork 290
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Setup compression * Update deploy.yml * Update deploy.yml * Update deploy.yml * Update deploy.yml
- Loading branch information
1 parent
baf9808
commit 56aff1a
Showing
1,137 changed files
with
2,256 additions
and
80 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 |
---|---|---|
|
@@ -8,9 +8,9 @@ env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
|
||
jobs: | ||
build: | ||
compress: | ||
runs-on: ubuntu-latest | ||
steps: | ||
steps: | ||
- name: GitHub Config | ||
run: | | ||
git config --global user.email "[email protected]" | ||
|
@@ -20,5 +20,9 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
npm install | ||
- name: Compress | ||
run: | | ||
pip3 install pillow | ||
npm run compress | ||
- name: Deploy | ||
run: npm run deploy:ci | ||
run: npm run deploy:ci |
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,27 @@ | ||
from io import BytesIO | ||
|
||
from PIL import Image | ||
|
||
Image.MAX_IMAGE_PIXELS = None | ||
|
||
|
||
counter = 0 | ||
|
||
import os | ||
for root, dirs, files in os.walk("../cse3000-research-project.github.io/content/posters", topdown=False): | ||
for name in files: | ||
if "poster" in name and "pdf" not in name and "PDF" not in name: | ||
counter += 1 | ||
print(counter) | ||
pth = os.path.join(root, name) | ||
img = Image.open(pth) | ||
|
||
buffer = BytesIO() | ||
|
||
try: | ||
img.save(buffer, "JPEG", quality=5) | ||
print(pth) | ||
with open(pth, "wb") as handle: | ||
handle.write(buffer.getbuffer()) | ||
except: | ||
pass |
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,5 @@ | ||
projectTitle: Algorithmic comparison for the multi-agent path finding problem with | ||
waypoints | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 0/students/Andor Michels/student_info.yaml
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,4 @@ | ||
firstName: Andor | ||
lastName: Michels | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:d3deaccc-db8b-4fe0-8328-faaf4fa6b598?collection=education | ||
thesisTitle: Multi-agent pathfinding with waypoints using Branch-Price-and-Cut |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 0/students/Arjen Ferwerda/student_info.yaml
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,5 @@ | ||
firstName: Arjen | ||
lastName: Ferwerda | ||
paperUrl: http://resolver.tudelft.nl/uuid:d744eab0-1884-424e-978a-15a08cbaeff8 | ||
thesisTitle: Extending the Multi-Label A* Algorithm for Multi-Agent Pathfinding with | ||
Multiple Waypoints |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 0/students/Jeroen van Dijk/student_info.yaml
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,5 @@ | ||
firstName: Jeroen | ||
lastName: van Dijk | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:603d2e05-b897-4242-823b-13881abdc670?collection=education | ||
thesisTitle: Solving the Multi-Agent Path Finding with Waypoints Problem Using Subdimensional | ||
Expansion |
Binary file added
BIN
+632 KB
content/posters/2020/Q4/Group 0/students/Noah Jadoenathmisier/poster.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
BIN
+1.74 MB
content/posters/2020/Q4/Group 0/students/Noah Jadoenathmisier/poster.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 0/students/Noah Jadoenathmisier/student_info.yaml
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,4 @@ | ||
firstName: Noah | ||
lastName: Jadoenathmisier | ||
paperUrl: http://resolver.tudelft.nl/uuid:7b6ed42f-ded8-4256-821b-735cbfe1ea62 | ||
thesisTitle: Extending CBS to efficiently solve MAPFW |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 0/students/Stef Siekman/student_info.yaml
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,4 @@ | ||
firstName: Stef | ||
lastName: Siekman | ||
paperUrl: http://resolver.tudelft.nl/uuid:44fbe346-1b10-4b79-93a8-4c8bb4f7485c | ||
thesisTitle: Extending A* to solve multi-agent pathfinding problems with waypoints |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 0/students/Timon Bestebreur/student_info.yaml
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,5 @@ | ||
firstName: Timon | ||
lastName: Bestebreur | ||
paperUrl: http://resolver.tudelft.nl/uuid:d602656e-4e27-4e36-8039-90497db5b905 | ||
thesisTitle: Analysis of the influence of graph characteristics on MAPFW algorithm | ||
performance |
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,4 @@ | ||
projectTitle: Can deep learning recognize lego pieces? | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 1/students/Berend Kam/student_info.yaml
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,4 @@ | ||
firstName: Berend | ||
lastName: Kam | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3A5a7acca4-3c2f-4d5f-841f-dcb7a2ed007e?collection=education | ||
thesisTitle: Data Generation Methods for Multi-Label Images of LEGO Bricks |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 1/students/David Cian/student_info.yaml
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,5 @@ | ||
firstName: David | ||
lastName: Cian | ||
paperUrl: https://repository.tudelft.nl/??? | ||
thesisTitle: Evaluating the performance of the LIME and Grad-CAM explanation methods | ||
on a LEGO multi-label image classification task |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 1/students/Hiba Abderrazik/student_info.yaml
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,5 @@ | ||
firstName: Hiba | ||
lastName: Abderrazik | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3Ad903e7e1-a180-402d-93e2-89c6612f3c48?collection=education | ||
thesisTitle: Faster R-CNN as an Application for Object Detection of Scattered LEGO | ||
Pieces. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 1/students/Nishad Tahur/student_info.yaml
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,5 @@ | ||
firstName: Nishad | ||
lastName: Tahur | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:f594616d-d8c9-47af-bcba-46fc23699fd0?collection=education | ||
thesisTitle: The Current State of the Art in Multi-Label Image Classification Applied | ||
on LEGO Bricks |
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
BIN
+1.57 MB
content/posters/2020/Q4/Group 1/students/Rembrandt Oltmans/poster.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 1/students/Rembrandt Oltmans/student_info.yaml
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,4 @@ | ||
firstName: Rembrandt | ||
lastName: Oltmans | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:8b6f69f8-1641-48f0-b4fc-06248c08deaf?collection=education | ||
thesisTitle: METHODS FOR IMPROVING CROWDSOURCING OF IMAGES WITH LEGO BLOCKS |
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,4 @@ | ||
projectTitle: Conversational search | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 2/students/Kirti Biharie/student_info.yaml
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,4 @@ | ||
firstName: Kirti | ||
lastName: Biharie | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:043b4484-b930-4b71-9556-d6e31f7a36ac?collection=education | ||
thesisTitle: How Multitasking Influences the Usage of a Voice Assistant |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 2/students/Rohan Ray Sobha/student_info.yaml
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,4 @@ | ||
firstName: Rohan | ||
lastName: Ray Sobha | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:b03eb31e-a4bc-4a92-bea9-8f5be0446b98?collection=education | ||
thesisTitle: The influence of domain expertise on a user's conversational search |
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,4 @@ | ||
projectTitle: Learning and decision making for traffic control | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
content/posters/2020/Q4/Group 3/students/Cian Jansen/student_info.yaml
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,6 @@ | ||
firstName: Cian | ||
lastName: Jansen | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3A70ded955-d591-4f6e-aabc-8338edeefc98?collection=education | ||
thesisTitle: Poster describing the research question, method and results for research | ||
by Cian Jansen into the effect of different reward functions when optimizing traffic | ||
light control with Reinforcement Learning |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 3/students/Emanuel Kuhn/student_info.yaml
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,4 @@ | ||
firstName: Emanuel | ||
lastName: Kuhn | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:aea7f1d8-cd87-4d12-ba43-9bf8ca7c4479?collection=education | ||
thesisTitle: Q-value reuse between state abstractions for traffic light control |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 3/students/Pepijn Tersmette/student_info.yaml
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,5 @@ | ||
firstName: Pepijn | ||
lastName: Tersmette | ||
paperUrl: http://resolver.tudelft.nl/uuid:e58af891-ff40-4925-8fec-aca9ad49b9bc | ||
thesisTitle: Using Game Theory to Analyse Local and Global Performance of Traffic | ||
Signal Control Strategies |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 3/students/Yaniv Oren/student_info.yaml
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,5 @@ | ||
firstName: Yaniv | ||
lastName: Oren | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:a3858c40-466c-48d0-a23b-45dbdf1c57ec?collection=education | ||
thesisTitle: Comparing Exploration Approaches in Deep Reinforcement Learning for Traffic | ||
Light Control |
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,4 @@ | ||
projectTitle: Machine learning-based side-channel analysis | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 4/students/Djoshua Moonen/student_info.yaml
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,5 @@ | ||
firstName: Djoshua | ||
lastName: Moonen | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:518a8b90-96df-4394-bb79-aee5fc4b0ead?collection=education | ||
thesisTitle: Little or Large? The effects of network size on AI explainability in | ||
Side-Channel Attacks |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 4/students/Doreen Mulder/student_info.yaml
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,5 @@ | ||
firstName: Doreen | ||
lastName: Mulder | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3Aa2cc7369-47a9-48b6-93d0-05de94f81558?collection=education | ||
thesisTitle: 'Hyperparameter Optimization in Deep Learning-based Side-Channel Analysis: | ||
Three Directions' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 4/students/Jim Kok/student_info.yaml
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,5 @@ | ||
firstName: Jim | ||
lastName: Kok | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:3391941a-6910-436e-98c5-c7c5b6ddd4fd?collection=education | ||
thesisTitle: 'Improving machine learning based side-channel analysis: can dropout | ||
be dropped out?' |
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,4 @@ | ||
projectTitle: 'Natural language modelling: for tv show analysis and gender bias detection' | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 5/students/David Happel/student_info.yaml
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,5 @@ | ||
firstName: David | ||
lastName: Happel | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3Aad4e3624-4f39-4a64-a678-c232e3f8d7da | ||
thesisTitle: 'Extracting location context from transcripts: a comparison of ELMo and | ||
TF-IDF' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 5/students/Dina Chen/student_info.yaml
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,4 @@ | ||
firstName: Dina | ||
lastName: Chen | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:82350585-b0ba-4664-a6f8-b77a7340114f?collection=education | ||
thesisTitle: Using Skip-Gram Model to Predict from which Show a Given Line is |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 5/students/Katja Schmahl/student_info.yaml
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,5 @@ | ||
firstName: Katja | ||
lastName: Schmahl | ||
paperUrl: http://resolver.tudelft.nl/uuid:7fc87ca9-3ad5-44ac-8cc3-2a857ca0e08b | ||
thesisTitle: Is Wikipedia succeeding in reducing gender bias? Assessing the development | ||
of gender bias in word embeddings from Wikipedia |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 5/students/Pia Keukeleire/student_info.yaml
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,5 @@ | ||
firstName: Pia | ||
lastName: Keukeleire | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:ab543db3-f285-477c-b4ce-b6ac57507554?collection=education | ||
thesisTitle: Correspondence between perplexity and human evaluation of generated TV-Show | ||
scripts. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 5/students/Thijs Raymakers/student_info.yaml
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,4 @@ | ||
firstName: Thijs | ||
lastName: Raymakers | ||
paperUrl: http://resolver.tudelft.nl/uuid:ea118174-0a65-438a-a417-8461e246499a | ||
thesisTitle: Gender bias in different languages |
Binary file added
BIN
+179 KB
content/posters/2020/Q4/Group 5/students/Thomas van Tussenbroek/poster.jpg
Oops, something went wrong.
Binary file added
BIN
+1.64 MB
content/posters/2020/Q4/Group 5/students/Thomas van Tussenbroek/poster.pdf
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 5/students/Thomas van Tussenbroek/student_info.yaml
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,5 @@ | ||
firstName: Thomas | ||
lastName: van Tussenbroek | ||
paperUrl: http://resolver.tudelft.nl/uuid:93873bbf-2886-4023-b696-e11be2b99024 | ||
thesisTitle: Who said that? Comparing performance of TF-IDF and fastText to identify | ||
authorship of short sentences |
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,4 @@ | ||
projectTitle: New generation iterative prisoner's dilemma | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Binary file added
BIN
+363 KB
content/posters/2020/Q4/Group 6/students/Beryl van Gelderen/poster.jpg
Oops, something went wrong.
Binary file added
BIN
+400 KB
content/posters/2020/Q4/Group 6/students/Beryl van Gelderen/poster.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 6/students/Beryl van Gelderen/student_info.yaml
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,4 @@ | ||
firstName: Beryl | ||
lastName: van Gelderen | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3Abf3dc8a9-b3e2-4cbc-91ad-06f2765fd956?collection=education | ||
thesisTitle: "Variability of Cooperation in the Spatial Prisoner\uFFFDs Dilemma" |
Binary file added
BIN
+202 KB
content/posters/2020/Q4/Group 6/students/Eric van der Toorn/poster.jpg
Oops, something went wrong.
Binary file added
BIN
+346 KB
content/posters/2020/Q4/Group 6/students/Eric van der Toorn/poster.pdf
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 6/students/Eric van der Toorn/student_info.yaml
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,5 @@ | ||
firstName: Eric | ||
lastName: van der Toorn | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:75b0fdd7-22f4-447c-90b7-ce3fdce34e58?collection=education | ||
thesisTitle: 'Knowing one''s opponents: Self Modeling Advantage Actor Critic for the | ||
Iterated Prisoner''s Dilemma' |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 6/students/Gijs de Jong/student_info.yaml
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,4 @@ | ||
firstName: Gijs | ||
lastName: de Jong | ||
paperUrl: http://resolver.tudelft.nl/uuid:379771da-2317-4b40-b00c-03cc44a559bf | ||
thesisTitle: 'Simulated Cooperation: Explaining Human Belongingness' |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 6/students/Louis Gevers/student_info.yaml
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,4 @@ | ||
firstName: Louis | ||
lastName: Gevers | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:6f47c0fa-d604-4ee9-a2c2-de1ed54cdefd | ||
thesisTitle: Effects of Noise on Cooperation in Harsh Environments |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 6/students/Sterre Lutz/student_info.yaml
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,5 @@ | ||
firstName: Sterre | ||
lastName: Lutz | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3Ad0aad85c-b213-4f50-bdd9-ab2c4deebc9f?collection=education | ||
thesisTitle: Effect of Behavioural Strategies on Individual Quality of Life in Agent-Based | ||
Social Simulations of COVID-19 |
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,4 @@ | ||
projectTitle: Optimizing multiple deep learning models on edge devices | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 7/students/Hans Brouwer/student_info.yaml
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,5 @@ | ||
firstName: Hans | ||
lastName: Brouwer | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:bcfb9bb6-a21e-4f0b-b98d-5410e399ff34 | ||
thesisTitle: Modeling Inference Time of Deep Neural Networks on Memory-constrained | ||
Systems |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 7/students/Jeroen Galjaard/student_info.yaml
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,4 @@ | ||
firstName: Jeroen | ||
lastName: Galjaard | ||
paperUrl: http://resolver.tudelft.nl/uuid:2fadc0f7-e381-419e-8593-92af74ead039 | ||
thesisTitle: Scheduling Multi-inference with Constrained Memory |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 7/students/Simon Tulling/student_info.yaml
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,4 @@ | ||
firstName: Simon | ||
lastName: Tulling | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:5eb53059-d4bf-4a39-92ae-1bfbfa8c4f64?collection=education | ||
thesisTitle: Offline Compression of Convolutional Neural Networks on Edge Devices |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 7/students/Wouter van Lil/student_info.yaml
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,5 @@ | ||
firstName: Wouter | ||
lastName: van Lil | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3A85251e58-77d6-40e5-b77a-06cc1a7798d1?collection=education | ||
thesisTitle: Analysis of the effect of caching convolutional network layers on resource | ||
constraint devices |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 7/students/Yohan Runhaar/student_info.yaml
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,4 @@ | ||
firstName: Yohan | ||
lastName: Runhaar | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:7cbf0d0c-8060-42ec-be94-d80b3b0fcad6?collection=education | ||
thesisTitle: Analysis of Loading Policies for Multi-model Inference on the Edge |
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,4 @@ | ||
projectTitle: 'Ripple: improving a major decentralized money transfer network' | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 8/students/Francis Behnen/student_info.yaml
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,4 @@ | ||
firstName: Francis | ||
lastName: Behnen | ||
paperUrl: http://resolver.tudelft.nl/uuid:7dfa5c87-5249-4cab-bb3f-675567c6d214 | ||
thesisTitle: Independent verification of validator performance in the XRP ledger |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 8/students/Marijn Roelvink/student_info.yaml
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,5 @@ | ||
firstName: Marijn | ||
lastName: Roelvink | ||
paperUrl: http://resolver.tudelft.nl/uuid:ee55a433-e514-4507-8912-4196f0a9ba1c | ||
thesisTitle: 'Log inference on the Ripple Protocol: testing the system with an empirical | ||
approach' |
Binary file added
BIN
+1.42 MB
content/posters/2020/Q4/Group 8/students/Sengim Karayalcin/poster.jpg
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 8/students/Sengim Karayalcin/student_info.yaml
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,5 @@ | ||
firstName: Sengim | ||
lastName: Karayalcin | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:779b0371-d5be-4c90-b1b7-fe1a301e9be8?collection=education | ||
thesisTitle: 'Improving rippled: Leveraging passive model inference techniques to | ||
test large decentralized systems' |
Binary file added
BIN
+931 KB
content/posters/2020/Q4/Group 8/students/Wolfgang Bubberman/poster.jpg
Oops, something went wrong.
Binary file added
BIN
+292 KB
content/posters/2020/Q4/Group 8/students/Wolfgang Bubberman/poster.pdf
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 8/students/Wolfgang Bubberman/student_info.yaml
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,4 @@ | ||
firstName: Wolfgang | ||
lastName: Bubberman | ||
paperUrl: http://resolver.tudelft.nl/uuid:393083dc-a364-477a-afc8-faaca0a244c6 | ||
thesisTitle: TLS MITM attack on the Ripple XRP Ledger |
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,4 @@ | ||
projectTitle: 'Testplus: ai-based test generation for restful apis' | ||
quarter: 4 | ||
supervisors: [] | ||
year: 2020 |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 9/students/Chiel de Vries/student_info.yaml
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,4 @@ | ||
firstName: Chiel | ||
lastName: de Vries | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3A650d166c-9396-4d9f-94f7-50c10410d40c?collection=education | ||
thesisTitle: Improving Test Case Generation for RESTful APIs through Seeded Sampling |
Binary file added
BIN
+808 KB
content/posters/2020/Q4/Group 9/students/Dimitri Stallenberg/poster.jpg
Oops, something went wrong.
Binary file added
BIN
+765 KB
content/posters/2020/Q4/Group 9/students/Dimitri Stallenberg/poster.pdf
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 9/students/Dimitri Stallenberg/student_info.yaml
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,5 @@ | ||
firstName: Dimitri | ||
lastName: Stallenberg | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid%3A98c14ea4-3d69-4a4c-994e-3ef0106346a6 | ||
thesisTitle: Preserving Inter-gene Relations during Test Case Generation using Intelligent | ||
Evolutionary Operators |
Oops, something went wrong.
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
content/posters/2020/Q4/Group 9/students/Jeroen Kappé/student_info.yaml
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,4 @@ | ||
firstName: Jeroen | ||
lastName: "Kapp\xE9" | ||
paperUrl: https://repository.tudelft.nl/islandora/object/uuid:f46bbb17-584a-404e-a156-b1ea6050e3c3?collection=education | ||
thesisTitle: Multi-Objective Hill Climbing for Automated RESTful API Test Case Generation |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2020/Q4/Group 9/students/Michael Kemna/student_info.yaml
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,5 @@ | ||
firstName: Michael | ||
lastName: Kemna | ||
paperUrl: http://resolver.tudelft.nl/uuid:5cee41ad-7dab-4aad-863b-f08226ab2597 | ||
thesisTitle: Automated system test generation - using log output to create better | ||
tests |
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,6 @@ | ||
projectTitle: 'Let smart contract meet trusted hardware based attestation ' | ||
year: 2021 | ||
supervisors: | ||
- prof.dr. Kaitai Liang | ||
- Huanhuan Chen | ||
quarter: 2 |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2021/Q2/Group 1/students/Agniv Chatterjee/student_info.yaml
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,5 @@ | ||
thesisTitle: Enhancing smart contract security using trusted hardware | ||
paperUrl: >- | ||
https://repository.tudelft.nl/islandora/object/uuid:6a3debc5-fb0d-4c6c-8406-4e4fc67f2ea3?collection=education | ||
firstName: Agniv | ||
lastName: Chatterjee |
Oops, something went wrong.
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
content/posters/2021/Q2/Group 1/students/Kevin Nanhekhan/student_info.yaml
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,7 @@ | ||
thesisTitle: >- | ||
Creating a TPM based smart contract for the Medical Supply Chain in | ||
Hyperledger Fabric | ||
paperUrl: >- | ||
https://repository.tudelft.nl/islandora/object/uuid:5def242c-0440-4601-bb0e-34e62343d81b?collection=education | ||
firstName: Kevin | ||
lastName: Nanhekhan |
Oops, something went wrong.
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
content/posters/2021/Q2/Group 1/students/Rohan Deshamudre/student_info.yaml
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,6 @@ | ||
thesisTitle: >- | ||
Increasing security of an e-auction smart contracts with Intel SGX trusted | ||
hardware | ||
paperUrl: 'http://resolver.tudelft.nl/uuid:6b5ff97f-ebfb-49ad-9f37-4ff4c3a6ad22' | ||
firstName: Rohan | ||
lastName: Deshamudre |
Oops, something went wrong.
Binary file not shown.
5 changes: 5 additions & 0 deletions
5
content/posters/2021/Q2/Group 1/students/Zeddrich Starke/student_info.yaml
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,5 @@ | ||
thesisTitle: Sign Hyperledger Fabric Smart Contract using the TPM | ||
paperUrl: >- | ||
https://repository.tudelft.nl/islandora/object/uuid%3A4386d065-dce4-4215-95eb-e0ad5bcfea57\?collection\=education | ||
firstName: Zeddrich | ||
lastName: Starke |
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,6 @@ | ||
projectTitle: Do automated music processing pipelines actually extract musical information? | ||
year: 2021 | ||
supervisors: | ||
- Dr Cynthia Liem | ||
- Dr Jaehun Kim | ||
quarter: 2 |
Oops, something went wrong.
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
content/posters/2021/Q2/Group 2/students/Borna Salarian/student_info.yaml
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,7 @@ | ||
thesisTitle: >- | ||
Measuring the Accuracy of Music Genre Classifier Models Using Cross-collection | ||
Evaluation | ||
paperUrl: >- | ||
https://repository.tudelft.nl/islandora/object/uuid:f217414e-936c-4602-a56f-bbca8ed6fdab?collection=education | ||
firstName: Borna | ||
lastName: Salarian |
Binary file added
BIN
+634 KB
content/posters/2021/Q2/Group 2/students/Leonard in 't Veen/poster.jpg
Oops, something went wrong.
Binary file added
BIN
+425 KB
content/posters/2021/Q2/Group 2/students/Leonard in 't Veen/poster.pdf
Binary file not shown.
Oops, something went wrong.