mirror of
https://github.com/huggingface/candle.git
synced 2025-06-20 04:00:28 +00:00

* Sketch the minimal mamba example. * Fix rustfmt. * Forward pass for mamba. * Finish the forward pass. * Inference fixes. * Bugfixes. * More fixes. * Add a readme.
13 lines
769 B
Markdown
13 lines
769 B
Markdown
# candle-mamba-minimal: minimal implementation of Mamba
|
|
|
|
This is based on [mamba-minimal](https://github.com/johnma2006/mamba-minimal).
|
|
|
|
## Running the example
|
|
|
|
```bash
|
|
$ cargo run --example mamba-minimal --release -- --prompt "Mamba is the"
|
|
Mamba is the most popular and best-selling game in the world. It has been downloaded more than 1,000 times by over 1 million people worldwide since its release on March 18th 2016.
|
|
|
|
The Mamba series of games are a collection that combines elements from all genres including action, adventure, strategy & puzzle games with some unique gameplay features such as stealth and survival. The game is also known for its innovative graphics and the ability to play in a variety of different modes like single player or multiplayer.
|
|
```
|