Update README.md
Browse files
README.md
CHANGED
|
@@ -29,3 +29,4 @@ if __name__ == "__main__":
|
|
| 29 |
output = model.generate(**input_ids, max_new_tokens=1024, do_sample=False)
|
| 30 |
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
| 31 |
```
|
|
|
|
|
|
| 29 |
output = model.generate(**input_ids, max_new_tokens=1024, do_sample=False)
|
| 30 |
print(tokenizer.decode(output[0], skip_special_tokens=True))
|
| 31 |
```
|
| 32 |
+
Conversion script: [mamba2hf.py](https://gist.github.com/Benchangatrul284/9e98bcde5a64d6b918d905511e09598b)
|