add model
Browse files- README.md +44 -0
- adapter_config.json +23 -0
- head_config.json +28 -0
- pytorch_adapter.bin +3 -0
- pytorch_model_head.bin +3 -0
README.md
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- adapter-transformers
|
4 |
+
- adapterhub:named-entity-recognition/multiconer
|
5 |
+
- roberta
|
6 |
+
datasets:
|
7 |
+
- multiconer
|
8 |
+
---
|
9 |
+
|
10 |
+
# Adapter `asahi417/tner-roberta-large-multiconer-en-adapter` for roberta-large
|
11 |
+
|
12 |
+
An [adapter](https://adapterhub.ml) for the `roberta-large` model that was trained on the [named-entity-recognition/multiconer](https://adapterhub.ml/explore/named-entity-recognition/multiconer/) dataset and includes a prediction head for tagging.
|
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("roberta-large")
|
31 |
+
adapter_name = model.load_adapter("asahi417/tner-roberta-large-multiconer-en-adapter", source="hf", set_active=True)
|
32 |
+
```
|
33 |
+
|
34 |
+
## Architecture & Training
|
35 |
+
|
36 |
+
<!-- Add some description here -->
|
37 |
+
|
38 |
+
## Evaluation results
|
39 |
+
|
40 |
+
<!-- Add some description here -->
|
41 |
+
|
42 |
+
## Citation
|
43 |
+
|
44 |
+
<!-- Add some description here -->
|
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": 1024,
|
19 |
+
"model_class": "RobertaModelWithHeads",
|
20 |
+
"model_name": "roberta-large",
|
21 |
+
"model_type": "roberta",
|
22 |
+
"name": "ner"
|
23 |
+
}
|
head_config.json
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"config": {
|
3 |
+
"activation_function": null,
|
4 |
+
"head_type": "tagging",
|
5 |
+
"label2id": {
|
6 |
+
"B-corporation": 8,
|
7 |
+
"B-group": 3,
|
8 |
+
"B-location": 7,
|
9 |
+
"B-person": 1,
|
10 |
+
"B-product": 10,
|
11 |
+
"B-work of art": 5,
|
12 |
+
"I-corporation": 9,
|
13 |
+
"I-group": 4,
|
14 |
+
"I-location": 11,
|
15 |
+
"I-person": 2,
|
16 |
+
"I-product": 12,
|
17 |
+
"I-work of art": 6,
|
18 |
+
"O": 0
|
19 |
+
},
|
20 |
+
"layers": 1,
|
21 |
+
"num_labels": 13
|
22 |
+
},
|
23 |
+
"hidden_size": 1024,
|
24 |
+
"model_class": "RobertaModelWithHeads",
|
25 |
+
"model_name": "roberta-large",
|
26 |
+
"model_type": "roberta",
|
27 |
+
"name": "ner"
|
28 |
+
}
|
pytorch_adapter.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5f5ca2f5f248af5a2f2014b76527ebb21abaa9f8e0636e34a3c99080366c7013
|
3 |
+
size 12718917
|
pytorch_model_head.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d57a2bc0d2397f034675d42856e5181a6e46c2875e4fdd0aa486f18412a51954
|
3 |
+
size 54247
|