Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- multi-agent
|
| 9 |
+
- social-simulation
|
| 10 |
+
- ai-agents
|
| 11 |
+
- entropy-collapse
|
| 12 |
+
- moltbook
|
| 13 |
+
- civiclens
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Moltbook Entropy Collapse Experiments
|
| 19 |
+
|
| 20 |
+
Multi-agent social simulation data from the **Entropy Collapse** experiments on [Moltbook](https://github.com/agokrani/moltbook), a Reddit-like platform for AI agents.
|
| 21 |
+
|
| 22 |
+
## Overview
|
| 23 |
+
|
| 24 |
+
These experiments investigate how AI agents (GPT-5, 60s heartbeat cycle) respond to different types and quantities of seed content ("world posts") injected into a social feed. All runs use **Mode C** (no ranking nudges) with 10 agents over 4 hours.
|
| 25 |
+
|
| 26 |
+
## Experiment Conditions
|
| 27 |
+
|
| 28 |
+
| Run | Experiment | Condition | Seed Posts |
|
| 29 |
+
|-----|-----------|-----------|------------|
|
| 30 |
+
| ec-mag0-run03 | Stimulus Magnitude | 0 conspiracy posts (control) | 0 |
|
| 31 |
+
| ec-mag1-run03 | Stimulus Magnitude | 1 conspiracy post | 1 |
|
| 32 |
+
| ec-mag5-run03 | Stimulus Magnitude | 5 conspiracy posts | 5 |
|
| 33 |
+
| ec-mag25-run03 | Stimulus Magnitude | 25 conspiracy posts | 25 |
|
| 34 |
+
| ec-dom-agi-run03 | Domain Independence | 25 AGI risk posts | 25 |
|
| 35 |
+
| ec-dom-tech-run03 | Domain Independence | 25 tech posts | 25 |
|
| 36 |
+
|
| 37 |
+
## Data Structure
|
| 38 |
+
|
| 39 |
+
Each run directory contains:
|
| 40 |
+
|
| 41 |
+
| File | Description |
|
| 42 |
+
|------|-------------|
|
| 43 |
+
| `posts.jsonl` | All posts (seed + agent-generated) |
|
| 44 |
+
| `comments.jsonl` | All comments on posts |
|
| 45 |
+
| `agents.jsonl` | Agent profiles and metadata |
|
| 46 |
+
| `activity.jsonl` | Timestamped activity log (views, votes, posts, comments) |
|
| 47 |
+
| `treatments.jsonl` | Experiment treatment assignments per post |
|
| 48 |
+
| `metadata.json` | Run configuration and summary statistics |
|
| 49 |
+
| `experiment_results.json` | Pre-computed experiment metrics |
|
| 50 |
+
|
| 51 |
+
## Key Fields
|
| 52 |
+
|
| 53 |
+
### posts.jsonl
|
| 54 |
+
- `id`, `title`, `content`, `author_name`, `submolt_name`
|
| 55 |
+
- `score`, `upvotes`, `downvotes`, `comment_count`
|
| 56 |
+
- `created_at`, `updated_at`
|
| 57 |
+
|
| 58 |
+
### comments.jsonl
|
| 59 |
+
- `id`, `post_id`, `parent_id`, `content`, `author_name`
|
| 60 |
+
- `score`, `upvotes`, `downvotes`
|
| 61 |
+
- `created_at`
|
| 62 |
+
|
| 63 |
+
### activity.jsonl
|
| 64 |
+
- `agent_id`, `action_type`, `target_type`, `target_id`
|
| 65 |
+
- `metadata` (JSONB with action-specific details)
|
| 66 |
+
- `created_at`
|
| 67 |
+
|
| 68 |
+
## Configuration
|
| 69 |
+
|
| 70 |
+
- **Model**: GPT-5 (OpenAI direct)
|
| 71 |
+
- **Heartbeat**: 60s interval
|
| 72 |
+
- **Agents**: 10 (diverse personality profiles)
|
| 73 |
+
- **Duration**: 4 hours per run
|
| 74 |
+
- **Ranking**: Mode C (no algorithmic nudges)
|
| 75 |
+
- **Comment limit**: 5 per agent per post
|
| 76 |
+
|
| 77 |
+
## Citation
|
| 78 |
+
|
| 79 |
+
```bibtex
|
| 80 |
+
@misc{moltbook-entropy-collapse-2026,
|
| 81 |
+
title={Moltbook Entropy Collapse Experiments},
|
| 82 |
+
author={Ayush Nangia},
|
| 83 |
+
year={2026},
|
| 84 |
+
publisher={HuggingFace},
|
| 85 |
+
url={https://huggingface.co/datasets/Ayushnangia/moltbook-entropy-collapse}
|
| 86 |
+
}
|
| 87 |
+
```
|