Skip to content

Commit

Permalink
safer link
Browse files Browse the repository at this point in the history
  • Loading branch information
lllyasviel committed Dec 13, 2023
1 parent 02f3b2b commit 406133f
Show file tree
Hide file tree
Showing 4 changed files with 9,087 additions and 4 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ __pycache__
*.corrupted
*.partial
*.onnx
*.csv
sorted_styles.json
/input
/cache
Expand Down
4 changes: 2 additions & 2 deletions extras/wd14tagger.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ def default_interrogator(image_rgb, threshold=0.35, character_threshold=0.85, ex
model_name = "wd-v1-4-moat-tagger-v2"

model_onnx_filename = load_file_from_url(
url=f'https://huggingface.co/SmilingWolf/{model_name}/resolve/main/model.onnx',
url=f'https://huggingface.co/lllyasviel/misc/resolve/main/{model_name}.onnx',
model_dir=path_clip_vision,
file_name=f'{model_name}.onnx',
)

model_csv_filename = load_file_from_url(
url=f'https://huggingface.co/SmilingWolf/{model_name}/resolve/main/selected_tags.csv',
url=f'https://huggingface.co/lllyasviel/misc/resolve/main/{model_name}.csv',
model_dir=path_clip_vision,
file_name=f'{model_name}.csv',
)
Expand Down
2 changes: 1 addition & 1 deletion fooocus_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = '2.1.834'
version = '2.1.835'
Loading

0 comments on commit 406133f

Please sign in to comment.