.. _image_classification: Image Classification ==================== ###### Model ###### Our ResNet-50 v2 model is a mixed precison replica of `TensorFlow ResNet-50 `_ , which corresponds to the model defined in the paper `Identity Mappings in Deep Residual Networks `_ by Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun, Jul 2016. This model was trained with different optimizers to state-of-the art accuracy for ResNet-50 model. Our best model reached top-1=77.63%, top-5=93.73 accuracy for Imagenet classification task. ################ Get data ################ You will need to download the ImageNet dataset and convert it to TFRecord format as described in `TensorFlow ResNet `_ * `AdamW `_ * `NovoGrad `_ .. list-table:: :widths: 2 1 1 1 2 1 1 :header-rows: 1 * - Optimizer - Training epochs - top-1, % - top-5, % - Config file - Checkpoint - log * - SGD with momentum - 100 - 76.38 - 93.08 - `sgd_100 `_ - checkpoint - log * - AdamW - 100 - 76.36 - 93.01 - `adamw_100 `_ - checkpoint - log * - :doc:`NovoGrad ` - 100 - 77.00 - 93.37 - `nvgrad_100 `_ - checkpoint - log * - :doc:`NovoGrad ` - 300 - 77.63 - 93.73 - `nvgrad_300 `_ - checkpoint - log Detailed training parameters are in corresponding configuration file.