SefyanKehail commited on
Commit
03615e7
·
1 Parent(s): 5dbca73

debugging..

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -51,9 +51,9 @@ print(get_file_size_in_mb("acoustic.pt"))
51
  print(get_file_size_in_mb("hifigan.pt"))
52
 
53
  # Load the models using torch.hub
54
- hubert = torch.hub.load("bshall/hubert:main", "hubert_soft", trust_repo=True, pretrained=False)
55
- acoustic = torch.hub.load("bshall/acoustic-model:main", "hubert_soft", trust_repo=True, pretrained=False)
56
- hifigan = torch.hub.load("bshall/hifigan:main", "hifigan_hubert_soft", trust_repo=True, pretrained=False)
57
 
58
  # hubert, acoustic, hifigan = None, None, None
59
 
 
51
  print(get_file_size_in_mb("hifigan.pt"))
52
 
53
  # Load the models using torch.hub
54
+ # hubert = torch.hub.load("bshall/hubert:main", "hubert_soft", trust_repo=True, pretrained=False)
55
+ # acoustic = torch.hub.load("bshall/acoustic-model:main", "hubert_soft", trust_repo=True, pretrained=False)
56
+ # hifigan = torch.hub.load("bshall/hifigan:main", "hifigan_hubert_soft", trust_repo=True, pretrained=False)
57
 
58
  # hubert, acoustic, hifigan = None, None, None
59