CPCD-Chat-8B
CPCD-Chat-8B is a Chinese long-horizon campus psychological counseling dialogue model developed as part of the Psy-Chronicle project.
Model Description
CPCD-Chat-8B is fine-tuned from Qwen3-8B-Base on CPCD, a synthetic Chinese long-horizon campus psychological counseling dialogue dataset.
The model is designed for research on:
- long-horizon psychological counseling dialogue generation;
- campus mental-health support scenarios;
- cross-session counseling memory;
- student stress-event evolution;
- temporal-causal reasoning in counseling conversations.
Dataset
The model is trained on CPCD, a Chinese long-horizon dialogue dataset for college psychological counseling scenarios.
CPCD is generated by the Psy-Chronicle framework, which constructs:
- structured student profiles;
- semester-level temporal stress event graphs;
- cross-session counseling dialogues;
- structured memory summaries.
Dataset statistics:
| Component | Value |
|---|
| Student profiles | 100 |
| Counseling dialogue units | 90,000 |
| Chinese characters | ~11.45M |
| Scenario | Chinese campus psychological counseling |
Psy-Chronicle Framework
Psy-Chronicle synthesizes long-horizon counseling trajectories through a structured pipeline:
1Student Profile
2 ↓
3Temporal Stress Event Graph
4 ↓
5Cross-session Counseling Simulation
6 ↓
7Structured Memory Update
8 ↓
9CPCD Dataset / CPCD-Bench
Unlike single-turn or short multi-turn counseling datasets, Psy-Chronicle focuses on how college students' psychological distress accumulates, interacts, and evolves across a semester.
CPCD-Bench
CPCD-Bench evaluates long-horizon campus counseling capabilities from three dimensions:
| Task | Description |
|---|
| Session-level Response | Generate appropriate counselor responses using current context and historical memory |
| Memory Recall | Recall factual information from long counseling histories |
| Temporal-Causal Reasoning | Analyze chronological event development and causal relationships |
Usage
1from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model_name = "EdwinUstb/CPCD-Chat-8B"
5
6tokenizer = AutoTokenizer.from_pretrained(
7 model_name,
8 trust_remote_code=True
9)
10
11model = AutoModelForCausalLM.from_pretrained(
12 model_name,
13 torch_dtype=torch.bfloat16,
14 device_map="auto",
15 trust_remote_code=True
16)
17
18messages = [
19 {
20 "role": "user",
21 "content": "我最近因为学业和家庭压力感到很焦虑,不知道该怎么办。"
22 }
23]
24
25text = tokenizer.apply_chat_template(
26 messages,
27 tokenize=False,
28 add_generation_prompt=True
29)
30
31inputs = tokenizer([text], return_tensors="pt").to(model.device)
32
33outputs = model.generate(
34 **inputs,
35 max_new_tokens=512,
36 temperature=0.7,
37 top_p=0.9
38)
39
40response = tokenizer.decode(
41 outputs[0][inputs.input_ids.shape[-1]:],
42 skip_special_tokens=True
43)
44
45print(response)
Intended Use
This model is intended for research on:
- psychological counseling dialogue modeling;
- long-horizon dialogue generation;
- cross-session memory modeling;
- campus mental-health support datasets;
- temporal-causal reasoning in counseling scenarios.
Limitations
CPCD-Chat-8B is trained on synthetic counseling data. It may generate responses that are incomplete, overly generic, or inappropriate in high-risk mental-health situations.
The model should not be used as a substitute for professional psychological counseling, clinical diagnosis, or treatment.
Ethical Considerations
This model is released for research and evaluation purposes only.
Users should be aware that:
- the training data are synthetic and do not represent real counseling records;
- the model may fail to detect or properly handle crisis situations;
- any deployment-oriented use should include professional review, safety monitoring, and clear user-facing disclaimers.
Citation
If you find this model or project useful, please cite:
1@misc{gou2026psychronicle,
2 title = {Psy-Chronicle: A Structured Pipeline for Synthesizing Long-Horizon Campus Psychological Counseling Dialogues},
3 author = {Chaogui Gou and Jiarui Liang},
4 year = {2026},
5 note = {Preprint},
6 url = {https://github.com/EdwinUSTB/Psy-Chronicle}
7}
License
This model is released under the Apache License 2.0.