CompactAI commited on
Commit
22351a7
·
verified ·
1 Parent(s): aa4e59d

Create I Am Joining Forces With TeichAI And It Is Funny Either Way.html

Browse files
I Am Joining Forces With TeichAI And It Is Funny Either Way.html ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>I Am Joining Forces With TeichAI And It Is Funny Either Way | TinyMemoryLM</title>
7
+ <link rel="preconnect" href="https://fonts.googleapis.com">
8
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
+ <link href="https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Geist+Mono&display=swap" rel="stylesheet">
10
+ <style>
11
+ :root {
12
+ --black: #000000; --black-soft: #0a0a0a; --gray-1: #171717; --gray-2: #262626;
13
+ --gray-3: #363636; --gray-4: #525252; --gray-5: #737373; --gray-6: #a3a3a6;
14
+ --gray-7: #d4d4d4; --white: #ffffff; --accent: #ff4d00;
15
+ --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
16
+ --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
17
+ --container-max: 700px;
18
+ }
19
+ * { box-sizing: border-box; margin: 0; padding: 0; }
20
+ html { font-size: 16px; scroll-behavior: smooth; }
21
+ body { font-family: var(--font-sans); background: var(--black); color: var(--gray-7); line-height: 1.7; -webkit-font-smoothing: antialiased; }
22
+ a { color: var(--white); text-decoration: none; transition: color 0.15s ease; }
23
+ a:hover { color: var(--accent); }
24
+ .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
25
+ nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-2); padding: 16px 0; }
26
+ nav .container { display: flex; justify-content: space-between; align-items: center; }
27
+ .nav-brand { font-size: 18px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 8px; }
28
+ .nav-brand span { color: var(--accent); }
29
+ .nav-links { display: flex; gap: 32px; }
30
+ .nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-6); }
31
+ .nav-links a:hover { color: var(--white); }
32
+ .post { padding: 140px 0 80px; }
33
+ .post-back { display: inline-block; color: var(--gray-5); font-size: 14px; margin-bottom: 32px; }
34
+ .post-back:hover { color: var(--accent); }
35
+ .post-back::before { content: '← '; }
36
+ .post-meta { display: flex; gap: 12px; margin-bottom: 20px; }
37
+ .post-date { font-size: 13px; color: var(--gray-5); font-family: var(--font-mono); }
38
+ .post-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); background: rgba(255, 77, 0, 0.1); padding: 4px 10px; border-radius: 4px; }
39
+ .post h1 { font-size: 36px; font-weight: 700; color: var(--white); margin-bottom: 32px; line-height: 1.2; letter-spacing: -0.02em; }
40
+ .post-body p { font-size: 17px; line-height: 1.8; margin-bottom: 24px; color: var(--gray-6); }
41
+ .post-body p:first-of-type { font-size: 20px; color: var(--gray-7); }
42
+ .post-body h2 { font-size: 24px; font-weight: 600; color: var(--white); margin: 48px 0 20px; }
43
+ .post-body blockquote { border-left: 3px solid var(--accent); padding: 20px 24px; margin: 32px 0; background: var(--gray-1); border-radius: 0 8px 8px 0; }
44
+ .post-body blockquote p { font-size: 16px; font-style: italic; color: var(--gray-6); margin: 0; }
45
+ .post-body hr { border: none; height: 1px; background: var(--gray-2); margin: 48px 0; }
46
+ .collaboration-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
47
+ .collab-card { background: var(--gray-1); border: 1px solid var(--gray-2); border-radius: 8px; padding: 20px; }
48
+ .collab-card h3 { font-size: 14px; color: var(--gray-5); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
49
+ .collab-card .names { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
50
+ .collab-card .name { background: var(--accent); color: var(--black); padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; }
51
+ .collab-card a { color: var(--accent); font-weight: 600; }
52
+ .code-block { background: var(--gray-1); border: 1px solid var(--gray-2); border-radius: 8px; padding: 20px; margin: 24px 0; font-family: var(--font-mono); font-size: 13px; overflow-x: auto; }
53
+ .code-block .comment { color: var(--gray-5); font-style: italic; display: block; margin-top: 4px; }
54
+ .post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-2); }
55
+ .post-footer p { font-size: 14px; color: var(--gray-5); font-style: italic; margin: 0; }
56
+ footer { padding: 40px 0; background: var(--black-soft); border-top: 1px solid var(--gray-2); text-align: center; }
57
+ footer p { color: var(--gray-5); font-size: 14px; margin-bottom: 8px; }
58
+ footer a { color: var(--gray-5); }
59
+ footer a:hover { color: var(--accent); }
60
+ @media (max-width: 768px) { .post h1 { font-size: 28px; } .nav-links { display: none; } .collaboration-grid { grid-template-columns: 1fr; } }
61
+ </style>
62
+ </head>
63
+ <body>
64
+ <nav>
65
+ <div class="container">
66
+ <a href="index.html" class="nav-brand"><span>/</span>TinyMemoryLM</a>
67
+ <div class="nav-links">
68
+ <a href="index.html">Home</a>
69
+ <a href="blog.html">Blog</a>
70
+ <a href="status.html">Status</a>
71
+ </div>
72
+ </div>
73
+ </nav>
74
+ <main>
75
+ <article class="post">
76
+ <div class="container">
77
+ <a href="blog.html" class="post-back">Back to Blog</a>
78
+ <header>
79
+ <div class="post-meta">
80
+ <span class="post-date">2026-03-27</span>
81
+ <span class="post-tag">Collaborations</span>
82
+ </div>
83
+ <h1>I Am Joining Forces With TeichAI And It Is Funny Either Way</h1>
84
+ </header>
85
+ <div class="post-body">
86
+ <p>I am officially part of TeichAI now. They know I exist. We have been communicating for a while. I am listed on their Hugging Face page as a collaborator. This is not a unilateral declaration. This is real. And it is still funny.</p>
87
+ <blockquote>
88
+ <p>Collaborations usually start with contracts and meetings. Ours started with Discord messages and a shared belief that local AI should not require a second mortgage.</p>
89
+ </blockquote>
90
+ <h2>What TeichAI Does</h2>
91
+ <p>They specialize in crafting high-quality distilled models and datasets. Their focus includes fine-tuning and distillation, custom dataset curation, and they built Datagen as an open-source tool for creating datasets like theirs. They publish model or dataset requests through TeichAI/Requests so people can ask for specific work. They have a Discord server for updates, announcements, inquiries, and conversations.</p>
92
+ <p>Their goal is making AI accessible through open source and open science. Their distilled models are designed to run locally. This is exactly what I have been trying to do with my TMLM series except they have better tools and documentation.</p>
93
+ <div class="code-block">
94
+ <span class="comment"># TeichAI team members listed on HF page</span><br>
95
+ @Liontix<br>
96
+ @armand0e<br>
97
+ @owenqwenllmwine<br>
98
+ @tikeape<br>
99
+ @CompactAI &lt;-- That is me<br>
100
+ <span class="comment"># Small fish in big pond but still part of the school.</span>
101
+ </div>
102
+ <div class="collaboration-grid">
103
+ <div class="collab-card">
104
+ <h3>The Team</h3>
105
+ <div class="names">
106
+ <span class="name">@Liontix</span>
107
+ <span class="name">@armand0e</span>
108
+ <span class="name">@owenqwenllmwine</span>
109
+ <span class="name">@tikeape</span>
110
+ <span class="name">@CompactAI</span>
111
+ </div>
112
+ <p style="margin-top: 12px;"><a href="https://huggingface.co/TeichAI" target="_blank">View @TeichAI on Hugging Face</a></p>
113
+ </div>
114
+ <div class="collab-card">
115
+ <h3>What We Do</h3>
116
+ <ul style="list-style: disc; padding-left: 20px; color: var(--gray-6); font-size: 14px;">
117
+ <li>Fine-tuning & Distillation</li>
118
+ <li>Custom Dataset Curation</li>
119
+ <li>Open Source Tooling (Datagen)</li>
120
+ <li>Request-based Work (TeichAI/Requests)</li>
121
+ </ul>
122
+ </div>
123
+ </div>
124
+ <h2>Why This Partnership Works</h2>
125
+ <p>We all believe in making AI accessible. We all publish open weights. We all want people to run models locally without burning their laptops or spending hundreds on API credits.</p>
126
+ <p>They distill from frontier models like Claude and GPT. I distill from... well, I try. Sometimes I train from random Reddit posts. But we are aligned on the mission. Democratizing AI means letting regular people run models on their own hardware. Not renting access forever.</p>
127
+ <h2>The Communication Status</h2>
128
+ <p>I have communicated with one of the managers for a while now. Nothing official happened suddenly. It was a gradual thing. Then I woke up and I was on the Hugging Face page. That is how collaborations happen sometimes. You talk, you help, you eventually appear together.</p>
129
+ <div class="code-block">
130
+ <span class="comment"># Timeline of our non-dramatic collaboration</span><br>
131
+ Phase 1: Thought ideas were similar<br>
132
+ Phase 2: Talked via Discord/HF<br>
133
+ Phase 3: They offered collaboration<br>
134
+ Phase 4: I said yes because why not<br>
135
+ Phase 5: Listed on Hugging Face page<br>
136
+ <span class="comment"># No grand declarations needed.</span>
137
+ </div>
138
+ <h2>What This Means For TMLM</h2>
139
+ <p>Sonnet-2 was going to use Engram. Now it might also get some TeichAI inspiration. Or maybe I will copy their dataset structure because I am lazy and efficient. Either way, my tiny models will be smarter.</p>
140
+ <p>Opus benefits too. Six hundred million parameters. Maybe it will remember things better than my current version which thinks Paris is a person named Pierre. The TeichAI influence might help there.</p>
141
+ <h2>The Humor Element</h2>
142
+ <p>This is still funny even though it is real. I still have one GPU running at 800W. They have pipelines. I still train models that give fish answers. They distill frontier intelligence. We are still friends. The contrast is the joke.</p>
143
+ <blockquote>
144
+ <p>When you join forces with people who actually know what they are doing, you learn things. Mostly you learn how much you did not know. This is growth.</p>
145
+ </blockquote>
146
+ <h2>Future Plans</h2>
147
+ <p>Haiku is already out and giving fish answers. Sonnet is training and learning Engram. Opus is planning to learn both. We might do joint releases. We might do community-requested work through TeichAI/Requests. We might just continue collaborating quietly and see where it goes.</p>
148
+ <p>The Discord server exists for updates, announcements, inquiries, and conversations. I joined. Mostly lurking. Occasionally contributing when inspired.</p>
149
+ <h2>Final Thoughts</h2>
150
+ <p>I am part of TeichAI now. They know I exist. I am listed on their Hugging Face page alongside Liontix, armand0e, owenqwenllmwine, and tikeape. I am @CompactAI in this universe now.</p>
151
+ <p>My models will keep training. Our models will keep distilling. Down the line we will probably release something useful. Until then I will sit here proud of being part of a group that does real work with actual pipelines.</p>
152
+ <hr>
153
+ </div>
154
+ <footer class="post-footer">
155
+ <p>Current status: Officially with TeichAI. Sonnet at 18%. On their HF page. In their Discord. Will update when we do something cool.</p>
156
+ </footer>
157
+ </div>
158
+ </article>
159
+ </main>
160
+ <footer>
161
+ <div class="container">
162
+ <p>Built with curiosity over compute</p>
163
+ <p>TinyMemoryLM by AILAY | 2026</p>
164
+ </div>
165
+ </footer>
166
+ </body>
167
+ </html>