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