Spaces:
Running
Running
Update small_256_model.py
Browse files- small_256_model.py +3 -0
small_256_model.py
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
class UNet(nn.Module):
|
2 |
def __init__(self):
|
3 |
super(UNet, self).__init__()
|
|
|
1 |
+
import torch
|
2 |
+
import torch.nn as nn
|
3 |
+
import torch.optim as optim
|
4 |
class UNet(nn.Module):
|
5 |
def __init__(self):
|
6 |
super(UNet, self).__init__()
|