Add TODO comments to sus model loads
This commit is contained in:
parent
0afbc0c235
commit
e3a973a68d
@ -119,6 +119,7 @@ class UpscalerScuNET(modules.upscaler.Upscaler):
|
|||||||
def load_model(self, path: str):
|
def load_model(self, path: str):
|
||||||
device = devices.get_device_for('scunet')
|
device = devices.get_device_for('scunet')
|
||||||
if path.startswith("http"):
|
if path.startswith("http"):
|
||||||
|
# TODO: this doesn't use `path` at all?
|
||||||
filename = load_file_from_url(self.model_url, model_dir=self.model_download_path, file_name=f"{self.name}.pth")
|
filename = load_file_from_url(self.model_url, model_dir=self.model_download_path, file_name=f"{self.name}.pth")
|
||||||
else:
|
else:
|
||||||
filename = path
|
filename = path
|
||||||
|
@ -151,6 +151,7 @@ class UpscalerESRGAN(Upscaler):
|
|||||||
|
|
||||||
def load_model(self, path: str):
|
def load_model(self, path: str):
|
||||||
if path.startswith("http"):
|
if path.startswith("http"):
|
||||||
|
# TODO: this doesn't use `path` at all?
|
||||||
filename = modelloader.load_file_from_url(
|
filename = modelloader.load_file_from_url(
|
||||||
url=self.model_url,
|
url=self.model_url,
|
||||||
model_dir=self.model_download_path,
|
model_dir=self.model_download_path,
|
||||||
|
Loading…
Reference in New Issue
Block a user