This commit is contained in:
Phil Wang
2022-04-07 07:29:34 -07:00
parent 25fb133c83
commit f283bf25be
5 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import torch
import torch.nn.functional as F
from torch import nn, einsum
from einops import rearrange
class DALLE2(nn.Module):
def __init__(self):
super().__init__()
def forward(self, x):
return x