CodeferSystem commited on
Commit
b553d7c
·
verified ·
1 Parent(s): f53e55b

Update README.md

Browse files

Description added.

Files changed (1) hide show
  1. README.md +39 -3
README.md CHANGED
@@ -1,3 +1,39 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ language:
6
+ - en
7
+ tags:
8
+ - cybersecurity
9
+ - passwords
10
+ - text-generation
11
+ pretty_name: Hacker Style Password Generation Dataset
12
+ ---
13
+
14
+ # Hacker Style Password Generation Dataset
15
+
16
+ ## Dataset Description
17
+
18
+ This dataset contains 20,000 instruction-response pairs designed to train and evaluate language models for generating strong, "hacker-style" passwords. The data simulates a user requesting a secure password and the model providing a complex, randomly generated string.
19
+
20
+ ### Supported Tasks
21
+
22
+ * **Text Generation:** The primary task is conditional text generation, where the model takes a natural language instruction (query) and generates a corresponding password (response).
23
+
24
+ ## Data Structure
25
+
26
+ The dataset is in CSV format with two columns:
27
+
28
+ * `Query`: A natural language instruction requesting the generation of a password (e.g., "Could you craft a hacker password").
29
+ * `Response`: The corresponding generated password, prefixed by a consistent phrase (e.g., "Here’s your hacker password: Sg~o^Z#sDK0$?q3").
30
+
31
+ ### Data Instance
32
+
33
+ A typical example from the dataset looks like this:
34
+
35
+ ```python
36
+ {
37
+ 'Query': 'Could you craft a hacker password',
38
+ 'Response': 'Here’s your hacker password: Sg~o^Z#sDK0$?q3'
39
+ }