Factor stringclasses 316
values | Adjective stringlengths 3 81 | Synonym stringlengths 2 41 ⌀ | Verb stringlengths 2 37 | Noun stringlengths 2 40 | model stringclasses 44
values | category stringclasses 8
values | embedding stringlengths 33k 34.7k |
|---|---|---|---|---|---|---|---|
Approach Motivation | Desire for Success | Driven | Drive | Drive | AAM | Motivational | ["Desire for Success", "Driven", "Drive", "Drive", "[0.007162765599787235, -0.017903601750731468, -0.023164689540863037, -0.01627359166741371, 0.037079405039548874, -0.003730469150468707, 0.022541839629411697, 0.0653064027428627, -0.020991342142224312, -0.012503365986049175, 0.025232018902897835, 0.018115634098649025, ... |
Approach Motivation | Desire for Success | Passionate | Passion | Passion | AAM | Motivational | ["Desire for Success", "Passionate", "Passion", "Passion", "[0.023113567382097244, -0.034825339913368225, -0.026577234268188477, -0.00505735632032156, 0.005272993352264166, -0.012520411051809788, 0.006570183206349611, 0.039084166288375854, -0.025943800806999207, -0.011967841535806656, 0.038113802671432495, -0.005053987... |
Approach Motivation | Desire for Success | Focused | Focus | Focus | AAM | Motivational | ["Desire for Success", "Focused", "Focus", "Focus", "[0.01776663027703762, -0.03141942620277405, -0.02126339077949524, 0.014604118652641773, -0.012335081584751606, -0.012148672714829445, 0.006289670243859291, 0.06900960206985474, -0.01840941794216633, -0.002365455962717533, 0.019579289481043816, 0.02013208717107773, -0... |
Approach Motivation | Desire for Success | High-achieving | Achieve | Achievement | AAM | Motivational | ["Desire for Success", "High-achieving", "Achieve", "Achievement", "[0.02328231930732727, -0.040888648480176926, -0.027680538594722748, 0.006587241776287556, 0.024654239416122437, 0.006422476842999458, 0.0307471863925457, 0.06326980143785477, -0.03768749535083771, -0.01697416789829731, 0.022354254499077797, 0.003977900... |
Approach Motivation | Optimism | Upbeat | Uplift | Optimism | AAM | Motivational | ["Optimism", "Upbeat", "Uplift", "Optimism", "[0.009187254123389721, -0.04055647552013397, -0.025199729949235916, 0.025947118178009987, -0.016484880819916725, -0.00621532229706645, 0.0063422373495996, 0.03666440770030022, -0.02635606750845909, -0.004519593436270952, 0.03246210142970085, -0.013981830328702927, -0.022731... |
Approach Motivation | Optimism | Cheerful | Cheer | Cheerfulness | AAM | Motivational | "[\"Optimism\", \"Cheerful\", \"Cheer\", \"Cheerfulness\", \"[0.03207950294017792, -0.05522061511874(...TRUNCATED) |
Approach Motivation | Optimism | Energetic | Energize | Energy | AAM | Motivational | "[\"Optimism\", \"Energetic\", \"Energize\", \"Energy\", \"[0.01392847578972578, -0.0202886369079351(...TRUNCATED) |
Approach Motivation | Optimism | Optimistic | Hope | Hopefulness | AAM | Motivational | "[\"Optimism\", \"Optimistic\", \"Hope\", \"Hopefulness\", \"[0.011437511071562767, -0.0548166185617(...TRUNCATED) |
Approach Motivation | Challenge-seeking | Daring | Dare | Daring | AAM | Motivational | "[\"Challenge-seeking\", \"Daring\", \"Dare\", \"Daring\", \"[0.027376094833016396, -0.0280282441526(...TRUNCATED) |
Approach Motivation | Challenge-seeking | Inquisitive | Inquire | Inquiry | AAM | Motivational | "[\"Challenge-seeking\", \"Inquisitive\", \"Inquire\", \"Inquiry\", \"[0.010010121390223503, -0.0370(...TRUNCATED) |
End of preview. Expand in Data Studio
Personality Atlas — 3072-dim Embeddings and Classifiers
Upgraded embeddings and retrained Random Forest classifiers for the 44-model personality atlas described in:
Raetano, J., Gregor, J., & Tamang, S. (2026). A Survey and Computational Atlas of Personality Models. ACM Transactions on Intelligent Systems and Technology (TIST). Under review.
Contents
| Directory | Files | Description | Size |
|---|---|---|---|
Embeddings_3072/ |
44 CSVs | OpenAI text-embedding-3-large (3072-dim) embeddings for all 6,694 trait rows |
~440 MB |
models_3072/ |
88 pkl files | Retrained scikit-learn RF classifiers + label encoders for all 44 models | ~107 MB |
Usage
from huggingface_hub import hf_hub_download
import pandas as pd
import joblib
import ast
import numpy as np
# Download a single model's assets
slug = "ocean"
emb_path = hf_hub_download("Wildertrek/personality-atlas-3072", f"Embeddings_3072/{slug}_embeddings.csv", repo_type="dataset")
model_path = hf_hub_download("Wildertrek/personality-atlas-3072", f"models_3072/{slug}_rf_model.pkl", repo_type="dataset")
enc_path = hf_hub_download("Wildertrek/personality-atlas-3072", f"models_3072/{slug}_label_encoder.pkl", repo_type="dataset")
emb_df = pd.read_csv(emb_path)
X = np.array([ast.literal_eval(e) for e in emb_df["Embedding"]])
model = joblib.load(model_path)
encoder = joblib.load(enc_path)
predictions = encoder.inverse_transform(model.predict(X))
print(f"{slug.upper()}: {len(X)} traits, accuracy = {(predictions == pd.read_csv(f'atlas/datasets/{slug}.csv')['Factor'].values).mean():.1%}")
Relationship to Main Repository
The 1536-dim assets (default) are in the main GitHub repository: github.com/Wildertrek/survey
The 3072-dim assets here are the upgraded versions from Experiment 2 (RQ7: embedding dimensionality upgrade). They improve mean accuracy from 58.7% to 63.8% (+5.1pp) across all 44 models.
Validation
# Clone the main repo and validate 3072-dim assets
git clone https://github.com/Wildertrek/survey.git
cd survey
python scripts/validate.py --all --dim 3072
License
MIT — same as the main repository.
- Downloads last month
- 15