AXIOM-1: The first EGen Core language model by EGen Labs / ErebusTN
Project description
AXIOM-1 | EGen-Core/AXIOM-1
EGen Labs | ErebusTN
AXIOM-1 is a 130M-parameter recurrent-depth language model built on the LoopLLM architecture. A single shared transformer block is applied 12 times to generate text.
Note: This model is built from scratch by editing the existent AXIOM-1 codebase. It serves as a prototype and testing ground for recurrent-depth models.
Quick Reference
- Parameters: ~130M (with weight tying)
- Size: d_model=512, heads=8q/2kv, d_ff=1365, loops=12
- Precision: bfloat16 ONLY (never float16)
- Vocab: 32000 (LLaMA-compatible tokenizer)
Installation (PyPI Ready)
You can install AXIOM-1 as a python package directly from the source repository:
pip install .
Once published to PyPI, you can install it via:
pip install axiom1
Running the Google Colab Prototype
We have provided a ready-to-use Google Colab notebook: axiom1_colab_training.ipynb
Features included in the notebook:
- Installs the
axiom1package and all dependencies directly. - Loads the official dataset:
ErebusTN/axiom1using thedatasetslibrary. - Instantiates the AXIOM-1 model and runs the mandatory 5-step sanity check.
- Trains the prototype using PyTorch's native
Traineror loop. - Exports the final model weights and pushes the checkpoint directly to the Hugging Face Hub.
How to use:
- Upload
axiom1_colab_training.ipynbto Google Colab. - Set your runtime to T4 GPU or higher.
- Run all cells. (You will be prompted to log in to Hugging Face to push your model).
Manual Usage
Sanity Check (Required Before Training)
from axiom1.model.config import AXIOM1Config
from axiom1.model.model import AXIOM1
from axiom1.evals.sanity_check import run_sanity_check
cfg = AXIOM1Config()
model = AXIOM1(cfg)
run_sanity_check(model, cfg)
Inference
import torch
from axiom1.model.config import AXIOM1Config
from axiom1.model.model import AXIOM1
from axiom1.inference.generate import generate
cfg = AXIOM1Config()
model = AXIOM1(cfg).to('cuda')
prompt_ids = torch.tensor([[1, 234, 555]], device='cuda')
ids = generate(model, prompt_ids, cfg, max_new_tokens=256)
"One block. Twelve iterations. The first axiom of EGen Core."
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file axiom1-1.0.6.tar.gz.
File metadata
- Download URL: axiom1-1.0.6.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f09daf1eb5c4287a2c72f1602bdc2401a14d7fe6487c005e78bf02464713cd6
|
|
| MD5 |
e5b083a07eaa9742c0d93fd614dfedfe
|
|
| BLAKE2b-256 |
a545f2eb3ad0c7ef516d2794488f721b83d6c0a05c17cedf9facc606c18b887a
|
File details
Details for the file axiom1-1.0.6-py3-none-any.whl.
File metadata
- Download URL: axiom1-1.0.6-py3-none-any.whl
- Upload date:
- Size: 2.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa5150c739f29c7bfb355b41b158b730341cf589327b233a7e82e128cb74a457
|
|
| MD5 |
459d8c4b4efdfea10ced32977fa6bbb4
|
|
| BLAKE2b-256 |
b68fe81dabc6e8e5ce23f87f296862150c3ce124261a57f20bd2ee0cd050e34d
|