Skip to content

Instantly share code, notes, and snippets.

View jsully1996's full-sized avatar
😎
At the Pool

Jamshed Khan jsully1996

😎
At the Pool
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@jsully1996
jsully1996 / PyTorch Basic GAN implementation
Created March 9, 2019 06:56
A basic GAN in Pytorch using ~150 lines of code. Forked from eriklindernoren.
import argparse
import os
import numpy as np
import math
import torchvision.transforms as transforms
from torchvision.utils import save_image
from torch.utils.data import DataLoader
from torchvision import datasets