Ananthusajeev190 commited on
Commit
1e33fb0
·
verified ·
1 Parent(s): b731bd9

Upload 6 files

Browse files
README.md CHANGED
@@ -1,3 +1,15 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Hacking-Tools Safetensors Dataset
3
+
4
+ Purpose:
5
+ - Defensive AI training
6
+ - Cybersecurity awareness
7
+ - Threat pattern recognition
8
+
9
+ Contents:
10
+ - hacking_tools.safetensors : Tokenized dataset
11
+ - config.json : Model configuration
12
+ - tokenizer + vocab files
13
+
14
+ Warning:
15
+ This dataset is READ-ONLY and must not be used for exploitation.
config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "bert",
3
+ "hidden_size": 768,
4
+ "num_attention_heads": 12,
5
+ "num_hidden_layers": 12,
6
+ "max_position_embeddings": 512,
7
+ "vocab_size": 30522,
8
+ "architectures": [
9
+ "BertModel"
10
+ ],
11
+ "torch_dtype": "float32"
12
+ }
hacking_tools.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa81f36f1c4f1439bfc1de983460a3656fc1ccde889fe3492eb20ee7c0b5987e
3
+ size 9269416
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "unk_token": "[UNK]",
3
+ "sep_token": "[SEP]",
4
+ "pad_token": "[PAD]",
5
+ "cls_token": "[CLS]",
6
+ "mask_token": "[MASK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ {
2
+ "do_lower_case": true,
3
+ "model_max_length": 512,
4
+ "tokenizer_class": "BertTokenizerFast"
5
+ }