TensorFlow智能移动项目(影印版) 东南大学出版社 下载 pdf 百度网盘 epub 免费 2025 电子书 mobi 在线

TensorFlow智能移动项目(影印版) 东南大学出版社精美图片
》TensorFlow智能移动项目(影印版) 东南大学出版社电子书籍版权问题 请点击这里查看《

TensorFlow智能移动项目(影印版) 东南大学出版社书籍详细信息

  • ISBN:9787564182908
  • 作者:暂无作者
  • 出版社:暂无出版社
  • 出版时间:2019-03
  • 页数:暂无页数
  • 价格:62.60
  • 纸张:胶版纸
  • 装帧:平装-胶订
  • 开本:16开
  • 语言:未知
  • 丛书:暂无丛书
  • TAG:暂无
  • 豆瓣评分:暂无豆瓣评分
  • 豆瓣短评:点击查看
  • 豆瓣讨论:点击查看
  • 豆瓣目录:点击查看
  • 读书笔记:点击查看
  • 原文摘录:点击查看
  • 更新时间:2025-01-19 17:56:23

寄语:

新华书店正版,关注店铺成为会员可享店铺专属优惠,团购客户请咨询在线客服!


内容简介:

作为一名开发人员,您总是需要留心并做好准备以应对即将发生的事情,同时还要关注当前趋势。那么,有什么比学习现在和未来这两个世界的完美结合更好呢?人工智能(AI)被广泛认为是继移动之后的下一个大产业,而谷歌的TensorFlow是靠前的开源机器学习框架,也是人工智能很热门的分支。这本书涵盖了10多个完整的以TensorFlow为引擎、运行各种很酷的TensorFlow模型离线设备从头开始构建的IOS、Android和树莓派apps:从计算机视觉、语音和语言处理到生成对抗网络和AlphaZero之类的深度学习。您将学习如何使用或重新训练现有的TensorFlow模型,构建自己的模型,以及开发运行这些TensorFlow模型的智能移动apps。您将了解如何使用循序渐进的教程快速构建这样的app,以及如何利用大量来之不易的故障排除技巧来避免开发过程中的许多陷阱。


书籍目录:

Preface

Chapter 1: Getting Started with Mobile TensorFIow

Setting up TensorFIow

Setting up TensorFIow on MacOS

Setting up TensorFIow on GPU-powered Ubuntu

Setting up Xcode

Setting up Android Studio

TensorFIow Mobile vs TensorFIow Lite

Running sample TensorFIow iOS apps

Running sample TensorFIow Android apps

Summary

Chapter 2: Classifying Images with Transfer Learning

Transfer learning - what and why

Retraining using the Inception v3 model

Retraining using MobileNet models

Using the retrained models in the sample iOS app

Using the retrained models in the sample Android app

Adding TensorFIow to your own iOS app

Adding TensorFIow to your Objective-C iOS app

Adding TensorFIow to your Swift iOS app

Adding TensorFIow to your own Android app

Summary

Chapter 3: Detecting Objects and Their Locations

Object detection-a quick overview

Setting up the TensorFIow Object Detection API

Quick installation and example

Using pre-trained models

Retraining SSD-MobileNet and Faster RCNN models

Using object detection models in iOS

Building TensorFIow iOS libraries manually

Using TensorFIow iOS libraries in an app

Adding an object detection feature to an lOS app

Using YOLO2-another object-detection model

Summary

Chapter 4: Transforming Pictures with Amazing Art Styles

Neural Style Transfer - a quick overview

Training fast neural-style transfer models

Using fast neural-style transfer models in lOS

Adding and testing with fast neural transfer models

Looking back at the lOS code using fast neural transfer models

Using fast neural-style transfer models in Android

Using the TensorFIow Magenta multi-style model in lOS

Using the TensorFIow Magenta multi-style model in Android

Summary

Chapter 5: Understanding Simple Speech Commands

Speech recognition - a quick overview

Training a simple commands recognition model

Using a simple speech recognition model in Android

Building a new app using the model

Showing model-powered recognition results

Using a simple speech recognition model in lOS with Objective-C

Building a new app using the model

Fixing model-loading errors with tf_op_files.txt

Using a simple speech recognition model in lOS with Swift

Summary

Chapter 6: Describing Images in Natural Language

Image captioning - how it works

Training and freezing an image captioning model

Training and testing caption generation

Freezing the image captioning model

Transforming and optimizing the image captioning model

Fixing errors with transformed models

Optimizing the transformed model

Using the image captioning model in lOS

Using the image captioning model in Android

Summary

Chapter 7: Recognizing Drawing with CNN and LSTM

Drawing classification - how it works

Training, predicting, and preparing the drawing classification model

Training the drawing classification model

Predicting with the drawing classification model

Preparing the drawing classification model

Using the drawing classification model in lOS

Building custom TensorFIow library for lOS

Developing an lOS app to use the model

Using the drawing classification model in Android

Building custom TensorFIow library for Android

Developing an Android app to use the model

Summary

Chapter 8: Predicting Stock Price with RNN

