Skip to content

Instantly share code, notes, and snippets.

View AnandAwasthi's full-sized avatar

Anand mohan awasthi AnandAwasthi

View GitHub Profile
@AnandAwasthi
AnandAwasthi / vanilla_cnn_pytorch.py
Last active September 3, 2021 13:17
Convolutional Neural Network using Pytorch(Fashion-MNIST)
from __future__ import print_function
import torch
import torchvision
import torchvision.transforms as transforms
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
import numpy as np
import matplotlib.pyplot as plt