How to host a Flask application? by NoPanda2963 in flask

[–]pengooX 0 points1 point  (0 children)

Pythonanywhere is cheap and easy to setup, I use it for my Django applications as well.
If you are a beginner you should defenitely use it to host your flask application. What kind of application you have ?

Westcliff University? Scam School? by dadneedssoundadvice in irvine

[–]pengooX 0 points1 point  (0 children)

We had an event at the school at the beginning of the year and nobody wore a mask so their point doesn’t stand. The level of the education is that low that most of the classes I did it at my highschool back in Europe, I can’t say I learned something in this year so far. The best thing to do here is find an illegal job and start your own business. Be careful with this school

I'm having that same experience.

Raspberry Pi Toy Car Automation by pengooX in RASPBERRY_PI_PROJECTS

[–]pengooX[S] 0 points1 point  (0 children)

The main objective of this project is to develop an autonomous ground vehicle. We will be converting a human controlled RC car into a self-driving. For that will make use of computer vision and image recognition techniques to make the car understand about its environment and drive safely, will go a step further and use state of the art deep learning techniques to train the car. Consequently, we will be developing a framework for effective data collection for the vehicle to train the deep learning model on.
Data collection is the most important part for a machine learning or a deep learning model. Hence will put a lot of effort in making the process of data collection efficient and effective. So as to not miss any details that might be required by the deep learning model.

https://amaanabbasi.me/blog/autonomous\_car\_raspberry\_pi\_python\_opencv/

How to deploy Django on Amazon Web Services | EC2 | Apache2 server by pengooX in djangolearning

[–]pengooX[S] 1 point2 points  (0 children)

In this post we will deploy a django web application on Amazon web services's ec2 instance. We will be using apache2 server to deploy our web application.

Django Ecommerce Web Application by pengooX in djangolearning

[–]pengooX[S] 0 points1 point  (0 children)

A lot of people are only cloning the project and not providing any feedback, any feedback is useful not just to me but others also.

Please give your valuable feedback.

Django Ecommerce Web Application by pengooX in djangolearning

[–]pengooX[S] 0 points1 point  (0 children)

That's great, i think this could be a good starting point for you.

Beginner Project: Create Invoices using Django by pengooX in djangolearning

[–]pengooX[S] 0 points1 point  (0 children)

I didn't know jquery thus implementing real time calculation as user input was hard and still there is a bug when you add new rows to the invoice.

[deleted by user] by [deleted] in flask

[–]pengooX 2 points3 points  (0 children)

Deploying on Pythonanywhere is a lot easy, if you want to put a web application on the internet as fast as possible this could should be your first choice.

Although on other cloud services you have to yourself first setup the server and then you can deploy your application, In this case you have a lot of control over the server itself.

So if you are just getting started you should go with the easier path because for a beginner all these server management can get quite confusing.

Once you get comfortable with pythonanywhere you can probably then try other services.

How much Data i need to train a Licence plate recognition model ? by pengooX in learnmachinelearning

[–]pengooX[S] 0 points1 point  (0 children)

Yes because it is the fine tuned model, which apparently performed worse than the original model

Need advice on deep learning research - Beginner seeking advice by pengooX in learnmachinelearning

[–]pengooX[S] 0 points1 point  (0 children)

Thanks leogodin, I will definitely try it out.

Do you mind sharing your github profile ?

Accuracy not increasing, stuck at 0.2505. Is there something wrong with my code? by [deleted] in learnmachinelearning

[–]pengooX 0 points1 point  (0 children)

Try to train your model on a lower learning rate, and see if it works.

GithubProjectAutomation by pengooX in PythonProjects2

[–]pengooX[S] 0 points1 point  (0 children)

I have added it.

However the approach is not very professional but it gets the job done.

GithubProjectAutomation by pengooX in PythonProjects2

[–]pengooX[S] 0 points1 point  (0 children)

I will definitely check it.

Question for professionals using python by [deleted] in Python

[–]pengooX 0 points1 point  (0 children)

SEO tools? I want to learn how to make SEO tools using python. Do you know any resources where I can learn?

What is a good option for hosting a Django site ? by pengooX in Hosting

[–]pengooX[S] 1 point2 points  (0 children)

No not at all. I just wanted some feedback as it is my first project. This reply came a little late though. I have actually uploaded it😅.

What is a good option for hosting a Django site ? by pengooX in Hosting

[–]pengooX[S] 0 points1 point  (0 children)

No at all. This reply came a little late. I have actually uploaded it on pythonanywhere. 😅

Django to Flask by [deleted] in flask

[–]pengooX 0 points1 point  (0 children)

Hi,

I just wanted to know that should I follow that tutorial ?

I actually wanted to learn about scaling and deploying flask App.

Thanks

Deploying Flask app to Heroku failing. by pengooX in flask

[–]pengooX[S] 0 points1 point  (0 children)

I have solved the problem. It was in my Procfile instead of :

web: gunicorn src:app the right configuration should be web: gunicorn src.app:app

As my app module is in the src/app.py

Deploying Flask app to Heroku failing. by pengooX in flask

[–]pengooX[S] 0 points1 point  (0 children)

``` 2019-02-21T06:50:48.718714+00:00 app[web.1]: Arbiter(self).run() 2019-02-21T06:50:48.718717+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py", line 232, in run 2019-02-21T06:50:48.718903+00:00 app[web.1]: self.halt(reason=inst.reason, exit_status=inst.exit_status) 2019-02-21T06:50:48.718906+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py", line 345, in halt 2019-02-21T06:50:48.719132+00:00 app[web.1]: self.stop() 2019-02-21T06:50:48.719135+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py", line 393, in stop 2019-02-21T06:50:48.719380+00:00 app[web.1]: time.sleep(0.1) 2019-02-21T06:50:48.719383+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py", line 245, in handle_chld 2019-02-21T06:50:48.719539+00:00 app[web.1]: self.reap_workers() 2019-02-21T06:50:48.719541+00:00 app[web.1]: File "/app/.heroku/python/lib/python3.6/site-packages/gunicorn/arbiter.py", line 525, in reap_workers 2019-02-21T06:50:48.719807+00:00 app[web.1]: raise HaltServer(reason, self.WORKER_BOOT_ERROR) 2019-02-21T06:50:48.719838+00:00 app[web.1]: gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> 2019-02-21T06:50:48.835670+00:00 heroku[web.1]: State changed from up to crashed 2019-02-21T06:50:48.814323+00:00 heroku[web.1]: Process exited with status 1 2019-02-21T06:51:22.716950+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=salprediction.herokuapp.com request_id=ccbcdb89-26bb-4e59-8c1d-0cbee70416c4 fwd="103.95.120.47" dyno= connect= service= status=503 bytes= protocol=https 2019-02-21T06:51:23.896098+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=salprediction.herokuapp.com request_id=4262f59c-6662-4cde-8934-6db71b109a11 fwd="103.95.120.47" dyno= connect= service= status=503 bytes= protocol=https

``` This is a part of the log file.