charlesdedampierre
commited on
Commit
•
38106d1
1
Parent(s):
b05e402
Update README.md
Browse files
README.md
CHANGED
@@ -62,6 +62,7 @@ You can run this model using LM Studio or any other frontend.
|
|
62 |
|
63 |
You can also run this model using the following code:
|
64 |
|
|
|
65 |
import transformers
|
66 |
from transformers import AutoTokenizer
|
67 |
|
@@ -90,7 +91,10 @@ sequences = pipeline(
|
|
90 |
max_length=200,
|
91 |
)
|
92 |
print(sequences[0]['generated_text'])
|
93 |
-
|
|
|
|
|
|
|
94 |
LoRA:
|
95 |
|
96 |
r=16
|
|
|
62 |
|
63 |
You can also run this model using the following code:
|
64 |
|
65 |
+
```python
|
66 |
import transformers
|
67 |
from transformers import AutoTokenizer
|
68 |
|
|
|
91 |
max_length=200,
|
92 |
)
|
93 |
print(sequences[0]['generated_text'])
|
94 |
+
```
|
95 |
+
|
96 |
+
|
97 |
+
## Training hyperparameters
|
98 |
LoRA:
|
99 |
|
100 |
r=16
|