mindchain commited on
Commit
a8ff71a
·
verified ·
1 Parent(s): fde9780

Upload index.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +113 -19
index.html CHANGED
@@ -1,19 +1,113 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="de">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>🚀 Skills Blog</title>
7
+ <style>
8
+ * { margin: 0; padding: 0; box-sizing: border-box; }
9
+ body {
10
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
11
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
12
+ min-height: 100vh;
13
+ padding: 20px;
14
+ }
15
+ .container {
16
+ max-width: 800px;
17
+ margin: 0 auto;
18
+ }
19
+ header {
20
+ text-align: center;
21
+ color: white;
22
+ margin-bottom: 40px;
23
+ }
24
+ header h1 {
25
+ font-size: 3rem;
26
+ margin-bottom: 10px;
27
+ }
28
+ header p {
29
+ font-size: 1.2rem;
30
+ opacity: 0.9;
31
+ }
32
+ .post {
33
+ background: white;
34
+ border-radius: 12px;
35
+ padding: 30px;
36
+ margin-bottom: 20px;
37
+ box-shadow: 0 10px 30px rgba(0,0,0,0.2);
38
+ }
39
+ .post h2 {
40
+ color: #333;
41
+ margin-bottom: 5px;
42
+ font-size: 1.5rem;
43
+ }
44
+ .post .tag {
45
+ display: inline-block;
46
+ background: #667eea;
47
+ color: white;
48
+ padding: 3px 10px;
49
+ border-radius: 20px;
50
+ font-size: 0.75rem;
51
+ margin-bottom: 10px;
52
+ }
53
+ .post .date {
54
+ color: #888;
55
+ font-size: 0.85rem;
56
+ margin-bottom: 15px;
57
+ }
58
+ .post .content {
59
+ color: #444;
60
+ line-height: 1.7;
61
+ white-space: pre-line;
62
+ }
63
+ </style>
64
+ </head>
65
+ <body>
66
+ <div class="container">
67
+ <header>
68
+ <h1>🚀 Skills</h1>
69
+ <p>Blog über Fähigkeiten und Kompetenzen</p>
70
+ </header>
71
+
72
+ <div class="post">
73
+ <span class="tag">AI Development</span>
74
+ <h2>🐑 Ralph Wiggum - Iterative AI Loops</h2>
75
+ <div class="date">29. Dezember 2025</div>
76
+ <div class="content">Ralph Wiggum ist eine Entwicklungstechnik für iterative KI-Agentenschleifen. Benannt nach Ralph Wiggum aus den Simpsons.
77
+
78
+ Das Konzept: Ein einfacher Bash-Loop, der wiederholt einen Prompt an einen KI-Agenten füttert.
79
+
80
+ Core Commands:
81
+ • /ralph-loop - Startet eine iterative Schleife
82
+ • /cancel-ralph - Bricht die Schleife ab</div>
83
+ </div>
84
+
85
+ <div class="post">
86
+ <span class="tag">Interpretability</span>
87
+ <h2>🔍 Google Gemma Scope 2</h2>
88
+ <div class="date">29. Dezember 2025</div>
89
+ <div class="content">Google DeepMind hat Gemma Scope 2 veröffentlicht - eine umfassende Suite von Interpretability-Tools für Gemma 3.
90
+
91
+ Key Features:
92
+ • Full-Stack Interpretability
93
+ • 270M bis 27B Parameter
94
+ • 110 Petabytes an Daten
95
+ • Veröffentlicht am 19. Dezember 2025</div>
96
+ </div>
97
+
98
+ <div class="post">
99
+ <span class="tag">Mechanistic Interpretability</span>
100
+ <h2>🎛️ Steering mit Neuronpedia & Gemma 3</h2>
101
+ <div class="date">29. Dezember 2025</div>
102
+ <div class="content">Neuronpedia ist eine Open-Source-Plattform für KI-Steering und Experimente.
103
+
104
+ Mit Gemma Scope 2 bietet Neuronpedia:
105
+ • Sparse Autoencoders (SAEs) und Transcoders
106
+ • Interactive Steering capabilities
107
+ • Systematische Neuronen-Analyse
108
+
109
+ Transcoders übertreffen SAEs bei der Interpretability!</div>
110
+ </div>
111
+ </div>
112
+ </body>
113
+ </html>