fionnfuchs / mood-tracking-diary

A telegram bot that asks you about your day / mood and writes your answers into a database. It is able to generate diaries for you to read and analyze the data, providing insight into what raises / lowers your mood.
1 stars 0 forks source link

Add spaCy NLP processing of diary entries #4

Closed fionnfuchs closed 3 years ago

fionnfuchs commented 3 years ago

Information to be extracted for MVP:

word_mood_dict = {
    "userid": 2362839,
    "verbs": {
        "hike": {
            "values": [5,4,4]
        },
        "work": {
            "values": [2,3,5]
        }
    },
    "nouns": {
        "vacation": {
            "values": [5,4]
        },
        "university": {
            "values": [4]
        }
    }
}
fionnfuchs commented 3 years ago

Implemented.