Spaces:
Running
Running
S209: fix relative import depth (.utils -> ..utils) in vendored AP-BWE
Browse files
apbwe_vendor/models/model.py
CHANGED
|
@@ -15,7 +15,7 @@ models/utils/env/datasets.
|
|
| 15 |
"""
|
| 16 |
import torch
|
| 17 |
import torch.nn as nn
|
| 18 |
-
from .utils import init_weights, get_padding
|
| 19 |
|
| 20 |
LRELU_SLOPE = 0.1
|
| 21 |
|
|
|
|
| 15 |
"""
|
| 16 |
import torch
|
| 17 |
import torch.nn as nn
|
| 18 |
+
from ..utils import init_weights, get_padding
|
| 19 |
|
| 20 |
LRELU_SLOPE = 0.1
|
| 21 |
|