Upload folder using huggingface_hub
Browse files- config.json +63 -0
- labels.json +1 -0
- model.safetensors +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +17 -0
- training_args.bin +3 -0
config.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_cross_attention": false,
|
| 3 |
+
"architectures": [
|
| 4 |
+
"RobertaForSequenceClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"bos_token_id": 0,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"dtype": "float32",
|
| 10 |
+
"eos_token_id": 2,
|
| 11 |
+
"gradient_checkpointing": false,
|
| 12 |
+
"hidden_act": "gelu",
|
| 13 |
+
"hidden_dropout_prob": 0.1,
|
| 14 |
+
"hidden_size": 768,
|
| 15 |
+
"id2label": {
|
| 16 |
+
"0": "anthropic_key",
|
| 17 |
+
"1": "aws_access_key",
|
| 18 |
+
"2": "aws_secret_key",
|
| 19 |
+
"3": "database_url",
|
| 20 |
+
"4": "firebase_key",
|
| 21 |
+
"5": "github_token",
|
| 22 |
+
"6": "groq_key",
|
| 23 |
+
"7": "huggingface_token",
|
| 24 |
+
"8": "jwt_token",
|
| 25 |
+
"9": "openai_key",
|
| 26 |
+
"10": "safe",
|
| 27 |
+
"11": "sendgrid_key",
|
| 28 |
+
"12": "slack_token",
|
| 29 |
+
"13": "stripe_key"
|
| 30 |
+
},
|
| 31 |
+
"initializer_range": 0.02,
|
| 32 |
+
"intermediate_size": 3072,
|
| 33 |
+
"is_decoder": false,
|
| 34 |
+
"label2id": {
|
| 35 |
+
"anthropic_key": 0,
|
| 36 |
+
"aws_access_key": 1,
|
| 37 |
+
"aws_secret_key": 2,
|
| 38 |
+
"database_url": 3,
|
| 39 |
+
"firebase_key": 4,
|
| 40 |
+
"github_token": 5,
|
| 41 |
+
"groq_key": 6,
|
| 42 |
+
"huggingface_token": 7,
|
| 43 |
+
"jwt_token": 8,
|
| 44 |
+
"openai_key": 9,
|
| 45 |
+
"safe": 10,
|
| 46 |
+
"sendgrid_key": 11,
|
| 47 |
+
"slack_token": 12,
|
| 48 |
+
"stripe_key": 13
|
| 49 |
+
},
|
| 50 |
+
"layer_norm_eps": 1e-05,
|
| 51 |
+
"max_position_embeddings": 514,
|
| 52 |
+
"model_type": "roberta",
|
| 53 |
+
"num_attention_heads": 12,
|
| 54 |
+
"num_hidden_layers": 12,
|
| 55 |
+
"pad_token_id": 1,
|
| 56 |
+
"position_embedding_type": "absolute",
|
| 57 |
+
"problem_type": "single_label_classification",
|
| 58 |
+
"tie_word_embeddings": true,
|
| 59 |
+
"transformers_version": "5.5.4",
|
| 60 |
+
"type_vocab_size": 1,
|
| 61 |
+
"use_cache": false,
|
| 62 |
+
"vocab_size": 50265
|
| 63 |
+
}
|
labels.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"label2id": {"anthropic_key": 0, "aws_access_key": 1, "aws_secret_key": 2, "database_url": 3, "firebase_key": 4, "github_token": 5, "groq_key": 6, "huggingface_token": 7, "jwt_token": 8, "openai_key": 9, "safe": 10, "sendgrid_key": 11, "slack_token": 12, "stripe_key": 13}, "id2label": {"0": "anthropic_key", "1": "aws_access_key", "2": "aws_secret_key", "3": "database_url", "4": "firebase_key", "5": "github_token", "6": "groq_key", "7": "huggingface_token", "8": "jwt_token", "9": "openai_key", "10": "safe", "11": "sendgrid_key", "12": "slack_token", "13": "stripe_key"}}
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1bb32cd23fad9f4b2e1e9153584bffcca9e590400211202702b230521343a4c8
|
| 3 |
+
size 498649712
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": "<s>",
|
| 5 |
+
"cls_token": "<s>",
|
| 6 |
+
"eos_token": "</s>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"is_local": false,
|
| 9 |
+
"mask_token": "<mask>",
|
| 10 |
+
"max_len": 512,
|
| 11 |
+
"model_max_length": 512,
|
| 12 |
+
"pad_token": "<pad>",
|
| 13 |
+
"sep_token": "</s>",
|
| 14 |
+
"tokenizer_class": "RobertaTokenizer",
|
| 15 |
+
"trim_offsets": true,
|
| 16 |
+
"unk_token": "<unk>"
|
| 17 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb5dd395353e955d8d74e33d4efa0a8f1a9f379088e8727e8bfb45cf1a94fd5f
|
| 3 |
+
size 5201
|