CoolFace
Datasetpublic

Jdevver/enneagram-classification-dataset

Enneagram Classification Dataset A curated and GPT-assisted dataset of emotionally and spiritually expressive texts labeled by Enneagram personality types (Types 1 through 9). This dataset was created to train and evaluate language models in the task of Enneagram-style psychological/spiritual classification. It is formatted specifically for fine-tuning OpenAI's gpt-3.5-turbo using the Chat Completions API format. ๐Ÿ“‚ Dataset Structure Each sample includes aโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/Jdevver/enneagram-classification-dataset.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes13downloads
Dataset Card

Enneagram Classification Dataset

A curated and GPT-assisted dataset of emotionally and spiritually expressive texts labeled by Enneagram personality types (Types 1 through 9). This dataset was created to train and evaluate language models in the task of Enneagram-style psychological/spiritual classification.

It is formatted specifically for fine-tuning OpenAI's `gpt-3.5-turbo` using the Chat Completions API format.


๐Ÿ“‚ Dataset Structure

Each sample includes a messages array representing a conversation between a "user" and an "assistant", where the assistant responds with the correct Enneagram Type based on the tone, traits, and spiritual content of the prompt.

Example:

json
{
  "messages": [
    {
      "role": "user",
      "content": "Blessed are the peacemakers, for they shall be called the children of God."
    },
    {
      "role": "assistant",
      "content": "9"
    }
  ]
}