TensorFlow / TensorFlow Lite
Omni-Space
专注Android, Mobile Security and AI
展开
-
Announcing TensorFlow Lite
Today, we're happy to announce the developer preview of TensorFlow Lite, TensorFlow’s lightweight solution for mobile and embedded devices! TensorFlow has always run on many platforms, from racks of s转载 2017-11-15 09:31:30 · 440 阅读 · 0 评论 -
【干货】史上最全的Tensorflow学习资源汇总
在之前的Tensorflow系列文章中,我们教大家学习了Tensorflow的安装、Tensorflow的语法、基本操作、CNN的一些原理和项目实战等。本篇文章将为大家总结Tensorflow纯干货学习资源,非常适合新手学习,建议大家收藏。想要学习更多的Tensorflow知识,欢迎关注我们的微信公众号。一 、Tensorflow教程资源:1)适合初学者的Tensorflow教程和代码...转载 2019-07-29 16:14:47 · 361 阅读 · 0 评论 -
用tf的VocabularyProcessor创建词汇表vocab
学习tf的时候用到的一个词汇创建工具,比较方便,记录其使用方法。1. 导入from tensorflow.contrib import learnvp = learn.preprocessing.VocabularyProcessor(100, 0, tokenizer_fn=chinese_tokenizer)其中VocabularyProcessor(max_docum...转载 2019-05-04 15:22:50 · 681 阅读 · 0 评论 -
如何在TensorFlow中训练Boosted Trees模型
在使用结构化数据时,诸如梯度提升决策树和随机森林之类的树集合方法是最流行和最有效的机器学习工具之一。 树集合方法训练速度快,无需大量调整即可正常工作,并且不需要大型数据集进行训练。在TensorFlow中,梯度增强树可以使用tf.estimator API,它还支持深度神经网络,广泛和深度模型等。 对于增强树,支持具有预定义均方误差损失( BoostedTreesRegressor )的回归和...翻译 2019-04-27 15:49:18 · 1290 阅读 · 0 评论 -
标准化Keras:TensorFlow 2.0中的高级API指南
TensorFlow正准备发布2.0版本 。 在本文中,我们希望预览TensorFlow的高级API标题的方向,并回答一些常见问题。Keras是一个非常受欢迎的高级API,用于构建和培训深度学习模型。 它用于快速原型设计,最先进的研究和生产。 虽然TensorFlow今天支持Keras,但是我们将Keras更紧密地集成到TensorFlow平台的其余部分。通过将Keras建立为Tensor...翻译 2019-04-27 15:47:24 · 799 阅读 · 1 评论 -
当 Android 开发者遇见 TensorFlow
前言当写下这篇文章的时候,其实我连TensorFlow怎么用都不会,所以这篇文章你们就当我放屁好了。我是一个Android开发者,且我不会python(别鄙视我),所以取名为《当Android开发者遇见TensorFlow》。文章并没有什么实质性内容,仅仅是为了敲开机器学习的大门。Java调用TensorFlow前面说了,本宝宝是一只不会python的宝宝,所以这篇文章不会涉及到任何python相...转载 2018-04-02 14:31:55 · 3406 阅读 · 0 评论 -
Tensorflow Lite 编译
Google最近发布了Tensorflow Lite,并且提供了demo,虽然该demo可以使用bazel build –cxxopt=’–std=c++11’ //tensorflow/contrib/lite/java/demo/app/src/main:TfLiteCameraDemo命令成功编译出来,但是文档中并没有提及如何纯粹的编译出动态库,参考之前的一篇文章《当 Android 开发者...转载 2018-04-02 14:13:47 · 3990 阅读 · 2 评论 -
Running Google Machine Learning Library Tensorflow On ARM 64-bit Platform
TensorFlow is an open source software library for machine learning which was developed by Google and open source to community. It supports various kinds of fundamental operations for Machine learning....转载 2018-03-11 15:58:43 · 629 阅读 · 0 评论 -
Introduction to TensorFlow Datasets and Estimators
Datasets and Estimators are two key TensorFlow features you should use:Datasets: The best practice way of creating input pipelines (that is, reading data into your program).Estimators: A high-转载 2017-12-13 08:08:38 · 514 阅读 · 0 评论 -
Introduction to TensorFlow Lite
TensorFlow Lite is TensorFlow’s lightweight solution for mobile and embedded devices. It enables on-device machine learning inference with low latency and a small binary size. TensorFlow Lite also sup转载 2017-11-15 09:33:08 · 845 阅读 · 0 评论 -
Tensorflow Lite之编译生成tflite文件
这是tensorflow生成的各种模型文件:GraphDef (.pb) - a protobuf that represents the TensorFlow training and or computation graph. This contains operators, tensors, and variables definitions.CheckPoint (.ckpt) - ...转载 2019-07-23 15:49:12 · 900 阅读 · 0 评论