RNN and stock price prediction - what and how

Using the TensorFIow RNN API for stock price prediction

Training an RNN model in TensorFIow

Testing the TensorFIow RNN model

Using the Keras RNN LSTM API for stock price prediction

Training an RNN model in Keras

Testing the Keras RNN model

Running the TensorFIow and Keras models on iOS

Running the TensorFIow and Keras models on Android

Summary

Chapter 9: Generating and Enhancing Images with GAN

GAN - what and why

Building and training GAN models with TensorFIow

Basic GAN model of generating handwritten digits

Advanced GAN model of enhancing image resolution

Using the GAN models in iOS

Using the basic GAN model

Using the advanced GAN model

Using the GAN models in Android

Using the basic GAN model

Using the advanced GAN model

Summary

Chapter 10: Building an AlphaZero-like Mobile Game App

AlphaZero - how does it work?

Training and testing an AlphaZero-like model for Connect 4

Training the model

Testing the model

Looking into the model-building code

Freezing the model

Using the model in iOS to play Connect 4

Using the model in Android to play Connect 4

Summary

Chapter 11: Using TensorFIow Lite and Core ML on Mobile

TensorFIow Lite - an overview

Using TensorFIow Lite in iOS

Running the example TensorFIow Lite iOS apps

Using a prebuilt TensorFIow Lite model in iOS

Using a retrained TensorFIow model for TensorFIow Lite in iOS

Using a custom TensorFIow Lite model in iOS

Using TensorFIow Lite in Android

Core ML for iOS - an overview

Using Core ML with Scikit-Learn machine learning

Building and converting the Scikit Learn models

Using the converted Core ML models in iOS

Using Core ML with Keras and TensorFIow

Summary

Chapter 12: Developing TensorFIow Apps on Raspberry Pi

Setting up Raspberry Pi and making it move

Setting up Raspberry Pi

Making Raspberry Pi move

Setting up TensorFIow on Raspberry Pi

Image recognition and text to speech

Audio recognition and robot movement

Reinforcement learning on Raspberry Pi

Understanding the CartPole simulated environment

Starting with basic intuitive policy

Using neural networks to build a better policy

Summary

Final words

Other Books You May Enjoy

Index


作者介绍:

暂无相关内容,正在全力查找中


出版社信息:

暂无出版社相关信息,正在全力查找中!


书籍摘录:

暂无相关书籍摘录,正在全力查找中!



原文赏析:

暂无原文赏析,正在全力查找中!


其它内容:

暂无其它内容!


书籍真实打分

  • 故事情节:7分

  • 人物塑造:8分

  • 主题深度:9分

  • 文字风格:4分

  • 语言运用:6分

  • 文笔流畅:5分

  • 思想传递:9分

  • 知识深度:3分

  • 知识广度:6分

  • 实用性:7分

  • 章节划分:3分

  • 结构布局:5分

  • 新颖与独特:8分

  • 情感共鸣:7分

  • 引人入胜:8分

  • 现实相关:3分

  • 沉浸感:5分

  • 事实准确性:8分

  • 文化贡献:6分


网站评分

  • 书籍多样性:7分

  • 书籍信息完全性:8分

  • 网站更新速度:5分

  • 使用便利性:3分

  • 书籍清晰度:7分

  • 书籍格式兼容性:4分

  • 是否包含广告:7分

  • 加载速度:9分

  • 安全性:8分

  • 稳定性:3分

  • 搜索功能:8分

  • 下载便捷性:9分


下载点评

  • azw3(125+)
  • 差评(633+)
  • 无漏页(138+)
  • 推荐购买(260+)
  • epub(293+)
  • 购买多(634+)
  • 值得下载(301+)
  • 书籍完整(263+)

下载评价

  • 网友 薛***玉: ( 2025-01-16 08:16:32 )

    就是我想要的!!!

  • 网友 谢***灵: ( 2024-12-24 06:45:42 )

    推荐,啥格式都有

  • 网友 师***怀: ( 2024-12-25 20:53:23 )

    好是好,要是能免费下就好了

  • 网友 益***琴: ( 2024-12-27 11:59:02 )

    好书都要花钱,如果要学习,建议买实体书;如果只是娱乐,看看这个网站,对你来说,是很好的选择。

  • 网友 车***波: ( 2025-01-11 04:47:25 )

    很好,下载出来的内容没有乱码。

  • 网友 龚***湄: ( 2024-12-25 13:17:24 )

    差评,居然要收费!!!

  • 网友 常***翠: ( 2025-01-18 17:25:46 )

    哈哈哈哈哈哈

  • 网友 隗***杉: ( 2024-12-22 17:54:07 )

    挺好的,还好看!支持!快下载吧!

  • 网友 习***蓉: ( 2025-01-09 09:27:00 )

    品相完美

  • 网友 邱***洋: ( 2024-12-21 14:15:54 )

    不错,支持的格式很多

  • 网友 印***文: ( 2025-01-16 04:29:45 )

    我很喜欢这种风格样式。


随机推荐