Initial version.
Browse files- README.md +61 -0
- adapter_config.json +23 -0
- head_config.json +18 -0
- pytorch_adapter.bin +3 -0
- pytorch_model_head.bin +3 -0
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- bert
|
4 |
+
- adapterhub:comsense/copa
|
5 |
+
- adapter-transformers
|
6 |
+
language:
|
7 |
+
- en
|
8 |
+
---
|
9 |
+
|
10 |
+
# Adapter `AdapterHub/bert-base-uncased-pf-copa` for bert-base-uncased
|
11 |
+
|
12 |
+
An [adapter](https://adapterhub.ml) for the `bert-base-uncased` model that was trained on the [comsense/copa](https://adapterhub.ml/explore/comsense/copa/) dataset and includes a prediction head for multiple choice.
|
13 |
+
|
14 |
+
This adapter was created for usage with the **[adapter-transformers](https://github.com/Adapter-Hub/adapter-transformers)** library.
|
15 |
+
|
16 |
+
## Usage
|
17 |
+
|
18 |
+
First, install `adapter-transformers`:
|
19 |
+
|
20 |
+
```
|
21 |
+
pip install -U adapter-transformers
|
22 |
+
```
|
23 |
+
_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)_
|
24 |
+
|
25 |
+
Now, the adapter can be loaded and activated like this:
|
26 |
+
|
27 |
+
```python
|
28 |
+
from transformers import AutoModelWithHeads
|
29 |
+
|
30 |
+
model = AutoModelWithHeads.from_pretrained("bert-base-uncased")
|
31 |
+
adapter_name = model.load_adapter("AdapterHub/bert-base-uncased-pf-copa", source="hf")
|
32 |
+
model.active_adapters = adapter_name
|
33 |
+
```
|
34 |
+
|
35 |
+
## Architecture & Training
|
36 |
+
|
37 |
+
The training code for this adapter is available at https://github.com/adapter-hub/efficient-task-transfer.
|
38 |
+
In particular, training configurations for all tasks can be found [here](https://github.com/adapter-hub/efficient-task-transfer/tree/master/run_configs).
|
39 |
+
|
40 |
+
|
41 |
+
## Evaluation results
|
42 |
+
|
43 |
+
Refer to [the paper](https://arxiv.org/pdf/2104.08247) for more information on results.
|
44 |
+
|
45 |
+
## Citation
|
46 |
+
|
47 |
+
If you use this adapter, please cite our paper ["What to Pre-Train on? Efficient Intermediate Task Selection"](https://arxiv.org/pdf/2104.08247):
|
48 |
+
|
49 |
+
```bibtex
|
50 |
+
@inproceedings{poth-etal-2021-what-to-pre-train-on,
|
51 |
+
title={What to Pre-Train on? Efficient Intermediate Task Selection},
|
52 |
+
author={Clifton Poth and Jonas Pfeiffer and Andreas Rücklé and Iryna Gurevych},
|
53 |
+
booktitle = "Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
|
54 |
+
month = nov,
|
55 |
+
year = "2021",
|
56 |
+
address = "Online",
|
57 |
+
publisher = "Association for Computational Linguistics",
|
58 |
+
url = "https://arxiv.org/abs/2104.08247",
|
59 |
+
pages = "to appear",
|
60 |
+
}
|
61 |
+
```
|
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": "copa"
|
23 |
+
}
|
head_config.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"config": {
|
3 |
+
"activation_function": "tanh",
|
4 |
+
"head_type": "multiple_choice",
|
5 |
+
"label2id": {
|
6 |
+
"LABEL_0": 0,
|
7 |
+
"LABEL_1": 1
|
8 |
+
},
|
9 |
+
"layers": 2,
|
10 |
+
"num_choices": 2,
|
11 |
+
"use_pooler": false
|
12 |
+
},
|
13 |
+
"hidden_size": 768,
|
14 |
+
"model_class": "BertModelWithHeads",
|
15 |
+
"model_name": "bert-base-uncased",
|
16 |
+
"model_type": "bert",
|
17 |
+
"name": "copa"
|
18 |
+
}
|
pytorch_adapter.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4e69ba5c6e43e7081f80cf5912920ab96d28e2e4c726c2bcdaffd82a2bd63058
|
3 |
+
size 3594543
|
pytorch_model_head.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f82ad3c2796e67816f144c1f4381345c83bce2fbcf35f72a5cb61adb72720ea2
|
3 |
+
size 2367103
|