JunlinHan commited on
Commit
5337d6c
1 Parent(s): 13a90e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ from gradio_litmodel3d import LitModel3D
18
  # we load the pre-trained model from HF
19
  class LRMGeneratorWrapper:
20
  def __init__(self):
21
- self.config = AutoConfig.from_pretrained("jadechoghari/vfusion3d", trust_remote_code=True)
22
- self.model = AutoModel.from_pretrained("jadechoghari/vfusion3d", trust_remote_code=True)
23
  self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
24
  self.model.to(self.device)
25
  self.model.eval()
 
18
  # we load the pre-trained model from HF
19
  class LRMGeneratorWrapper:
20
  def __init__(self):
21
+ self.config = AutoConfig.from_pretrained("facebook/vfusion3d", trust_remote_code=True)
22
+ self.model = AutoModel.from_pretrained("facebook/vfusion3d", trust_remote_code=True)
23
  self.device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
24
  self.model.to(self.device)
25
  self.model.eval()