Commit ·
d815a29
1
Parent(s): 1f6cde1
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +96 -0
- merges.txt +0 -0
- pytorch_model.bin +3 -0
- runs/Jun27_14-31-52_193385804fff/events.out.tfevents.1687876317.193385804fff.1946.0 +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +0 -0
- tokenizer_config.json +15 -0
- training_args.bin +3 -0
- vocab.json +0 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "allenai/longformer-base-4096",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"LongformerForSequenceClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_mode": "longformer",
|
| 7 |
+
"attention_probs_dropout_prob": 0.1,
|
| 8 |
+
"attention_window": [
|
| 9 |
+
512,
|
| 10 |
+
512,
|
| 11 |
+
512,
|
| 12 |
+
512,
|
| 13 |
+
512,
|
| 14 |
+
512,
|
| 15 |
+
512,
|
| 16 |
+
512,
|
| 17 |
+
512,
|
| 18 |
+
512,
|
| 19 |
+
512,
|
| 20 |
+
512
|
| 21 |
+
],
|
| 22 |
+
"bos_token_id": 0,
|
| 23 |
+
"eos_token_id": 2,
|
| 24 |
+
"gradient_checkpointing": false,
|
| 25 |
+
"hidden_act": "gelu",
|
| 26 |
+
"hidden_dropout_prob": 0.1,
|
| 27 |
+
"hidden_size": 768,
|
| 28 |
+
"id2label": {
|
| 29 |
+
"0": "text-generation",
|
| 30 |
+
"1": "fill-mask",
|
| 31 |
+
"2": "text-classification",
|
| 32 |
+
"3": "multiple-choice",
|
| 33 |
+
"4": "question-answering",
|
| 34 |
+
"5": "sentence-similarity",
|
| 35 |
+
"6": "token-classification",
|
| 36 |
+
"7": "image-to-text",
|
| 37 |
+
"8": "summarization",
|
| 38 |
+
"9": "text-to-image",
|
| 39 |
+
"10": "text2text-generation",
|
| 40 |
+
"11": "other",
|
| 41 |
+
"12": "text-retrieval",
|
| 42 |
+
"13": "image-classification",
|
| 43 |
+
"14": "translation",
|
| 44 |
+
"15": "automatic-speech-recognition",
|
| 45 |
+
"16": "zero-shot-classification",
|
| 46 |
+
"17": "audio-classification",
|
| 47 |
+
"18": "image-segmentation",
|
| 48 |
+
"19": "conversational",
|
| 49 |
+
"20": "tabular-classification",
|
| 50 |
+
"21": "object-detection",
|
| 51 |
+
"22": "feature-extraction",
|
| 52 |
+
"23": "table-question-answering"
|
| 53 |
+
},
|
| 54 |
+
"ignore_attention_mask": false,
|
| 55 |
+
"initializer_range": 0.02,
|
| 56 |
+
"intermediate_size": 3072,
|
| 57 |
+
"label2id": {
|
| 58 |
+
"audio-classification": 17,
|
| 59 |
+
"automatic-speech-recognition": 15,
|
| 60 |
+
"conversational": 19,
|
| 61 |
+
"feature-extraction": 22,
|
| 62 |
+
"fill-mask": 1,
|
| 63 |
+
"image-classification": 13,
|
| 64 |
+
"image-segmentation": 18,
|
| 65 |
+
"image-to-text": 7,
|
| 66 |
+
"multiple-choice": 3,
|
| 67 |
+
"object-detection": 21,
|
| 68 |
+
"other": 11,
|
| 69 |
+
"question-answering": 4,
|
| 70 |
+
"sentence-similarity": 5,
|
| 71 |
+
"summarization": 8,
|
| 72 |
+
"table-question-answering": 23,
|
| 73 |
+
"tabular-classification": 20,
|
| 74 |
+
"text-classification": 2,
|
| 75 |
+
"text-generation": 0,
|
| 76 |
+
"text-retrieval": 12,
|
| 77 |
+
"text-to-image": 9,
|
| 78 |
+
"text2text-generation": 10,
|
| 79 |
+
"token-classification": 6,
|
| 80 |
+
"translation": 14,
|
| 81 |
+
"zero-shot-classification": 16
|
| 82 |
+
},
|
| 83 |
+
"layer_norm_eps": 1e-05,
|
| 84 |
+
"max_position_embeddings": 4098,
|
| 85 |
+
"model_type": "longformer",
|
| 86 |
+
"num_attention_heads": 12,
|
| 87 |
+
"num_hidden_layers": 12,
|
| 88 |
+
"onnx_export": false,
|
| 89 |
+
"pad_token_id": 1,
|
| 90 |
+
"problem_type": "multi_label_classification",
|
| 91 |
+
"sep_token_id": 2,
|
| 92 |
+
"torch_dtype": "float32",
|
| 93 |
+
"transformers_version": "4.30.2",
|
| 94 |
+
"type_vocab_size": 1,
|
| 95 |
+
"vocab_size": 50265
|
| 96 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52e73d4c5d703c3c1d3dbdd01e77e645e57d26ce47b2ef0494b21b3238cc9816
|
| 3 |
+
size 594806929
|
runs/Jun27_14-31-52_193385804fff/events.out.tfevents.1687876317.193385804fff.1946.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51e035d7c34a4abfbfd1aace8995c055407b0a6e1407d4d850fddf36641d2744
|
| 3 |
+
size 6206
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "<s>",
|
| 3 |
+
"cls_token": "<s>",
|
| 4 |
+
"eos_token": "</s>",
|
| 5 |
+
"mask_token": {
|
| 6 |
+
"content": "<mask>",
|
| 7 |
+
"lstrip": true,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false
|
| 11 |
+
},
|
| 12 |
+
"pad_token": "<pad>",
|
| 13 |
+
"sep_token": "</s>",
|
| 14 |
+
"unk_token": "<unk>"
|
| 15 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"bos_token": "<s>",
|
| 4 |
+
"clean_up_tokenization_spaces": true,
|
| 5 |
+
"cls_token": "<s>",
|
| 6 |
+
"eos_token": "</s>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"mask_token": "<mask>",
|
| 9 |
+
"model_max_length": 4096,
|
| 10 |
+
"pad_token": "<pad>",
|
| 11 |
+
"sep_token": "</s>",
|
| 12 |
+
"tokenizer_class": "LongformerTokenizer",
|
| 13 |
+
"trim_offsets": true,
|
| 14 |
+
"unk_token": "<unk>"
|
| 15 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6d10ee89fda81e9be235e963ae87e2712203d4d8f7f1e6bdd8189d8d69b8fff1
|
| 3 |
+
size 4027
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|