LysandreJik
commited on
Commit
•
ad6f4fd
1
Parent(s):
ea6f71d
Initial release
Browse files- config.json +52 -0
- pytorch_model.bin +3 -0
- special_tokens_map.json +1 -0
- tokenizer_config.json +1 -0
- vocab.txt +0 -0
config.json
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "None",
|
3 |
+
"aggregation_loss_weight": 1.0,
|
4 |
+
"aggregation_temperature": 1.0,
|
5 |
+
"allow_empty_column_selection": false,
|
6 |
+
"answer_loss_cutoff": 0.664694,
|
7 |
+
"answer_loss_importance": 1.0,
|
8 |
+
"architectures": [
|
9 |
+
"TapasForQuestionAnswering"
|
10 |
+
],
|
11 |
+
"attention_probs_dropout_prob": 0.1,
|
12 |
+
"average_approximation_function": "ratio",
|
13 |
+
"average_logits_per_cell": false,
|
14 |
+
"cell_selection_preference": 0.207951,
|
15 |
+
"disable_per_token_loss": false,
|
16 |
+
"gradient_checkpointing": false,
|
17 |
+
"hidden_act": "gelu",
|
18 |
+
"hidden_dropout_prob": 0.1,
|
19 |
+
"hidden_size": 768,
|
20 |
+
"huber_loss_delta": 0.121194,
|
21 |
+
"init_cell_selection_weights_to_zero": true,
|
22 |
+
"initializer_range": 0.02,
|
23 |
+
"intermediate_size": 3072,
|
24 |
+
"layer_norm_eps": 1e-12,
|
25 |
+
"max_num_columns": 32,
|
26 |
+
"max_num_rows": 64,
|
27 |
+
"max_position_embeddings": 1024,
|
28 |
+
"model_type": "tapas",
|
29 |
+
"num_aggregation_labels": 4,
|
30 |
+
"num_attention_heads": 12,
|
31 |
+
"num_hidden_layers": 12,
|
32 |
+
"pad_token_id": 0,
|
33 |
+
"positive_label_weight": 10.0,
|
34 |
+
"reset_position_index_per_cell": true,
|
35 |
+
"select_one_column": true,
|
36 |
+
"span_prediction": "none",
|
37 |
+
"temperature": 0.0352513,
|
38 |
+
"type_vocab_sizes": [
|
39 |
+
3,
|
40 |
+
256,
|
41 |
+
256,
|
42 |
+
2,
|
43 |
+
256,
|
44 |
+
256,
|
45 |
+
10
|
46 |
+
],
|
47 |
+
"use_answer_as_supervision": true,
|
48 |
+
"use_gumbel_for_aggregation": false,
|
49 |
+
"use_gumbel_for_cells": false,
|
50 |
+
"use_normalized_answer_loss": false,
|
51 |
+
"vocab_size": 30522
|
52 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:83911bd9bb4bf2fb9280a6fb1dc68eeaeb619127c3cf0cdcc7f8d9704055dbb8
|
3 |
+
size 442793132
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": true, "do_basic_tokenize": true, "never_split": null, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512}
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|