Skip to content

Commit

Permalink
add persona config
Browse files Browse the repository at this point in the history
  • Loading branch information
pan-x-c committed Oct 16, 2024
1 parent d9f8143 commit eb2bfc7
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
43 changes: 43 additions & 0 deletions examples/paper_large_scale_simulation/tools/edu.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"total_num": 1000,
"distributions": [
{
"distribution_name": "Gender",
"categories": [
{
"category_name": "Male",
"percentage": 0.5
},
{
"category_name": "Female",
"percentage": 0.5
}
]
},
{
"distribution_name": "Education Level",
"categories": [
{
"category_name": "Elementary School",
"percentage": 0.2
},
{
"category_name": "High School",
"percentage": 0.2
},
{
"category_name": "Bachelor's Degree",
"percentage": 0.2
},
{
"category_name": "Master's Degree",
"percentage": 0.2
},
{
"category_name": "Ph.D.",
"percentage": 0.2
}
]
}
]
}
47 changes: 47 additions & 0 deletions examples/paper_large_scale_simulation/tools/job.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"total_num": 600,
"distributions": [
{
"distribution_name": "Gender",
"categories": [
{
"category_name": "Male",
"percentage": 0.5
},
{
"category_name": "Female",
"percentage": 0.5
}
]
},
{
"distribution_name": "Profession",
"categories": [
{
"category_name": "Professor of Game Theory",
"percentage": 0.2
},
{
"category_name": "Economists",
"percentage": 0.2
},
{
"category_name": "Psychologists",
"percentage": 0.2
},
{
"category_name": "Athletes",
"percentage": 0.2
},
{
"category_name": "Artists",
"percentage": 0.2
},
{
"category_name": "Writers",
"percentage": 0.2
}
]
}
]
}

0 comments on commit eb2bfc7

Please sign in to comment.