muhtasham commited on
Commit
28f88ba
1 Parent(s): 0b05039

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - albertvillanova/legal_contracts
4
+ ---
5
+
6
+ # bert-tiny-finetuned-legal-contracts-longer
7
+
8
+ This model is a fine-tuned version of [google/bert_uncased_L-2_H-128_A-2](https://huggingface.co/google/google/bert_uncased_L-2_H-128_A-2) on the portion of legal_contracts dataset but for longer epochs.
9
+
10
+ # Note
11
+ The model was not trained on the whole dataset which is around 9.5 GB, but only
12
+
13
+ ## The first 10% of `train` + the last 10% of `train`.
14
+
15
+ ```bash
16
+ datasets_train = load_dataset('albertvillanova/legal_contracts' , split='train[:10%]')
17
+ datasets_validation = load_dataset('albertvillanova/legal_contracts' , split='train[-10%:]')
18
+ ```
19
+
20
+