alonzogarbanzo
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -25,10 +25,27 @@ More information needed
|
|
25 |
|
26 |
## Training and evaluation data
|
27 |
|
28 |
-
|
29 |
|
30 |
## Training procedure
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
### Training hyperparameters
|
33 |
|
34 |
The following hyperparameters were used during training:
|
@@ -45,7 +62,9 @@ The following hyperparameters were used during training:
|
|
45 |
|
46 |
### Training results
|
47 |
|
|
|
48 |
|
|
|
49 |
|
50 |
### Framework versions
|
51 |
|
|
|
25 |
|
26 |
## Training and evaluation data
|
27 |
|
28 |
+
Instruction Tuned on the ropes task here: https://huggingface.co/datasets/adambjorn/UnrelatedForgettingOverhead/viewer/ropes
|
29 |
|
30 |
## Training procedure
|
31 |
|
32 |
+
Given a set of prompts:
|
33 |
+
|
34 |
+
``` python
|
35 |
+
prompts = [
|
36 |
+
"Given the following background and situation, answer the question: ",
|
37 |
+
"Based on the background information and the current situation, what is the answer to the question? ",
|
38 |
+
"Considering the background and the described situation, provide an answer to this question: ",
|
39 |
+
]
|
40 |
+
```
|
41 |
+
|
42 |
+
Each example is concatenated with the prompt, background, situation, question and answer:
|
43 |
+
|
44 |
+
``` python
|
45 |
+
input_text = f"{prompt}Background: {background} Situation: {situation} Question: {question} Answer: {answer_text}."
|
46 |
+
```
|
47 |
+
|
48 |
+
|
49 |
### Training hyperparameters
|
50 |
|
51 |
The following hyperparameters were used during training:
|
|
|
62 |
|
63 |
### Training results
|
64 |
|
65 |
+
Final results: {'loss': 0.024, 'grad_norm': 1.3331243991851807, 'learning_rate': 8.000000000000001e-07, 'epoch': 10.0}
|
66 |
|
67 |
+
Average results: {'train_runtime': 862.219, 'train_samples_per_second': 2.32, 'train_steps_per_second': 0.58, 'train_loss': 0.4160269268453121, 'epoch': 10.0}
|
68 |
|
69 |
### Framework versions
|
70 |
|