Update README.md
Browse files
README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
|
| 5 |
-
# Using the following input/output formats to achieve the best results
|
| 6 |
|
| 7 |
```python
|
| 8 |
from transformers import AutoTokenizer
|
|
@@ -17,3 +17,6 @@ next_step="Step 3: The sum of the three numbers is given as $2i$, which means $(
|
|
| 17 |
input_text=prompt+state+next_step
|
| 18 |
tokenized_input = tokenizer(input_text, return_tensors="pt", max_length=8000, truncation=True).input_ids[0]
|
| 19 |
print(model(**tokenized_input))
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
| 4 |
|
| 5 |
+
# Using the following input/output formats to achieve the best results.
|
| 6 |
|
| 7 |
```python
|
| 8 |
from transformers import AutoTokenizer
|
|
|
|
| 17 |
input_text=prompt+state+next_step
|
| 18 |
tokenized_input = tokenizer(input_text, return_tensors="pt", max_length=8000, truncation=True).input_ids[0]
|
| 19 |
print(model(**tokenized_input))
|
| 20 |
+
```
|
| 21 |
+
|
| 22 |
+
# Train dataset is here ()
|