Skip to content

Instantly share code, notes, and snippets.

View pranavpandey2511's full-sized avatar
🎯
Focusing

Pranav Pandey pranavpandey2511

🎯
Focusing
View GitHub Profile
@pranavpandey2511
pranavpandey2511 / 0-startup-overview.md
Created September 29, 2022 07:02 — forked from dideler/0-startup-overview.md
Startup Engineering notes
@pranavpandey2511
pranavpandey2511 / cycle_gan_model.py
Last active February 26, 2020 08:25
Cycle GAN model
import torch
import itertools
from util.image_pool import ImagePool
from .base_model import BaseModel
from . import networks
from PIL import Image
import torch.nn.functional as F
import numpy as np
import matplotlib.pyplot as plt
from models.vgg19 import VGG19
@pranavpandey2511
pranavpandey2511 / cycle_gan_model.py
Created February 26, 2020 08:17
Cycle GAN model
import torch
import itertools
from util.image_pool import ImagePool
from .base_model import BaseModel
from . import networks
from PIL import Image
import torch.nn.functional as F
import numpy as np
import matplotlib.pyplot as plt
from models.vgg19 import VGG19