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
[alias] | |
lg = log --format='%C(auto)%h %d (%C(cyan)%ad%C(auto)) %C(red)%an%C(auto) %s' --graph --all --date=format:'%Y-%m-%d %H:%M:%S' |
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 dataclasses import dataclass | |
import numpy as np | |
import random | |
import torch as t | |
from torch import nn | |
from torchvision.ops import nms | |
from torch.nn import functional as F | |
from torchvision.ops import RoIPool | |
from torchvision.models import vgg16 |