calpt commited on
Commit
dfb8b9d
1 Parent(s): f744299

Initial version.

Browse files
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - bert
4
+ - adapter-transformers
5
+ datasets:
6
+ - wnut_17
7
+ language:
8
+ - en
9
+ ---
10
+
11
+ # Adapter `AdapterHub/bert-base-uncased-pf-wnut_17` for bert-base-uncased
12
+
13
+ An [adapter](https://adapterhub.ml) for the `bert-base-uncased` model that was trained on the [wnut_17](https://huggingface.co/datasets/wnut_17/) dataset and includes a prediction head for tagging.
14
+
15
+ This adapter was created for usage with the **[adapter-transformers](https://github.com/Adapter-Hub/adapter-transformers)** library.
16
+
17
+ ## Usage
18
+
19
+ First, install `adapter-transformers`:
20
+
21
+ ```
22
+ pip install -U adapter-transformers
23
+ ```
24
+ _Note: adapter-transformers is a fork of transformers that acts as a drop-in replacement with adapter support. [More](https://docs.adapterhub.ml/installation.html)_
25
+
26
+ Now, the adapter can be loaded and activated like this:
27
+
28
+ ```python
29
+ from transformers import AutoModelWithHeads
30
+
31
+ model = AutoModelWithHeads.from_pretrained("bert-base-uncased")
32
+ adapter_name = model.load_adapter("AdapterHub/bert-base-uncased-pf-wnut_17", source="hf")
33
+ model.active_adapters = adapter_name
34
+ ```
35
+
36
+ ## Architecture & Training
37
+
38
+ The training code for this adapter is available at https://github.com/adapter-hub/efficient-task-transfer.
39
+ In particular, training configurations for all tasks can be found [here](https://github.com/adapter-hub/efficient-task-transfer/tree/master/run_configs).
40
+
41
+
42
+ ## Evaluation results
43
+
44
+ Refer to [the paper](https://arxiv.org/pdf/2104.08247) for more information on results.
45
+
46
+ ## Citation
47
+
48
+ If you use this adapter, please cite our paper ["What to Pre-Train on? Efficient Intermediate Task Selection"](https://arxiv.org/pdf/2104.08247):
49
+
50
+ ```bibtex
51
+ @inproceedings{poth-etal-2021-what-to-pre-train-on,
52
+ title={What to Pre-Train on? Efficient Intermediate Task Selection},
53
+ author={Clifton Poth and Jonas Pfeiffer and Andreas Rücklé and Iryna Gurevych},
54
+ booktitle = "Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
55
+ month = nov,
56
+ year = "2021",
57
+ address = "Online",
58
+ publisher = "Association for Computational Linguistics",
59
+ url = "https://arxiv.org/abs/2104.08247",
60
+ pages = "to appear",
61
+ }
62
+ ```
adapter_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "adapter_residual_before_ln": false,
4
+ "cross_adapter": false,
5
+ "inv_adapter": null,
6
+ "inv_adapter_reduction_factor": null,
7
+ "leave_out": [],
8
+ "ln_after": false,
9
+ "ln_before": false,
10
+ "mh_adapter": false,
11
+ "non_linearity": "relu",
12
+ "original_ln_after": true,
13
+ "original_ln_before": true,
14
+ "output_adapter": true,
15
+ "reduction_factor": 16,
16
+ "residual_before_ln": true
17
+ },
18
+ "hidden_size": 768,
19
+ "model_class": "BertModelWithHeads",
20
+ "model_name": "bert-base-uncased",
21
+ "model_type": "bert",
22
+ "name": "wnut_17"
23
+ }
head_config.json ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "activation_function": "tanh",
4
+ "head_type": "tagging",
5
+ "label2id": {
6
+ "B-corporation": 1,
7
+ "B-creative-work": 3,
8
+ "B-group": 5,
9
+ "B-location": 7,
10
+ "B-person": 9,
11
+ "B-product": 11,
12
+ "I-corporation": 2,
13
+ "I-creative-work": 4,
14
+ "I-group": 6,
15
+ "I-location": 8,
16
+ "I-person": 10,
17
+ "I-product": 12,
18
+ "O": 0
19
+ },
20
+ "layers": 1,
21
+ "num_labels": 13
22
+ },
23
+ "hidden_size": 768,
24
+ "model_class": "BertModelWithHeads",
25
+ "model_name": "bert-base-uncased",
26
+ "model_type": "bert",
27
+ "name": "wnut_17"
28
+ }
pytorch_adapter.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:649d678aabddbe907a3fbf9a5175331e618878dfd08f713f452fff9e0b69285b
3
+ size 3594735
pytorch_model_head.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:95d4ea0edd071c16039037b57ce32faa29631e45ad29f0dc19523454d621c16c
3
+ size 41015