Instructions to use justinsimpsad/la-vel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use justinsimpsad/la-vel with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf justinsimpsad/la-vel # Run inference directly in the terminal: llama cli -hf justinsimpsad/la-vel
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf justinsimpsad/la-vel # Run inference directly in the terminal: llama cli -hf justinsimpsad/la-vel
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf justinsimpsad/la-vel # Run inference directly in the terminal: ./llama-cli -hf justinsimpsad/la-vel
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf justinsimpsad/la-vel # Run inference directly in the terminal: ./build/bin/llama-cli -hf justinsimpsad/la-vel
Use Docker
docker model run hf.co/justinsimpsad/la-vel
- LM Studio
- Jan
- vLLM
How to use justinsimpsad/la-vel with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "justinsimpsad/la-vel" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "justinsimpsad/la-vel", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/justinsimpsad/la-vel
- Ollama
How to use justinsimpsad/la-vel with Ollama:
ollama run hf.co/justinsimpsad/la-vel
- Unsloth Studio
How to use justinsimpsad/la-vel with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for justinsimpsad/la-vel to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for justinsimpsad/la-vel to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for justinsimpsad/la-vel to start chatting
- Docker Model Runner
How to use justinsimpsad/la-vel with Docker Model Runner:
docker model run hf.co/justinsimpsad/la-vel
- Lemonade
How to use justinsimpsad/la-vel with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull justinsimpsad/la-vel
Run and chat with the model
lemonade run user.la-vel-{{QUANT_TAG}}List all available models
lemonade list
- Atomic Chat
LA VEL
LA VEL is a from-scratch, open decoder-only transformer built to be grown in public. This repo carries the language core; sibling repos and Kaggle kernels grow vision, music, 3D-mesh, and market-analysis modules.
Language core (this repo)
| Architecture | pre-LN GPT-style, SDPA causal attention, GELU MLP, tied embeddings |
| Position encoding | learned (seed) or rope (long-context) β selectable in config.json |
| Seed model | 6L / 6H / d384 / ctx512 / 16k ByteLevel-BPE β 17.1M params |
| Scale-up target | 12L / 12H / d768 / ctx2048 RoPE β 69.3M params (Kaggle growth runs) |
| Formats | model.safetensors + la-vel.gguf (llama.cpp-compatible, arch=gpt2) |
| Training data | TinyStories + Gutenberg mix (~16M tokens per seed pass) |
| License | MIT |
Files
model.pyβ standalone implementation (no transformers dependency)train.pyβ pretraining;--resume-fromlocal dir or HF repo id, optional--push-to-hfgenerate.pyβ sampling CLIgguf_export.pyβ safetensors -> GGUF converter (embeds BPE vocab + merges)kaggle_la_vel_growth_kernel.pyβ GPU kernel that resumes from this repo, optionally scales up (LAVEL_SCALE=large), trains, and pushes new weights backKAGGLE_SETUP.mdβ how to run/grow on Kaggle
Usage (PyTorch)
import torch
from model import LaVelForCausalLM
from tokenizers import Tokenizer
model = LaVelForCausalLM.from_pretrained("justinsimpsad/la-vel")
tok = Tokenizer.from_file("tokenizer.json")
ids = tok.encode("Once upon a time").ids
out = model.generate(torch.tensor([[1] + ids]), max_new_tokens=120)
print(tok.decode(out[0].tolist()[1:]))
Usage (llama.cpp)
# la-vel.gguf embeds its own tokenizer - just run it:
llama-cli -m la-vel.gguf -p "Once upon a time" -n 200
Growth fleet (one kernel per domain)
| Module | Kernel | Repo |
|---|---|---|
| Text core | justinsimpsad/la-vel-growth | this repo |
| Vision (ViT) | justinvibesrise/la-vel-vision | la-vel-vision |
| Music LM | justinvibesrise/la-vel-music | la-vel-music |
| 3D meshes | justinvibesrise/la-vel-mesh3d | la-vel-mesh3d |
| Markets (research) | justinsimpsad/la-vel-markets | la-vel-markets |
Each kernel resumes the latest checkpoint from its repo, trains on a free Kaggle GPU, and commits updated weights back. Run repeatedly to grow.
Honest status
The text core is an early seed trained briefly (val ppl ~50-60 and dropping); it produces toy-level English. The vision/music/mesh/markets modules are capability seeds trained on synthetic data. Roadmap stages land here as they are built: real-image pretraining, audio codecs, face-sequence meshes, walk-forward market validation.
- Downloads last month
- 178