#!/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