JonathanMcCormickJr / chores-assignment-system

This is a data-driven system for optimizing chore assignments in a family or other co-existing environment.
MIT License
1 stars 0 forks source link

Get a final list of chores. #16

Open JonathanMcCormickJr opened 1 year ago

JonathanMcCormickJr commented 1 year ago

Here is a list from an old version of main.py:

chores = [
    "kitchen",
    "sweeping",
    "laundry",
    "bathrooms",
    "trash",
    "mowing",
    "gardening",
    "cooking",
    "mirrors",
    "decluttering",
    "cleaning_cars",
    "pets_care",
    "cupboards",
    "linen_closets",
    "coat_closet",
    "TV/fridge_top",
    "interior_fridge",
    "interior_freezer",
    "bathtub",
    "gutters",
    "cleaning_under_appliances"
]
JonathanMcCormickJr commented 1 year ago

Here is a copy of the scoring system.

importance_scores = {"not_important": 0, "somewhat_important": 1/3, "important": 2/3, "very_important": 1}
competence_scores = {"cant_do_it": 0, "need_help": 0.5, "can_do_it_easily": 1}
comfort_scores = {"hate_it": 0, "dont_like_it": 0.25, "neutral": 0.5, "like_it": 0.75, "love_it": 1}