├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── Classification Project ├── Pipfile ├── Pipfile.lock ├── README.md ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── classifier.pkl ├── machineLearning notebook │ ├── Iris_train.ipynb │ └── classifier.pkl ├── manage.py ├── server │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── model │ │ └── classifier.pkl │ ├── templates │ │ ├── index.html │ │ └── predict.html │ ├── tests.py │ ├── urls.py │ └── views.py └── templates │ └── base.html ├── GitHub API ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── gitapi │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── gitapi │ │ │ ├── index.html │ │ │ └── result.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py └── templates │ └── base.html ├── LICENSE ├── Quiz Application ├── base │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── essay │ ├── __init__.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── es_CO │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests.py ├── manage.py ├── multichoice │ ├── __init__.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── es_CO │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ └── tests.py ├── quiz │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── es_CO │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── base.html │ │ ├── correct_answer.html │ │ ├── progress.html │ │ ├── question.html │ │ ├── quiz │ │ │ ├── category_list.html │ │ │ ├── quiz_detail.html │ │ │ ├── quiz_list.html │ │ │ ├── sitting_detail.html │ │ │ └── sitting_list.html │ │ ├── result.html │ │ ├── single_complete.html │ │ └── view_quiz_category.html │ ├── templatetags │ │ ├── __init__.py │ │ └── quiz_tags.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt └── true_false │ ├── __init__.py │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es_CO │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── django.po │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ └── tests.py ├── README.md ├── Random profile generate ├── README.md ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── randomprofileapp │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── profilegenrator.py │ ├── templates │ │ └── randomprofileapp │ │ │ ├── index.html │ │ │ └── result.html │ ├── tests.py │ ├── urls.py │ └── views.py └── templates │ └── base.html ├── Regression Project ├── Pipfile ├── Pipfile.lock ├── README.md ├── autompg │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── model │ │ └── autompg.pkl │ ├── models.py │ ├── templates │ │ └── autompg │ │ │ ├── index.html │ │ │ └── predict.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── machineLearning notebook │ ├── Auto-Mpg Notebook.ipynb │ ├── auto-mpg.csv │ └── autompg.pkl ├── manage.py └── templates │ └── base.html ├── WeatherApp ├── api │ ├── README.md │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── key.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── gitapi │ │ │ ├── index.html │ │ │ └── result.html │ ├── urls.py │ └── views.py ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py └── templates │ ├── base.html │ └── includes │ └── navbar.html ├── praw API ├── Pipfile ├── Pipfile.lock ├── README.md ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── reddit │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── secret.py │ ├── templates │ │ └── reddit │ │ │ ├── index.html │ │ │ └── result.html │ ├── tests.py │ ├── urls.py │ └── views.py └── templates │ └── base.html ├── punctuation ├── README.md ├── base │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── punctuation │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── removePunctuations.py │ ├── templates │ │ └── punctuation │ │ │ ├── index.html │ │ │ └── predict.html │ ├── urls.py │ └── views.py └── templates │ └── base.html └── sorting ├── Pipfile ├── Pipfile.lock ├── README.md ├── base ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── sortingalgo ├── __init__.py ├── admin.py ├── apps.py ├── bubblesort.py ├── mergesort.py ├── migrations │ └── __init__.py ├── templates │ └── sortingalgo │ │ ├── index.html │ │ └── result.html ├── urls.py └── views.py └── templates └── base.html /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Classification Project/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/Pipfile -------------------------------------------------------------------------------- /Classification Project/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/Pipfile.lock -------------------------------------------------------------------------------- /Classification Project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/README.md -------------------------------------------------------------------------------- /Classification Project/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classification Project/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/base/asgi.py -------------------------------------------------------------------------------- /Classification Project/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/base/settings.py -------------------------------------------------------------------------------- /Classification Project/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/base/urls.py -------------------------------------------------------------------------------- /Classification Project/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/base/wsgi.py -------------------------------------------------------------------------------- /Classification Project/classifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/classifier.pkl -------------------------------------------------------------------------------- /Classification Project/machineLearning notebook/Iris_train.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/machineLearning notebook/Iris_train.ipynb -------------------------------------------------------------------------------- /Classification Project/machineLearning notebook/classifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/machineLearning notebook/classifier.pkl -------------------------------------------------------------------------------- /Classification Project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/manage.py -------------------------------------------------------------------------------- /Classification Project/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classification Project/server/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/admin.py -------------------------------------------------------------------------------- /Classification Project/server/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/apps.py -------------------------------------------------------------------------------- /Classification Project/server/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Classification Project/server/model/classifier.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/model/classifier.pkl -------------------------------------------------------------------------------- /Classification Project/server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/templates/index.html -------------------------------------------------------------------------------- /Classification Project/server/templates/predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/templates/predict.html -------------------------------------------------------------------------------- /Classification Project/server/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/tests.py -------------------------------------------------------------------------------- /Classification Project/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/urls.py -------------------------------------------------------------------------------- /Classification Project/server/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/server/views.py -------------------------------------------------------------------------------- /Classification Project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Classification Project/templates/base.html -------------------------------------------------------------------------------- /GitHub API/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitHub API/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/base/asgi.py -------------------------------------------------------------------------------- /GitHub API/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/base/settings.py -------------------------------------------------------------------------------- /GitHub API/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/base/urls.py -------------------------------------------------------------------------------- /GitHub API/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/base/wsgi.py -------------------------------------------------------------------------------- /GitHub API/gitapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitHub API/gitapi/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/admin.py -------------------------------------------------------------------------------- /GitHub API/gitapi/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/apps.py -------------------------------------------------------------------------------- /GitHub API/gitapi/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GitHub API/gitapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/models.py -------------------------------------------------------------------------------- /GitHub API/gitapi/templates/gitapi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/templates/gitapi/index.html -------------------------------------------------------------------------------- /GitHub API/gitapi/templates/gitapi/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/templates/gitapi/result.html -------------------------------------------------------------------------------- /GitHub API/gitapi/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/tests.py -------------------------------------------------------------------------------- /GitHub API/gitapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/urls.py -------------------------------------------------------------------------------- /GitHub API/gitapi/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/gitapi/views.py -------------------------------------------------------------------------------- /GitHub API/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/manage.py -------------------------------------------------------------------------------- /GitHub API/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/GitHub API/templates/base.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/LICENSE -------------------------------------------------------------------------------- /Quiz Application/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/base/settings.py -------------------------------------------------------------------------------- /Quiz Application/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/base/urls.py -------------------------------------------------------------------------------- /Quiz Application/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/base/wsgi.py -------------------------------------------------------------------------------- /Quiz Application/essay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/essay/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/essay/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/essay/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/essay/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/essay/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/essay/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/migrations/0001_initial.py -------------------------------------------------------------------------------- /Quiz Application/essay/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/essay/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/models.py -------------------------------------------------------------------------------- /Quiz Application/essay/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/essay/tests.py -------------------------------------------------------------------------------- /Quiz Application/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/manage.py -------------------------------------------------------------------------------- /Quiz Application/multichoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/multichoice/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/multichoice/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/multichoice/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/multichoice/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/multichoice/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/multichoice/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/migrations/0001_initial.py -------------------------------------------------------------------------------- /Quiz Application/multichoice/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/multichoice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/models.py -------------------------------------------------------------------------------- /Quiz Application/multichoice/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/multichoice/tests.py -------------------------------------------------------------------------------- /Quiz Application/quiz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/quiz/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/admin.py -------------------------------------------------------------------------------- /Quiz Application/quiz/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/forms.py -------------------------------------------------------------------------------- /Quiz Application/quiz/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/quiz/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/quiz/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/quiz/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/quiz/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/quiz/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/migrations/0001_initial.py -------------------------------------------------------------------------------- /Quiz Application/quiz/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/quiz/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/models.py -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/base.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/correct_answer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/correct_answer.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/progress.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/question.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/question.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/quiz/category_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/quiz/category_list.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/quiz/quiz_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/quiz/quiz_detail.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/quiz/quiz_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/quiz/quiz_list.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/quiz/sitting_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/quiz/sitting_detail.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/quiz/sitting_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/quiz/sitting_list.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/result.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/single_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/single_complete.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templates/view_quiz_category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templates/view_quiz_category.html -------------------------------------------------------------------------------- /Quiz Application/quiz/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/quiz/templatetags/quiz_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/templatetags/quiz_tags.py -------------------------------------------------------------------------------- /Quiz Application/quiz/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/tests.py -------------------------------------------------------------------------------- /Quiz Application/quiz/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/urls.py -------------------------------------------------------------------------------- /Quiz Application/quiz/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/quiz/views.py -------------------------------------------------------------------------------- /Quiz Application/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/requirements.txt -------------------------------------------------------------------------------- /Quiz Application/true_false/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/true_false/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/true_false/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/true_false/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/true_false/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/true_false/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /Quiz Application/true_false/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/migrations/0001_initial.py -------------------------------------------------------------------------------- /Quiz Application/true_false/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Quiz Application/true_false/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/models.py -------------------------------------------------------------------------------- /Quiz Application/true_false/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Quiz Application/true_false/tests.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/README.md -------------------------------------------------------------------------------- /Random profile generate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/README.md -------------------------------------------------------------------------------- /Random profile generate/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Random profile generate/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/base/asgi.py -------------------------------------------------------------------------------- /Random profile generate/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/base/settings.py -------------------------------------------------------------------------------- /Random profile generate/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/base/urls.py -------------------------------------------------------------------------------- /Random profile generate/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/base/wsgi.py -------------------------------------------------------------------------------- /Random profile generate/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/manage.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/admin.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/apps.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/models.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/profilegenrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/profilegenrator.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/templates/randomprofileapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/templates/randomprofileapp/index.html -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/templates/randomprofileapp/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/templates/randomprofileapp/result.html -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/tests.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/urls.py -------------------------------------------------------------------------------- /Random profile generate/randomprofileapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/randomprofileapp/views.py -------------------------------------------------------------------------------- /Random profile generate/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Random profile generate/templates/base.html -------------------------------------------------------------------------------- /Regression Project/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/Pipfile -------------------------------------------------------------------------------- /Regression Project/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/Pipfile.lock -------------------------------------------------------------------------------- /Regression Project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/README.md -------------------------------------------------------------------------------- /Regression Project/autompg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Regression Project/autompg/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/admin.py -------------------------------------------------------------------------------- /Regression Project/autompg/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/apps.py -------------------------------------------------------------------------------- /Regression Project/autompg/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Regression Project/autompg/model/autompg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/model/autompg.pkl -------------------------------------------------------------------------------- /Regression Project/autompg/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/models.py -------------------------------------------------------------------------------- /Regression Project/autompg/templates/autompg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/templates/autompg/index.html -------------------------------------------------------------------------------- /Regression Project/autompg/templates/autompg/predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/templates/autompg/predict.html -------------------------------------------------------------------------------- /Regression Project/autompg/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/tests.py -------------------------------------------------------------------------------- /Regression Project/autompg/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/urls.py -------------------------------------------------------------------------------- /Regression Project/autompg/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/autompg/views.py -------------------------------------------------------------------------------- /Regression Project/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Regression Project/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/base/asgi.py -------------------------------------------------------------------------------- /Regression Project/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/base/settings.py -------------------------------------------------------------------------------- /Regression Project/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/base/urls.py -------------------------------------------------------------------------------- /Regression Project/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/base/wsgi.py -------------------------------------------------------------------------------- /Regression Project/machineLearning notebook/Auto-Mpg Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/machineLearning notebook/Auto-Mpg Notebook.ipynb -------------------------------------------------------------------------------- /Regression Project/machineLearning notebook/auto-mpg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/machineLearning notebook/auto-mpg.csv -------------------------------------------------------------------------------- /Regression Project/machineLearning notebook/autompg.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/machineLearning notebook/autompg.pkl -------------------------------------------------------------------------------- /Regression Project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/manage.py -------------------------------------------------------------------------------- /Regression Project/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/Regression Project/templates/base.html -------------------------------------------------------------------------------- /WeatherApp/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/README.md -------------------------------------------------------------------------------- /WeatherApp/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/admin.py -------------------------------------------------------------------------------- /WeatherApp/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/apps.py -------------------------------------------------------------------------------- /WeatherApp/api/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/key.py -------------------------------------------------------------------------------- /WeatherApp/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/models.py -------------------------------------------------------------------------------- /WeatherApp/api/templates/gitapi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/templates/gitapi/index.html -------------------------------------------------------------------------------- /WeatherApp/api/templates/gitapi/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/templates/gitapi/result.html -------------------------------------------------------------------------------- /WeatherApp/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/urls.py -------------------------------------------------------------------------------- /WeatherApp/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/api/views.py -------------------------------------------------------------------------------- /WeatherApp/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WeatherApp/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/base/asgi.py -------------------------------------------------------------------------------- /WeatherApp/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/base/settings.py -------------------------------------------------------------------------------- /WeatherApp/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/base/urls.py -------------------------------------------------------------------------------- /WeatherApp/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/base/wsgi.py -------------------------------------------------------------------------------- /WeatherApp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/manage.py -------------------------------------------------------------------------------- /WeatherApp/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/templates/base.html -------------------------------------------------------------------------------- /WeatherApp/templates/includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/WeatherApp/templates/includes/navbar.html -------------------------------------------------------------------------------- /praw API/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/Pipfile -------------------------------------------------------------------------------- /praw API/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/Pipfile.lock -------------------------------------------------------------------------------- /praw API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/README.md -------------------------------------------------------------------------------- /praw API/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /praw API/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/base/asgi.py -------------------------------------------------------------------------------- /praw API/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/base/settings.py -------------------------------------------------------------------------------- /praw API/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/base/urls.py -------------------------------------------------------------------------------- /praw API/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/base/wsgi.py -------------------------------------------------------------------------------- /praw API/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/manage.py -------------------------------------------------------------------------------- /praw API/reddit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /praw API/reddit/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/admin.py -------------------------------------------------------------------------------- /praw API/reddit/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/apps.py -------------------------------------------------------------------------------- /praw API/reddit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /praw API/reddit/secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/secret.py -------------------------------------------------------------------------------- /praw API/reddit/templates/reddit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/templates/reddit/index.html -------------------------------------------------------------------------------- /praw API/reddit/templates/reddit/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/templates/reddit/result.html -------------------------------------------------------------------------------- /praw API/reddit/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/tests.py -------------------------------------------------------------------------------- /praw API/reddit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/urls.py -------------------------------------------------------------------------------- /praw API/reddit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/reddit/views.py -------------------------------------------------------------------------------- /praw API/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/praw API/templates/base.html -------------------------------------------------------------------------------- /punctuation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/README.md -------------------------------------------------------------------------------- /punctuation/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /punctuation/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/base/asgi.py -------------------------------------------------------------------------------- /punctuation/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/base/settings.py -------------------------------------------------------------------------------- /punctuation/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/base/urls.py -------------------------------------------------------------------------------- /punctuation/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/base/wsgi.py -------------------------------------------------------------------------------- /punctuation/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/manage.py -------------------------------------------------------------------------------- /punctuation/punctuation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /punctuation/punctuation/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/admin.py -------------------------------------------------------------------------------- /punctuation/punctuation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/apps.py -------------------------------------------------------------------------------- /punctuation/punctuation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /punctuation/punctuation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/models.py -------------------------------------------------------------------------------- /punctuation/punctuation/removePunctuations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/removePunctuations.py -------------------------------------------------------------------------------- /punctuation/punctuation/templates/punctuation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/templates/punctuation/index.html -------------------------------------------------------------------------------- /punctuation/punctuation/templates/punctuation/predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/templates/punctuation/predict.html -------------------------------------------------------------------------------- /punctuation/punctuation/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/urls.py -------------------------------------------------------------------------------- /punctuation/punctuation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/punctuation/views.py -------------------------------------------------------------------------------- /punctuation/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/punctuation/templates/base.html -------------------------------------------------------------------------------- /sorting/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/Pipfile -------------------------------------------------------------------------------- /sorting/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/Pipfile.lock -------------------------------------------------------------------------------- /sorting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/README.md -------------------------------------------------------------------------------- /sorting/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sorting/base/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/base/asgi.py -------------------------------------------------------------------------------- /sorting/base/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/base/settings.py -------------------------------------------------------------------------------- /sorting/base/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/base/urls.py -------------------------------------------------------------------------------- /sorting/base/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/base/wsgi.py -------------------------------------------------------------------------------- /sorting/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/manage.py -------------------------------------------------------------------------------- /sorting/sortingalgo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sorting/sortingalgo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/admin.py -------------------------------------------------------------------------------- /sorting/sortingalgo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/apps.py -------------------------------------------------------------------------------- /sorting/sortingalgo/bubblesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/bubblesort.py -------------------------------------------------------------------------------- /sorting/sortingalgo/mergesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/mergesort.py -------------------------------------------------------------------------------- /sorting/sortingalgo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sorting/sortingalgo/templates/sortingalgo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/templates/sortingalgo/index.html -------------------------------------------------------------------------------- /sorting/sortingalgo/templates/sortingalgo/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/templates/sortingalgo/result.html -------------------------------------------------------------------------------- /sorting/sortingalgo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/urls.py -------------------------------------------------------------------------------- /sorting/sortingalgo/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/sortingalgo/views.py -------------------------------------------------------------------------------- /sorting/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeperfectplus/machine-learning-web-applications/HEAD/sorting/templates/base.html --------------------------------------------------------------------------------