Views
No views yet
1from huggingface_hub import hf_hub_download
2import torch
3
4# Download models
5resnet_path = hf_hub_download(repo_id="Stylique/dressify-models", filename="resnet_item_embedder_best.pth")
6vit_path = hf_hub_download(repo_id="Stylique/dressify-models", filename="vit_outfit_model_best.pth")
7
8# Load models
9resnet_model = torch.load(resnet_path)
10vit_model = torch.load(vit_path)1@misc{dressify2024,
2 title={Dressify: Deep Learning for Fashion Outfit Recommendation},
3 author={Stylique},
4 year={2024},
5 url={https://huggingface.co/Stylique/dressify-models}
6}