Update README.md
Browse files
README.md
CHANGED
@@ -77,6 +77,27 @@ text = tokenizer.batch_decode(outputs)[0]
|
|
77 |
print(text)
|
78 |
```
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
## Training and evaluation data
|
81 |
Train and validation dataset:
|
82 |
[zelalt/scientific-papers-3.5-withprompt](https://huggingface.co/datasets/zelalt/scientific-papers-3.5-withprompt)
|
|
|
77 |
print(text)
|
78 |
```
|
79 |
|
80 |
+
After running it for the first time and loading the model and tokenizer, you can only run generating part to avoid RAM crash.
|
81 |
+
|
82 |
+
### Output
|
83 |
+
Input:
|
84 |
+
```
|
85 |
+
What is the title of this paper? Bursting Dynamics of the 3D Euler Equations\nin Cylindrical Domains\nFrançois Golse ∗ †\nEcole Polytechnique, CMLS\n91128 Palaiseau Cedex, France\nAlex Mahalov ‡and Basil Nicolaenko §\n\nAnswer:
|
86 |
+
```
|
87 |
+
|
88 |
+
## Output from LLM:
|
89 |
+
|
90 |
+
```
|
91 |
+
What is the title of this paper? Bursting Dynamics of the 3D Euler Equations
|
92 |
+
in Cylindrical Domains
|
93 |
+
François Golse ∗ †
|
94 |
+
Ecole Polytechnique, CMLS
|
95 |
+
91128 Palaiseau Cedex, France
|
96 |
+
Alex Mahalov ‡and Basil Nicolaenko §
|
97 |
+
|
98 |
+
Answer: Bursting Dynamics of the 3D Euler Equations in Cylindrical Domains<|endoftext|>
|
99 |
+
```
|
100 |
+
|
101 |
## Training and evaluation data
|
102 |
Train and validation dataset:
|
103 |
[zelalt/scientific-papers-3.5-withprompt](https://huggingface.co/datasets/zelalt/scientific-papers-3.5-withprompt)
|