crumb commited on
Commit
9ba9e87
·
1 Parent(s): 6cead75

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -0
README.md ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ | Model Name | Parameters | Class | Ratio | Tokens | Batch Size (Tokens) | Training Loss |
5
+ | --- | --- | --- | --- | --- | --- | --- |
6
+ | GerbilLab/GerbilBlender-A-3.3m | 3.3m | A-Class | 20 | 60M | 65.5k | 6.7417 |
7
+
8
+ "Blender" models, inspired by UL2 pretraining, are trained equally in fill-in-the-middle, causal modelling, and masked language modelling tasks. Special tokens for these models include:
9
+
10
+ ```
11
+ '<fitm_start>', '<multiple_tok_mask>', '<fitm_result>', '<causal>', '<mlm_start>', '<single_tok_mask>', '<mlm_end>'
12
+
13
+ # Example fill in the middle
14
+ '<fitm_start> this is an <multiple_tok_mask> for fill-in-the-middle <fitm_result> example text <|endoftext|>'
15
+
16
+ # Example causal language modelling
17
+ '<causal> this is an example text for causal language modelling <|endoftext|>'
18
+
19
+ # Example masked language modelling
20
+ '<mlm_start> this is an <single_tok_mask> text for masked language modelling <mlm_end> example <|endoftext|>'
21
+
22
+ ```