├── README.md ├── car_price_project ├── .dockerignore ├── Dockerfile ├── car_price_project │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── linear_regression_model.pkl ├── manage.py ├── predictor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-38.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-38.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── dat.csv │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── model.py │ ├── models.py │ ├── static │ │ ├── script.js │ │ └── styles.css │ ├── templates │ │ └── predictor │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── requirements.txt ├── siftrequests.py └── staticfiles │ ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dark_mode.css │ │ ├── dashboard.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── nav_sidebar.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── core.js │ │ ├── filters.js │ │ ├── inlines.js │ │ ├── jquery.init.js │ │ ├── nav_sidebar.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate_init.js │ │ ├── theme.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js │ ├── rest_framework │ ├── css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap-tweaks.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── default.css │ │ ├── font-awesome-4.0.3.css │ │ └── prettify.css │ ├── docs │ │ ├── css │ │ │ ├── base.css │ │ │ ├── highlight.css │ │ │ └── jquery.json-view.min.css │ │ ├── img │ │ │ ├── favicon.ico │ │ │ └── grid.png │ │ └── js │ │ │ ├── api.js │ │ │ ├── highlight.pack.js │ │ │ └── jquery.json-view.min.js │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── grid.png │ └── js │ │ ├── ajax-form.js │ │ ├── bootstrap.min.js │ │ ├── coreapi-0.1.1.js │ │ ├── csrf.js │ │ ├── default.js │ │ ├── jquery-3.7.1.min.js │ │ ├── load-ajax-form.js │ │ └── prettify-min.js │ ├── script.js │ └── styles.css ├── en.subject.pdf └── machine-learning-house-prices.ipynb /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /car_price_project/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/.dockerignore -------------------------------------------------------------------------------- /car_price_project/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/Dockerfile -------------------------------------------------------------------------------- /car_price_project/car_price_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /car_price_project/car_price_project/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/car_price_project/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/car_price_project/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/car_price_project/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/car_price_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/asgi.py -------------------------------------------------------------------------------- /car_price_project/car_price_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/settings.py -------------------------------------------------------------------------------- /car_price_project/car_price_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/urls.py -------------------------------------------------------------------------------- /car_price_project/car_price_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/car_price_project/wsgi.py -------------------------------------------------------------------------------- /car_price_project/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/db.sqlite3 -------------------------------------------------------------------------------- /car_price_project/linear_regression_model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/linear_regression_model.pkl -------------------------------------------------------------------------------- /car_price_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/manage.py -------------------------------------------------------------------------------- /car_price_project/predictor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /car_price_project/predictor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/admin.py -------------------------------------------------------------------------------- /car_price_project/predictor/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/apps.py -------------------------------------------------------------------------------- /car_price_project/predictor/dat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/dat.csv -------------------------------------------------------------------------------- /car_price_project/predictor/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /car_price_project/predictor/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /car_price_project/predictor/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/model.py -------------------------------------------------------------------------------- /car_price_project/predictor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/models.py -------------------------------------------------------------------------------- /car_price_project/predictor/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/static/script.js -------------------------------------------------------------------------------- /car_price_project/predictor/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/static/styles.css -------------------------------------------------------------------------------- /car_price_project/predictor/templates/predictor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/templates/predictor/index.html -------------------------------------------------------------------------------- /car_price_project/predictor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/tests.py -------------------------------------------------------------------------------- /car_price_project/predictor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/urls.py -------------------------------------------------------------------------------- /car_price_project/predictor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/predictor/views.py -------------------------------------------------------------------------------- /car_price_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/requirements.txt -------------------------------------------------------------------------------- /car_price_project/siftrequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/siftrequests.py -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/autocomplete.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/base.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/changelists.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/dark_mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/dark_mode.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/dashboard.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/forms.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/login.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/nav_sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/nav_sidebar.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/responsive.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/rtl.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/vendor/select2/select2.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/css/widgets.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/LICENSE -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/README.txt -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-no.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/search.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/SelectBox.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/actions.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/autocomplete.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/calendar.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/cancel.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/change_form.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/collapse.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/core.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/filters.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/inlines.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/jquery.init.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/nav_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/nav_sidebar.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/popup_response.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/prepopulate.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/theme.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/urlify.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/af.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/bn.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/bs.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/dsb.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/hsb.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/hy.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ka.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ne.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ps.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/pt-BR.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/sl.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/sq.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/tk.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/select2.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/select2.full.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/select2/select2.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/select2/select2.full.min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/bootstrap-tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/bootstrap-tweaks.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/bootstrap.min.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/default.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/font-awesome-4.0.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/font-awesome-4.0.3.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/css/prettify.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/css/base.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/css/highlight.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/css/jquery.json-view.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/css/jquery.json-view.min.css -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/js/api.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/js/highlight.pack.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/docs/js/jquery.json-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/docs/js/jquery.json-view.min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/img/grid.png -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/ajax-form.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/bootstrap.min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/coreapi-0.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/coreapi-0.1.1.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/csrf.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/default.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/load-ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/load-ajax-form.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/rest_framework/js/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/rest_framework/js/prettify-min.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/script.js -------------------------------------------------------------------------------- /car_price_project/staticfiles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/car_price_project/staticfiles/styles.css -------------------------------------------------------------------------------- /en.subject.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/en.subject.pdf -------------------------------------------------------------------------------- /machine-learning-house-prices.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/42nenuser/machinelearning_regression/HEAD/machine-learning-house-prices.ipynb --------------------------------------------------------------------------------