yanboding commited on
Commit
bb59364
·
verified ·
1 Parent(s): e0436c7

Update motion_extractor.py

Browse files
Files changed (1) hide show
  1. motion_extractor.py +1 -1
motion_extractor.py CHANGED
@@ -7,7 +7,7 @@ import pickle
7
  import torchvision
8
 
9
  # Load the TorchScript model once at the top
10
- model_path = '/gemini/space/human_guozz2/dyb/MTVCrafter-main/nlf_l_multi_0.3.2.torchscript'
11
  assert os.path.exists(model_path), f"Model file not found at {model_path}"
12
  model = torch.jit.load(model_path).cuda().eval()
13
 
 
7
  import torchvision
8
 
9
  # Load the TorchScript model once at the top
10
+ model_path = 'nlf_l_multi_0.3.2.torchscript'
11
  assert os.path.exists(model_path), f"Model file not found at {model_path}"
12
  model = torch.jit.load(model_path).cuda().eval()
13