nanbeige-mlx 0.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ """nanbeige-mlx: an MLX port of the Nanbeige4.2-3B Looped Transformer.
2
+
3
+ The model definition lives in :mod:`nanbeige_mlx.model` and is the single
4
+ source of truth — it is also copied verbatim into each converted weight
5
+ directory as the ``model_file`` mlx-lm loads. Conversion (HF -> MLX quant) is
6
+ in :mod:`nanbeige_mlx.convert`; publishing helpers in
7
+ :mod:`nanbeige_mlx.upload` and :mod:`nanbeige_mlx.pull`.
8
+ """
9
+
10
+ from __future__ import annotations
11
+
12
+ __version__ = "0.2.0"
13
+
14
+
15
+ def __getattr__(name: str): # pragma: no cover - thin convenience export
16
+ # Lazy re-export so ``from nanbeige_mlx import pull`` works without importing
17
+ # huggingface_hub at package-import time.
18
+ if name == "pull":
19
+ from .pull import pull
20
+
21
+ return pull
22
+ raise AttributeError(f"module 'nanbeige_mlx' has no attribute {name!r}")
@@ -0,0 +1,235 @@
1
+ """Convert Nanbeige4.2-3B HF weights into MLX quants.
2
+
3
+ Uses mlx-lm's ``model_file`` hook: the MLX port (``model.py``) is dropped into a
4
+ *staged copy* of the HF repo and referenced from that copy's ``config.json``, so
5
+ the standard ``mlx_lm.convert`` pipeline (load -> quantize -> save) works without
6
+ a registry entry. ``auto_map`` is stripped from the *output* config because the
7
+ MLX side loads via ``model_file``; it is left intact in the source so the HF
8
+ parity reference can still load the remote modeling code.
9
+
10
+ Two correctness properties (P3.3, P3.4 in docs/investigation-log.md):
11
+
12
+ * **Never mutate the source.** ``prepare_source`` stages a conversion-ready copy
13
+ in a temp dir, symlinks the (large) safetensors shards instead of duplicating
14
+ them, and writes the ``model_file`` config into the *copy*. Pointing ``--src``
15
+ at an HF cache snapshot is therefore safe — the snapshot's hashes are
16
+ untouched. ``to_mlx`` calls ``prepare_source`` itself and cleans up the stage,
17
+ so ``convert`` is one step and idempotent from a pristine HF download.
18
+ * **Preserve tokenizer files and verify them.** mlx-lm's convert writes a
19
+ trimmed ``tokenizer_config.json`` and drops ``added_tokens.json`` /
20
+ ``special_tokens_map.json`` / ``tokenizer.model``. We copy those through,
21
+ drop transient init keys, restore ``model_max_length``, and assert the
22
+ tokenizer round-trips the EOS token before declaring success.
23
+ """
24
+
25
+ from __future__ import annotations
26
+
27
+ import json
28
+ import shutil
29
+ import tempfile
30
+ from pathlib import Path
31
+
32
+ from mlx_lm.convert import convert
33
+
34
+ # The single source of truth for the port. Copied verbatim into each staged
35
+ # (and therefore each converted) weight repo as the shipped ``model_file``.
36
+ PORT_FILE = Path(__file__).resolve().parent / "model.py"
37
+
38
+ # Tokenizer / template files mlx-lm's convert trims that we must carry through.
39
+ CARRY = [
40
+ "added_tokens.json",
41
+ "special_tokens_map.json",
42
+ "tokenizer.model",
43
+ "chat_template.jinja",
44
+ ]
45
+
46
+ # Transient keys mlx-lm leaks into tokenizer_config.json from
47
+ # tokenizer.init_kwargs; they don't belong in a published config.
48
+ _TRANSIENT_TOKENIZER_KEYS = ("is_local", "local_files_only", "backend")
49
+
50
+ # HF ``trust_remote_code`` files that the source repo carries for the PyTorch
51
+ # reference path. They must NOT ship in an MLX repo (which loads via
52
+ # ``model_file``), so remove them from the output after convert.
53
+ _STRIP_FROM_OUTPUT = {
54
+ "configuration_nanbeige.py",
55
+ "modeling_nanbeige.py",
56
+ }
57
+
58
+ # Nanbeige4.2-3B supports 256K context; mlx-lm's convert writes the int64
59
+ # sentinel instead of this concrete value. Restore it.
60
+ MODEL_MAX_LENGTH = 262144
61
+
62
+ # EOS token the model must be able to emit to ever stop generating.
63
+ EOS_TOKEN = "<|im_end|>"
64
+ EOS_TOKEN_ID = 166101
65
+
66
+
67
+ def prepare_source(
68
+ src_dir: str | Path,
69
+ model_file: str | Path = PORT_FILE,
70
+ workdir: str | Path | None = None,
71
+ ) -> Path:
72
+ """Stage a conversion-ready copy of ``src_dir``. **Never writes into ``src_dir``**.
73
+
74
+ Non-safetensor files are copied; ``*.safetensors`` shards are *symlinked*
75
+ (not duplicated — the BF16 checkpoint is ~8 GB). The port is copied in as
76
+ ``nanbeige.py`` and ``config.json["model_file"]`` is set on the *copy*.
77
+
78
+ Returns the stage directory. The caller is responsible for cleanup if they
79
+ don't go through :func:`to_mlx` (which handles it).
80
+ """
81
+ src = Path(src_dir)
82
+ if not src.is_dir():
83
+ raise FileNotFoundError(f"source repo not found: {src}")
84
+
85
+ stage = Path(workdir) if workdir else Path(
86
+ tempfile.mkdtemp(prefix="nanbeige-stage-")
87
+ )
88
+ stage.mkdir(parents=True, exist_ok=True)
89
+
90
+ # Copy small files verbatim.
91
+ for f in src.iterdir():
92
+ if f.is_file() and f.suffix != ".safetensors":
93
+ shutil.copy2(f, stage / f.name)
94
+
95
+ # Symlink the weight shards — don't duplicate ~8 GB.
96
+ for f in src.glob("*.safetensors"):
97
+ (stage / f.name).symlink_to(f.resolve())
98
+
99
+ # Drop in the port and wire up model_file on the staged config copy.
100
+ shutil.copy2(model_file, stage / "nanbeige.py")
101
+ cfg_path = stage / "config.json"
102
+ cfg = json.loads(cfg_path.read_text(encoding="utf-8"))
103
+ cfg["model_file"] = "nanbeige.py"
104
+ cfg_path.write_text(json.dumps(cfg, indent=2, ensure_ascii=False), encoding="utf-8")
105
+
106
+ return stage
107
+
108
+
109
+ def _finalize(src: Path, out: Path) -> None:
110
+ """Carry tokenizer files through, scrub transient keys, restore max length.
111
+
112
+ Idempotent: only copies a CARRY file when the output is missing it.
113
+ """
114
+ for name in CARRY:
115
+ if (src / name).exists() and not (out / name).exists():
116
+ shutil.copy2(src / name, out / name)
117
+
118
+ tc = out / "tokenizer_config.json"
119
+ if tc.exists():
120
+ cfg = json.loads(tc.read_text(encoding="utf-8"))
121
+ for k in _TRANSIENT_TOKENIZER_KEYS:
122
+ cfg.pop(k, None)
123
+ cfg["model_max_length"] = MODEL_MAX_LENGTH
124
+ tc.write_text(json.dumps(cfg, indent=2, ensure_ascii=False), encoding="utf-8")
125
+
126
+ # Strip HF trust_remote_code files the convert step may have copied through;
127
+ # the MLX repo loads via model_file and shouldn't ship the PyTorch reference.
128
+ for name in _STRIP_FROM_OUTPUT:
129
+ p = out / name
130
+ if p.exists():
131
+ p.unlink()
132
+
133
+
134
+ def verify(out_dir: str | Path) -> None:
135
+ """Assert the converted repo's tokenizer round-trips the EOS token.
136
+
137
+ A conversion that silently loses ``<|im_end|>`` produces a model that never
138
+ stops generating — cheap to assert, expensive to debug.
139
+ """
140
+ from transformers import AutoTokenizer # type: ignore
141
+
142
+ out = Path(out_dir)
143
+ tok = AutoTokenizer.from_pretrained(str(out), trust_remote_code=False)
144
+ got = tok.convert_tokens_to_ids(EOS_TOKEN)
145
+ assert got == EOS_TOKEN_ID, (
146
+ f"EOS token lost in conversion: {EOS_TOKEN!r} -> {got} (expected {EOS_TOKEN_ID})"
147
+ )
148
+ # ``eos_token_id`` may be stored as a string in some tokenizer configs.
149
+ assert int(tok.eos_token_id) == EOS_TOKEN_ID, (
150
+ f"tokenizer.eos_token_id={tok.eos_token_id} != {EOS_TOKEN_ID}"
151
+ )
152
+ rendered = tok.apply_chat_template(
153
+ [{"role": "user", "content": "hi"}],
154
+ tokenize=False,
155
+ add_generation_prompt=True,
156
+ )
157
+ assert "<|im_start|>assistant" in rendered, "chat template missing assistant marker"
158
+ assert "<think>" in rendered, "chat template missing the reasoning (<think>) block"
159
+
160
+
161
+ def to_mlx(
162
+ src_dir: str | Path,
163
+ out_dir: str | Path,
164
+ bits: int,
165
+ group_size: int = 64,
166
+ *,
167
+ skip_verify: bool = False,
168
+ ) -> Path:
169
+ """Convert ``src_dir`` to a quantized MLX repo at ``out_dir`` (``bits`` per weight).
170
+
171
+ Stages a non-mutating copy (P3.3), runs mlx-lm's convert, strips
172
+ ``auto_map`` from the output config, carries tokenizer files through and
173
+ verifies the round-trip (P3.4). The stage dir is always cleaned up.
174
+ """
175
+ src = Path(src_dir)
176
+ out = Path(out_dir)
177
+
178
+ stage = prepare_source(src)
179
+ try:
180
+ convert(
181
+ hf_path=str(stage),
182
+ mlx_path=str(out),
183
+ quantize=True,
184
+ q_group_size=group_size,
185
+ q_bits=bits,
186
+ )
187
+ finally:
188
+ shutil.rmtree(stage, ignore_errors=True)
189
+
190
+ # Strip auto_map from the output config: MLX loads via model_file, and
191
+ # leaving auto_map triggers an irrelevant trust_remote_code prompt on load.
192
+ cfg_path = out / "config.json"
193
+ cfg = json.loads(cfg_path.read_text(encoding="utf-8"))
194
+ cfg.pop("auto_map", None)
195
+ cfg_path.write_text(json.dumps(cfg, indent=2, ensure_ascii=False), encoding="utf-8")
196
+
197
+ _finalize(src, out)
198
+
199
+ if not skip_verify:
200
+ try:
201
+ verify(out)
202
+ print(
203
+ f"PASS: tokenizer round-trips {EOS_TOKEN!r} -> {EOS_TOKEN_ID}; "
204
+ f"chat template intact."
205
+ )
206
+ except Exception as exc: # pragma: no cover - surfaces as a hard error
207
+ print(f"VERIFY FAILED: {exc}")
208
+ raise
209
+
210
+ return out
211
+
212
+
213
+ def main(argv: list[str] | None = None) -> None: # pragma: no cover
214
+ import argparse
215
+
216
+ ap = argparse.ArgumentParser(
217
+ prog="nanbeige-mlx-convert",
218
+ description="Convert Nanbeige4.2-3B HF weights to a quantized MLX repo.",
219
+ )
220
+ ap.add_argument("--src", required=True, help="local Nanbeige HF repo (left untouched)")
221
+ ap.add_argument("--out", required=True, help="output MLX repo path")
222
+ ap.add_argument("--bits", type=int, required=True, help="quantization bits (4, 6, 8)")
223
+ ap.add_argument("--group-size", type=int, default=64)
224
+ ap.add_argument(
225
+ "--skip-verify",
226
+ action="store_true",
227
+ help="skip the post-convert tokenizer round-trip assertion",
228
+ )
229
+ a = ap.parse_args(argv)
230
+ to_mlx(a.src, a.out, a.bits, a.group_size, skip_verify=a.skip_verify)
231
+ print(a.out)
232
+
233
+
234
+ if __name__ == "__main__": # pragma: no cover
235
+ main()
nanbeige_mlx/model.py ADDED
@@ -0,0 +1,355 @@
1
+ # Copyright © 2026 Jishnu Venugopal
2
+ #
3
+ # MLX port of the Nanbeige *Looped Transformer* (Nanbeige4.2-3B).
4
+ #
5
+ # This file is the single source of truth for the port. It is dual-purpose:
6
+ # 1. Importable as ``nanbeige_mlx.model`` (the package this file ships in).
7
+ # 2. A self-contained ``model_file`` that mlx-lm can import directly from a
8
+ # converted weight directory (see ``config.json`` -> ``"model_file"``), so
9
+ # anyone can ``mlx_lm.load`` a converted Nanbeige repo without a registry
10
+ # entry. The conversion step copies this file verbatim into each quant dir.
11
+ #
12
+ # Dependency surface of the shipped ``model_file``:
13
+ # The trivial helpers (SwiGLU, the unscaled RoPE branch, BaseModelArgs
14
+ # field-filtering) are inlined below so the shipped file has no dependency on
15
+ # mlx-lm's private modules for behavior it can express directly. The helpers
16
+ # that carry real behavior (``scaled_dot_product_attention`` for quantized-KV
17
+ # dispatch, ``KVCache``, ``create_attention_mask``) are imported from
18
+ # ``mlx_lm.models.*`` behind a single guarded import that raises an actionable
19
+ # error. This file is therefore **pinned to mlx-lm >= 0.31 internals** (tested
20
+ # 0.31.3); an upstream mlx-lm refactor of those modules would require a new
21
+ # model_file. That's an honest trade for keeping quantized-KV support.
22
+ #
23
+ # Only absolute ``mlx`` / ``mlx_lm`` imports are used so the file works
24
+ # standalone when dropped into a weight repo.
25
+ #
26
+ # Architecture for the Nanbeige4.2-3B checkpoint (see its ``config.json``):
27
+ # - Standard Llama-style decoder blocks: RMSNorm -> GQA attention -> residual,
28
+ # RMSNorm -> SwiGLU MLP -> residual.
29
+ # - ``num_loops = 2``: the 22 physical layers are executed twice per forward
30
+ # pass (weight-shared recurrence). The final RMSNorm is applied at *each*
31
+ # loop boundary (``skip_loop_final_norm = False``), i.e. after the 22nd and
32
+ # after the 44th effective layer.
33
+ # - GQA: 48 query heads, 8 key/value heads.
34
+ # - ``head_dim = 128`` while ``hidden_size / num_heads = 3072 / 48 = 64``.
35
+ # The projection widths therefore use the explicit head_dim, giving
36
+ # non-square q/o projections (q: 3072 -> 6144, o: 6144 -> 3072).
37
+ # - RoPE is the rotate-half convention (MLX ``rope_traditional=False``) with an
38
+ # unusually large base ``rope_theta = 70_000_000`` for the 256K context.
39
+ # - The richer Nanbeige config class also supports n-gram embeddings, hyper /
40
+ # mini-hyper connection and depth attention, but this checkpoint leaves all
41
+ # of those disabled, so the port implements the plain looped variant.
42
+
43
+ import inspect
44
+ from dataclasses import dataclass
45
+ from typing import Any, Dict, Optional, Union
46
+
47
+ import mlx.core as mx
48
+ import mlx.nn as nn
49
+
50
+ # --- mlx-lm internals this model_file depends on (pinned to >= 0.31) ---------
51
+ # These carry real behavior (quantized-KV dispatch in particular) that we want
52
+ # to keep, so they are guarded rather than inlined. An actionable error beats a
53
+ # raw ModuleNotFoundError in a stranger's traceback years from now.
54
+ try:
55
+ from mlx_lm.models.base import create_attention_mask, scaled_dot_product_attention
56
+ from mlx_lm.models.cache import KVCache
57
+ except ImportError as exc: # pragma: no cover - exercised only on bad installs
58
+ raise ImportError(
59
+ "nanbeige_mlx requires mlx-lm >= 0.31 (tested 0.31.3) and mlx >= 0.32. "
60
+ "The internal helpers this model_file uses "
61
+ "(mlx_lm.models.base.{scaled_dot_product_attention,create_attention_mask}, "
62
+ "mlx_lm.models.cache.KVCache) moved or were removed in your version. "
63
+ "Upgrade: pip install -U 'mlx-lm>=0.31' 'mlx>=0.32'."
64
+ ) from exc
65
+
66
+
67
+ def _swiglu(gate: mx.array, x: mx.array) -> mx.array:
68
+ """SwiGLU activation: ``silu(gate) * x`` (reference: ``act_fn(gate) * up``).
69
+
70
+ Inlined from ``mlx_lm.models.activations.swiglu``; the only difference is
71
+ the upstream copy is wrapped in ``mx.compile`` (a speed optimization, not a
72
+ behavior change), which we deliberately do not bake into a shipped
73
+ ``model_file`` — mlx-lm applies its own compilation at generate time.
74
+ """
75
+ return nn.silu(gate) * x
76
+
77
+
78
+ def _make_rope(
79
+ dims: int,
80
+ base: float,
81
+ traditional: bool,
82
+ scaling_config: Optional[Dict[str, Union[float, str]]],
83
+ max_position_embeddings: Optional[int],
84
+ ) -> nn.RoPE:
85
+ """Construct the RoPE module.
86
+
87
+ The unscaled branch (``scaling_config is None``) is inlined as
88
+ ``nn.RoPE(dims, traditional, base)`` so the shipped file does not depend on
89
+ ``mlx_lm.models.rope_utils`` for the common case. Scaled RoPE variants
90
+ (Llama-3 / dynamic / Yarn / ...) are deferred to ``initialize_rope`` behind a
91
+ guarded import — this checkpoint uses no scaling, but the branch is kept so
92
+ the file stays correct if a future Nanbeige checkpoint enables one.
93
+ """
94
+ if scaling_config is None:
95
+ return nn.RoPE(dims, traditional=traditional, base=base)
96
+ try:
97
+ from mlx_lm.models.rope_utils import initialize_rope
98
+ except ImportError as exc: # pragma: no cover
99
+ raise ImportError(
100
+ "scaled RoPE requires mlx-lm >= 0.31 (mlx_lm.models.rope_utils)."
101
+ ) from exc
102
+ return initialize_rope(
103
+ dims,
104
+ base=base,
105
+ traditional=traditional,
106
+ scaling_config=scaling_config,
107
+ max_position_embeddings=max_position_embeddings,
108
+ )
109
+
110
+
111
+ @dataclass
112
+ class ModelArgs:
113
+ """Configuration for the Nanbeige looped transformer.
114
+
115
+ Field-filtering on construction (``from_dict``) is inlined from
116
+ ``mlx_lm.models.base.BaseModelArgs`` so this dataclass has no mlx-lm base
117
+ dependency in the shipped file.
118
+ """
119
+
120
+ model_type: str
121
+ hidden_size: int
122
+ num_hidden_layers: int
123
+ intermediate_size: int
124
+ num_attention_heads: int
125
+ num_key_value_heads: int
126
+ head_dim: int
127
+ rms_norm_eps: float
128
+ vocab_size: int
129
+ rope_theta: float = 70_000_000.0
130
+ num_loops: int = 1
131
+ max_position_embeddings: int = 262144
132
+ rope_traditional: bool = False
133
+ rope_scaling: Optional[Dict[str, Union[float, str]]] = None
134
+ tie_word_embeddings: bool = False
135
+ attention_bias: bool = False
136
+ mlp_bias: bool = False
137
+
138
+ @classmethod
139
+ def from_dict(cls, params: Dict[str, Any]) -> "ModelArgs":
140
+ """Build from a config dict, ignoring keys this dataclass doesn't define."""
141
+ return cls(
142
+ **{
143
+ k: v
144
+ for k, v in params.items()
145
+ if k in inspect.signature(cls).parameters
146
+ }
147
+ )
148
+
149
+
150
+ class Attention(nn.Module):
151
+ """Grouped-query attention with an explicit (non-default) head dimension."""
152
+
153
+ def __init__(self, args: ModelArgs):
154
+ super().__init__()
155
+ dim = args.hidden_size
156
+ self.n_heads = n_heads = args.num_attention_heads
157
+ self.n_kv_heads = n_kv_heads = args.num_key_value_heads
158
+ # NOTE: head_dim is taken from the config (128), not hidden_size // n_heads.
159
+ self.head_dim = head_dim = args.head_dim
160
+ self.scale = head_dim ** -0.5
161
+
162
+ self.q_proj = nn.Linear(dim, n_heads * head_dim, bias=args.attention_bias)
163
+ self.k_proj = nn.Linear(dim, n_kv_heads * head_dim, bias=args.attention_bias)
164
+ self.v_proj = nn.Linear(dim, n_kv_heads * head_dim, bias=args.attention_bias)
165
+ # bias follows config.attention_bias (harmless: this checkpoint is False).
166
+ self.o_proj = nn.Linear(n_heads * head_dim, dim, bias=args.attention_bias)
167
+
168
+ self.rope = _make_rope(
169
+ head_dim,
170
+ base=args.rope_theta,
171
+ traditional=args.rope_traditional,
172
+ scaling_config=args.rope_scaling,
173
+ max_position_embeddings=args.max_position_embeddings,
174
+ )
175
+
176
+ def __call__(
177
+ self,
178
+ x: mx.array,
179
+ mask: Optional[mx.array] = None,
180
+ cache: Optional[Any] = None,
181
+ ) -> mx.array:
182
+ B, L, _ = x.shape
183
+
184
+ queries = self.q_proj(x)
185
+ keys = self.k_proj(x)
186
+ values = self.v_proj(x)
187
+
188
+ queries = queries.reshape(B, L, self.n_heads, self.head_dim).transpose(0, 2, 1, 3)
189
+ keys = keys.reshape(B, L, self.n_kv_heads, self.head_dim).transpose(0, 2, 1, 3)
190
+ values = values.reshape(B, L, self.n_kv_heads, self.head_dim).transpose(0, 2, 1, 3)
191
+
192
+ # RoPE precision: nothing to do here, and this is a measured result, not
193
+ # an assumption. `mx.fast.rope` computes its frequencies and cos/sin in
194
+ # fp32 inside the kernel regardless of the input dtype, so wrapping these
195
+ # calls in an fp32 upcast/downcast is arithmetically inert. Measured: an
196
+ # fp32 round-trip around the two calls below left the end-to-end parity
197
+ # cosine *bit-identical* (0.846566 both ways, 6 prompts, 166k logits).
198
+ # Bit-identity is only possible if the kernel was already fp32-internal.
199
+ #
200
+ # Contrast the HF reference, which is vulnerable here: it holds `inv_freq`
201
+ # as a non-persistent fp32 buffer, so a blanket `.to(bfloat16)` on the
202
+ # module silently degrades it (see docs/investigation-log.md and the
203
+ # comment in nanbeige_mlx_eval/bisect.py::_real_layer_stages). The port
204
+ # has no such buffer to clobber -- nn.RoPE stores four Python scalars.
205
+ if cache is not None:
206
+ queries = self.rope(queries, offset=cache.offset)
207
+ keys = self.rope(keys, offset=cache.offset)
208
+ keys, values = cache.update_and_fetch(keys, values)
209
+ else:
210
+ queries = self.rope(queries)
211
+ keys = self.rope(keys)
212
+
213
+ output = scaled_dot_product_attention(
214
+ queries, keys, values, cache=cache, scale=self.scale, mask=mask
215
+ )
216
+ output = output.transpose(0, 2, 1, 3).reshape(B, L, -1)
217
+ return self.o_proj(output)
218
+
219
+
220
+ class MLP(nn.Module):
221
+ """SwiGLU feed-forward block."""
222
+
223
+ def __init__(self, args: ModelArgs):
224
+ super().__init__()
225
+ self.gate_proj = nn.Linear(args.hidden_size, args.intermediate_size, bias=args.mlp_bias)
226
+ self.up_proj = nn.Linear(args.hidden_size, args.intermediate_size, bias=args.mlp_bias)
227
+ self.down_proj = nn.Linear(args.intermediate_size, args.hidden_size, bias=args.mlp_bias)
228
+
229
+ def __call__(self, x: mx.array) -> mx.array:
230
+ return self.down_proj(_swiglu(self.gate_proj(x), self.up_proj(x)))
231
+
232
+
233
+ class TransformerBlock(nn.Module):
234
+ """A standard pre-norm Llama-style decoder layer."""
235
+
236
+ def __init__(self, args: ModelArgs):
237
+ super().__init__()
238
+ self.self_attn = Attention(args)
239
+ self.mlp = MLP(args)
240
+ self.input_layernorm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps)
241
+ self.post_attention_layernorm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps)
242
+ self.args = args
243
+
244
+ def __call__(
245
+ self,
246
+ x: mx.array,
247
+ mask: Optional[mx.array] = None,
248
+ cache: Optional[Any] = None,
249
+ ) -> mx.array:
250
+ r = self.self_attn(self.input_layernorm(x), mask, cache)
251
+ h = x + r
252
+ r = self.mlp(self.post_attention_layernorm(h))
253
+ return h + r
254
+
255
+
256
+ class NanbeigeModel(nn.Module):
257
+ """The looped transformer trunk.
258
+
259
+ ``num_loops`` passes are made over the same ``num_hidden_layers`` physical
260
+ blocks (weight sharing). The final RMSNorm is applied at the end of every
261
+ pass, matching ``skip_loop_final_norm = False`` in the reference checkpoint.
262
+
263
+ Because each (loop, layer) pair attends over a distinct key/value stream,
264
+ the cache needs ``num_loops * num_hidden_layers`` virtual slots even though
265
+ only ``num_hidden_layers`` blocks of weights exist.
266
+ """
267
+
268
+ def __init__(self, args: ModelArgs):
269
+ super().__init__()
270
+ self.args = args
271
+ self.num_hidden_layers = args.num_hidden_layers
272
+ self.num_loops = args.num_loops
273
+ self.vocab_size = args.vocab_size
274
+
275
+ self.embed_tokens = nn.Embedding(args.vocab_size, args.hidden_size)
276
+ self.layers = [TransformerBlock(args) for _ in range(args.num_hidden_layers)]
277
+ self.norm = nn.RMSNorm(args.hidden_size, eps=args.rms_norm_eps)
278
+
279
+ def __call__(self, inputs: mx.array, cache=None) -> mx.array:
280
+ h = self.embed_tokens(inputs)
281
+
282
+ if cache is None:
283
+ cache = [None] * (self.num_loops * self.num_hidden_layers)
284
+
285
+ # All virtual cache slots stay in lockstep (same offset) within a single
286
+ # call, so a single mask derived from the first slot is valid for every
287
+ # layer in both loops.
288
+ mask = create_attention_mask(h, cache[0])
289
+
290
+ for loop in range(self.num_loops):
291
+ for i, layer in enumerate(self.layers):
292
+ # Virtual index: each (loop, layer) pair owns its own KV slot so
293
+ # the two passes over the shared weights do not collide.
294
+ h = layer(h, mask, cache[loop * self.num_hidden_layers + i])
295
+ h = self.norm(h)
296
+
297
+ return h
298
+
299
+
300
+ class Model(nn.Module):
301
+ """Top-level causal LM wrapper, conforming to the mlx-lm model contract."""
302
+
303
+ def __init__(self, args: ModelArgs):
304
+ super().__init__()
305
+ self.args = args
306
+ self.model_type = args.model_type
307
+ self.model = NanbeigeModel(args)
308
+ if not args.tie_word_embeddings:
309
+ self.lm_head = nn.Linear(args.hidden_size, args.vocab_size, bias=False)
310
+
311
+ def __call__(self, inputs: mx.array, cache=None):
312
+ out = self.model(inputs, cache)
313
+ if self.args.tie_word_embeddings:
314
+ return self.model.embed_tokens.as_linear(out)
315
+ return self.lm_head(out)
316
+
317
+ def make_cache(self):
318
+ """Allocate the loop-aware KV cache (``num_loops * num_hidden_layers`` slots).
319
+
320
+ ``mlx_lm``'s :func:`make_prompt_cache` defers to this method when present,
321
+ which is what lets a model with weight-shared looped layers expose the
322
+ larger effective depth the cache requires.
323
+
324
+ Note on the ``--max-kv-size`` knob: ``make_prompt_cache`` ignores
325
+ ``max_kv_size`` whenever a model supplies ``make_cache``, so the
326
+ rotating-cache / max-length knob is **inert** for this model.
327
+ ``--kv-bits`` still works (``KVCache.to_quantized``). The practical
328
+ ceiling is real: at full context the looped design needs
329
+ ``num_loops * num_hidden_layers`` KV slots, i.e. for this checkpoint
330
+ 44 x 8 KV-heads x 128 dim x 2 (K+V) x 262144 positions x 2 bytes
331
+ ~= 47 GB — unreachable on a 16 GB machine. This is a genuine,
332
+ quantifiable cost of the looped design, not a bug.
333
+ """
334
+ n = self.args.num_loops * self.args.num_hidden_layers
335
+ return [KVCache() for _ in range(n)]
336
+
337
+ @property
338
+ def layers(self):
339
+ return self.model.layers
340
+
341
+ @property
342
+ def head_dim(self):
343
+ return self.args.head_dim
344
+
345
+ @property
346
+ def n_kv_heads(self):
347
+ return self.args.num_key_value_heads
348
+
349
+ def sanitize(self, weights):
350
+ """Weight keys map 1:1 to the module tree for this checkpoint.
351
+
352
+ Drop any non-persistent buffers a checkpoint might carry (e.g. a cached
353
+ rotary ``inv_freq``) so a strict load succeeds.
354
+ """
355
+ return {k: v for k, v in weights.items() if "rotary_emb.inv_freq" not in k}
nanbeige_mlx/pull.py ADDED
@@ -0,0 +1,41 @@
1
+ """Download a published Nanbeige4.2-3B MLX quant by short name.
2
+
3
+ Wraps :func:`huggingface_hub.snapshot_download` with the repo ids baked in, so
4
+ the user experience is a one-liner with no conversion step::
5
+
6
+ from nanbeige_mlx import pull
7
+ import mlx_lm
8
+ model, tok = mlx_lm.load(pull("4bit"))
9
+
10
+ Weights arrive on first use, cached in ``~/.cache/huggingface``, resumable and
11
+ revision-pinnable — indistinguishable from bundling, and exactly how
12
+ ``mlx-community`` ships every model.
13
+ """
14
+
15
+ from __future__ import annotations
16
+
17
+ QUANTS: dict[str, str] = {
18
+ "4bit": "jishnuvenugopal/Nanbeige4.2-3B-mlx-4bit",
19
+ "6bit": "jishnuvenugopal/Nanbeige4.2-3B-mlx-6bit",
20
+ "8bit": "jishnuvenugopal/Nanbeige4.2-3B-mlx-8bit",
21
+ }
22
+
23
+
24
+ def pull(quant: str = "4bit", revision: str | None = None) -> str:
25
+ """Download a published quant; returns a local path for ``mlx_lm.load``.
26
+
27
+ Parameters
28
+ ----------
29
+ quant:
30
+ One of ``"4bit"``, ``"6bit"``, ``"8bit"`` (see :data:`QUANTS`).
31
+ revision:
32
+ Optional pinned HF revision (commit SHA or tag). Pinning is recommended
33
+ for reproducibility — see the eval README, which records exact SHAs.
34
+ """
35
+ if quant not in QUANTS:
36
+ raise ValueError(
37
+ f"unknown quant {quant!r}; choose one of {sorted(QUANTS)}"
38
+ )
39
+ from huggingface_hub import snapshot_download # type: ignore
40
+
41
+ return snapshot_download(repo_id=QUANTS[quant], revision=revision)
nanbeige_mlx/py.typed ADDED
File without changes
nanbeige_mlx/upload.py ADDED
@@ -0,0 +1,230 @@
1
+ """Publish a converted Nanbeige MLX repo to the HuggingFace Hub.
2
+
3
+ Nanbeige4.2-3B is Apache-2.0, which permits redistribution of derivative works
4
+ (quantization is a modification), so §4(d) applies: retain the upstream
5
+ LICENSE, retain notices, and *state that you changed the files*. This module
6
+ writes proper model-card frontmatter, copies the upstream LICENSE through, and
7
+ emits a NOTICE describing the modification, then (unless ``--dry-run``) uploads.
8
+
9
+ Run with ``--dry-run`` first: it renders the card and lists the files that would
10
+ be uploaded without touching the network. The actual upload needs
11
+ ``huggingface-cli login`` and is the one outward-facing step — by default this
12
+ module does NOT push, it prepares everything up to it.
13
+ """
14
+
15
+ from __future__ import annotations
16
+
17
+ import argparse
18
+ import fnmatch
19
+ from pathlib import Path
20
+
21
+
22
+ UPLOAD_IGNORE_PATTERNS = [
23
+ "__pycache__/**",
24
+ "**/__pycache__/**",
25
+ "*.pyc",
26
+ "**/*.pyc",
27
+ ".DS_Store",
28
+ "**/.DS_Store",
29
+ "*.egg-info/**",
30
+ "**/*.egg-info/**",
31
+ ]
32
+
33
+ # Apache-2.0 §4(d): state what changed.
34
+ NOTICE_TEMPLATE = """\
35
+ Nanbeige4.2-3B MLX quantization
36
+ ================================
37
+
38
+ This repository contains a derivative of `{base_model}` (Apache-2.0).
39
+
40
+ Modifications by Jishnu Venugopal ({year}):
41
+ * Converted from the original PyTorch checkpoint to Apple's MLX format.
42
+ * Quantized to {bits}-bit (group size {group_size}) for Apple Silicon.
43
+
44
+ The original model and its Apache-2.0 license are retained (see LICENSE).
45
+ Upstream notices and the full license text are unchanged. This derivative is
46
+ redistributed under the same Apache-2.0 license.
47
+
48
+ The MLX model definition (`nanbeige.py`) is MIT-licensed source code from the
49
+ `nanbeige-mlx` project; the weights themselves remain Apache-2.0.
50
+ """
51
+
52
+
53
+ def _card_frontmatter(bits: int, group_size: int) -> str:
54
+ # Proper frontmatter for a bilingual quantized weights repo (C7).
55
+ return (
56
+ "---\n"
57
+ "license: apache-2.0\n"
58
+ "base_model: Nanbeige/Nanbeige4.2-3B\n"
59
+ "language: [en, zh]\n"
60
+ "library_name: mlx\n"
61
+ "pipeline_tag: text-generation\n"
62
+ f"tags: [mlx, nanbeige, looped-transformer, apple-silicon, {bits}-bit]\n"
63
+ f"quantized_from: Nanbeige/Nanbeige4.2-3B\n"
64
+ f"quantization:\n bits: {bits}\n group_size: {group_size}\n"
65
+ "---\n"
66
+ )
67
+
68
+
69
+ def _card_body(bits: int, group_size: int) -> str:
70
+ return f"""
71
+ # Nanbeige4.2-3B MLX ({bits}-bit)
72
+
73
+ An MLX conversion and {bits}-bit quantization (group size {group_size}) of
74
+ [`Nanbeige/Nanbeige4.2-3B`](https://huggingface.co/Nanbeige/Nanbeige4.2-3B) — a
75
+ 3-billion-parameter **Looped Transformer** (`num_loops=2`, weight-shared over 22
76
+ layers for an effective depth of 44). Produced by the independent
77
+ [`nanbeige-mlx`](https://github.com/jishnuvenugopal/nanbeige-mlx) project;
78
+ not affiliated with the Nanbeige team.
79
+
80
+ ## Load (no conversion step)
81
+
82
+ ```python
83
+ from nanbeige_mlx import pull
84
+ import mlx_lm
85
+ model, tok = mlx_lm.load(pull("{bits}bit"))
86
+ ```
87
+
88
+ Weights arrive on first use and are cached in `~/.cache/huggingface`.
89
+
90
+ ## KV-cache ceiling (a real cost of the looped design)
91
+
92
+ The looped architecture needs `num_loops * num_hidden_layers = 44` KV slots.
93
+ At full context that is 44 x 8 KV-heads x 128 dim x 2 (K+V) x 262144 positions
94
+ x 2 bytes ~= **47 GB** — unreachable on a 16 GB machine. Because this model
95
+ supplies `make_cache`, mlx-lm's `--max-kv-size` knob is inert; use `--kv-bits`
96
+ to reduce KV precision instead.
97
+
98
+ ## Fidelity of the port
99
+
100
+ This quant is produced by a from-scratch MLX port of the looped architecture,
101
+ checked against the HuggingFace reference. The headline finding carries over
102
+ verbatim from the port's documentation, and must read identically wherever it
103
+ appears (repo README, model card, investigation log):
104
+
105
+ > Bottom line: **the source of the logit gap is documented-open, not blocking.**
106
+ > Six candidate causes are ruled out by measurement (the seventh, "RoPE runs in
107
+ > bf16," was killed by a bit-identical upcast experiment — `mx.fast.rope` is
108
+ > fp32-internal regardless of input dtype). The `[1,1,5,6]` mask shape is a red
109
+ > herring: the 6th column is HF's `past_seen_tokens + sequence_length + 1`
110
+ > boilerplate for StaticCache sizing, present in every Llama-family model, and
111
+ > eager attention slices it to `[:,:,:,:L]` before use — nothing to do with
112
+ > `num_loops`. The gap does not affect behavior on the agentic suite. Bit-exact
113
+ > parity is not claimed and not expected in bf16. Full record:
114
+ > [`docs/investigation-log.md`](https://github.com/jishnuvenugopal/nanbeige-mlx-eval/blob/main/docs/investigation-log.md).
115
+
116
+ ## License
117
+
118
+ Apache-2.0 (the upstream license; quantization is a modification under §4(d)).
119
+ The `nanbeige.py` model definition is MIT-licensed source from `nanbeige-mlx`.
120
+ See `LICENSE` and `NOTICE`.
121
+ """
122
+
123
+
124
+ def write_card(model_dir: str | Path, bits: int, group_size: int, *, base_model: str = "Nanbeige/Nanbeige4.2-3B") -> Path:
125
+ """Write README.md, LICENSE (copied from upstream), and NOTICE into ``model_dir``."""
126
+ import datetime
127
+ import shutil
128
+
129
+ d = Path(model_dir)
130
+ card = d / "README.md"
131
+ card.write_text(_card_frontmatter(bits, group_size) + _card_body(bits, group_size), encoding="utf-8")
132
+
133
+ notice = d / "NOTICE"
134
+ notice.write_text(
135
+ NOTICE_TEMPLATE.format(
136
+ base_model=base_model,
137
+ bits=bits,
138
+ group_size=group_size,
139
+ year=datetime.datetime.now().year,
140
+ ),
141
+ encoding="utf-8",
142
+ )
143
+
144
+ # Always ship the full canonical Apache-2.0 LICENSE text. The weights are
145
+ # Apache-2.0 (not MIT — MIT is the code), so a 2-line pointer is not enough:
146
+ # §4(d) requires giving recipients a copy of the license. Source the text
147
+ # from the vendored LICENSE.apache (committed alongside this module).
148
+ license_path = d / "LICENSE"
149
+ candidates = [
150
+ Path(__file__).resolve().parent.parent / "LICENSE.apache", # port repo root
151
+ d.parent / "nanbeige42-hf" / "LICENSE", # upstream checkout
152
+ d.parent / "LICENSE.apache",
153
+ ]
154
+ src_license = next((c for c in candidates if c.exists()), None)
155
+ if src_license is None:
156
+ raise FileNotFoundError(
157
+ "Full Apache-2.0 LICENSE text not found. Expected LICENSE.apache in the "
158
+ "port repo root (vendored), or nanbeige42-hf/LICENSE. Do not ship a "
159
+ "license pointer — the weights require the full license text under §4(d)."
160
+ )
161
+ shutil.copy2(src_license, license_path)
162
+ return card
163
+
164
+
165
+ def upload(model_dir: str | Path, repo_id: str, *, dry_run: bool = True) -> None:
166
+ """Write the card/LICENSE/NOTICE and (unless ``dry_run``) upload to ``repo_id``."""
167
+ d = Path(model_dir)
168
+ cfg = __import__("json").loads((d / "config.json").read_text(encoding="utf-8"))
169
+ q = cfg.get("quantization") or cfg.get("quantization_config") or {}
170
+ bits = int(q.get("bits", 0))
171
+ group_size = int(q.get("group_size", 64))
172
+
173
+ write_card(d, bits, group_size)
174
+
175
+ files = sorted(
176
+ rel
177
+ for p in d.rglob("*")
178
+ if p.is_file()
179
+ and not any(
180
+ fnmatch.fnmatch((rel := p.relative_to(d).as_posix()), pattern)
181
+ for pattern in UPLOAD_IGNORE_PATTERNS
182
+ )
183
+ )
184
+ print(f"repo: {repo_id}")
185
+ print(f"model_dir: {d}")
186
+ print(f"quantization: {bits}-bit, group_size={group_size}")
187
+ print("files:")
188
+ for name in files:
189
+ print(f" - {name}")
190
+
191
+ if dry_run:
192
+ print("\n[dry-run] no upload performed. Re-run without --dry-run to publish.")
193
+ return
194
+
195
+ from huggingface_hub import HfApi # type: ignore
196
+
197
+ api = HfApi()
198
+ api.create_repo(repo_id=repo_id, repo_type="model", exist_ok=True)
199
+ api.upload_folder(
200
+ folder_path=str(d),
201
+ repo_id=repo_id,
202
+ repo_type="model",
203
+ ignore_patterns=UPLOAD_IGNORE_PATTERNS,
204
+ )
205
+ print(f"\nuploaded to {repo_id}")
206
+
207
+
208
+ def main(argv: list[str] | None = None) -> None: # pragma: no cover
209
+ ap = argparse.ArgumentParser(
210
+ prog="nanbeige-mlx-upload",
211
+ description="Write a proper model card + LICENSE + NOTICE and upload a Nanbeige MLX quant.",
212
+ )
213
+ ap.add_argument("--model-dir", required=True)
214
+ ap.add_argument("--repo-id", required=True)
215
+ ap.add_argument(
216
+ "--dry-run",
217
+ action="store_true",
218
+ help="render the card and list files without uploading (default behavior)",
219
+ )
220
+ ap.add_argument(
221
+ "--yes",
222
+ action="store_true",
223
+ help="actually upload (requires `huggingface-cli login`)",
224
+ )
225
+ a = ap.parse_args(argv)
226
+ upload(a.model_dir, a.repo_id, dry_run=a.dry_run or not a.yes)
227
+
228
+
229
+ if __name__ == "__main__": # pragma: no cover
230
+ main()
@@ -0,0 +1,104 @@
1
+ Metadata-Version: 2.4
2
+ Name: nanbeige-mlx
3
+ Version: 0.2.0
4
+ Summary: MLX port of the Nanbeige4.2-3B Looped Transformer for Apple Silicon — model definition, HF->MLX conversion, and publish helpers.
5
+ Author: Jishnu Venugopal
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/jishnuvenugopal/nanbeige-mlx
8
+ Project-URL: Repository, https://github.com/jishnuvenugopal/nanbeige-mlx
9
+ Project-URL: Issues, https://github.com/jishnuvenugopal/nanbeige-mlx/issues
10
+ Project-URL: Changelog, https://github.com/jishnuvenugopal/nanbeige-mlx/blob/main/CHANGELOG.md
11
+ Project-URL: Evaluation harness, https://github.com/jishnuvenugopal/nanbeige-mlx-eval
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: MacOS
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
22
+ Requires-Python: >=3.10
23
+ Description-Content-Type: text/markdown
24
+ License-File: LICENSE
25
+ License-File: LICENSE.apache
26
+ Requires-Dist: mlx<0.34,>=0.32
27
+ Requires-Dist: mlx-lm<0.33,>=0.31
28
+ Requires-Dist: huggingface_hub>=1.20
29
+ Requires-Dist: transformers>=4.40
30
+ Provides-Extra: dev
31
+ Requires-Dist: pytest>=8; extra == "dev"
32
+ Dynamic: license-file
33
+
34
+ # nanbeige-mlx
35
+
36
+ An MLX port of the **Nanbeige4.2-3B *Looped Transformer*** for Apple Silicon,
37
+ plus the HF→MLX conversion and publishing helpers. The model definition in
38
+ [`nanbeige_mlx/model.py`](nanbeige_mlx/model.py) is the **single source of truth**
39
+ for the port — it is also copied verbatim into each converted weight directory
40
+ as the `model_file` mlx-lm loads.
41
+
42
+ This is an independent project; it is not affiliated with or endorsed by the
43
+ Nanbeige team.
44
+
45
+ ## What's here
46
+
47
+ | module | purpose |
48
+ |---|---|
49
+ | `nanbeige_mlx/model.py` | the port — also the shipped `model_file` |
50
+ | `nanbeige_mlx/convert.py` | HF → MLX quant (non-mutating staging, tokenizer verify) |
51
+ | `nanbeige_mlx/upload.py` | model-card + LICENSE + NOTICE + (opt-in) HF upload |
52
+ | `nanbeige_mlx/pull.py` | `pull("4bit")` → local path for `mlx_lm.load` |
53
+
54
+ ## Load a published quant (one line)
55
+
56
+ ```python
57
+ from nanbeige_mlx import pull
58
+ import mlx_lm
59
+ model, tok = mlx_lm.load(pull("4bit"))
60
+ ```
61
+
62
+ ## Convert from the BF16 checkpoint yourself
63
+
64
+ ```bash
65
+ nanbeige-mlx-convert --src /path/to/Nanbeige4.2-3B --out ./nanbeige-mlx-4bit --bits 4
66
+ ```
67
+
68
+ The source directory is never mutated; the tokenizer round-trip is asserted.
69
+
70
+ ## The 44-slot KV cache (a real cost of the looped design)
71
+
72
+ The looped architecture needs `num_loops * num_hidden_layers = 44` KV slots.
73
+ At full context that is 44 × 8 KV-heads × 128 dim × 2 (K+V) × 262 144 positions
74
+ × 2 bytes ≈ **47 GB** — unreachable on a 16 GB machine. Because this model
75
+ supplies `make_cache`, mlx-lm's `--max-kv-size` knob is inert; use `--kv-bits`
76
+ to reduce KV precision instead. This is a quantifiable cost of the looped
77
+ design, not a bug — see `make_cache()`'s docstring.
78
+
79
+ ## Dependencies
80
+
81
+ Upper-bounded to `mlx>=0.32,<0.34` and `mlx-lm>=0.31,<0.33`. The bounds are
82
+ deliberate: `model.py` uses `mlx_lm.models.base` / `.cache` internals and is
83
+ copied verbatim into every published weight repo as the `model_file`, where it
84
+ is frozen — a user who already downloaded a quant cannot receive a patch.
85
+ Relaxing the bound is a decision to make after testing against a new mlx-lm.
86
+
87
+ ## Fidelity status
88
+
89
+ This port is validated by behaviour, not bit-parity: per-layer arithmetic
90
+ agrees with the reference's own `NanbeigeDecoderLayer` to fp32 precision, the
91
+ 44-slot loop-aware KV cache passes a prefill-vs-incremental-decode equality
92
+ test, and the port's two code paths are bit-identical. End-to-end next-token
93
+ logit cosine against the HF reference is 0.847 (top-1 agreement 83%), lower
94
+ than a faithful port should give; six candidate causes have been eliminated by
95
+ measurement. The full record — including every falsified hypothesis — is in
96
+ the evaluation harness repo's
97
+ [`docs/investigation-log.md`](https://github.com/jishnuvenugopal/nanbeige-mlx-eval/blob/main/docs/investigation-log.md).
98
+ Behaviour on the bilingual agentic suite is unaffected (26–28/30 across
99
+ 4/6/8-bit).
100
+
101
+ ## License
102
+
103
+ MIT for the code in this package. The Nanbeige model weights are governed by
104
+ the upstream Apache-2.0 license; convert and redistribute them per that license.
@@ -0,0 +1,13 @@
1
+ nanbeige_mlx/__init__.py,sha256=m8nnqRDABY8cmW5pnFquFESD1yvJygnp8ZZm9QEWdIU,828
2
+ nanbeige_mlx/convert.py,sha256=FqowSx1lm0PPpg8aC8_1lTWS2nkdj5SvvaYaxnOgJFc,8823
3
+ nanbeige_mlx/model.py,sha256=9kdRvMOL7-JvWxvTLMMpl1dG5UnY1x6_dWC-tR9zzWE,15129
4
+ nanbeige_mlx/pull.py,sha256=s1-ivwytz-n1JGG8blJ2ZoI45nMBWGq5A5cCikJQLlk,1438
5
+ nanbeige_mlx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ nanbeige_mlx/upload.py,sha256=J-6Ub8bRlh9HE1nS40GACZ64fYmUzSK2vq8miTVSUys,8691
7
+ nanbeige_mlx-0.2.0.dist-info/licenses/LICENSE,sha256=MOWIyoKq-Q2hIHhINTeut6W1nzXeOol7E334yGUrN1k,1073
8
+ nanbeige_mlx-0.2.0.dist-info/licenses/LICENSE.apache,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
9
+ nanbeige_mlx-0.2.0.dist-info/METADATA,sha256=YPVvUfITgkrkNoJ_IJOCygl7Ksnv1c8RTrCTlkNqjRA,4540
10
+ nanbeige_mlx-0.2.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
11
+ nanbeige_mlx-0.2.0.dist-info/entry_points.txt,sha256=tmTzha-whpQsw8fosf67DUjOZvhe274GXj8rAjaMH1A,114
12
+ nanbeige_mlx-0.2.0.dist-info/top_level.txt,sha256=g4XY571m4D6fG2Iv0Gcjadw6vr4QLkkKEjfSoo96Bx8,13
13
+ nanbeige_mlx-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ nanbeige-mlx-convert = nanbeige_mlx.convert:main
3
+ nanbeige-mlx-upload = nanbeige_mlx.upload:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Jishnu Venugopal
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1 @@
1
+ nanbeige_mlx