Uses Wikipedia's Machine Learning Book as a resource to quiz and score user's input.
Try the out the web app at http://iyow.xyz.
Try the out by cloning the repo and running python app.py
See dev branch to contribute
Uses Wikipedia's Machine Learning Book as a resource to quiz and score user's input.
As an example:
- Application asks user to define what is precision?
- User enters their explanation in a text box.
- Application scores their response using cosine similarity euclidean distance.
- requests
- Beautiful Soup
- spaCy
- Flask
- AWS
- Book:Machine Learning – The Complete Guide - Wikipedia
- Rules of Machine Learning: | Machine Learning Rules | Google Developers
- ML Reference
To run this website on your computer:
Install spaCy
pip install spacy
Install the spacy library en_core_web_lg
python -m spacy download en_core_web_lg
Optionally, turn on debug mode for Flask
export FLASK_DEBUG=1
Run the flask app
python src/app.py