File size: 5,746 Bytes
eea923e
 
88db466
 
 
 
eea923e
88db466
eea923e
 
88db466
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
---
license: mit
base_model:
- z-lab/Qwen3.6-35B-A3B-DFlash
base_model_relation: quantized
quantized_by: UnstableLlama
tags:
- exl3
---

<style>
  @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Inter:wght@400;700&display=swap');

  .dashboard-container {
    font-family: 'Inter', sans-serif;
    width: min(1500px, calc(100vw - 32px));
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background-color: #1a1b1e;
    background-image: radial-gradient(#2d2f34 1px, transparent 1px);
    background-size: 20px 20px;
    color: #e0e0e0;
    padding: 40px 24px;
    border: 1px solid #4a4d53;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .dashboard-header {
    margin-bottom: 35px;
  }

  .dashboard-header h1 {
    font-family: 'JetBrains Mono', monospace;
    color: #ffffff;
    font-size: 1.6em;
    margin: 0;
    padding-left: 15px;
    border-left: 4px solid #4dabf7;
  }

  .meta-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8em;
    color: #4dabf7;
    background: rgba(77, 171, 247, 0.1);
    padding: 4px 12px;
    border: 1px solid rgba(77, 171, 247, 0.3);
    border-radius: 4px;
    margin-top: 12px;
    display: inline-block;
  }

  .content-panel {
    background-color: #25262b;
    border: 1px solid #4a4d53;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
  }

  .panel-title {
    background-color: #4dabf7;
    color: #000000;
    padding: 8px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .panel-body {
    padding: 20px;
  }

  .repo-data-panel {
    padding: 14px 10px;
  }

  .repo-data-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    --edge-gap: 8px;
  }

  .repo-graph {
    display: block;
    width: min(1440px, calc(100% - (var(--edge-gap) * 2)));
    height: auto;
    margin: 0 auto;
  }

  .table-wrapper {
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #666a73;
    border-radius: 4px;
    overflow: hidden;
    max-width: calc(100% - (var(--edge-gap) * 2));
  }

  .data-table {
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    width: auto;
    margin: 0;
  }

  .data-table th {
    text-align: left;
    color: #ffffff;
    background-color: #2d2f34;
    padding: 9px 12px;
    border-bottom: 2px solid #666a73;
    border-right: 1px solid #4a4d53;
  }

  .data-table td {
    padding: 7px 12px;
    border-bottom: 1px solid #4a4d53;
    border-right: 1px solid #4a4d53;
  }

  .data-table tr td:last-child,
  .data-table tr th:last-child {
    border-right: none;
  }

  .data-table tr:last-child td {
    border-bottom: none;
  }

  .data-table tr:hover td {
    background-color: rgba(77, 171, 247, 0.05);
  }

  .link-style {
    color: #4dabf7;
    text-decoration: none;
  }

  .link-style:hover {
    text-decoration: underline;
    color: #ffffff;
  }

  .terminal-box {
    background-color: #0c0d0e;
    border: 1px solid #4a4d53;
    border-radius: 6px;
    padding: 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85em;
    color: #cbd5e0;
  }
</style>

<div class="dashboard-container">

  <div class="dashboard-header">
    <h1>Qwen / Qwen3.6-27B</h1>
    <div class="meta-tag">QUANTIZED BY: UnstableLlama</div>
  </div>

  <div class="content-panel">
    <div class="panel-title">Information</div>
    <div class="panel-body">
      3.00bpw exl3 quantization <b><a class="link-style" href="https://huggingface.co/z-lab/Qwen3.6-35B-A3B-DFlash">Qwen3.6-35B-A3B-DFlash</a></b> via
      <b><a class="link-style" href="https://github.com/turboderp-org/exllamav3">exllamav3</a></b>.
      <br/>
      repo generated automatically with
      <a class="link-style" href="https://github.com/UnstableLlama/ezexl3">ezexl3</a>.
    </div>
  </div>

  <div class="content-panel">
    <div class="panel-title">Repo Data</div>
    <div class="panel-body repo-data-body repo-data-panel">
      <div class="table-wrapper">
        <table class="data-table">
                    <thead>
            <tr>
              <th>REVISION</th>
              <th>MB</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td><a class="link-style" href="https://huggingface.co/UnstableLlama/Qwen3.6-35B-A3B-DFlash-exl3-2.50bpw/">2.50bpw</a></td>
              <td>145</td>
            </tr>
            <tr>
              <td><a class="link-style" href="https://huggingface.co/UnstableLlama/Qwen3.6-35B-A3B-DFlash-exl3-3.00bpw/">3.00bpw</a></td>
              <td>174</td>
            </tr>
            <tr>
              <td><a class="link-style" href="https://huggingface.co/UnstableLlama/Qwen3.6-35B-A3B-DFlash-exl3-3.50bpw/">3.50bpw</a></td>
              <td>203</td>
            </tr>
            <tr>
              <td><a class="link-style" href="https://huggingface.co/UnstableLlama/Qwen3.6-35B-A3B-DFlash-exl3-4.00bpw/">4.00bpw</a></td>
              <td>226</td>
            </tr>
            <tr>
              <td><a class="link-style" href="https://huggingface.co/UnstableLlama/Qwen3.6-35B-A3B-DFlash-exl3-4.00bpw/">6.00bpw</a></td>
              <td>348</td>
            </tr>
          </tbody>
        </table>
      </div>
    </div>
  </div>
  
  <div class="content-panel">
    <div class="panel-title">CLI Download</div>
    <div class="panel-body">
      <div class="terminal-box">
        hf download UnstableLlama/Qwen3.6-35B-A3B-DFlash-exl3-3.00bpw --local-dir ./Qwen3.6-35B-A3B-DFlash-exl3-3.00bpw
      </div>
    </div>
  </div>

</div>