Update README.md
Browse files
README.md
CHANGED
|
@@ -95,6 +95,25 @@ assistant_message = (
|
|
| 95 |
print(assistant_message)
|
| 96 |
```
|
| 97 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
## Evaluations
|
| 99 |
|
| 100 |
Coming soon!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
print(assistant_message)
|
| 96 |
```
|
| 97 |
|
| 98 |
+
|
| 99 |
+
## Gradio Demo
|
| 100 |
+
|
| 101 |
+
```sh
|
| 102 |
+
git clone https://github.com/mrm8488/mamba-chat.git
|
| 103 |
+
cd mamba-chat
|
| 104 |
+
|
| 105 |
+
pip install -r requirements.txt
|
| 106 |
+
pip install -q gradio==4.8.0
|
| 107 |
+
|
| 108 |
+
python app.py \
|
| 109 |
+
--model clibrain/mamba-2.8b-chat-no_robots \
|
| 110 |
+
--share
|
| 111 |
+
```
|
| 112 |
## Evaluations
|
| 113 |
|
| 114 |
Coming soon!
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
## Acknowledgments
|
| 118 |
+
|
| 119 |
+
Thanks to [mamba-chat](https://github.com/havenhq/mamba-chat/tree/main) for heavily inspiring our work
|