# MobileNet **Repository Path**: zjh56_admin/MobileNet ## Basic Information - **Project Name**: MobileNet - **Description**: MobileNet with Re-training/Fine-tuning and Center/Triplet Loss - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-02 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MobileNet ![You_asked for_this](https://img.shields.io/badge/You_asked-for_this-orange.svg) > MobileNet on TensorFlow with ability to fine-tune and incorporate center or triplet loss A tensorflow implementation of Google's [MobileNets](https://arxiv.org/abs/1704.04861) for re-training/fine-tuning on your own custom dataset with the addition of (optional) center loss or triplet loss. Additionally, this repo can be used to re-train Inception network as well with the above added benefits. ## Tensorflow release Currently this repo is compatible with Tensorflow 1.3.0. ## News | Date | Update | |----------|--------| | 2017-10-25 | Currently working on triplet loss | | 2017-10-25 | Added code to support center loss | ## Pre-trained Model Inception_v3 is the most accurate model, but also the slowest. For faster or smaller models, choose a MobileNet with the form `mobilenet___[(optional)quantized]`. For example,'mobilenet_1.0_224' will pick a model that is 17 MB in size and takes 224 pixel input images, while 'mobilenet_0.25_128_quantized' will choose a much less accurate, but smaller and faster network that's 920 KB on disk and takes 128x128 images. These models are automatically downloaded for you. ## Installation Details on how to install and re-train on your own dataset can be found on the ![wiki page](https://github.com/ronny3050/MobileNet/wiki/Re-train-MobileNet-on-your-own-dataset). Different parameters that can be tweaked are also given there. ## Inspiration The code is heavily inspired by the Tensorflow's [Retrain Script](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/examples/image_retraining/retrain.py) and [FaceNet](https://github.com/davidsandberg/facenet).