CoolFace
Datasetpublic

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.

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes6downloads
Dataset Card

πŸ§‘β€πŸ€β€πŸ§‘ 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

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:

python
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.