Skip to content

Commit 5b436c9

Browse files
Add results
1 parent d0b705c commit 5b436c9

12 files changed

Lines changed: 75 additions & 0 deletions

evaluations/20260423_day_3/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,50 @@
33
- Date: 2026-04-23
44
- Day: 3
55

6+
## Survey at end
7+
8+
- [Evaluation results (csv)](survey_end.csv)
9+
- [Evaluation results (xlsx)](survey_end.xlsx)
10+
- [Analysis script](analyse.R)
11+
- [Average confidence per question (.csv)](average_confidences.csv)
12+
- [Success score](success_score.txt):
13+
14+
![Course ratings](course_rating.png)
15+
![All confidences](all_confidences.png)
16+
![Average confidence per question](average_confidences_per_question.png)
17+
![Confidences per question](confidences_per_question.png)
18+
![Course recommend](recommend.png)
19+
20+
### [Pace](pace.txt)
21+
22+
- Richèl's sessions had a good pace, the rest were way too fast with too little time for exercises and too little time for breaks.
23+
- more practice
24+
- good
25+
- Good, did well balancing levels across a large group
26+
- I like the way that Richèl is teaching. He makes the concepts clear and you can follow his instructions and learn. However, I cannot follow the class when Bjorn is teaching, I feel very lost.
27+
- The overall pace was OK
28+
- Pace seems to be OK, it's probably me who is slower than the pace :)
29+
30+
### [Future topics](future_topics.txt)
31+
32+
- We did not even get to practice what is already in the course properly
33+
- GNNs
34+
- More information about how analyze big data such as genomic or transcriptomic data.
35+
36+
### [Other comments](comments.txt)
37+
38+
- more cases, like, an oom killed job , how to seff it and solve the issue to run it properly
39+
- Use Richèl's teaching style for all topics. Keep the amount of content in the course as it is, but spread it over 5 days instead of 4 days. There's simply way too much to go through, way to many potential technical difficulties that take time, and way too little time to do exercises to actually absorb all the content and enjoy the learning process. And I would suggest that the course on how to connect and work in an HPC environment be moved to before this course during the same semester, so that people don't have to deal with having to learn that at the same time. Right now the "Online training events for new users: NAISS Introduction training days" course is after this course during the semester, which makes little sense considering that its contents should be a prerequisite for this course.
40+
- Where should we improve? materials, exercises, and structure
41+
- For me personally, the time spent interacting with the cluster and getting familiarised was the most useful. This is personaly though an I'm not sure whether this would be the case across the board.
42+
- Today (day3), the topics were more of what I expected from an Introduction to Python and Using Python in an HPC environment course. The morning session about pandas, matplotlib and seaborn was interesting, as well as the big data with python. I will probably use Dask in the future so it was a good explanation of how Dask works. I still don't understand the time spent talking about bash and sending jobs. We could use that time learning and using common python packages in an HPC cluster.
43+
- It think that we need more documentation about Dardel. Also, we need more hands-ons and demonstrations.
44+
- I feel some exercises are not in "step-by-step" format that makes difficult to complete it.
45+
646
## [Any other feedback](any_other_feedback.csv)
747

48+
This was to the hastily-added Google Form:
49+
850
- Really good course. Good balance between Python and the cluster.
951
Getting familiar with the cluster was more relevant to me,
1052
but other aspects of the course were still well taught irrespective.
32.6 KB
Loading

evaluations/20260423_day_3/analyse.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,8 @@ ggplot2::ggsave(filename = "average_confidences_per_question.png", width = 7, he
185185
t_sessions_taught <- unique(t_tidy$question)
186186

187187
# Cut out sessions if needed
188+
t_sessions_taught <- stringr::str_subset(t_sessions_taught, "Pandas|Seaborn|matplotlib")
189+
188190

189191
testthat::expect_true(all(t_sessions_taught %in% t_tidy$question))
190192

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
question,mean
2+
I can decide on useful file formats for big data,2.36
3+
I can make a plot with Seaborn,3.6
4+
I can make a plot with matplotlib,4
5+
I can read and write tabular data with Pandas,3.45
6+
I can submit a script to the job scheduler,3.45
7+
"I can work (i.e. inspect, clean, sort, etc) on my data with Pandas",3.18
8+
I can write a batch script,3.3
104 KB
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
more cases, like, an oom killed job , how to seff it and solve the issue to run it properly
2+
Use Richèl's teaching style for all topics. Keep the amount of content in the course as it is, but spread it over 5 days instead of 4 days. There's simply way too much to go through, way to many potential technical difficulties that take time, and way too little time to do exercises to actually absorb all the content and enjoy the learning process. And I would suggest that the course on how to connect and work in an HPC environment be moved to before this course during the same semester, so that people don't have to deal with having to learn that at the same time. Right now the "Online training events for new users: NAISS Introduction training days" course is after this course during the semester, which makes little sense considering that its contents should be a prerequisite for this course.
3+
Where should we improve? materials, exercises, and structure
4+
For me personally, the time spent interacting with the cluster and getting familiarised was the most useful. This is personaly though an I'm not sure whether this would be the case across the board.
5+
Today (day3), the topics were more of what I expected from an Introduction to Python and Using Python in an HPC environment course. The morning session about pandas, matplotlib and seaborn was interesting, as well as the big data with python. I will probably use Dask in the future so it was a good explanation of how Dask works. I still don't understand the time spent talking about bash and sending jobs. We could use that time learning and using common python packages in an HPC cluster.
6+
It think that we need more documentation about Dardel. Also, we need more hands-ons and demonstrations.
7+
I feel some exercises are not in "step-by-step" format that makes difficult to complete it.
118 KB
Loading
56.3 KB
Loading
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
We did not even get to practice what is already in the course properly
2+
GNNs
3+
More information about how analyze big data such as genomic or transcriptomic data.
4+
-
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
good
2+
good
3+
Richèl's sessions had a good pace, the rest were way too fast with too little time for exercises and too little time for breaks.
4+
more practice
5+
NA
6+
good
7+
Good, did well balancing levels across a large group
8+
NA
9+
I like the way that Richèl is teaching. He makes the concepts clear and you can follow his instructions and learn. However, I cannot follow the class when Bjorn is teaching, I feel very lost.
10+
The overall pace was OK
11+
Pace seems to be OK, it's probably me who is slower than the pace :)

0 commit comments

Comments
 (0)