RustGPT: A pure-Rust transformer LLM built from scratch
1–10 of 186 posts
Re: RustGPT: A pure-Rust transformer LLM built from scratch
#2Looking good!
Re: RustGPT: A pure-Rust transformer LLM built from scratch
#3Re: RustGPT: A pure-Rust transformer LLM built from scratch
#4> ndarray = "0.16.1" rand = "0.9.0" rand_distr = "0.5.0" Looking good!
yep, still looks relatively good.
Re: RustGPT: A pure-Rust transformer LLM built from scratch
#5Absolutely love how readable the entire project is
Re: RustGPT: A pure-Rust transformer LLM built from scratch
#6Re: RustGPT: A pure-Rust transformer LLM built from scratch
#7Re: RustGPT: A pure-Rust transformer LLM built from scratch
#8I’m curious where you got your training data? I will look myself, but saw this and thought I’d ask. I have a CPU-first, no-backprop architecture that works very well on classification datasets. It can do single‑example incremental updates which might be useful for continuous learning. I made a toy demo to train on tiny.txt and it can predict next characters, but I’ve never tried to make an LLM before. I think my arch…
Re: RustGPT: A pure-Rust transformer LLM built from scratch
#9> ndarray = "0.16.1" rand = "0.9.0" rand_distr = "0.5.0" Looking good!
Re: RustGPT: A pure-Rust transformer LLM built from scratch
#10I’m curious where you got your training data? I will look myself, but saw this and thought I’d ask. I have a CPU-first, no-backprop architecture that works very well on classification datasets. It can do single‑example incremental updates which might be useful for continuous learning. I made a toy demo to train on tiny.txt and it can predict next characters, but I’ve never tried to make an LLM before. I think my arch…