Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
soberbichler authored Oct 5, 2024
1 parent 8cc831a commit 514d3ae
Showing 1 changed file with 29 additions and 16 deletions.
45 changes: 29 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,48 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NLP-Kurs DMGK</title>
<title>NLP-Kurs DMGK - Digitale Geisteswissenschaften</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<svg viewBox="0 0 200 200" width="100" height="100">
<circle cx="100" cy="100" r="80" fill="#ffffff"/>
<text x="100" y="70" font-family="Arial, sans-serif" font-size="40" fill="#8B0000" text-anchor="middle">NLP</text>
<g fill="none" stroke="#8B0000" stroke-width="4">
<path d="M40,120 Q100,160 160,120"/>
<circle cx="40" cy="120" r="5" fill="#8B0000"/>
<circle cx="100" cy="140" r="5" fill="#8B0000"/>
<circle cx="160" cy="120" r="5" fill="#8B0000"/>
</g>
</svg>
</div>
<h1>NLP-Kurs DMGK</h1>
<p>Digitale Methoden in den Geisteswissenschaften</p>
</header>

<main>
<section>
<section id="about">
<h2>Über den Kurs</h2>
<p>Willkommen zum NLP-Kurs für Digitale Methoden in den Geisteswissenschaften.</p>
<p>Willkommen zum NLP-Kurs für Digitale Methoden in den Geisteswissenschaften. In diesem Kurs lernen Sie die Grundlagen der Verarbeitung natürlicher Sprache (NLP) und deren Anwendung in den digitalen Geisteswissenschaften.</p>
</section>
<section>

<section id="schedule">
<h2>Kursplan</h2>
<ul>
<li>Termin 1: Einführung in NLP</li>
<li>Termin 2: Python und SpaCy</li>
<li>Termin 3: API-Nutzung</li>
<li>Termin 4: Transformer-Modelle</li>
<li>Termin 5: Große Sprachmodelle</li>
<li>Termin 6: NER und Textklassifizierung</li>
<li>Termin 7: Abschlussbesprechungen</li>
</ul>
<div class="session">
<h3>Termin 1: 25. Oktober 2024</h3>
<ul>
<li>Einführung in das Thema, in den Kurs und NLP</li>
<li>Crash Kurs Python 1</li>
</ul>
</div>
<!-- Repeat for other sessions -->
</section>
</main>

<footer>
<p>&copy; 2024 NLP-Kurs DMGK</p>
<p>&copy; 2024 NLP-Kurs DMGK. Alle Rechte vorbehalten.</p>
</footer>
<div id="debug"></div>
<script src="debug.js"></script>
</body>
</html>

0 comments on commit 514d3ae

Please sign in to comment.