CoolFace
Modelpublic

Thox-ai/ThoxLLM-327M-v2

sourceHugging Faceapache-2.0updated 2d agoView on Hugging Face
0likes332downloads
Model Card

ThoxLLM-327M-v2

License Params Format

Your AI. Your Data. Your Rules.

Production from-scratch 327M decoder with standard 2-projection SwiGLU (GGUF-clean).

What this is

  • —Trained from scratch (THOX-owned) — Apache-2.0.
  • —Standard SwiGLU (matched-FLOPs, ffn 3413) makes GGUF export clean via K-quants.
  • —config.json has no architectures/model_type key, so it is not vanilla-AutoModel loadable — load via the THOX thoxllm package or use the GGUF repo.
  • —Dataset provenance note: parent card says THOX-internal corpus; the GGUF card says Pile-uncopyrighted — reconcile before publishing a data statement.

Architecture (from config)

FieldValue
Architecturecustom THOX decoder (standard SwiGLU; no HF architectures key)
Layers20
Hidden size1024
Attention heads16
KV heads8 (GQA)
FFN / intermediate3413
Vocab50,304
Max context2048
Tied embeddingsyes
dtypebfloat16

Intended use

On-device / edge text generation within the THOX stack. Not a safety-aligned public assistant unless deployed behind THOX guardrails.

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained("Thox-ai/ThoxLLM-327M-v2")
model = AutoModelForCausalLM.from_pretrained("Thox-ai/ThoxLLM-327M-v2")

Note: this checkpoint uses the custom THOX `thoxllm` decoder; `config.json` has no `architectures` key, so vanilla `AutoModel` loading may not work — use the THOX `thoxllm` package or the GGUF build.

Links


THOX.ai LLC — Your AI. Your Data. Your Rules. · On-device and private by design.

Temporary demo Space: tommytracx/ThoxLLM-327M-v2-Space (org Space paused on quota).