GithubHelp home page GithubHelp logo

rshrc / sales-forecast-ml Goto Github PK

View Code? Open in Web Editor NEW
55.0 55.0 14.0 4.64 MB

Web app to predict sales of a new product :chart_with_upwards_trend:

Python 74.45% HTML 25.55%
clustering css django html linear-regression logistic-regression machine-learning material-design prediction python3 single-page-app sklearn

sales-forecast-ml's People

Contributors

dependabot[bot] avatar erress avatar rshrc avatar shivalipathak avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sales-forecast-ml's Issues

BUG BUG

Yo!

Please read this fully.
Why do you work so hard? Meh, you know very little when compared to others. There are many people in MUJ who know "TON MORE" than you but are still down to earth and humble. All you know is to spit venom and back-bitch 'bout others. You were an awesome guy, but then turned completely around from 2nd year. Not sure what you brag 'bout, but hey, with that attitude, you ain't going anywhere.

Why am I leaving this here? 'Coz you love collaboration right? So I thought Github is best for you! All you care is your reputation and your attitude. If you hate someone, because they are getting ahead of you, you start shitting yourself and start spewing venom on them.

Stay humble, stay down-to-earth and respect others. Don't make people hate you. No wonder people leave confessions for you on Insta. They literally talk about you and your shitty attitude.

Take it as a competition, a healthy one. Don't hate people becoz they know more than you. I know someone who's been very very badly affected by you. You have no idea in what shape he is now. None of us have the courage to confront you, becoz we cannot afford the ruckus you and your gang'd create if you'd know our identities.

Don't take this the wrong way, but I had no other choice. This is just an advice. :)

(1146, "Table 'sale.predict_product' doesn't exist")

I click on the predict button in the product form. After that i receive this error. Any solution for that..
django == 2.2.5

Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/mysql/base.py in execute
return self.cursor.execute(query, args) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/MySQLdb/cursors.py in execute
res = self._query(query) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/MySQLdb/cursors.py in _query
db.query(q) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/MySQLdb/connections.py in query
_mysql.connection.query(self, query) …
Local vars
The above exception ((1146, "Table 'sale.predict_product' doesn't exist")) was the direct cause of the following exception:
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/core/handlers/exception.py in inner
response = get_response(request) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/core/handlers/base.py in _get_response
response = self.process_exception_by_middleware(e, request) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/core/handlers/base.py in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs) …
Local vars
/home/emxcel/Projects_python/sales-forecast-ml-master/predict/views.py in product_describe_view
product_detail = product_form.save() …
Local vars
/home/emxcel/Projects_python/sales-forecast-ml-master/predict/forms.py in save
product.save() …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/base.py in save
force_update=force_update, update_fields=update_fields) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/base.py in save_base
force_update, using, update_fields, …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/base.py in _save_table
result = self._do_insert(cls._base_manager, using, fields, update_pk, raw) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/base.py in _do_insert
using=using, raw=raw) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/manager.py in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/query.py in _insert
return query.get_compiler(using=using).execute_sql(return_id) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/models/sql/compiler.py in execute_sql
cursor.execute(sql, params) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/utils.py in execute
return super().execute(sql, params) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/utils.py in execute
return self._execute_with_wrappers(sql, params, many=False, executor=self._execute) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/utils.py in _execute_with_wrappers
return executor(sql, params, many, context) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/utils.py in _execute
return self.cursor.execute(sql, params) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/utils.py in exit
raise dj_exc_value.with_traceback(traceback) from exc_value …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/utils.py in _execute
return self.cursor.execute(sql, params) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/django/db/backends/mysql/base.py in execute
return self.cursor.execute(query, args) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/MySQLdb/cursors.py in execute
res = self._query(query) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/MySQLdb/cursors.py in _query
db.query(q) …
Local vars
/home/emxcel/anaconda3/envs/oenv/lib/python3.6/site-packages/MySQLdb/connections.py in query
_mysql.connection.query(self, query) …
Local vars

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.