File size: 264 Bytes
50318d8 |
1 2 3 4 5 6 7 8 9 |
#!/bin/bash
# URL of the file to download
ood_weights="https://huggingface.co/mapitanywhere/mapper/resolve/main/weights/mapper-excl-ood/model.ckpt"
mkdir -p trained_weights
# Download the file using curl
wget $ood_weights -O trained_weights/mapper-excl-ood.ckpt |