stable-diffusion-webui-wd14-tagger
stable-diffusion-webui-wd14-tagger copied to clipboard
where the heck do you install models??? where to put them???? NO DOC or whatsoever.......
where the heck do you install models??? where to put them???? NO DOC or whatsoever.......
where the heck do you install models??? where to put them???? NO DOC or whatsoever.......
Choose one of them.
Then run it, it should be automatically downloading the required models.
where the heck do you install models??? where to put them???? NO DOC or whatsoever.......
Choose one of them.
Then run it, it should be automatically downloading the required models.
I want to download it manually as the network maybe unable to access. Therefore what directory should I put the models?
For example I download the models from https://huggingface.co/SmilingWolf/wd-v1-4-vit-tagger/, where should I put wd-v1-4-vit-tagger
?
I found that downloaded models is saved here.
C:\Users\YOUR_NAME\.cache\huggingface\hub
i know where they save but not in a proper folder, they all save in unknown un specified folder that you have to look for...... why not like models and lora extention you got guidlines.
please some one make it properly work, we all want to download models separately and know where to put in the folder, NOT IN THE godamn TEMP......... geeez :)))
where the heck do you install models??? where to put them???? NO DOC or whatsoever.......
Choose one of them.
Then run it, it should be automatically downloading the required models.
I want to download it manually as the network maybe unable to access. Therefore what directory should I put the models? For example I download the models from https://huggingface.co/SmilingWolf/wd-v1-4-vit-tagger/, where should I put
wd-v1-4-vit-tagger
?
I edited 'stable-diffusion-webui/extensions/stable-diffusion-webui-wd14-tagger/tagger/interrogator.py'
def download(self) -> Tuple[os.PathLike, os.PathLike]:
print(f"Loading {self.name} model file from {self.kwargs['repo_id']}")
# model_path = Path(hf_hub_download(
# **self.kwargs, filename=self.model_path))
# tags_path = Path(hf_hub_download(
# **self.kwargs, filename=self.tags_path))
# use local path instead
base_path = f"stable-diffusion-webui/extensions/stable-diffusion-webui-wd14-tagger/models/{self.kwargs['repo_id']}"
model_path = f'{base_path}/{self.model_path}'
tags_path = f'{base_path}/{self.tags_path}'
return model_path, tags_path
problem solved
I edited 'stable-diffusion-webui/extensions/stable-diffusion-webui-wd14-tagger/tagger/interrogator.py'
def download(self) -> Tuple[os.PathLike, os.PathLike]: print(f"Loading {self.name} model file from {self.kwargs['repo_id']}") # model_path = Path(hf_hub_download( # **self.kwargs, filename=self.model_path)) # tags_path = Path(hf_hub_download( # **self.kwargs, filename=self.tags_path)) # use local path instead base_path = f"stable-diffusion-webui/extensions/stable-diffusion-webui-wd14-tagger/models/{self.kwargs['repo_id']}" model_path = f'{base_path}/{self.model_path}' tags_path = f'{base_path}/{self.tags_path}' return model_path, tags_path
problem solved
you GENIUS