fuzzy-game-recommender/README.md

27 lines
826 B
Markdown
Raw Normal View History

2023-01-27 18:22:02 +01:00
# fuzzy-game-recommender
2023-01-27 18:36:52 +01:00
#### To run the project (for now):
pip install -r requirements.txt
python main.py
2023-02-01 23:57:24 +01:00
#### To run the project in presentation mode:
python main.py --pres
it will generate .json file which can be presented by running all cells of `Fuzzy_presentation.ipynb`
2023-02-02 01:12:00 +01:00
#### Random mode
python main.py --pres -r True
2023-02-03 00:40:25 +01:00
#### Evaluation mode
python main.py --pres --eval
generates result.json file with 10 random games and 10 recomendations for each game, results can be evaluated in `Fuzzy_presentation.ipynb` file, with Jaccard Similiarity
2023-01-27 18:36:52 +01:00
Processed dataset files are already provided, but can be created from the base ``games.csv`` file by running:
python process_dataset.py
2023-02-01 23:57:24 +01:00
2023-01-27 18:44:36 +01:00
If no ``GoogleNews-vectors-negative300.bin`` file is present, only ``games_processed.csv`` will be created.