Skip to content

Commit

Permalink
Fix : voxdataset import error
Browse files Browse the repository at this point in the history
  • Loading branch information
soyoonjeong committed Mar 13, 2024
1 parent 16bf2e3 commit 4c93d4f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion serving/sf2f/datasets/build_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
import os
import os.path as osp
import numpy as np
from datasets import VoxDataset
try:
from .datasets import VoxDataset
except:
from ..dataset import VoxDataset
from torch.utils.data import DataLoader


Expand Down

0 comments on commit 4c93d4f

Please sign in to comment.