mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-21 21:58:47 +00:00
prepare_test_weights: add DINOv2
This commit is contained in:
parent
68cc346905
commit
f0ea1a2509
|
@ -306,6 +306,30 @@ def download_sam():
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def download_dinov2():
|
||||||
|
# For conversion
|
||||||
|
weights_folder = os.path.join(test_weights_dir)
|
||||||
|
urls = [
|
||||||
|
"https://dl.fbaipublicfiles.com/dinov2/dinov2_vits14/dinov2_vits14_pretrain.pth",
|
||||||
|
"https://dl.fbaipublicfiles.com/dinov2/dinov2_vitb14/dinov2_vitb14_pretrain.pth",
|
||||||
|
"https://dl.fbaipublicfiles.com/dinov2/dinov2_vitl14/dinov2_vitl14_pretrain.pth",
|
||||||
|
"https://dl.fbaipublicfiles.com/dinov2/dinov2_vits14/dinov2_vits14_reg4_pretrain.pth",
|
||||||
|
"https://dl.fbaipublicfiles.com/dinov2/dinov2_vitb14/dinov2_vitb14_reg4_pretrain.pth",
|
||||||
|
"https://dl.fbaipublicfiles.com/dinov2/dinov2_vitl14/dinov2_vitl14_reg4_pretrain.pth",
|
||||||
|
]
|
||||||
|
download_files(urls, weights_folder)
|
||||||
|
|
||||||
|
# For testing (note: versions with registers are not available yet on HuggingFace)
|
||||||
|
for repo in ["dinov2-small", "dinov2-base", "dinov2-large"]:
|
||||||
|
base_folder = os.path.join(test_weights_dir, "facebook", repo)
|
||||||
|
urls = [
|
||||||
|
f"https://huggingface.co/facebook/{repo}/raw/main/config.json",
|
||||||
|
f"https://huggingface.co/facebook/{repo}/raw/main/preprocessor_config.json",
|
||||||
|
f"https://huggingface.co/facebook/{repo}/resolve/main/pytorch_model.bin",
|
||||||
|
]
|
||||||
|
download_files(urls, base_folder)
|
||||||
|
|
||||||
|
|
||||||
def printg(msg: str):
|
def printg(msg: str):
|
||||||
"""print in green color"""
|
"""print in green color"""
|
||||||
print("\033[92m" + msg + "\033[0m")
|
print("\033[92m" + msg + "\033[0m")
|
||||||
|
@ -541,6 +565,45 @@ def convert_sam():
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def convert_dinov2():
|
||||||
|
run_conversion_script(
|
||||||
|
"convert_dinov2.py",
|
||||||
|
"tests/weights/dinov2_vits14_pretrain.pth",
|
||||||
|
"tests/weights/dinov2_vits14_pretrain.safetensors",
|
||||||
|
expected_hash="b7f9b294",
|
||||||
|
)
|
||||||
|
run_conversion_script(
|
||||||
|
"convert_dinov2.py",
|
||||||
|
"tests/weights/dinov2_vitb14_pretrain.pth",
|
||||||
|
"tests/weights/dinov2_vitb14_pretrain.safetensors",
|
||||||
|
expected_hash="d72c767b",
|
||||||
|
)
|
||||||
|
run_conversion_script(
|
||||||
|
"convert_dinov2.py",
|
||||||
|
"tests/weights/dinov2_vitl14_pretrain.pth",
|
||||||
|
"tests/weights/dinov2_vitl14_pretrain.safetensors",
|
||||||
|
expected_hash="71eb98d1",
|
||||||
|
)
|
||||||
|
run_conversion_script(
|
||||||
|
"convert_dinov2.py",
|
||||||
|
"tests/weights/dinov2_vits14_reg4_pretrain.pth",
|
||||||
|
"tests/weights/dinov2_vits14_reg4_pretrain.safetensors",
|
||||||
|
expected_hash="89118b46",
|
||||||
|
)
|
||||||
|
run_conversion_script(
|
||||||
|
"convert_dinov2.py",
|
||||||
|
"tests/weights/dinov2_vitb14_reg4_pretrain.pth",
|
||||||
|
"tests/weights/dinov2_vitb14_reg4_pretrain.safetensors",
|
||||||
|
expected_hash="b0296f77",
|
||||||
|
)
|
||||||
|
run_conversion_script(
|
||||||
|
"convert_dinov2.py",
|
||||||
|
"tests/weights/dinov2_vitl14_reg4_pretrain.pth",
|
||||||
|
"tests/weights/dinov2_vitl14_reg4_pretrain.safetensors",
|
||||||
|
expected_hash="b3d877dc",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def download_all():
|
def download_all():
|
||||||
print(f"\nAll weights will be downloaded to {test_weights_dir}\n")
|
print(f"\nAll weights will be downloaded to {test_weights_dir}\n")
|
||||||
download_sd15("runwayml/stable-diffusion-v1-5")
|
download_sd15("runwayml/stable-diffusion-v1-5")
|
||||||
|
@ -554,6 +617,7 @@ def download_all():
|
||||||
download_ip_adapter()
|
download_ip_adapter()
|
||||||
download_t2i_adapter()
|
download_t2i_adapter()
|
||||||
download_sam()
|
download_sam()
|
||||||
|
download_dinov2()
|
||||||
|
|
||||||
|
|
||||||
def convert_all():
|
def convert_all():
|
||||||
|
@ -567,6 +631,7 @@ def convert_all():
|
||||||
convert_ip_adapter()
|
convert_ip_adapter()
|
||||||
convert_t2i_adapter()
|
convert_t2i_adapter()
|
||||||
convert_sam()
|
convert_sam()
|
||||||
|
convert_dinov2()
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
Loading…
Reference in a new issue