Open main menu

CDOT Wiki β

Changes

DPS921/PyTorch: Convolutional Neural Networks

273 bytes added, 13:33, 29 November 2020
Implementation of Neural Network
== Implementation of Neural Network ==
 
''' In order to implement a Convolutional Neural Network in python, there are several key steps we need to follow:
 
1. Import the required modules to implement and train the neural network.
 
import torch
import torchvision
from torchvision import transforms, datasets
== Getting Started With Jupyter lab ==