CaliBench / SMART /MaxLogit /imagenet.bash
zhurong2333's picture
Add files using upload-large-folder tool
0293aec verified
Raw
History Blame Contribute Delete
226 Bytes
#!/bin/bash
export CUDA_VISIBLE_DEVICES=1
models=("densenet121" "vit_b_32" "swin_b")
for model in "${models[@]}"; do
python shats_max_logit.py --model "$model" --dataset imagenet --run_methods "uncalibrated,TS,SHATS"
done