lorneluo commited on
Commit
40258be
1 Parent(s): 54c22e4
.gitignore CHANGED
@@ -1,2 +1,3 @@
1
  venv/
2
- .idea/
 
 
1
  venv/
2
+ .idea/
3
+ __pycache__/
demucs/__pycache__/__init__.cpython-310.pyc DELETED
Binary file (166 Bytes)
 
demucs/__pycache__/apply.cpython-310.pyc DELETED
Binary file (8.15 kB)
 
demucs/__pycache__/demucs.cpython-310.pyc DELETED
Binary file (14.1 kB)
 
demucs/__pycache__/filtering.cpython-310.pyc DELETED
Binary file (17 kB)
 
demucs/__pycache__/hdemucs.cpython-310.pyc DELETED
Binary file (21.3 kB)
 
demucs/__pycache__/model.cpython-310.pyc DELETED
Binary file (6.25 kB)
 
demucs/__pycache__/model_v2.cpython-310.pyc DELETED
Binary file (6.33 kB)
 
demucs/__pycache__/pretrained.cpython-310.pyc DELETED
Binary file (5.07 kB)
 
demucs/__pycache__/repo.cpython-310.pyc DELETED
Binary file (5.97 kB)
 
demucs/__pycache__/spec.cpython-310.pyc DELETED
Binary file (1.26 kB)
 
demucs/__pycache__/states.cpython-310.pyc DELETED
Binary file (4.47 kB)
 
demucs/__pycache__/tasnet_v2.cpython-310.pyc DELETED
Binary file (12 kB)
 
demucs/__pycache__/utils.cpython-310.pyc DELETED
Binary file (13.9 kB)
 
demucs/repo.py CHANGED
@@ -141,7 +141,7 @@ class AnyModelRepo:
141
  return self.model_repo.has_model(name_or_sig) or self.bag_repo.has_model(name_or_sig)
142
 
143
  def get_model(self, name_or_sig: str) -> AnyModel:
144
- print('name_or_sig: ', name_or_sig)
145
  if self.model_repo.has_model(name_or_sig):
146
  return self.model_repo.get_model(name_or_sig)
147
  else:
 
141
  return self.model_repo.has_model(name_or_sig) or self.bag_repo.has_model(name_or_sig)
142
 
143
  def get_model(self, name_or_sig: str) -> AnyModel:
144
+ # print('name_or_sig: ', name_or_sig)
145
  if self.model_repo.has_model(name_or_sig):
146
  return self.model_repo.get_model(name_or_sig)
147
  else: