Forge is the floor a dedicated, vendor-independent runtime has to stand on before it can carry real research — and eventually, local, safety-focused AI work — on hardware you control end to end.
Running a transformer usually means Python, a CUDA toolchain, and a dependency stack tied to one vendor's hardware. Forge is a single Rust crate that trains and infers on any GPU wgpu reaches — including a browser tab — with no CUDA, no Python interpreter, and no server round trip. That's not just a portability trick: it's the floor a dedicated, vendor-independent runtime has to stand on before it can carry real research, and eventually local, safety-focused AI work, on hardware you control end to end.
Try by using your own hardware at https://aisuko.github.io/forge/
demo.mov
# Generate — the 43 MB char-level Shakespeare model ships in the repo
cargo run --release --example generate -- --model assets/shakespeare_char --prompt "ROMEO:"
# Or with real GPT-2 124M weights
./scripts/download_gpt2.sh
cargo run --release --example generate -- --backend wgpu --prompt "Hello Forge!"
# Train from scratch
./scripts/download_shakespeare.sh
cargo run --release --example train_shakespeare -- --backend wgpu
# Terminal model browser + run dashboard
cargo run --release --features tui --bin forge-top -- --path models/
# Website + in-browser WebGPU demo
./scripts/build_site.sh && ./scripts/serve_web.sh
# Tests
cargo test --releaseAs a library:
use forge::{Device, Gpt2, Gpt2Config, Gpt2Tokenizer, Sampling};
let device = Device::wgpu()?; // or Device::Cpu
let config = Gpt2Config::from_json("models/gpt2/config.json")?;
let model = Gpt2::from_safetensors("models/gpt2/model.safetensors", config, &device)?;
let tok = Gpt2Tokenizer::from_dir("models/gpt2")?;
let text = model.generate(&tok, "Hello Forge!", 40, Sampling::Greedy)?;On Linux, wgpu needs a Vulkan ICD — install mesa-vulkan-drivers for a
software fallback, or run scripts/setup_nvidia_vulkan.sh
for NVIDIA inside a container. Check with cargo run --release --example wgpu_probe.
GNU Affero General Public License v3.0 — see LICENSE.