File size: 1,830 Bytes
a591ca5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
---
tags:
- bert
- adapter-transformers
- text-classification
- adapterhub:sts/mrpc
license: "apache-2.0"
---
# Adapter `bert-base-uncased_sts_mrpc_pfeiffer` for bert-base-uncased
Adapter in Pfeiffer architecture trained on the MRPC task for 20 epochs with early stopping and a learning rate of 1e-4.
See https://arxiv.org/pdf/2007.07779.pdf.
**This adapter was created for usage with the [Adapters](https://github.com/Adapter-Hub/adapters) library.**
## Usage
First, install `adapters`:
```
pip install -U adapters
```
Now, the adapter can be loaded and activated like this:
```python
from adapters import AutoAdapterModel
model = AutoAdapterModel.from_pretrained("bert-base-uncased")
adapter_name = model.load_adapter("AdapterHub/bert-base-uncased_sts_mrpc_pfeiffer")
model.set_active_adapters(adapter_name)
```
## Architecture & Training
- Adapter architecture: pfeiffer
- Prediction head: classification
- Dataset: [MRPC](https://www.microsoft.com/en-us/download/details.aspx?id=52398)
## Author Information
- Author name(s): Clifton Poth
- Author email: calpt@mail.de
- Author links: [Website](https://calpt.github.io), [GitHub](https://github.com/calpt), [Twitter](https://twitter.com/clifapt)
## Citation
```bibtex
@article{pfeiffer2020AdapterHub,
title={AdapterHub: A Framework for Adapting Transformers},
author={Jonas Pfeiffer and
Andreas R\"uckl\'{e} and
Clifton Poth and
Aishwarya Kamath and
Ivan Vuli\'{c} and
Sebastian Ruder and
Kyunghyun Cho and
Iryna Gurevych},
journal={arXiv preprint},
year={2020},
url={https://arxiv.org/abs/2007.07779}
}
```
*This adapter has been auto-imported from https://github.com/Adapter-Hub/Hub/blob/master/adapters/ukp/bert-base-uncased_sts_mrpc_pfeiffer.yaml*. |