Text Generation
Transformers
Safetensors
MLX
qwen3
oeis
integer-sequences
causal-lm
text-generation-inference
Instructions to use N8Programs/NextTerm-440M with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use N8Programs/NextTerm-440M with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="N8Programs/NextTerm-440M")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("N8Programs/NextTerm-440M") model = AutoModelForCausalLM.from_pretrained("N8Programs/NextTerm-440M") - MLX
How to use N8Programs/NextTerm-440M with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # if on a CUDA device, also pip install mlx[cuda] # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("N8Programs/NextTerm-440M") prompt = "Once upon a time in" text = generate(model, tokenizer, prompt=prompt, verbose=True) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- LM Studio
- vLLM
How to use N8Programs/NextTerm-440M with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "N8Programs/NextTerm-440M" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "N8Programs/NextTerm-440M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/N8Programs/NextTerm-440M
- SGLang
How to use N8Programs/NextTerm-440M with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "N8Programs/NextTerm-440M" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "N8Programs/NextTerm-440M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "N8Programs/NextTerm-440M" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "N8Programs/NextTerm-440M", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - MLX LM
How to use N8Programs/NextTerm-440M with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Generate some text mlx_lm.generate --model "N8Programs/NextTerm-440M" --prompt "Once upon a time"
- Docker Model Runner
How to use N8Programs/NextTerm-440M with Docker Model Runner:
docker model run hf.co/N8Programs/NextTerm-440M
File size: 5,816 Bytes
5db721a | 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 | """Small reference decoder for bigOEIS `.packed` files.
On disk, each token is stored in a 4-bit nibble:
0..9 decimal digits
10 term separator, i.e. comma
11 negative sign
14 final padding nibble, if the file has an odd nibble count
15 sequence delimiter / EOS
Note that the packed disk codes are intentionally compact and are not exactly
the model vocabulary ids: the model uses NEG=10 and SEP=11. Use
`iter_model_token_rows()` when you want rows in model-token-id space.
"""
from __future__ import annotations
import argparse
import json
from pathlib import Path
from typing import Iterator
PACKED_SEP = 10
PACKED_NEG = 11
PACKED_PAD = 14
PACKED_DELIM = 15
MODEL_NEG = 10
MODEL_SEP = 11
MODEL_BOS = 12
MODEL_EOS = 13
def iter_packed_nibbles(path: str | Path, chunk_size: int = 8 * 1024 * 1024) -> Iterator[int]:
"""Yield high nibble then low nibble for every byte in `path`."""
with Path(path).open("rb") as f:
while True:
chunk = f.read(chunk_size)
if not chunk:
return
for byte in chunk:
yield byte >> 4
yield byte & 0x0F
def iter_model_token_rows(
path: str | Path,
*,
include_bos_eos: bool = True,
max_rows: int | None = None,
strict: bool = True,
) -> Iterator[list[int]]:
"""Yield each packed sequence as model-token ids.
By default rows include BOS/EOS, matching `tokenize_utils.tokenize_sequence`.
Set `include_bos_eos=False` to get only the content tokens.
"""
row: list[int] = [MODEL_BOS] if include_bos_eos else []
yielded = 0
seen_pad = False
for nib in iter_packed_nibbles(path):
if nib == PACKED_PAD:
seen_pad = True
continue
if seen_pad:
if strict:
raise ValueError("Found non-pad nibble after final packed padding.")
continue
if 0 <= nib <= 9:
row.append(nib)
elif nib == PACKED_SEP:
row.append(MODEL_SEP)
elif nib == PACKED_NEG:
row.append(MODEL_NEG)
elif nib == PACKED_DELIM:
if include_bos_eos:
row.append(MODEL_EOS)
yield row
yielded += 1
if max_rows is not None and yielded >= max_rows:
return
row = [MODEL_BOS] if include_bos_eos else []
else:
if strict:
raise ValueError(f"Invalid packed nibble: {nib}")
empty = [MODEL_BOS] if include_bos_eos else []
if strict and row != empty:
raise ValueError("Packed file ended with an unterminated sequence.")
def iter_integer_sequences(
path: str | Path,
*,
as_ints: bool = False,
max_rows: int | None = None,
strict: bool = True,
) -> Iterator[list[int] | list[str]]:
"""Yield decoded OEIS rows.
Values are strings by default so enormous integers round-trip exactly
through JSON. Pass `as_ints=True` if Python integers are more convenient.
"""
terms: list[str] = []
chars: list[str] = []
yielded = 0
seen_pad = False
def finish_term() -> None:
if chars:
terms.append("".join(chars))
chars.clear()
elif strict:
raise ValueError("Encountered an empty term in packed sequence.")
for nib in iter_packed_nibbles(path):
if nib == PACKED_PAD:
seen_pad = True
continue
if seen_pad:
if strict:
raise ValueError("Found non-pad nibble after final packed padding.")
continue
if 0 <= nib <= 9:
chars.append(str(nib))
elif nib == PACKED_NEG:
if strict and chars:
raise ValueError("Found a negative sign after term digits had started.")
chars.append("-")
elif nib == PACKED_SEP:
finish_term()
elif nib == PACKED_DELIM:
if chars:
finish_term()
row = [int(term) for term in terms] if as_ints else list(terms)
yield row
yielded += 1
if max_rows is not None and yielded >= max_rows:
return
terms.clear()
else:
if strict:
raise ValueError(f"Invalid packed nibble: {nib}")
if strict and (terms or chars):
raise ValueError("Packed file ended with an unterminated sequence.")
def _main() -> None:
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument("packed_file", help="Path to a .packed file")
parser.add_argument("-n", "--max-rows", type=int, default=5)
parser.add_argument("--tokens", action="store_true", help="Print model-token rows instead of decoded terms")
parser.add_argument("--content-only", action="store_true", help="Omit BOS/EOS when printing token rows")
parser.add_argument("--ints", action="store_true", help="Emit decoded terms as JSON numbers instead of strings")
parser.add_argument("--no-strict", action="store_true", help="Ignore invalid/trailing data instead of raising")
args = parser.parse_args()
strict = not args.no_strict
if args.tokens:
rows = iter_model_token_rows(
args.packed_file,
include_bos_eos=not args.content_only,
max_rows=args.max_rows,
strict=strict,
)
for row in rows:
print(json.dumps({"tokens": row}, separators=(",", ":")))
else:
rows = iter_integer_sequences(
args.packed_file,
as_ints=args.ints,
max_rows=args.max_rows,
strict=strict,
)
for row in rows:
print(json.dumps({"seq": row}, separators=(",", ":")))
if __name__ == "__main__":
_main()
|