Google ML Kit分析

1. ML Kit简介 在 Google I/O 2018 上,Google 发布了 ML Kit。通过 ML Kit,即使没有机器学习背景的开发者也可以快速开发出一些基于机器学习的项目。调用

高通AI体系分析

高通AI发展历史 https://www.qualcomm.com/media/documents/files/making-ai-ubiquitous.pdf 硬件 各种手机芯片:660,710,855,865 qualcomm cloud AI 100:2019年发布,7nm专用人工智能处理器,350 tops性能

NCHW与NHWC

转换 NHWC –> NCHW: 1 2 3 4 5 6 7 8 9 import tensorflow as tf x = tf.reshape(tf.range(24), [1, 3, 4, 2]) out = tf.transpose(x, [0, 3, 1, 2]) print x.shape print out.shape (1, 3, 4, 2) (1, 2, 3, 4) NCHW –> NHWC: 1 2 3 4 5 6 7