View find_ipad_slot.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find spot. | |
from bs4 import BeautifulSoup | |
import requests | |
import json | |
# change accordingly. | |
postal_code = '60615' | |
def find_spot(): | |
headers = { |
View gist:c7e1a6b424fe4adbcedf6dcab4b80ded
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.nn as nn | |
class involution(torch.nn.Module): | |
def __init__(self): | |
super().__init__() | |
self.K = K = 3 | |
self.C = C = 256 | |
self.r = r = 64 | |
self.G = G = 64 |
View gist:54c25460b2ca43a274f50e1a7daa409a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.nn as nn | |
class X(nn.Module): | |
def __init__(self): | |
super().__init__() | |
self.a = nn.Linear(3,4) | |
def forward(self, x): | |
x = next(self.parameters()) | |
import torchvision |
View test_dist.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import tempfile | |
import torch | |
import torch.distributed as dist | |
import torch.nn as nn | |
import torch.optim as optim | |
import torch.multiprocessing as mp | |
from torch.nn.parallel import DistributedDataParallel as DDP |
View train_cityscapes2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.multiprocessing as mp | |
import torch.distributed as dist | |
from torchvision import transforms | |
import random | |
from functools import partial | |
from easydict import EasyDict as edict | |
from albumentations import ( | |
Compose, HorizontalFlip, ShiftScaleRotate, PadIfNeeded, RandomCrop, | |
RGBShift, RandomBrightness, RandomContrast |
View train_cityscapes2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.multiprocessing as mp | |
import torch.distributed as dist | |
from torchvision import transforms | |
import random | |
from functools import partial | |
from easydict import EasyDict as edict | |
from albumentations import ( | |
Compose, HorizontalFlip, ShiftScaleRotate, PadIfNeeded, RandomCrop, | |
RGBShift, RandomBrightness, RandomContrast |
View train_cityscapes2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.multiprocessing as mp | |
import torch.distributed as dist | |
from torchvision import transforms | |
import random | |
from functools import partial | |
from easydict import EasyDict as edict | |
from albumentations import ( | |
Compose, HorizontalFlip, ShiftScaleRotate, PadIfNeeded, RandomCrop, | |
RGBShift, RandomBrightness, RandomContrast |
View cached_transformer.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file contains Transformer network | |
# Most of the code is copied from http://nlp.seas.harvard.edu/2018/04/03/attention.html | |
# The cfg name correspondance: | |
# N=num_layers | |
# d_model=input_encoding_size | |
# d_ff=rnn_size | |
# h is always 8 | |
from __future__ import absolute_import |
View Detectron.pytorch_pth1_patch.diff
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 784c05a1ca663d88d68a644108ad2514b79310dc Mon Sep 17 00:00:00 2001 | |
From: adityaarun1 <adityaarun1@gmail.com> | |
Date: Wed, 16 Jan 2019 22:15:26 +0530 | |
Subject: [PATCH] migrating to Pytorch-1.0 | |
--- | |
.gitignore | 2 + | |
README.md | 13 +- | |
lib/make.sh | 56 +- |
View test_roialign.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import absolute_import | |
from __future__ import division | |
from __future__ import print_function | |
import torch | |
import torch.nn as nn | |
import torch.nn.functional as F | |
from torch.autograd import Variable | |
import numpy as np |
NewerOlder