Skip to content

Instantly share code, notes, and snippets.

View kaparoo's full-sized avatar

Jaewoo Park kaparoo

  • IIVS, DGIST
  • Daegu, Republic of Korea
  • 13:14 (UTC +09:00)
View GitHub Profile
@kaparoo
kaparoo / pix2pix.py
Last active April 6, 2023 12:47
Standalone pix2pix framework using PyTorch Lightning
# -*- coding: utf-8 -*-
__all__ = ("Pix2Pix",)
from collections.abc import Sequence
from itertools import pairwise
from typing import Any
import torch
import torch.nn as nn
@kaparoo
kaparoo / .gitignore
Last active January 14, 2024 22:51
Common .gitignore, pyproject.toml and vscode configurations for python projects
# ========================== #
# Etc. #
# ========================== #
# python virtual environments
.venv*
# private stuffs
*/privates/