Update networks
This commit is contained in:
parent
0e4fe7ab63
commit
b7755bfea8
9 changed files with 173 additions and 144 deletions
10
src/editor/models/dummy.py
Normal file
10
src/editor/models/dummy.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import torch.nn as nn
|
||||
import torch.nn.functional as F
|
||||
|
||||
|
||||
class Dummy(nn.Module):
|
||||
def __init__(self, **_):
|
||||
super(Dummy, self).__init__()
|
||||
|
||||
def forward(self, x):
|
||||
return x
|
||||
Loading…
Add table
Add a link
Reference in a new issue