Skip to content

Commit

Permalink
Fix : models import error2
Browse files Browse the repository at this point in the history
  • Loading branch information
soyoonjeong committed Mar 13, 2024
1 parent a6b3baa commit 3e95a90
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion serving/sf2f/inference.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import .models
try:
from . import models
except:
import .models as models
import torch
import os, glob
import mlflow
Expand Down

0 comments on commit 3e95a90

Please sign in to comment.