Skip to content

Commit

Permalink
Fix : models import error4
Browse files Browse the repository at this point in the history
  • Loading branch information
soyoonjeong committed Mar 13, 2024
1 parent 5d9e8fc commit cf7f663
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
@@ -1,5 +1,8 @@
import torch
import models
try:
from .models import *
except:
from models import *
from copy import deepcopy
from utils import update_values, load_model_state
import glog as log
Expand Down

0 comments on commit cf7f663

Please sign in to comment.