Friday, May 29, 2020

What is deep learning?

Most of the time when we are talking about AI, we are thinking about a very specific form of AI called machine learning. Machine learning systems use a range of mathematical processes to learn procedures and perform tasks automatically. You don’t need to exactly mimic human intelligence in order to...
Share:

Monday, May 4, 2020

Django pollapp-4 (creating views)

In Django, web pages and other content are delivered by views. Each view is represented by a Python function (or method, in the case of class-based views). Django will choose a view by examining the URL that’s requested (to be precise, the part of the URL after the domain name). To get from a URL to a view, Django uses what are known as ‘URLconfs’. A URLconf maps URL patterns to views. Now let’s...
Share: