Instructions to use DISLab/Gen-8B-R2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DISLab/Gen-8B-R2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="DISLab/Gen-8B-R2")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DISLab/Gen-8B-R2") model = AutoModelForCausalLM.from_pretrained("DISLab/Gen-8B-R2") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,7 +4,7 @@ base_model:
|
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
license: apache-2.0
|
| 7 |
-
pipeline_tag:
|
| 8 |
library_name: transformers
|
| 9 |
---
|
| 10 |
|
|
@@ -88,4 +88,4 @@ max_new_tokens=1024, # or 2048
|
|
| 88 |
do_sample=True,
|
| 89 |
temperature=0.8,
|
| 90 |
top_p=0.9,
|
| 91 |
-
```
|
|
|
|
| 4 |
language:
|
| 5 |
- en
|
| 6 |
license: apache-2.0
|
| 7 |
+
pipeline_tag: question-answering
|
| 8 |
library_name: transformers
|
| 9 |
---
|
| 10 |
|
|
|
|
| 88 |
do_sample=True,
|
| 89 |
temperature=0.8,
|
| 90 |
top_p=0.9,
|
| 91 |
+
```
|