File size: 11,448 Bytes
771a544 | 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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 | ---
license: apache-2.0
---
# Instinct-1B
**[autonomousX/Instinct-1B on Hugging Face](https://huggingface.co/autonomousX)**
**[Training scripts and Logs on GITHUB](https://github.com/YADAV1825/AutonomousX-Instinct)**
*Instinct-1B is a fully reproducible, from-scratch trained 1B parameter language model trained on 85B tokens using TPU v4 infrastructure.*
**Instinct-1B** is a 1B parameter Large Language Model built entirely from scratch under the **AutonomousX** organization.
Compute for this project was supported by **[Google's TRC Program (TPU Research Cloud)](https://sites.research.google/trc/about/)**.
---
### ๐จโ๐ป Author Information
**Rohit Yadav** B.Tech 3rd Year
Dr. B.R. Ambedkar National Institute of Technology (NIT) Jalandhar, India
**E-mail:** [yrohit1825@gmail.com](mailto:yrohit1825@gmail.com)
**LinkedIn:** [Rohit Yadav](https://www.linkedin.com/in/rohit-yadav-25535b256/)
**GitHub:** [YADAV1825](https://github.com/YADAV1825)
**Research interests include:** Large Language Models, MultiModal Pipelines, Systems Programming, AI Infrastructure, Distributed Training.
---
# About AutonomousX
AutonomousX focuses on open-source contributions aimed at building Large Language Models from scratch using custom training pipelines. Our work explores different training configurations including optimizers, datasets, and scalable TPU training using JAX and pmap. The goal is to provide transparent and reproducible implementations so that researchers, students, and developers can understand how modern LLMs are trained end-to-end.
Due to the current scarcity of complete beginner-friendly guides for training LLMs on TPUs, especially using JAX, AutonomousX aims to bridge this gap by publishing full training pipelines, scripts, and documentation for the open-source community.
Maintained by: Rohit Yadav | B.Tech NIT Jalandhar | yrohit1825@gmail.com | [Hugging_Face](https://huggingface.co/autonomousX)
---
### โ ๏ธ Disclaimer
**This is a base model, not an SFT (Supervised Fine-Tuned) or RLHF (Reinforcement Learning from Human Feedback) model.** As a raw completion model, it may output undesired, biased, or nonsensical text. It is intended primarily for research and educational purposes.
---
### ๐ Model Overview
| Attribute | Value |
| :--- | :--- |
| **Model Name** | Instinct-1B |
| **Organization** | AutonomousX |
| **Parameters** | 1B |
| **Vocabulary Size** | 50,304 |
| **Dataset** | PILE |
| **Tokenizer** | Pythia Tokenizer / BPE |
| **Tokens Seen** | 85B |
| **Training Hardware** | TPU v4-8 |
| **Optimizer** | AdamW |
| **Architecture** | v-4 (128) pmap |
| **Positional Embeddings**| No RoPE |
---
### ๐ง Training Details
Instinct-1B was trained completely **from scratch** using **JAX/Flax on TPU v4-8 hardware**.
The training pipeline includes:
* Dataset streaming from **PILE**.
* **Pythia Tokenizer** with a 50,304 vocabulary size.
* TPU optimized **JAX / Flax** training loop.
* **AdamW** optimizer for stable convergence.
* Checkpointing and validation during training.
* Rolling validation shard evaluation.
#### ๐ Training Workflow
```mermaid
graph TD
%% Dataset and Preparation
Data["Dataset: PILE\nRaw Text Data"]
Tokenizer["BPE Tokenizer\nVocabulary Construction"]
TokenizedData["Tokenized Data\nReady for Training"]
%% Model Architecture
Model["v-4 (128) pmap\nTransformer Decoder\n1B Parameters"]
RoPE["No RoPE Positional Embeddings"]
%% Training Pipeline
Optimizer["Optimizer: AdamW"]
ForwardPass["Forward Pass\nCompute Loss"]
BackwardPass["Backward Pass\nCompute Gradients"]
Update["Parameter Update"]
%% Logging and Checkpoints
Checkpoints["Model Checkpoints\nSaved up to 85B tokens"]
Logs["Training Logs\nLoss & Perplexity"]
%% Connections
Data --> Tokenizer
Tokenizer --> TokenizedData
TokenizedData --> ForwardPass
Model --> ForwardPass
RoPE -.-> Model
ForwardPass --> BackwardPass
BackwardPass --> Optimizer
Optimizer --> Update
Update --> Model
Update --> Checkpoints
Update --> Logs
```
#### ๐ Training Curves
The loss curves are saved in `training_log.txt` and `val_perplexity.txt`. Below is the visualization of the training progress:

---
### ๐ Reproducibility
The entire pipeline used to train the model is fully reproducible. This includes the dataset pipeline, tokenizer creation, model architecture, TPU training loop, and checkpointing system.
**Full training pipeline repository:** [train.py](https://github.com/YADAV1825/Instinct-1B/blob/main/train.py) (Example link format)
---
### ๐ Run Inference (Colab TPU/GPU)
The trained LLM inference script and model weights are available at: [autonomousX/Instinct-1B on Hugging Face](https://huggingface.co/autonomousX).
โ ๏ธ **Disclaimer:** *This is a sample inference script originally written for the 0.5B (40B) variants. Please adjust parameters like `N_LAYERS`, `D_MODEL`, `N_HEADS`, `D_HEAD`, `D_FF`, etc., according to this specific model's architecture (1B) to run inference successfully.*
A ready-to-run Google Colab TPU/GPU inference script is provided below. Simply open a notebook, set your runtime to TPU or GPU, and run it. *(Please be patient, it may take around 20 mins to run the model initialization).*
<details>
<summary>Click here to view the full Inference Code</summary>
```python
#please be patient It may take 20 mins to run the model
# Install huggingface_hub if not installed
!pip install -q huggingface_hub
from huggingface_hub import snapshot_download
repo_id = "autonomousX/Instinct-1B"
# Download entire repository
local_path = snapshot_download(
repo_id=repo_id,
repo_type="model",
local_dir="TPU_1B",
local_dir_use_symlinks=False
)
print("Download complete!")
print("Saved to:", local_path)
# =========================
# FAST 1B INFERENCE CELL
# =========================
import os
import math
import jax
import jax.numpy as jnp
from flax import linen as nn
from flax.training import train_state, checkpoints
import optax
from transformers import AutoTokenizer
# ---------------- CONFIG ----------------
SEQ_LEN = 1024
VOCAB_SIZE = 50304
# NOTE: Adjust these parameters for your specific 1B architecture!
N_LAYERS = 32
D_MODEL = 1024
N_HEADS = 16
D_HEAD = 64
D_FF = 4096
ROTARY_PCT = 0.25
CKPT_PATH = os.path.abspath("TPU_1B/checkpoint_0")
# ---------------- RoPE ----------------
def build_rope_cache(seq_len, head_dim, rotary_pct):
dim = int(head_dim * rotary_pct)
freqs = 1.0 / (10000 ** (jnp.arange(0, dim, 2) / dim))
pos = jnp.arange(seq_len)
angles = jnp.einsum("i,j->ij", pos, freqs)
return jnp.sin(angles), jnp.cos(angles)
ROPE_SIN, ROPE_COS = build_rope_cache(SEQ_LEN, D_HEAD, ROTARY_PCT)
def apply_rope(q, k):
dim = int(D_HEAD * ROTARY_PCT)
T = q.shape[1]
sin = ROPE_SIN[:T][None, :, None, :]
cos = ROPE_COS[:T][None, :, None, :]
q_rot, q_pass = q[..., :dim], q[..., dim:]
k_rot, k_pass = k[..., :dim], k[..., dim:]
q1, q2 = q_rot[..., ::2], q_rot[..., 1::2]
k1, k2 = k_rot[..., ::2], k_rot[..., 1::2]
q_rot = jnp.concatenate(
[q1 * cos - q2 * sin,
q1 * sin + q2 * cos],
axis=-1
)
k_rot = jnp.concatenate(
[k1 * cos - k2 * sin,
k1 * sin + k2 * cos],
axis=-1
)
return (
jnp.concatenate([q_rot, q_pass], axis=-1),
jnp.concatenate([k_rot, k_pass], axis=-1),
)
# ---------------- MODEL ----------------
class RMSNorm(nn.Module):
dim: int
eps: float = 1e-6
@nn.compact
def __call__(self, x):
scale = self.param("scale", nn.initializers.ones, (self.dim,))
norm = jnp.sqrt(jnp.mean(x**2, axis=-1, keepdims=True) + self.eps)
return x * (scale / norm)
class Attention(nn.Module):
@nn.compact
def __call__(self, x, mask):
B, T, C = x.shape
qkv = nn.Dense(3 * C, use_bias=False, dtype=jnp.bfloat16)(x)
qkv = qkv.reshape(B, T, 3, N_HEADS, D_HEAD)
q = qkv[:, :, 0]
k = qkv[:, :, 1]
v = qkv[:, :, 2]
q, k = apply_rope(q, k)
att = jnp.einsum("bthd,bshd->bhts", q, k)
att = att / math.sqrt(D_HEAD)
mask = mask.astype(jnp.float32)
mask = (1.0 - mask) * -1e10
att = att + mask
att = nn.softmax(att.astype(jnp.float32), axis=-1)
att = att.astype(jnp.bfloat16)
out = jnp.einsum("bhts,bshd->bthd", att, v)
out = out.reshape(B, T, C)
return nn.Dense(C, use_bias=False, dtype=jnp.bfloat16)(out)
class Block(nn.Module):
@nn.compact
def __call__(self, x, mask):
h = RMSNorm(D_MODEL)(x)
h = Attention()(h, mask)
x = x + h
h = RMSNorm(D_MODEL)(x)
h = nn.Dense(D_FF, dtype=jnp.bfloat16)(h)
h = nn.gelu(h)
h = nn.Dense(D_MODEL, dtype=jnp.bfloat16)(h)
return x + h
class GPT(nn.Module):
@nn.compact
def __call__(self, input_ids):
batch, seq_len = input_ids.shape
mask = nn.attention.make_causal_mask(
jnp.ones((batch, seq_len), dtype=jnp.bool_)
)
x = nn.Embed(
VOCAB_SIZE,
D_MODEL,
embedding_init=nn.initializers.normal(0.02),
dtype=jnp.bfloat16,
)(input_ids)
RematBlock = nn.remat(Block)
for _ in range(N_LAYERS):
x = RematBlock()(x, mask)
x = RMSNorm(D_MODEL)(x)
return nn.Dense(
VOCAB_SIZE,
use_bias=False,
dtype=jnp.bfloat16
)(x)
# ---------------- LOAD CHECKPOINT ----------------
def create_state():
model = GPT()
rng = jax.random.PRNGKey(0)
params = model.init(rng, jnp.ones((1, SEQ_LEN), dtype=jnp.int32))
return train_state.TrainState.create(
apply_fn=model.apply,
params=params,
tx=optax.adamw(1e-4),
)
state = create_state()
state = checkpoints.restore_checkpoint(CKPT_PATH, state)
params = state.params
model = GPT()
print("Checkpoint loaded.")
@jax.jit
def forward(params, input_ids):
return model.apply(params, input_ids)
import jax.random as random
def generate(params, input_ids, max_new_tokens=30, temperature=0.9, top_k=40):
rng = random.PRNGKey(0)
for _ in range(max_new_tokens):
logits = model.apply(params, input_ids)
logits = logits[:, -1, :]
logits = logits.astype(jnp.float32)
logits = logits / temperature
top_k_logits, top_k_indices = jax.lax.top_k(logits, top_k)
probs = jax.nn.softmax(top_k_logits, axis=-1)
rng, subkey = random.split(rng)
next_token_idx = random.categorical(subkey, jnp.log(probs))
next_token = jnp.take_along_axis(
top_k_indices,
next_token_idx[:, None],
axis=-1
)
input_ids = jnp.concatenate([input_ids, next_token], axis=1)
return input_ids
# ---------------- RUN ----------------
tokenizer = AutoTokenizer.from_pretrained("autonomousX/Instinct-1B")
prompt = "I am John,"
tokens = tokenizer(prompt, return_tensors="np")
input_ids = jnp.array(tokens["input_ids"], dtype=jnp.int32)
output_ids = generate(params, input_ids, 200)
print("\n=== GENERATED TEXT ===\n")
print(tokenizer.decode(output_ids[0].tolist()))
```
</details> |