Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ git push -u origin group_N
## Deployment

The website is deployed on [CSE3000-research-project.github.io](https://CSE3000-research-project.github.io) using GitHub Pages.
This website should be updated automatically every time the main branch is updated using the Travis-ci build script.
This website should be updated automatically every time the main branch is updated using the Travis-ci build script.

You can also deploy the page locally via command line. To do this, first change `$GH_TOKEN` in the `deploy:ci` command in `package.json` to the correct repository secret taken from the `CSE3000-research-project` GitHub account, and then execute `npm run deploy:ci` command. Authentication during deployment is also done using the token.

Expand Down
8 changes: 8 additions & 0 deletions content/posters/2025/Q4/Group 53/group_info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
projectTitle: >-
Exploring epistemic uncertainty-based exploration methods in Reinforcement
Learning
year: 2025
supervisors:
- Pascal van der Vaart
- Neil Yorke-Smith
quarter: 4
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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
thesisTitle: Empirical Evaluation of Random Network Distillation for DQN Agents
paperUrl: 'https://repository.tudelft.nl/record/uuid:ffd5f1df-4419-4759-a675-5b99600abdd9'
firstName: Alberto
lastName: Moreno
repositoryUrl: 'https://github.com/albertomoreno04/EpistemicUncertaintyRL'
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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
thesisTitle: 'Revisiting Langevin Monte Carlo Applied to Deep Q-Learning: An Empirical Study of Robustness and Sensitivity'
paperUrl: 'https://repository.tudelft.nl/record/uuid:43888331-6504-4ddd-a42b-bc2364fba09f'
firstName: Pablo
lastName: Hendriks
repositoryUrl: 'https://github.com/PabloHendriks/AdamLMCDQN'
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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
thesisTitle: A Unified Scaling Law for Bootstrapped DQNs
paperUrl: 'https://repository.tudelft.nl/record/uuid:6fb011b5-c2dc-429f-8ae8-e68ecc7d1680'
firstName: Roman
lastName: Knyazhitskiy
repositoryUrl: 'https://github.com/knyazer/bootstrapped-dqn-scaling'
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.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
thesisTitle: Using NoisyNets to Improve Exploration in Contextual Bandit Settings
paperUrl: 'https://repository.tudelft.nl/search?search_term=Using+NoisyNets+to+Improve+Exploration&page=1&sort=relevance'
firstName: Sonny
lastName: Ruff
repositoryUrl: 'https://github.com/sonnyruff/testdqn'
14 changes: 7 additions & 7 deletions poster_data_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,18 +165,18 @@ const load_student_data = (
//if windows then replace / with \
if (process.platform === "win32") {
pathToStudentFolder = pathToStudentFolder.replace(/\//g, "\\")
const newpath = pathToStudentFolder.replace(/\//g, "\\"); // Windows path
const newpath = pathToStudentFolder.replace(/\//g, "\\") // Windows path
student_data["prevImage"] =
allPosterPrevImagesByRelativeDirectory[path.dirname(newpath)]
student_data["pdfUrl"] =
allPosterPdfsByRelativeDirectory[path.dirname(newpath)][
allPosterPdfsByRelativeDirectory[path.dirname(newpath)]["publicURL"]
} else {
student_data["prevImage"] =
allPosterPrevImagesByRelativeDirectory[path.dirname(pathToStudentFolder)]
student_data["pdfUrl"] =
allPosterPdfsByRelativeDirectory[path.dirname(pathToStudentFolder)][
"publicURL"
]
} else {
student_data["prevImage"] = allPosterPrevImagesByRelativeDirectory[path.dirname(pathToStudentFolder)]
student_data["pdfUrl"] = allPosterPdfsByRelativeDirectory[path.dirname(pathToStudentFolder)][
"publicURL"
]
}

return student_data
Expand Down