display.sh 824 B

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env bash
  2. PYTHON=python
  3. ############## Possible calls ##############
  4. ##### displays GT parts of CUB200
  5. # ./display.sh /home/korsch1/korsch/datasets/birds/cub200_11 \
  6. # --dataset cub \
  7. # -s600 -n5 \
  8. # --features /home/korsch1/korsch/datasets/birds/features/{train,val}_16parts_gt.npz \
  9. # --ratio 0.31
  10. ##### displays NAC parts of CUB200
  11. # ./display.sh /home/korsch1/korsch/datasets/birds/NAC/2017-bilinear/ \
  12. # --dataset cub \
  13. # -s600 -n5 \
  14. # --features /home/korsch1/korsch/datasets/birds/features/{train,val}_20parts.npz \
  15. # --ratio 0.31 \
  16. # --rescale_size 227
  17. ##### load from info file, displays Uniform parts of CUB200 that are in the GT bounding box
  18. # ./display.sh ~/DATA/info.yml \
  19. # -p UNI \
  20. # -s600 -n3 \
  21. # --parts_in_bb
  22. ############################################
  23. $PYTHON display.py $@