├── .idea ├── deployment.xml ├── misc.xml ├── modules.xml ├── src.iml └── workspace.xml ├── Groupnormalization.py ├── Network.py ├── README.md ├── Save_path.py ├── __init__.py ├── aug.py ├── data_gen.py ├── deploy_scripts ├── config.json └── customize_service.py ├── efficientnet ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __version__.cpython-36.pyc │ ├── keras.cpython-36.pyc │ ├── model.cpython-36.pyc │ ├── preprocessing.cpython-36.pyc │ └── tfkeras.cpython-36.pyc ├── __version__.py ├── keras.py ├── model.py ├── preprocessing.py └── tfkeras.py ├── eval.py ├── mean_std.py ├── mean_std.txt ├── models ├── __init__.py └── resnet50.py ├── pip-requirements.txt ├── run.py ├── save_model.py ├── train.py ├── train.txt ├── tta_wrapper ├── __init__.py ├── __version__.py ├── augmentation.py ├── functional.py ├── layers.py └── wrappers.py └── warmup_cosine_decay_scheduler.py /.idea/deployment.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/src.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 89 | 90 | 91 | 92 | save_weights_only 93 | Image 94 | ModelCheckpoint 95 | multiprocessing 96 | WEIGHTS_PATH 97 | _preprocess_symbolic_input 98 | WEIGHTS_PATH_NO_TOP 99 | CLASS_INDEX_PATH 100 | crossentropy 101 | file 102 | input_size 103 | classes 104 | Conv2dBn 105 | BaseSequence 106 | train_data_dir 107 | self.train 108 | restore_model_path 109 | FLAGS.train_local 110 | deploy_script_path 111 | groups 112 | self.groups 113 | pooling 114 | data_flow 115 | 116 | 117 | 118 | 151 | 152 | 153 | 154 | 155 | true 156 | DEFINITION_ORDER 157 | 158 | 159 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 |