Observations is an aplication developed as an assignment for Programing in Python course. It allows user to store, add and delete data which would later be used to predict category of given observation. Prediction is made using scikit-learn KNeighborsClassifier (before running algorithm data is scaled using StandardScaler).
- Application offers simple navigation.
- Application allows user to display all collected data in readable way. At this point user can also delete chosen record.
- Applcation allows adding new observations using form.
- Applcation allows runnting predictions. However user must provide enought train data, or else an error would occur.
- Application provides an API allowing access to all features without the browser.
- Language: Python
- Frameworks and Libraries: Django, djangorestframework, scikit-learn
git clone https://github.com/Matio004/ProgramingInPythonDjango.gituv run python manage.py migrateuv run python manage.py runserver --insecure