Skip to content

Commit

Permalink
Feat : utils import error
Browse files Browse the repository at this point in the history
  • Loading branch information
soyoonjeong committed Mar 13, 2024
1 parent 640598e commit 7dcbba0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion serving/sf2f/models/model_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
except:
from ..models import *
from copy import deepcopy
from utils import update_values, load_model_state
try:
from ..utils import update_values, load_model_state
except:
from .utils import update_values, load_model_state
import glog as log

def build_model(opts, image_size, checkpoint_start_from=None):
Expand Down

0 comments on commit 7dcbba0

Please sign in to comment.