Extremely simple(and maybe useless) LSTM model trained on google search history data
- Get your google search data (only google search)
- Put the MyActivity.html file in the
data
folder - Generate the JSON
python src/save_to_json.py
cd src
- Create dataset
python process_data.py --past_count 4 --freq_tresh 5 --window 1
- Train cbow model (for embeddings)
python train_cbow.py
- Train autocomplete model
python train.py
- Run web app
python app.py