phueb commited on
Commit
f3f2b02
1 Parent(s): df8908b
Files changed (1) hide show
  1. README.md +6 -5
README.md CHANGED
@@ -10,10 +10,10 @@ The three provided models are randomly selected from 10 that were trained and re
10
  ## Loading the tokenizer
11
 
12
  BabyBERTa was trained with `add_prefix_space=True`, so it will not work properly with the tokenizer defaults.
13
- Make sure to load the tokenizer as follows:
14
 
15
  ```python
16
- tokenizer = RobertaTokenizerFast.from_pretrained("phueb/BabyBERTa",
17
  add_prefix_space=True)
18
  ```
19
 
@@ -38,11 +38,13 @@ In contrast, because BabyBERTa is not case-sensitive, its performance is not inf
38
  2. The latest version of Zorro no longer contains ambiguous content words such as "Spanish" which can be both a noun and an adjective.
39
  this resulted in a small reduction in the performance of BabyBERTa.
40
 
 
 
41
  | Model Name | Accuracy (holistic scoring) | Accuracy (MLM-scoring) |
42
  |----------------------------------------|------------------------------|------------|
43
  | [BabyBERTa-1][link-BabyBERTa-1] | 80.3 | 79.9 |
44
- | [BabyBERTa-2][link-BabyBERTa-2] | 80.3 | 79.9 |
45
- | [BabyBERTa-3][link-BabyBERTa-3] | 80.3 | 79.9 |
46
 
47
 
48
 
@@ -61,6 +63,5 @@ More info can be found [here](https://github.com/phueb/BabyBERTa).
61
  language:
62
  - en
63
  tags:
64
- - child-directed-language
65
  - acquisition
66
  ---
 
10
  ## Loading the tokenizer
11
 
12
  BabyBERTa was trained with `add_prefix_space=True`, so it will not work properly with the tokenizer defaults.
13
+ For instance, to load the tokenizer for BabyBERTa-1, load it as follows:
14
 
15
  ```python
16
+ tokenizer = RobertaTokenizerFast.from_pretrained("phueb/BabyBERTa-1",
17
  add_prefix_space=True)
18
  ```
19
 
 
38
  2. The latest version of Zorro no longer contains ambiguous content words such as "Spanish" which can be both a noun and an adjective.
39
  this resulted in a small reduction in the performance of BabyBERTa.
40
 
41
+ Overall Accuracy on Zorro:
42
+
43
  | Model Name | Accuracy (holistic scoring) | Accuracy (MLM-scoring) |
44
  |----------------------------------------|------------------------------|------------|
45
  | [BabyBERTa-1][link-BabyBERTa-1] | 80.3 | 79.9 |
46
+ | [BabyBERTa-2][link-BabyBERTa-2] | 78.6 | 78.2 |
47
+ | [BabyBERTa-3][link-BabyBERTa-3] | 74.5 | 78.1 |
48
 
49
 
50
 
 
63
  language:
64
  - en
65
  tags:
 
66
  - acquisition
67
  ---