Update README.md
Browse files
README.md
CHANGED
@@ -24,6 +24,7 @@ This is a fine-tuned version of the Minerva model, trained on the [Medical Meado
|
|
24 |
criteria = newStoppingCriteria(stop_word = ".")
|
25 |
stoppingCriteriaList = StoppingCriteriaList([criteria])
|
26 |
```
|
|
|
27 |
|
28 |
- Since the preprocessed text was formatted as "BoS token - Question - EoS token - BoS token - Answer - EoS token," the model generated answers that included the question as well. To resolve this, I implemented a method to remove the question from the generated text, leaving only the answer:
|
29 |
|
|
|
24 |
criteria = newStoppingCriteria(stop_word = ".")
|
25 |
stoppingCriteriaList = StoppingCriteriaList([criteria])
|
26 |
```
|
27 |
+
<br>
|
28 |
|
29 |
- Since the preprocessed text was formatted as "BoS token - Question - EoS token - BoS token - Answer - EoS token," the model generated answers that included the question as well. To resolve this, I implemented a method to remove the question from the generated text, leaving only the answer:
|
30 |
|