Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
pipeline_tag: text-generation
|
| 6 |
+
inference: false
|
| 7 |
+
tags:
|
| 8 |
+
- transformers
|
| 9 |
+
- gguf
|
| 10 |
+
- imatrix
|
| 11 |
+
- BioMistral-7B
|
| 12 |
+
---
|
| 13 |
+
Quantizations of https://huggingface.co/BioMistral/BioMistral-7B
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
# From original readme
|
| 17 |
+
|
| 18 |
+
## BioMistral: A Collection of Open-Source Pretrained Large Language Models for Medical Domains
|
| 19 |
+
|
| 20 |
+
### 2. Using BioMistral
|
| 21 |
+
|
| 22 |
+
You can use BioMistral with [Hugging Face's Transformers library](https://github.com/huggingface/transformers) as follow.
|
| 23 |
+
|
| 24 |
+
Loading the model and tokenizer :
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
from transformers import AutoModel, AutoTokenizer
|
| 28 |
+
|
| 29 |
+
tokenizer = AutoTokenizer.from_pretrained("BioMistral/BioMistral-7B")
|
| 30 |
+
model = AutoModel.from_pretrained("BioMistral/BioMistral-7B")
|
| 31 |
+
```
|