calpt commited on
Commit
da6aca7
·
verified ·
1 Parent(s): 74cc960

Add adapter bert-base-multilingual-uncased-hinglish-sentiment version 1

Browse files
README.md ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - adapterhub:sentiment/hinglish-twitter-sentiment
4
+ - text-classification
5
+ - bert
6
+ - adapter-transformers
7
+ license: "apache-2.0"
8
+ ---
9
+
10
+ # Adapter `bert-base-multilingual-uncased-hinglish-sentiment` for bert-base-multilingual-uncased
11
+
12
+ **Note: This adapter was not trained by the AdapterHub team, but by these author(s): Meghana Bhange, Nirant K.
13
+ See author details below.**
14
+
15
+ Adapter for Hinglish Sentiment Analysis, based on SemEval 2020 Task 9
16
+
17
+ **This adapter was created for usage with the [Adapters](https://github.com/Adapter-Hub/adapters) library.**
18
+
19
+ ## Usage
20
+
21
+ First, install `adapters`:
22
+
23
+ ```
24
+ pip install -U adapters
25
+ ```
26
+
27
+ Now, the adapter can be loaded and activated like this:
28
+
29
+ ```python
30
+ from adapters import AutoAdapterModel
31
+
32
+ model = AutoAdapterModel.from_pretrained("bert-base-multilingual-uncased")
33
+ adapter_name = model.load_adapter("AdapterHub/bert-base-multilingual-uncased-hinglish-sentiment")
34
+ model.set_active_adapters(adapter_name)
35
+ ```
36
+
37
+ ## Architecture & Training
38
+
39
+ - Adapter architecture: pfeiffer
40
+ - Prediction head: classification
41
+ - Dataset: [Hinglish Sentiment](https://ritual-uh.github.io/sentimix2020/hinglish_res)
42
+
43
+ ## Author Information
44
+
45
+ - Author name(s): Meghana Bhange, Nirant K
46
+ - Author email: hinglish@nirantk.com
47
+ - Author links: [Website](https://github.com/NirantK), [GitHub](https://github.com/NirantK), [Twitter](https://twitter.com/@NirantK)
48
+
49
+
50
+
51
+ ## Citation
52
+
53
+ ```bibtex
54
+ @article{Hinglish,
55
+ title={HinglishNLP: Fine-tuned Language Models for Hinglish Sentiment Detection},
56
+ author={Meghana Bhange,
57
+ Nirant Kasliwal,
58
+ journal={ArXiv},
59
+ year={2020}
60
+ }
61
+
62
+ ```
63
+
64
+ *This adapter has been auto-imported from https://github.com/Adapter-Hub/Hub/blob/master/adapters/nirantk/bert-base-multilingual-uncased-hinglish-sentiment.yaml*.
adapter_config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "adapter_residual_before_ln": false,
4
+ "cross_adapter": false,
5
+ "dropout": 0.0,
6
+ "factorized_phm_W": true,
7
+ "factorized_phm_rule": false,
8
+ "hypercomplex_nonlinearity": "glorot-uniform",
9
+ "init_weights": "bert",
10
+ "inv_adapter": null,
11
+ "inv_adapter_reduction_factor": null,
12
+ "is_parallel": false,
13
+ "learn_phm": true,
14
+ "leave_out": [],
15
+ "ln_after": false,
16
+ "ln_before": false,
17
+ "mh_adapter": false,
18
+ "non_linearity": "relu",
19
+ "original_ln_after": true,
20
+ "original_ln_before": true,
21
+ "output_adapter": true,
22
+ "phm_bias": true,
23
+ "phm_c_init": "normal",
24
+ "phm_dim": 4,
25
+ "phm_init_range": 0.0001,
26
+ "phm_layer": false,
27
+ "phm_rank": 1,
28
+ "reduction_factor": 16,
29
+ "residual_before_ln": true,
30
+ "scaling": 1.0,
31
+ "shared_W_phm": false,
32
+ "shared_phm_rule": true,
33
+ "use_gating": false
34
+ },
35
+ "hidden_size": 768,
36
+ "model_class": "BertAdapterModel",
37
+ "model_name": "bert-base-multilingual-uncased",
38
+ "model_type": "bert",
39
+ "name": "hinglish",
40
+ "version": "0.2.0"
41
+ }
head_config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "config": {
3
+ "activation_function": "tanh",
4
+ "bias": true,
5
+ "dropout_prob": null,
6
+ "head_type": "classification",
7
+ "label2id": {
8
+ "LABEL_0": 0,
9
+ "LABEL_1": 1,
10
+ "LABEL_2": 2
11
+ },
12
+ "layers": 2,
13
+ "num_labels": 3,
14
+ "use_pooler": false
15
+ },
16
+ "hidden_size": 768,
17
+ "model_class": "BertAdapterModel",
18
+ "model_name": "bert-base-multilingual-uncased",
19
+ "model_type": "bert",
20
+ "name": "hinglish",
21
+ "version": "0.2.0"
22
+ }
pytorch_adapter.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:684c5fea3310692dc8ef8a665c0b1adbd943ee110bc8ff1bf2667b870e19f6ad
3
+ size 3594918
pytorch_model_head.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b3cd45b5f4b76f308a289163c5ccb15f479f5bd53e37764f1198360895d52b
3
+ size 2373736