Datasets:

Modalities:
Tabular
Text
Formats:
json
Languages:
English
Size:
< 1K
ArXiv:
License:
Jitaishik commited on
Commit
0ba5940
·
verified ·
1 Parent(s): 2cd8aa9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -3
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card
2
+
3
+ ## Dataset Summary
4
+
5
+ Graph2Counsel is a synthetic counseling session dataset generated from Client Psychological Graphs (CPGs). The dataset provides the CPG, generated diverse client profiles and dialogues from this CPG as well as counselor strategies corresponding to each CPG collected from the real counseling sessions. Prior synthetic counseling datasets often rely on unstructured or semi-structured text inputs and overlook structural dependencies between a client's cognitive, emotional, and behavioral states, often producing psychologically inconsistent interactions and reducing data realism and quality. So, we generate the Graph2Counsel dataset using a framework for generating synthetic counseling sessions grounded in Client Psychological Graphs (CPGs) that encode relationships among clients’ thoughts, emotions, and behaviors. This datasets shows improved expert evaluation performance over existing synthetic counseling datasets on specificity, counselor competence, authenticity, conversational flow, and safety.
6
+
7
+ ## Dataset Structure
8
+
9
+ Each record contains the following fields:
10
+
11
+ | Field | Type | Description |
12
+ |---|---|---|
13
+ | `patient` | `int` | Patient identifier |
14
+ | `session` | `int` | Session identifier |
15
+ | `variation` | `int` | Index distinguishing multiple synthetic profile/dialogue pairs generated from the same CPG |
16
+ | `cpg` | `dict` | Client Psychological Graph as a list of edges: `{"edges": [[a, b, c], ...]}` |
17
+ | `profile` | `str` | Synthetically generated client profile associated with this variation |
18
+ | `counselor_strategies` | `list[str]` | List of counseling strategies employed in the session |
19
+ | `dialog` | `list[dict]` | Full session dialogue as a list of turns: `[{"speaker": "counselor"/"client", "message": "..."}, ...]` |
20
+
21
+ ## Data Sources
22
+
23
+ - **CPGs**: Derived from real anonymised real counseling sessions. Each CPG encodes structural dependencies between a client's cognitive, emotional, and behavioral states
24
+ - **Client profiles and session dialogues**: Synthetically generated from the CPGs. Multiple variations (`variation` index) are produced per CPG to capture diverse but plausible client presentations and therapeutic trajectories.
25
+ - **Counselor strategies**: Curated per session, reflecting the therapeutic approaches used by the real counselor throughout the dialogue.
26
+
27
+ ## Intended Use
28
+
29
+ This dataset is intended for:
30
+
31
+ - **Fine-tuning LLMs** for mental health counseling dialogue generation
32
+ - Training models to ground therapeutic responses in structured clinical knowledge (CPGs)
33
+ - Studying the alignment between client problem representations, counselor strategy, and dialogue quality
34
+
35
+ ## Usage
36
+
37
+ ```python
38
+ from datasets import load_dataset
39
+
40
+ ds = load_dataset("YOUR_HF_USERNAME/YOUR_DATASET_NAME", token="your_huggingface_token")
41
+ ```
42
+
43
+ ## Citation
44
+
45
+ If you use this dataset in your research, please cite:
46
+
47
+ ```bibtex
48
+ @dataset{PLACEHOLDER,
49
+ author = {AUTHOR(S)},
50
+ title = {DATASET TITLE},
51
+ year = {YEAR},
52
+ publisher = {Hugging Face},
53
+ url = {https://huggingface.co/datasets/YOUR_HF_USERNAME/YOUR_DATASET_NAME}
54
+ }
55
+ ```
56
+ ---
57
+ license: cc-by-sa-4.0
58
+ ---
59
+
60
+
61
+ ## Contact
62
+
63
+ For questions or feedback regarding this dataset, please contact: aishik.mandal@tu-darmstadt.de
64
+
65
+ ## Ethical Considerations
66
+
67
+ - All client profiles and session dialogues are **synthetically generated** and do not correspond to real individuals.
68
+ - The underlying CPGs are derived from real counseling sessions and have been anonymised.
69
+ - This dataset is intended strictly for research purposes. It should not be used to deploy autonomous mental health interventions without appropriate clinical oversight.
70
+ - Models fine-tuned on this dataset should be evaluated carefully before any clinical application.