All Projects → PacktPublishing → Deep Learning With Pytorch

PacktPublishing / Deep Learning With Pytorch

Licence: mit
Deep Learning with PyTorch, published by Packt

Projects that are alternatives of or similar to Deep Learning With Pytorch

Machine Learning
Content for Udacity's Machine Learning curriculum
Stars: ✭ 3,618 (+927.84%)
Mutual labels:  jupyter-notebook
Recommendsystempractice
《推荐系统实践》代码实现
Stars: ✭ 349 (-0.85%)
Mutual labels:  jupyter-notebook
Notebooks
Machine learning notebooks in different subjects optimized to run in google collaboratory
Stars: ✭ 351 (-0.28%)
Mutual labels:  jupyter-notebook
Fast Pytorch
Pytorch Tutorial, Pytorch with Google Colab, Pytorch Implementations: CNN, RNN, DCGAN, Transfer Learning, Chatbot, Pytorch Sample Codes
Stars: ✭ 346 (-1.7%)
Mutual labels:  jupyter-notebook
Pytorch Cortexnet
PyTorch implementation of the CortexNet predictive model
Stars: ✭ 349 (-0.85%)
Mutual labels:  jupyter-notebook
Ml cheat sheet
My notes and superstitions about common machine learning algorithms
Stars: ✭ 349 (-0.85%)
Mutual labels:  jupyter-notebook
Nlp Papers With Arxiv
Statistics and accepted paper list of NLP conferences with arXiv link
Stars: ✭ 345 (-1.99%)
Mutual labels:  jupyter-notebook
Interpretable Ml Book
Book about interpretable machine learning
Stars: ✭ 3,941 (+1019.6%)
Mutual labels:  jupyter-notebook
Nbval
A py.test plugin to validate Jupyter notebooks
Stars: ✭ 347 (-1.42%)
Mutual labels:  jupyter-notebook
Action Recognition Visual Attention
Action recognition using soft attention based deep recurrent neural networks
Stars: ✭ 350 (-0.57%)
Mutual labels:  jupyter-notebook
Pytorch Tutorials Examples And Books
PyTorch1.x tutorials, examples and some books I found 【不定期更新】整理的PyTorch 1.x 最新版教程、例子和书籍
Stars: ✭ 346 (-1.7%)
Mutual labels:  jupyter-notebook
Keras Oneshot
koch et al, Siamese Networks for one-shot learning, (mostly) reimplimented in keras
Stars: ✭ 348 (-1.14%)
Mutual labels:  jupyter-notebook
Noisereduce
Noise reduction in python using spectral gating (speech, bioacoustics, time-domain signals)
Stars: ✭ 347 (-1.42%)
Mutual labels:  jupyter-notebook
T81 558 deep learning
Washington University (in St. Louis) Course T81-558: Applications of Deep Neural Networks
Stars: ✭ 4,152 (+1079.55%)
Mutual labels:  jupyter-notebook
Magnet
Deep Learning Projects that Build Themselves
Stars: ✭ 351 (-0.28%)
Mutual labels:  jupyter-notebook
Card Ocr
身份证识别OCR
Stars: ✭ 345 (-1.99%)
Mutual labels:  jupyter-notebook
Notebooks
collection of iPython notebooks
Stars: ✭ 349 (-0.85%)
Mutual labels:  jupyter-notebook
Machine Learning Code Writing
Mathematical derivation and pure Python code implementation of machine learning algorithms.
Stars: ✭ 350 (-0.57%)
Mutual labels:  jupyter-notebook
Convolutional neural network
This is the code for "Convolutional Neural Networks - The Math of Intelligence (Week 4)" By Siraj Raval on Youtube
Stars: ✭ 352 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Tutorials Chinese
TensorFlow 中文教程 (Chinese Tutorials)
Stars: ✭ 349 (-0.85%)
Mutual labels:  jupyter-notebook

Deep Learning with PyTorch

This is the code repository for Deep Learning with PyTorch, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Deep Learning is powering the most intelligent systems in the world such as Google Voice, Siri, and Alexa. Advancements in powerful hardware such as GPU, software frameworks like PyTorch, Keras, Tensorflow, CNTK, etc and availability of big data have made it easier to implement solutions for various problems in the areas of Text, Vision, and advanced analytics.

This book will get you up and running with one of the most cutting-edge deep learning library—PyToch. Written in Python, PyTorch is grabbing the attention of all the data science professionals due to its accessibility and efficiency. You'll start off with installing PyTorch, then quickly move on to the various statistical operations with it. Next, you'll learn about Neural networks with PyTorch and we'll explore CNN, RNN, and LSTM.

This book provides the intuition behind the various state of the art Deep Learning architectures such as ResNet, DenseNet, Inception, and Seq2Seq without diving deep into the math of it. Then you will also learn about GPU computing during the course of the book. You will see how to train a model with PyTorch and dive into complex neural networks such as generative networks to produce text and images.

By the end of the book, you'll be able to implement PyTorch in deep learning applications with ease. You’ll also know everything it takes to get up and running with PyTorch.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

x,y = get_data() # x - represents training data,y -
represents target variables
w,b = get_weights() # w,b - Learnable parameters
for i in range(500):
y_pred = simple_network(x) # function which computes wx + b
loss = loss_fn(y,y_pred) # calculates sum of the squared differences of
y and y_pred
if i % 50 == 0:
print(loss)
optimize(learning_rate) # Adjust w,b to minimize the loss

All the chapters (except Chapter 1, Getting Started with Deep Learning Using PyTorch and Chapter 9, What Next) have associated Jupyter Notebooks in the book's GitHub repository. The imports required for the code to run may not be included in the text to save space. You should be able to run all of the code from the Notebooks. The book focuses on practical illustrations, so run the Jupyter Notebooks as you read the chapters. Access to a computer with a GPU will help run the code quickly. There are companies such as paperspace.com and www.crestle.com that abstract a lot of the complexity required torun deep learning algorithms.

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].