Nice, and simple feed aggregator.
I love twitter, but the timeline is a mess (especially in the official app). Hackernews is a great link aggregator, but I only care about certain articles, and the same is true for Reddit.
Latios is an attempt to aggregate and rank feeds by having a model learn your preference, and ranking links and tweets higher based on your feedback.
pip3 install -r requirements.txt
and add twitter tokens to.env
python3 -m latios.data_worker.Service
starts the data worker (keeps track of the twitter data, and handles the feedback from the client)python3 -m latios.client.Service
start the web interfacepython3 -m latios.ranker.Service
sets the predicted tweet score.python3 -m latios.links.ranker.service
starts the web rankerpython3 -m latios.ranker.Train
let's you train a TfIdf model for the feedback you have given in the client used to train the web and tweet scores.