| | #!/bin/bash |
| | |
| |
|
| | GPU=1 |
| | CPU=1 |
| | node=63 |
| | jobname=openood |
| |
|
| | PYTHONPATH='.':$PYTHONPATH \ |
| | srun -p dsta --mpi=pmi2 --gres=gpu:${GPU} -n1 \ |
| | --cpus-per-task=${CPU} --ntasks-per-node=${GPU} \ |
| | --kill-on-bad-exit=1 --job-name=${jobname} -w SG-IDC1-10-51-2-${node} \ |
| | python main.py \ |
| | --config configs/datasets/imagenet/imagenet.yml \ |
| | configs/datasets/imagenet/imagenet_ood.yml \ |
| | configs/networks/react_net.yml \ |
| | configs/pipelines/test/test_ood.yml \ |
| | configs/preprocessors/base_preprocessor.yml \ |
| | configs/postprocessors/react.yml \ |
| | --num_workers 4 \ |
| | --ood_dataset.image_size 256 \ |
| | --dataset.test.batch_size 256 \ |
| | --dataset.val.batch_size 256 \ |
| | --network.pretrained False \ |
| | --network.backbone.checkpoint 'results/pretrained_weights/resnet50_imagenet1k_v1.pth' \ |
| | --merge_option merge |
| |
|
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | python scripts/eval_ood_imagenet.py \ |
| | --tvs-pretrained \ |
| | --arch resnet50 \ |
| | --postprocessor react \ |
| | --save-score --save-csv |
| |
|
| | |
| | python scripts/eval_ood_imagenet.py \ |
| | --tvs-pretrained \ |
| | --arch resnet50 \ |
| | --postprocessor react \ |
| | --save-score --save-csv --fsood |
| |
|