Final project for the Building AI course
An AI to automatically classify transactions into the right categories to assist managing a budget. Should be easy to use.
Automatically classifying transactions would help a lot with keeping track of your budget. I wanted to do this because I'm lazy and don't want to do manual labor to classify everything by hand every year.
I also had other interesting ideas, but they would not be implementable within the scope of this course.
IN: CSV-file on its own.
OUT: Labelled CSV-file.
Applicable situation: To save time figuring out your spendings.
Users: Everyone who needs an overview of their budget and spendings.
Needs: Should be easy to use, not make things take longer
def main(in):
# classify according to recipient and product
# add to csv file
return out
Data sources would be CSV-files generated by banks, and/or receipts/bills for filling in information gaps<. These would be collecteed by the user themselves.
It dodes not solve companies hiding their payments behind a veil.
Add data parsed from pdfs.
Building AI course by Helsinki University and Reaktor