info.yml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. BASE_DIR: /home/korsch1/korsch/
  2. DATA_DIR: datasets
  3. MODEL_DIR: models
  4. ############ Existing models
  5. ### weights are used for fine-tuning
  6. ### ft_weights are used for feature extraction
  7. MODELS:
  8. inception_inat: &inception_inat
  9. # class: InceptionV3
  10. folder: inception
  11. class_key: inception
  12. weights: model.inat.ckpt.npz
  13. ft_weights: ft_inat/model.ckpt.npz
  14. inception_imagenet: &inception_inet
  15. # class: InceptionV3
  16. folder: inception
  17. class_key: inception
  18. weights: model.imagenet.ckpt.npz
  19. ft_weights: ft_imagenet/model.ckpt.npz
  20. inception: &inception
  21. <<: *inception_inat
  22. inception_tf_inat: &inception_tf_inat
  23. # class: InceptionV3_TF
  24. folder: inception_tf
  25. class_key: inception_tf
  26. weights: inception_v3_iNat_299.ckpt
  27. ft_weights: ft_inat/inception_v3_iNat_299.ckpt
  28. inception_tf_inet: &inception_tf_inet
  29. # class: InceptionV3_TF
  30. folder: inception_tf
  31. class_key: inception_tf
  32. weights: inception_v3_ILSVRC_299.ckpt
  33. ft_weights: ft_inat/inception_v3_ILSVRC_299.ckpt
  34. inception_tf: &inception_tf
  35. <<: *inception_tf_inat
  36. resnet: &resnet50
  37. # class: ResnetLayers
  38. folder: resnet
  39. class_key: resnet
  40. weights: model.npz
  41. ft_weights: ft_cub200/model.npz
  42. vgg19: &vgg19
  43. # class: VGG19Layers
  44. folder: vgg19
  45. class_key: vgg19
  46. weights: model.npz
  47. ft_weights: ft_cub200/model.npz
  48. ############ Existing Datasets
  49. DATASETS:
  50. CUB200: &cub200
  51. folder: birds
  52. annotations: cub200_11_ORIGINAL
  53. CARS: &cars
  54. folder: cars
  55. annotations: ORIGINAL
  56. ############ Existing Part Annotations and Part Features
  57. PART_TYPES:
  58. GLOBAL: &parts_global
  59. feature_suffix: ""
  60. UNI: &parts_uni
  61. # <<: *cub200
  62. is_uniform: true
  63. feature_suffix: _26parts_uniform
  64. rescale_size: !!int -1
  65. scales:
  66. - 0.2
  67. GT: &parts_gt
  68. # <<: *cub200
  69. feature_suffix: _16parts_gt
  70. rescale_size: !!int -1
  71. scales:
  72. - 0.31
  73. GT2: &parts_gt2
  74. # <<: *cub200
  75. annotations: cub200_11_regrouped
  76. feature_suffix: _5parts_gt
  77. rescale_size: !!int -1
  78. scales:
  79. - 0.31
  80. NAC: &parts_nac
  81. # <<: *cub200
  82. annotations: NAC/2017-bilinear
  83. feature_suffix: _20parts
  84. rescale_size: !!int 224
  85. scales:
  86. - 0.31
  87. - 0.45
  88. L1_pred: &parts_l1p
  89. # <<: *cub200
  90. annotations: cub200_11_L1_pred
  91. feature_suffix: _5parts_L1_pred
  92. rescale_size: !!int 299
  93. scales:
  94. - 0.31
  95. L1_full: &parts_l1f
  96. # <<: *cub200
  97. annotations: cub200_11_L1_full
  98. feature_suffix: _5parts_L1_full
  99. rescale_size: !!int 299
  100. scales:
  101. - 0.31
  102. PARTS:
  103. #### No Parts Annotations
  104. CUB200_GLOBAL:
  105. <<: *cub200
  106. <<: *parts_global
  107. CARS_GLOBAL:
  108. <<: *cars
  109. <<: *parts_global
  110. #### With Parts Annotations
  111. CUB200_UNI:
  112. <<: *cub200
  113. <<: *parts_uni
  114. CUB200_GT:
  115. <<: *cub200
  116. <<: *parts_gt
  117. CUB200_GT2:
  118. <<: *cub200
  119. <<: *parts_gt2
  120. CUB200_NAC:
  121. <<: *cub200
  122. <<: *parts_nac
  123. CUB200_L1_pred:
  124. <<: *cub200
  125. <<: *parts_l1p
  126. CUB200_L1_full:
  127. <<: *cub200
  128. <<: *parts_l1f