Datasets:

Modalities:
Tabular
Text
Formats:
json
Languages:
English
Size:
< 1K
ArXiv:
License:
File size: 4,456 Bytes
b90b192
6dcae09
b90b192
 
 
 
 
0ba5940
 
ae04f6c
 
 
 
 
 
0ba5940
 
 
 
224962f
 
 
0ba5940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6dcae09
0ba5940
 
 
 
 
 
b90b192
0ba5940
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
df34c54
0ba5940
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
license: cc-by-sa-4.0
language:
- en
size_categories:
- n<1K
---
# Dataset Card

Paper: 

Language(s) (NLP): English

license: cc-by-sa-4.0

## Dataset Summary

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.

![Graph2Counsel Pipeline](Graph2Counsel_Diagram.png)
*From a real therapy transcript, we extract a Client Psychological Graph (CPG) (using the method from [Ong et al., 2025](https://arxiv.org/abs/2512.05836)), whose nodes represent psychological processes (e.g., fear of judgment) and edges capture their relationships (e.g., excites or inhibits). From the same transcript, we also extract counselor strategies (e.g., reframing, empathy building). We then use the CPG to generate diverse client profiles, and finally combine the profile, CPG, and counselor strategies to generate synthetic counseling dialogues.*

## Dataset Structure

Each record contains the following fields:

| Field | Type | Description |
|---|---|---|
| `patient` | `int` | Patient identifier |
| `session` | `int` | Session identifier |
| `variation` | `int` | Index distinguishing multiple synthetic profile/dialogue pairs generated from the same CPG |
| `cpg` | `dict` | Client Psychological Graph as a list of edges: `{"edges": [[a, b, c], ...]}` |
| `profile` | `str` | Synthetically generated client profile associated with this variation |
| `counselor_strategies` | `list[str]` | List of counseling strategies employed in the session |
| `dialog` | `list[dict]` | Full session dialogue as a list of turns: `[{"speaker": "counselor"/"client", "message": "..."}, ...]` |

## Data Sources

- **CPGs**: Derived from real anonymised real counseling sessions. Each CPG encodes structural dependencies between a client's cognitive, emotional, and behavioral states
- **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.
- **Counselor strategies**: Curated per session, reflecting the therapeutic approaches used by the real counselor throughout the dialogue.

## Intended Use

This dataset is intended for:

- **Fine-tuning LLMs** for mental health counseling dialogue generation
- Training models to ground therapeutic responses in structured clinical knowledge (CPGs)
- Studying the alignment between client psychological graphs, counselor strategy, and dialogue quality

## Usage

```python
from datasets import load_dataset

ds = load_dataset("UKPLab/Graph2Counsel")
```

## Citation

If you use this dataset in your research, please cite:

```bibtex
@dataset{PLACEHOLDER,
  author    = {AUTHOR(S)},
  title     = {DATASET TITLE},
  year      = {YEAR},
  publisher = {Hugging Face},
  url       = {https://huggingface.co/datasets/YOUR_HF_USERNAME/YOUR_DATASET_NAME}
}
```

## Contact

For questions or feedback regarding this dataset, please contact: [aishik.mandal@tu-darmstadt.de](mailto:aishik.mandal@tu-darmstadt.de)

## Ethical Considerations

- All client profiles and session dialogues are **synthetically generated** and do not correspond to real individuals.
- The underlying CPGs are derived from real counseling sessions and have been anonymised.
- This dataset is intended strictly for research purposes. It should not be used to deploy autonomous mental health interventions without appropriate clinical oversight.
- Models fine-tuned on this dataset should be evaluated carefully before any clinical application.