File size: 839 Bytes
631beb6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
license: apache-2.0
tags:
- generated_from_trainer
datasets:
- cuad
model-index:
- name: bert-small-finetuned-cuad-full
  results: []
---

<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->

# bert-small-finetuned-cuad-full

This model is a fine-tuned version of [google/bert_uncased_L-4_H-512_A-8](https://huggingface.co/google/bert_uncased_L-4_H-512_A-8) on the portion of cuad dataset.

# Note 
The model was not trained on the whole dataset but, the first 10% of `train` + the first 10% of `test`.
```bash
raw_datasets_train, raw_datasets_test = load_dataset("cuad", split=['train[:10%]', 'test[:10%]']) 
datasets = DatasetDict({'train': raw_datasets_train, 'validation': raw_datasets_test})
```