CoolFace
Modelpublic

HuggingFaceTB/nanowhale-100m

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
67likes617downloads
Model Card

nanowhale-100m ๐Ÿณ

A small ~110M parameter language model implementing the DeepSeek-V4 architecture, fine-tuned for chat/instruction following. Trained from scratch โ€” no weights from DeepSeek-V4 were used.

Architecture

This model implements key DeepSeek-V4 innovations at a miniature scale:

ComponentDetails
Parameters~110M total (41M embeddings, 69M non-embedding)
Hidden size320
Layers8
Attention heads8 (1 KV head โ€” MQA-style)
MLAMulti-head Latent Attention with qlorarank=160
MoE4 routed experts + 1 shared, top-2 routing
Hyper-Connectionshc_mult=4, Sinkhorn routing (replacing residual connections)
MTP1 next-token prediction layer
Vocab129,280 (DeepSeek-V4 tokenizer)
Context2,048 tokens

Training

Stage 1: Pretraining

  • โ€”Dataset: HuggingFaceFW/fineweb-edu
  • โ€”Steps: 5,000 | Tokens: ~2.6B
  • โ€”Batch: 32 effective (8 ร— 4 GA) | Seq length: 2,048
  • โ€”LR: 6e-4, cosine, 3% warmup
  • โ€”Precision: bf16 mixed

Stage 2: SFT (this model)

  • โ€”Dataset: HuggingFaceTB/smol-smoltalk (460K conversations)
  • โ€”Steps: 3,000 | Tokens: ~72.7M
  • โ€”Batch: 32 effective (8 ร— 4 GA) | Seq length: 2,048
  • โ€”LR: 2e-5, cosine, 5% warmup
  • โ€”Precision: fp32

Metrics

MetricPretrainedSFT
Eval lossโ€”2.607
Perplexity (held-out)13.6212.90
Token accuracy33.8%48.5%

Usage

python
import torch
from safetensors.torch import load_file
from transformers import AutoConfig, AutoModelForCausalLM, AutoTokenizer
from huggingface_hub import hf_hub_download

# Load model (recommended: manual load for reliability)
config = AutoConfig.from_pretrained("HuggingFaceTB/nanowhale-100m", trust_remote_code=True)
model = AutoModelForCausalLM.from_config(config, trust_remote_code=True).float()

# Download and load weights
weights_path = hf_hub_download("HuggingFaceTB/nanowhale-100m", "model.safetensors")
state_dict = load_file(weights_path)
model.load_state_dict(state_dict, strict=True)
model = model.cuda().eval()

tokenizer = AutoTokenizer.from_pretrained("HuggingFaceTB/nanowhale-100m")

# Chat
messages = [{"role": "user", "content": "What are 3 benefits of exercise?"}]
prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
input_ids = tokenizer.encode(prompt, return_tensors="pt").cuda()
output = model.generate(input_ids, max_new_tokens=200, temperature=0.7, top_p=0.9,
                        pad_token_id=tokenizer.eos_token_id)
print(tokenizer.decode(output[0][input_ids.shape[1]:], skip_special_tokens=True))

Limitations

  • โ€”Tiny model: 110M params with 129K vocabulary โ€” most capacity goes to embeddings. Generations are often incoherent or factually wrong.
  • โ€”Undertrained: Only 5K pretrain + 3K SFT steps. Production models train for 100K+ steps on trillions of tokens.
  • โ€”Educational purpose: This model demonstrates the DeepSeek-V4 architecture at small scale. It is not suitable for any production use.
  • โ€”bf16 NaN: Use fp32 โ€” the Hyper-Connections architecture produces values that overflow bf16 range at this scale.
  • โ€”Custom code: Requires trust_remote_code=True.

Hardware

Trained on 1ร— NVIDIA H100 80GB.

License

Apache-2.0