Skip to content

Commit 423a6ac

Browse files
committed
deploy: 5b73285
0 parents  commit 423a6ac

8 files changed

Lines changed: 775 additions & 0 deletions

File tree

.nojekyll

Whitespace-only changes.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# tuekitzmed-module

classes.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ClassID;ClassName;ButtonText;Color
2+
TüKITZmed;TüKITZmed;TüKITZmed;rgb(216, 166, 159)
3+
TüKITZlife;TüKITZlife;TüKITZlife;rgb(157, 173, 132)
4+
TüKITZtest;TüKITZtest;TüKITZtest;rgb(173, 132, 169)
5+
TüKITZtest2;TüKITZtest2;TüKITZtest2;rgb(132, 169, 173)

index.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Course Tiles</title>
7+
<link rel="stylesheet" href="styles.css">
8+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.1/css/all.css" crossorigin="anonymous">
9+
</head>
10+
<body>
11+
<div class="header">
12+
<button class="study-button all">Show All</button>
13+
<!-- TüKITZmed and TüKITZlife buttons will be generated here by JavaScript -->
14+
<select id="difficulty-filter">
15+
<option value="all">All Levels</option>
16+
<option value="beginner">Beginner</option>
17+
<option value="intermediate">Intermediate</option>
18+
<option value="expert">Expert</option>
19+
</select>
20+
<button id="download-button" class="download-button tooltip">
21+
<i class="fas fa-solid fa-download"></i>
22+
<span class="tooltiptext">Download list of selected courses</span>
23+
</button>
24+
</div>
25+
26+
<!-- Separate Containers for Each Topic -->
27+
<div class="topic-container">
28+
<h2>Mathematics</h2>
29+
<div class="course-container" id="math-container">
30+
<!-- Course tiles for Mathematics will be generated here -->
31+
</div>
32+
</div>
33+
34+
<div class="topic-container">
35+
<h2>Machine Learning</h2>
36+
<div class="course-container" id="ml-container">
37+
<!-- Course tiles for Machine Learning will be generated here -->
38+
</div>
39+
</div>
40+
41+
<div class="topic-container">
42+
<h2>Applications</h2>
43+
<div class="course-container" id="applications-container">
44+
<!-- Course tiles for Applications will be generated here -->
45+
</div>
46+
</div>
47+
48+
<!-- Popup template -->
49+
<div id="popup" class="popup">
50+
<div class="popup-content">
51+
<span class="close" onclick="closePopup()">&times;</span>
52+
<div id="course-name">Course Name</div>
53+
<p id="popup-course-description">General description of the course.</p> <!-- Added ID here -->
54+
<div class="accordion">
55+
<!-- Accordion sections will be dynamically added here -->
56+
</div>
57+
</div>
58+
</div>
59+
60+
<script src="scripts.js"></script>
61+
</body>
62+
</html>

modules.csv

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
ModuleID;ModuleName;ModuleDescription;Category;MajorClassIDs;Difficulty
2+
ml_concepts;Basic concepts of ML;"General description of basic ML concepts; covering fundamentals.";Machine Learning;TüKITZmed+TüKITZlife;beginner
3+
ml_supervised_basic;Supervised Learning;"Explores supervised learning; including classification and regression.";Machine Learning;TüKITZmed+TüKITZlife;beginner
4+
ml_supervised_adv;Supervised Learning Advanced;"Advanced supervised methods; e.g., SVMs and KNNs.";Machine Learning;TüKITZmed+TüKITZlife;intermediate
5+
ml_unsupervised_basic;Unsupervised Learning;"Covers clustering; dimensionality reduction; and Generative AI.";Machine Learning;TüKITZmed+TüKITZlife;beginner
6+
ml_unsupervised_adv;Unsupervised Learning Advanced;"In-depth on k-means; PCA; t-SNE; and clustering evaluation.";Machine Learning;TüKITZmed+TüKITZlife;intermediate
7+
ml_deep_basic;Deep learning;"Introduces perceptrons; activation functions; and multilayer NNs.";Machine Learning;TüKITZmed+TüKITZlife;beginner
8+
ml_deep_adv;Deep learning Advanced;"Details on NN learning; backprop; convolutions; and optimization.";Machine Learning;TüKITZmed+TüKITZlife;intermediate
9+
math_foundations;Mathematics - Foundations;"Fundamental math concepts for AI; including vectors; matrices; and sets.";Mathematics;TüKITZmed+TüKITZlife;beginner
10+
math_vector_calc_int;Vector calculus;"Intermediate vector calculus; differentiation; Jacobians; Hessians.";Mathematics;TüKITZmed+TüKITZlife;intermediate
11+
math_info_theory;Information theory;"Concepts of entropy and KL divergence.";Mathematics;TüKITZmed+TüKITZlife;intermediate
12+
math_stats_prob;Statistics & Prob. theory;"Discrete/continuous RVs; binomial distribution.";Mathematics;TüKITZmed+TüKITZlife;intermediate
13+
math_vector_calc_exp;Vector calculus Expert;"Expert level: Bayes' theorem and conditional probability.";Mathematics;TüKITZmed+TüKITZlife;expert
14+
math_linear_algebra;Linear algebra;"Eigenvalues; eigenvectors; trace; and determinant.";Mathematics;TüKITZmed+TüKITZlife;expert
15+
app_med_advances;ML Applications in medicine - Advances;"ML advances in medicine; focusing on radiology and other areas.";Applications;TüKITZmed;beginner
16+
app_med_uk Tübingen;ML Applications in medicine - UK Tübingen;"ML applications at UK Tübingen; especially in radiology.";Applications;TüKITZmed;intermediate
17+
app_ethics;Ethics, law & privacy;"Ethical; legal; and privacy considerations in medical AI.";Applications;TüKITZmed;beginner
18+
app_chatbots;Chatbots in medicine;"Design and implementation of chatbots for medical use cases.";Applications;TüKITZmed;beginner
19+
app_chatbots2;Chatbots in medicine1;"Design and implementation of chatbots for medical use cases.";Applications;TüKITZmed+TüKITZtest;beginner
20+
app_lifesci;ML in lifescience;"ML applications in bioinformatics and drug discovery; e.g. 'Omics' data.";Applications;TüKITZlife;beginner
21+
test_2;Test Module;"A module for testing purposes; not part of the main curriculum.";Mathematics;TüKITZtest;beginner

0 commit comments

Comments
 (0)