Zeezhu commited on
Commit
c09cb54
·
verified ·
1 Parent(s): 4ba58ca

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -20
README.md CHANGED
@@ -1,30 +1,35 @@
1
  ---
2
- pretty_name: NIST CSF 2.0 Q&A (Sample)
 
 
3
  tags:
4
- - nist
5
- - cybersecurity
6
  - grc
7
- - question-answering
 
 
8
  task_categories:
9
  - text-generation
10
- license: cc-by-4.0
11
- language:
12
- - en
 
 
 
13
  ---
14
 
15
- # NIST CSF 2.0 Q&A (Sample)
16
- Small starter dataset derived from public NIST CSF 2.0 materials. Each row is a JSON object with fields:
17
- - `question`: user question
18
- - `answer`: reference-style answer
19
-
20
- ## Format
21
- JSONL — one object per line.
22
 
23
- ## Intended use
24
- Bootstrapping GRC assistants. Not authoritative; verify against official sources.
25
 
26
- ## Citation / Sources
27
- Link to original public sources you used.
 
 
 
28
 
29
- ## Limitations
30
- May omit context; verify before production use.
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
  tags:
6
+ - nist-csf
 
7
  - grc
8
+ - cybersecurity
9
+ - policy
10
+ - qna
11
  task_categories:
12
  - text-generation
13
+ pretty_name: GRC NIST CSF 2.0 QA (v1)
14
+ configs:
15
+ - config_name: alpaca
16
+ data_files: nist_csf2_qa_alpaca.jsonl
17
+ - config_name: chatml
18
+ data_files: nist_csf2_qa_chat.jsonl
19
  ---
20
 
21
+ # GRC NIST CSF 2.0 QA (v1)
 
 
 
 
 
 
22
 
23
+ This dataset contains two JSONL files for training/evaluating LLMs on Governance, Risk & Compliance focused on **NIST CSF 2.0**.
 
24
 
25
+ ## Files
26
+ - **nist_csf2_qa_alpaca.jsonl** Alpaca format:
27
+ - `instruction`, `input` (optional), `output`
28
+ - **nist_csf2_qa_chat.jsonl** — ChatML-style turns:
29
+ - `messages`: list of `{role, content}`
30
 
31
+ ## Example: Load with `datasets`
32
+ ```python
33
+ from datasets import load_dataset
34
+ ds = load_dataset("USERNAME/grc-nist-csf2-qa-v1") # replace USERNAME
35
+ print(ds)