Update README.md
Browse files
README.md
CHANGED
@@ -19,6 +19,17 @@ It achieves the following results on the evaluation set:
|
|
19 |
- Loss: 0.7030
|
20 |
- Accuracy: 0.8436
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
## Model description
|
23 |
|
24 |
More information needed
|
|
|
19 |
- Loss: 0.7030
|
20 |
- Accuracy: 0.8436
|
21 |
|
22 |
+
## Quick start
|
23 |
+
|
24 |
+
```python
|
25 |
+
from transformers import pipeline
|
26 |
+
|
27 |
+
generator = pipeline('text-generation', model="monogptari-6.7b" , device=0, use_fast=False)
|
28 |
+
generator("I think its about time I talked about Kiss-Shot", min_length=100, max_length=800,
|
29 |
+
do_sample=True, early_stopping=True, temperature=.98, top_k=50, top_p=1.0)
|
30 |
+
```
|
31 |
+
|
32 |
+
|
33 |
## Model description
|
34 |
|
35 |
More information needed
|