File size: 7,980 Bytes
8baeda2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>An Open Letter from SupraLabs | SupraLabs Blog</title>
    <style>
        :root {
            --bg: #0f0f0f;
            --surface: #1a1a1a;
            --border: #333;
            --text: #e0e0e0;
            --accent: #536bfe;
            --muted: #888;
            --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.6;
            padding: 2rem;
        }
        code, pre, .mono { font-family: var(--font-mono); }
        .container { max-width: 900px; margin: 0 auto; }

        header {
            border-bottom: 2px solid var(--border);
            padding-bottom: 2rem;
            margin-bottom: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .logo-area h1 {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            line-height: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-area a { text-decoration: none; color: inherit; }
        .logo-area { display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 1.2rem; }
        nav a {
            color: var(--text);
            text-decoration: none;
            margin-left: 1.5rem;
            font-size: 0.9rem;
            border-bottom: 1px solid transparent;
        }
        nav a:hover { border-bottom: 1px solid var(--accent); }

        .post-header { margin-bottom: 3rem; }
        .post-header h2 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            font-weight: 800;
        }
        .post-meta { font-family: var(--font-mono); color: var(--accent); font-size: 0.9rem; margin-bottom: 2rem; }

        .post-content {
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 3rem;
            margin-bottom: 4rem;
        }
        .post-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text);
        }
        .post-content strong { color: #fff; }

        .divider {
            border: none;
            border-top: 1px solid var(--border);
            margin: 2.5rem 0;
        }

        .callout {
            border-left: 3px solid var(--accent);
            background: #111;
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            font-size: 1.05rem;
            color: #ccc;
            line-height: 1.7;
            font-style: italic;
        }

        .signature {
            margin-top: 3rem;
            font-family: var(--font-mono);
            color: var(--accent);
            font-size: 1rem;
        }

        .tags { display: flex; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
        .tag { font-family: var(--font-mono); font-size: 0.7rem; padding: 2px 8px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); }

        footer { margin-top: 6rem; padding-bottom: 2rem; font-size: 0.8rem; color: var(--muted); text-align: center; }

        @media (max-width: 600px) {
            .post-header h2 { font-size: 2rem; }
            .post-content { padding: 1.5rem; }
            header { flex-direction: column; align-items: flex-start; gap: 1rem; }
            nav a { margin-left: 0; margin-right: 1rem; }
        }
    </style>
</head>
<body>
<div class="container">
    <header>
        <div class="logo-area" style="font-size: 1.5em;">
            <a href="./index.html"><h1><img src="./image.png" style="height: 2em"> SupraLabs_</h1></a>
        </div>
        <nav>
            <a href="./index.html#news">News</a>
            <a href="https://huggingface.co/SupraLabs" target="blank">HuggingFace</a>
            <a href="./index.html#hardware">Hardware</a>
        </nav>
    </header>

    <article>
        <div class="post-header">
            <div class="post-meta">// 2026-06-18 | Statement</div>
            <h2>An Open Letter<br>from SupraLabs.</h2>
        </div>

        <div class="post-content">

            <p>Over the past few days, SupraLabs has been mentioned in a public discussion regarding small language models, scaling laws, and training methodology. We'd like to clarify our position.</p>

            <hr class="divider">

            <p>Before anything else, we want to make one thing absolutely clear: we have great respect for Lane and the work being done at Glint Research. At no point was our intention to disrespect Lane, Glint Research, or their research. What began as a technical discussion about model scaling and training methodology unfortunately became much more personal than we ever intended. From our perspective, it was simply an exchange of technical opinions, and we sincerely hope it remains that way.</p>

            <p>We'd also like to acknowledge that one of our own comments during the discussion was poorly worded. Referring to a benchmark as "fake" was imprecise. What we intended to criticize was the comparison methodology, not the integrity of the evaluation itself. Comparing a merged checkpoint against a single checkpoint is, in our view, not an apples-to-apples comparison.</p>

            <p>That said, this was never the core of the discussion.</p>

            <hr class="divider">

            <p>Our disagreement was not about SLERP, model merging, or whether training a small model on massive amounts of data is an interesting research direction. We support experimentation, unconventional ideas, and open research.</p>

            <p>The actual point of disagreement was much simpler.</p>

            <div class="callout">
                The statement that a 1M parameter model trained on 1 trillion tokens will become a "100M killer" is, today, a prediction, not an experimental result.
            </div>

            <p>Could it happen? Perhaps. Would it be exciting if it did? Absolutely. But until benchmark results, reproducible evaluations, and independent validation exist, we believe such statements should be presented as hypotheses rather than established conclusions.</p>

            <p><strong>Research advances by testing ideas, not by assuming their outcomes.</strong></p>

            <hr class="divider">

            <p>If future experiments demonstrate that these approaches achieve the proposed performance, we will gladly acknowledge those results. Scientific progress benefits everyone. Likewise, if our own assumptions are proven wrong, we will update our views accordingly.</p>

            <p>At SupraLabs, we believe technical disagreements should remain technical. Open discussion, reproducible experiments, mutual respect, and intellectual honesty are what ultimately move open-source AI forward.</p>

            <p>We sincerely wish Lane and everyone at Glint Research success in their experiments. We hope their research produces valuable insights for the entire community, and we look forward to seeing the results.</p>

            <p>Thank you to everyone who continues to support open, respectful, and evidence-driven research.</p>

            <div class="signature">// SupraLabs</div>

            <div class="tags">
                <span class="tag">#statement</span>
                <span class="tag">#community</span>
                <span class="tag">#open-source</span>
                <span class="tag">#research</span>
            </div>
        </div>
    </article>

    <footer>
        <p class="mono">&copy; 2026 SupraLabs // Built for the community.</p>
    </footer>
</div>
</body>
</html>