Upload 4 files
Browse files- .gitattributes +1 -0
- config.json +72 -0
- embeddings/keys.txt +3 -0
- embeddings/vectors.pt +3 -0
- pytorch_model.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
embeddings/keys.txt filter=lfs diff=lfs merge=lfs -text
|
config.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"CamembertDualEncoderModel"
|
| 4 |
+
],
|
| 5 |
+
"attention_probs_dropout_prob": 0.1,
|
| 6 |
+
"bos_token_id": 5,
|
| 7 |
+
"classifier_dropout": null,
|
| 8 |
+
"encoder_pretrained_model": "camembert-base",
|
| 9 |
+
"eos_token_id": 6,
|
| 10 |
+
"hidden_act": "gelu",
|
| 11 |
+
"hidden_dropout_prob": 0.1,
|
| 12 |
+
"hidden_size": 768,
|
| 13 |
+
"id2label": {
|
| 14 |
+
"0": "O",
|
| 15 |
+
"1": "B-PERSON",
|
| 16 |
+
"2": "I-PERSON",
|
| 17 |
+
"3": "B-ORG",
|
| 18 |
+
"4": "I-ORG",
|
| 19 |
+
"5": "B-GEOLOC",
|
| 20 |
+
"6": "I-GEOLOC",
|
| 21 |
+
"7": "B-TRANSPORT",
|
| 22 |
+
"8": "I-TRANSPORT",
|
| 23 |
+
"9": "B-EVENT",
|
| 24 |
+
"10": "I-EVENT",
|
| 25 |
+
"11": "B-FACILITY",
|
| 26 |
+
"12": "I-FACILITY",
|
| 27 |
+
"13": "B-RISKNAT",
|
| 28 |
+
"14": "I-RISKNAT",
|
| 29 |
+
"15": "B-DAMAGES",
|
| 30 |
+
"16": "I-DAMAGES",
|
| 31 |
+
"17": "B-OTHER",
|
| 32 |
+
"18": "I-OTHER"
|
| 33 |
+
},
|
| 34 |
+
"initializer_range": 0.02,
|
| 35 |
+
"intermediate_size": 3072,
|
| 36 |
+
"label2id": {
|
| 37 |
+
"B-DAMAGES": 15,
|
| 38 |
+
"B-EVENT": 9,
|
| 39 |
+
"B-FACILITY": 11,
|
| 40 |
+
"B-GEOLOC": 5,
|
| 41 |
+
"B-ORG": 3,
|
| 42 |
+
"B-OTHER": 17,
|
| 43 |
+
"B-PERSON": 1,
|
| 44 |
+
"B-RISKNAT": 13,
|
| 45 |
+
"B-TRANSPORT": 7,
|
| 46 |
+
"I-DAMAGES": 16,
|
| 47 |
+
"I-EVENT": 10,
|
| 48 |
+
"I-FACILITY": 12,
|
| 49 |
+
"I-GEOLOC": 6,
|
| 50 |
+
"I-ORG": 4,
|
| 51 |
+
"I-OTHER": 18,
|
| 52 |
+
"I-PERSON": 2,
|
| 53 |
+
"I-RISKNAT": 14,
|
| 54 |
+
"I-TRANSPORT": 8,
|
| 55 |
+
"O": 0
|
| 56 |
+
},
|
| 57 |
+
"layer_norm_eps": 1e-05,
|
| 58 |
+
"max_position_embeddings": 514,
|
| 59 |
+
"mention_entity_similarity": "dot",
|
| 60 |
+
"model_type": "camembert-dual-encoder",
|
| 61 |
+
"num_attention_heads": 12,
|
| 62 |
+
"num_hidden_layers": 4,
|
| 63 |
+
"output_past": true,
|
| 64 |
+
"output_size": 300,
|
| 65 |
+
"pad_token_id": 1,
|
| 66 |
+
"position_embedding_type": "absolute",
|
| 67 |
+
"torch_dtype": "float32",
|
| 68 |
+
"transformers_version": "4.22.0",
|
| 69 |
+
"type_vocab_size": 1,
|
| 70 |
+
"use_cache": true,
|
| 71 |
+
"vocab_size": 32005
|
| 72 |
+
}
|
embeddings/keys.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:476bc200d52de330672b4488a60b79fbe4df8cc450663bc263a4f7b440ab00d7
|
| 3 |
+
size 36736182
|
embeddings/vectors.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7c0345fca80a869a37363a8e936f584b7faa1242812853e03ac674dbdf8f0b6
|
| 3 |
+
size 2079495147
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83f5798457c0c2d990aaaba0aa90e229d388bebdb5fdf62be9dd70504199cf94
|
| 3 |
+
size 433316565
|