bbbu801/evocorps-positive-personas
π§βπ€βπ§ EvoCorps Positive Personas Dataset π Dataset Overview The EvoCorps Positive Personas Dataset is a curated collection of positive user persona profiles designed to support research and modeling around constructive online engagement, balanced discourse, and community behavior simulation. Each persona represents an idealized positive actor with attributes such as demographic info, personality traits, engagement preferences, and communicative style. Forβ¦ See the full description on the dataset page: https://huggingface.co/datasets/bbbu801/evocorps-positive-personas.
π§βπ€βπ§ EvoCorps Positive Personas Dataset
π Dataset Overview
The EvoCorps Positive Personas Dataset is a curated collection of positive user persona profiles designed to support research and modeling around constructive online engagement, balanced discourse, and community behavior simulation. Each persona represents an idealized positive actor with attributes such as demographic info, personality traits, engagement preferences, and communicative style.
For each persona, the dataset typically includes:
- Basic attributes (e.g., age, profession, geographic region)
- Psychological and social traits (e.g., tone style, argument approach)
- Content preferences and engagement patterns
- Short narrative descriptions of persona behavior
The dataset is stored in JSON format and contains 200 positive persona profiles suitable as behavior templates or agent traits in social simulation tasks.
π― Use Cases
This dataset can be used for:
- π€ Simulating positive engagement behaviors in multi-agent frameworks
- π§ Training or evaluating models that characterize or generate constructive user profiles
- π Behavioral analysis of pro-social interaction styles on social platforms
- π Baseline or contrast personas in studies of misinformation, polarization, or moderation strategies
It is particularly relevant for systems that require representative profiles of encouraging, reasoned, and community-centric participants in social simulations.
π Project and Paper Links
- π Project Repository (GitHub) https://github.com/ln2146/EvoCorps
- π Associated Paper (arXiv) https://arxiv.org/abs/2602.08529
The EvoCorps project proposes an evolutionary multi-agent framework for depolarizing online discourse, and persona datasets like this help define agent behavior traits for realistic simulation.
π Quick Start
Hereβs a simple Python example using the Hugging Face Datasets library:
from datasets import load_dataset
dataset = load_dataset("loge2146/evocorps-positive-personas")
for persona in dataset["train"]:
print("Name:", persona["name"])
print("Demographics:", persona["demographics"])
print("Personality_traits:", persona["personality_traits"])
print("Background:", persona["background"])
print("Communication_style:", persona["communication_style"])
print("ββ" * 10)π License
This dataset is distributed under the Apache-2.0 License, allowing free use for research and commercial purposes.
