Upload model
Browse files- config.json +1 -1
- model.safetensors +1 -1
- modeling_resnet3d.py +1 -0
config.json
CHANGED
|
@@ -12,5 +12,5 @@
|
|
| 12 |
"num_layers": 18,
|
| 13 |
"torch_dtype": "float32",
|
| 14 |
"transformers_version": "4.46.3",
|
| 15 |
-
"window_size":
|
| 16 |
}
|
|
|
|
| 12 |
"num_layers": 18,
|
| 13 |
"torch_dtype": "float32",
|
| 14 |
"transformers_version": "4.46.3",
|
| 15 |
+
"window_size": 256
|
| 16 |
}
|
model.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 342867728
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90723bf05df5c63f9b9b783940265ed993dd78c0277f643cca8d8b442a14051a
|
| 3 |
size 342867728
|
modeling_resnet3d.py
CHANGED
|
@@ -3,6 +3,7 @@ import torch
|
|
| 3 |
import torch.nn as nn
|
| 4 |
from .resnetall import generate_model
|
| 5 |
from .configuration_resnet3d import Resnet3DScrollprizeConfig
|
|
|
|
| 6 |
class Decoder(nn.Module):
|
| 7 |
def __init__(self, encoder_dims, upscale):
|
| 8 |
super().__init__()
|
|
|
|
| 3 |
import torch.nn as nn
|
| 4 |
from .resnetall import generate_model
|
| 5 |
from .configuration_resnet3d import Resnet3DScrollprizeConfig
|
| 6 |
+
import torch.nn.functional as F
|
| 7 |
class Decoder(nn.Module):
|
| 8 |
def __init__(self, encoder_dims, upscale):
|
| 9 |
super().__init__()
|