博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TensorFlow MobileNet
阅读量:2389 次
发布时间:2019-05-10

本文共 1832 字,大约阅读时间需要 6 分钟。

MobileNet_v1

 are small, low-latency, low-power models parameterized to meet the resource constraints of a variety of use cases. They can be built upon for classification, detection, embeddings and segmentation similar to how other popular large scale models, such as Inception, are used. MobileNets can be run efficiently on mobile devices with .

MobileNets trade off between latency, size and accuracy while comparing favorably with popular models from the literature.

Pre-trained Models

Choose the right MobileNet model to fit your latency and size budget. The size of the network in memory and on disk is proportional to the number of parameters. The latency and power usage of the network scales with the number of Multiply-Accumulates (MACs) which measures the number of fused Multiplication and Addition operations. These MobileNet models have been trained on the  image classification dataset. Accuracies were computed by evaluating using a single image crop.

Model Checkpoint Million MACs Million Parameters Top-1 Accuracy Top-5 Accuracy
569 4.24 70.7 89.5
418 4.24 69.3 88.9
291 4.24 67.2 87.5
186 4.24 64.1 85.3
317 2.59 68.4 88.2
233 2.59 67.4 87.3
162 2.59 65.2 86.1
104 2.59 61.8 83.6
150 1.34 64.0 85.4
110 1.34 62.1 84.0
77 1.34 59.9 82.5
49 1.34 56.2 79.6
41 0.47 50.6 75.0
34 0.47 49.0 73.6
21 0.47 46.0 70.7
14 0.47 41.3 66.2

Here is an example of how to download the MobileNet_v1_1.0_224 checkpoint:

$ CHECKPOINT_DIR=/tmp/checkpoints$ mkdir ${CHECKPOINT_DIR}$ wget http://download.tensorflow.org/models/mobilenet_v1_1.0_224_2017_06_14.tar.gz$ tar -xvf mobilenet_v1_1.0_224_2017_06_14.tar.gz$ mv mobilenet_v1_1.0_224.ckpt.* ${CHECKPOINT_DIR}$ rm mobilenet_v1_1.0_224_2017_06_14.tar.gz

More information on integrating MobileNets into your project can be found at the .

To get started running models on-device go to .

转载地址:http://azxab.baihongyu.com/

你可能感兴趣的文章
[转]Apache Mahout 简介
查看>>
[转]分布式key-value存储方案介绍:Cassandra,LightCloud,TokyoCabinet
查看>>
[转]HDFS+MapReduce+Hive+HBase十分钟快速入门
查看>>
stdlib中的xmalloc,xfree,xinit_mempool
查看>>
关于Java Advanced Imaging(JAI)的一点积累
查看>>
Spirit越狱iPhone/iPod touch/iPad 3.1.3/3.2固件(Windows)
查看>>
[转]Adobe发布Puppet Recipes for Hadoop
查看>>
[转]mysql里not in语句怎么写
查看>>
outlook 2010 突破附件大小限制
查看>>
[转][Magick++] How to convert jpg image to raw 32 bit float
查看>>
[转]数据类型 -- uint32_t 类型
查看>>
[转]C语言系统资源控制(getrlimit && setrlimit)
查看>>
[转]linux文件系统基础知识
查看>>
[转]Centos5 下安装/配置lvm使用reiserfs文件系统
查看>>
[转]Use ReiserFS in CentOS 5(lvm)
查看>>
[转]KFS的部署与简单使用
查看>>
[转]KFS官方部署手册
查看>>
[转]Ubuntu 10.04 LTS 安装 sun-java6-jdk
查看>>
[转]mmap详解
查看>>
[转]HDFS和KFS 比较
查看>>