Upload T5ForConditionalGeneration
Browse files- README.md +43 -0
- adapter_config.json +61 -0
- head_config.json +14 -0
- pytorch_adapter.bin +3 -0
- pytorch_model_head.bin +3 -0
README.md
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
tags:
|
3 |
+
- adapter-transformers
|
4 |
+
- t5
|
5 |
+
datasets:
|
6 |
+
- minh21/cpgQA-v1.0-unique-context-test-10-percent-validation-10-percent
|
7 |
+
---
|
8 |
+
|
9 |
+
# Adapter `legacy107/flan-t5-large-bottleneck-ia3-union-cpgQA` for google/flan-t5-large
|
10 |
+
|
11 |
+
An [adapter](https://adapterhub.ml) for the `google/flan-t5-large` model that was trained on the [minh21/cpgQA-v1.0-unique-context-test-10-percent-validation-10-percent](https://huggingface.co/datasets/minh21/cpgQA-v1.0-unique-context-test-10-percent-validation-10-percent/) dataset.
|
12 |
+
|
13 |
+
This adapter was created for usage with the **[adapter-transformers](https://github.com/Adapter-Hub/adapter-transformers)** library.
|
14 |
+
|
15 |
+
## Usage
|
16 |
+
|
17 |
+
First, install `adapter-transformers`:
|
18 |
+
|
19 |
+
```
|
20 |
+
pip install -U adapter-transformers
|
21 |
+
```
|
22 |
+
_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)_
|
23 |
+
|
24 |
+
Now, the adapter can be loaded and activated like this:
|
25 |
+
|
26 |
+
```python
|
27 |
+
from transformers import AutoAdapterModel
|
28 |
+
|
29 |
+
model = AutoAdapterModel.from_pretrained("google/flan-t5-large")
|
30 |
+
adapter_name = model.load_adapter("legacy107/flan-t5-large-bottleneck-ia3-union-cpgQA", source="hf", set_active=True)
|
31 |
+
```
|
32 |
+
|
33 |
+
## Architecture & Training
|
34 |
+
|
35 |
+
<!-- Add some description here -->
|
36 |
+
|
37 |
+
## Evaluation results
|
38 |
+
|
39 |
+
<!-- Add some description here -->
|
40 |
+
|
41 |
+
## Citation
|
42 |
+
|
43 |
+
<!-- Add some description here -->
|
adapter_config.json
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"config": {
|
3 |
+
"architecture": "union",
|
4 |
+
"configs": [
|
5 |
+
{
|
6 |
+
"alpha": 1,
|
7 |
+
"architecture": "lora",
|
8 |
+
"attn_matrices": [
|
9 |
+
"q",
|
10 |
+
"v"
|
11 |
+
],
|
12 |
+
"composition_mode": "scale",
|
13 |
+
"dropout": 0.0,
|
14 |
+
"init_weights": "ia3",
|
15 |
+
"intermediate_lora": true,
|
16 |
+
"output_lora": false,
|
17 |
+
"r": 1,
|
18 |
+
"selfattn_lora": true,
|
19 |
+
"use_gating": false
|
20 |
+
},
|
21 |
+
{
|
22 |
+
"adapter_residual_before_ln": false,
|
23 |
+
"cross_adapter": false,
|
24 |
+
"factorized_phm_W": true,
|
25 |
+
"factorized_phm_rule": false,
|
26 |
+
"hypercomplex_nonlinearity": "glorot-uniform",
|
27 |
+
"init_weights": "bert",
|
28 |
+
"inv_adapter": null,
|
29 |
+
"inv_adapter_reduction_factor": null,
|
30 |
+
"is_parallel": false,
|
31 |
+
"learn_phm": true,
|
32 |
+
"leave_out": [],
|
33 |
+
"ln_after": false,
|
34 |
+
"ln_before": false,
|
35 |
+
"mh_adapter": true,
|
36 |
+
"non_linearity": "swish",
|
37 |
+
"original_ln_after": true,
|
38 |
+
"original_ln_before": false,
|
39 |
+
"output_adapter": true,
|
40 |
+
"phm_bias": true,
|
41 |
+
"phm_c_init": "normal",
|
42 |
+
"phm_dim": 4,
|
43 |
+
"phm_init_range": 0.0001,
|
44 |
+
"phm_layer": false,
|
45 |
+
"phm_rank": 1,
|
46 |
+
"reduction_factor": 8,
|
47 |
+
"residual_before_ln": true,
|
48 |
+
"scaling": 1.0,
|
49 |
+
"shared_W_phm": false,
|
50 |
+
"shared_phm_rule": true,
|
51 |
+
"use_gating": false
|
52 |
+
}
|
53 |
+
]
|
54 |
+
},
|
55 |
+
"hidden_size": 1024,
|
56 |
+
"model_class": "T5ForConditionalGeneration",
|
57 |
+
"model_name": "google/flan-t5-large",
|
58 |
+
"model_type": "t5",
|
59 |
+
"name": "question_answering_union",
|
60 |
+
"version": "3.2.1"
|
61 |
+
}
|
head_config.json
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"config": null,
|
3 |
+
"hidden_size": 1024,
|
4 |
+
"label2id": {
|
5 |
+
"LABEL_0": 0,
|
6 |
+
"LABEL_1": 1
|
7 |
+
},
|
8 |
+
"model_class": "T5ForConditionalGeneration",
|
9 |
+
"model_name": "google/flan-t5-large",
|
10 |
+
"model_type": "t5",
|
11 |
+
"name": null,
|
12 |
+
"num_labels": 2,
|
13 |
+
"version": "3.2.1"
|
14 |
+
}
|
pytorch_adapter.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aedb9c5c5598f396793e9d29e507713381f07bb78ca701dca68621f39749d39e
|
3 |
+
size 102452625
|
pytorch_model_head.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fdb5464bf1c6913a7a4b42eaceb34922625395282f520135121f9e769da254d5
|
3 |
+
size 131597132
|