Views
No views yet
| File | Description |
|---|---|
embedder_full_train_epoch_6.pt | Fine-tuned ResNet50 weights (epoch 6) |
faiss_index.bin | FAISS index built over embedded gallery images (if included) |
metadata.json / config.json | Embedding dim, class list, preprocessing params (if included) |
1pip install -r requirements.txt
2python download_weights.py./weights in your project root.DATASET_PATH in prepare_metadata.py to point to your local copy,
preserving the original folder structure:
<DATASET_PATH>/<gender>/<clothing_category>/<item_id>/<image>.jpgpython prepare_metadata.pyoriginal_metadata.csv, full_metadata.csv, and
original_metadata_filtered.csv in your working directory.1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 repo_id="ShushanSS/DeepFashionRetrieval",
5 local_dir="./weights",
6 local_dir_use_symlinks=False,
7)