Spaces:
Runtime error
Runtime error
Arnaudding001
commited on
Commit
•
9a2b984
1
Parent(s):
8e4ade6
Update dualstylegan.py
Browse files- dualstylegan.py +1 -1
dualstylegan.py
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
import random
|
2 |
import torch
|
3 |
from torch import nn
|
4 |
-
from
|
5 |
|
6 |
class AdaptiveInstanceNorm(nn.Module):
|
7 |
def __init__(self, fin, style_dim=512):
|
|
|
1 |
import random
|
2 |
import torch
|
3 |
from torch import nn
|
4 |
+
from stylegan_model import ConvLayer, PixelNorm, EqualLinear, Generator
|
5 |
|
6 |
class AdaptiveInstanceNorm(nn.Module):
|
7 |
def __init__(self, fin, style_dim=512):
|