alonzogarbanzo commited on
Commit
61e6329
1 Parent(s): ff31cfd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -1
README.md CHANGED
@@ -25,10 +25,27 @@ More information needed
25
 
26
  ## Training and evaluation data
27
 
28
- More information needed
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 glue-mrpc task here: https://huggingface.co/datasets/adambjorn/UnrelatedForgettingOverhead/viewer/glue-mrpc
29
 
30
  ## Training procedure
31
 
32
+ Given a set of prompts:
33
+
34
+ ``` python
35
+ prompts = [
36
+ "Determine if the following sentences are equivalent: Sentence 1: {sentence1} Sentence 2: {sentence2}. Answer: ",
37
+ "Are these sentences saying the same thing? First: {sentence1} Second: {sentence2}. Response: ",
38
+ "Check sentence equivalence: \"{sentence1}\" versus \"{sentence2}\". Result: ",
39
+ ]
40
+ ```
41
+
42
+ Concatenate the prompts, the two sentences and the label as so:
43
+
44
+ ```python
45
+ input_text = prompt.format(sentence1=sentence1, sentence2=sentence2)
46
+ input_text += " " + responses[label]
47
+ ```
48
+
49
  ### Training hyperparameters
50
 
51
  The following hyperparameters were used during training:
 
62
 
63
  ### Training results
64
 
65
+ Final results: {'loss': 0.0949, 'grad_norm': 5.0146379470825195, 'learning_rate': 6.000000000000001e-07, 'epoch': 10.0}
66
 
67
+ Average results: {'train_runtime': 363.2148, 'train_samples_per_second': 5.506, 'train_steps_per_second': 1.377, 'train_loss': 0.4939311617612839, 'epoch': 10.0}
68
 
69
  ### Framework versions
70