Pytorch : Linear Regression in 5 minutes |Facebook Opensource Framework

preview_player
Показать описание
In this video we will learn how to implement linear regression model in Pytorch.We will understand step by step for pytorch

PyTorch is an open source machine learning library used for developing and training neural network based deep learning models. It is primarily developed by Facebook’s AI research group. PyTorch can be used with Python as well as a C++. Naturally, the Python interface is more polished. Pytorch (backed by biggies like Facebook, Microsoft, SalesForce, Uber) is immensely popular in research labs. Not yet on many production servers — that are ruled by fromeworks like TensorFlow (Backed by Google) — Pytorch is picking up fast.
Unlike most other popular deep learning frameworks like TensorFlow, which use static computation graphs, PyTorch uses dynamic computation, which allows greater flexibility in building complex architectures. Pytorch uses core Python concepts like classes, structures and conditional loops — that are a lot familiar to our eyes, hence a lot more intuitive to understand. This makes it a lot simpler than other frameworks like TensorFlow that bring in their own programming style.
To get a feel of this library, let us have a look at a basic implementation with PyTorch.
Рекомендации по теме