A list in Python is used to store the sequence of various types of data. Python lists are mutable type, it means that we can modify it's element after...
Let's learn about cross entropy Cross-entropy can be used as a loss function for classification models like logistic regression or artificial neural...
◽️ A set is a collection which is both unordered and unindexed. ◽️ Once created, you cannot change its items, but you can add new items. ◽️ 2 items...
Python Dictionaries store data values in key : value pairs. car = { "brand" : "Tesla", "model" : "S" } ◽️ Dict are ordered (Py 3.7), it means that the...
So after facing a lot of problem in learning Machine Learning, I started contemplating on how to make the whole learning experience great. Then I came...