roxxhub

PyTorch tutorial

What is Pytorch ? Pytorch is an open source machine learning framework which is based on the Torch library. This framework is widely used in deep learning applications like Convolutional Neural Networks for Computer vision, RNN, etc. Even tesla uses this in their cars. It was created by Facebook or META AI specifically for python … Read more

Python lists

python lists are very simple objects or array which store can multiple amount of data. These are ordered, changeable and allow duplicate values Ordered each of their items/elements have a specific position and can be identified by it. In the example above ‘1’ will be the 0th element, ‘2’ will be the 1st element and … Read more

Python for loop

A ‘for’ loop is command which is used to iterate over a sequence(ex. list, tuple, dictionary, set, even a string) multiple times. Lets take a look at the syntaxes of python for loop Looping through a list thus giving us the output here the ‘for’ loop goes through each element of the list (element refers … Read more