Pre-requisite: Set up Django and linked database of choice After having installed Django, there are various folders that have been automatically created for you. At this point, your web application has no look yet. This article will show you the simple...
From our earlier post, we delved into the reasons behind using a Sigmoid function for the Logistic Regression rather than a normal linear function. In this post, we will continue sharing on the Cost Function. The Cost Function is important because...
Task Queue? Periodic Tasks? What are they? Task Queue is a way of organizing work or tasks in programs asynchronously, without a user’s request, and distribute them to some threads or machines. Whenever the program needs to execute a background...
Soo we are back once again this week, talking about models, views and serializers — essentially everything you will need to get an up-and-running database that interacts with your web application. Models Put simply, models are the Python representation of your...
At some point in time, you will foray into the realm of web development. With the many frameworks out there, you may be confused as to where to start. Our recommendation is Django for building apps beautifully and efficiently,...
Sending endless number of job applications, and waiting on end for a reply, yet always ending up with no answer whatsoever. Sounds familiar? Writing a good CV is crucial in giving a positive first impression to attain that job...
API stands for Application Programming Interface, and is essentially a set of rules and procedures for accessing and using an application or service. One of the things that took me a while to grasp is that the documentation of API is...
At some point in time, you will foray into the realm of web development. With the many frameworks out there, you may be confused as to where to start. Our recommendation is Django for building apps beautifully and efficiently,...
In this article, we will explore Logistic Regression as the starting step towards learning about Neural Network and Machine Learning. Logistics Regression is mainly used for supervised problems that have binary outputs, either 0 or 1. For example, whether it will rain...
Background Python is fast becoming a popular coding language in the world, and there are many popular frameworks that build on Python. One of them is Django and it has many functionalities and supporting libraries. For this article, we like...