본문 바로가기

리디 접속이 원활하지 않습니다.
강제 새로 고침(Ctrl + F5)이나 브라우저 캐시 삭제를 진행해주세요.
계속해서 문제가 발생한다면 리디 접속 테스트를 통해 원인을 파악하고 대응 방법을 안내드리겠습니다.
테스트 페이지로 이동하기

[체험판] TensorFlow 1.x Deep Learning Cookbook 상세페이지

리디 info

* 이 책은 본권의 일부를 무료로 제공하는 체험판입니다.
* 본권 구입을 원하실 경우, [이 책의 시리즈]→[책 선택] 후 구매해주시기 바랍니다.


[체험판] TensorFlow 1.x Deep Learning Cookbook작품 소개

<[체험판] TensorFlow 1.x Deep Learning Cookbook> ▶Book Description
Deep neural networks (DNNs) have achieved a lot of success in the field of computer vision, speech recognition, and natural language processing. The entire world is filled with excitement about how deep networks are revolutionizing artificial intelligence. This exciting recipe-based guide will take you from the realm of DNN theory to implementing them practically to solve the real-life problems in artificial intelligence domain.
In this book, you will learn how to efficiently use TensorFlow, Google's open source framework for deep learning. You will implement different deep learning networks such as Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Deep Q-learning Networks (DQNs), and Generative Adversarial Networks (GANs) with easy to follow independent recipes. You will learn how to make Keras as backend with TensorFlow.
With a problem-solution approach, you will understand how to implement different deep neural architectures to carry out complex tasks at work. You will learn the performance of different DNNs on some popularly used data sets such as MNIST, CIFAR-10, Youtube8m, and more. You will not only learn about the different mobile and embedded platforms supported by TensorFlow but also how to set up cloud platforms for deep learning applications. Get a sneak peek of TPU architecture and how they will affect DNN future.
By using crisp, no-nonsense recipes, you will become an expert in implementing deep learning techniques in growing real-world applications and research areas such as reinforcement learning, GANs, autoencoders and more.

▶What You Will Learn
⦁ Install TensorFlow and use it for CPU and GPU operations
⦁ Implement DNNs and apply them to solve different AI-driven problems.
⦁ Leverage different data sets such as MNIST, CIFAR-10, and Youtube8m with TensorFlow and learn how to access and use them in your code.
⦁ Use TensorBoard to understand neural network architectures, optimize the learning process, and peek inside the neural network black box.
⦁ Use different regression techniques for prediction and classification problems
⦁ Build single and multilayer perceptrons in TensorFlow
⦁ Implement CNN and RNN in TensorFlow, and use it to solve real-world use cases.
⦁ Learn how restricted Boltzmann Machines can be used to recommend movies.
⦁ Understand the implementation of Autoencoders and deep belief networks, and use them for emotion detection.
⦁ Master the different reinforcement learning methods to implement game playing agents.
⦁ GANs and their implementation using TensorFlow.

▶Key Features
⦁ Skill up and implement tricky neural networks using Google's TensorFlow 1.x
⦁ An easy-to-follow guide that lets you explore reinforcement learning, GANs, autoencoders, multilayer perceptrons and more.
⦁ Hands-on recipes to work with Tensorflow on desktop, mobile, and cloud environment

▶Who This Book Is For
This book is intended for data scientists, machine learning practitioners, and deep learning enthusiasts who want to perform machine learning tasks on a regular basis. People who are
slightly familiar with deep neural networks and now want to gain expertise working with CNN and RNN will find this book useful.

▶What this book covers
⦁ Chapter 1, TensorFlow - An Introduction, discusses TensorFlow the Google's open source framework, and why it is useful for deep learning. We will discuss how to install TensorFlow on MAC, Windows and Ubuntu for both CPU and GPU. We will also discuss
other python packages that we will use throughout the book. We will explain the two components of TensorFlow codes, the definition of graph and its execution. We will learn about using the TensorBoard to see the graph structure. We will understand the difference
between TensorFlow constants, variables and placeholders. And we will also get a taste of TensorFlow estimators.
⦁ Chapter 2 , Regression, talks about regression and its applications. We will discuss the concepts involved in regression, understand how it is different from clustering and classification. We will learn about different types of loss functions possible and how to implement them in Tensorflow. We learn how to implement L1 and L2 regularizations. We will discuss the gradient descent algorithm, learn how to optimize it and implement it in Tensorflow. We will briefly learn about cross-entropy function and its implementation.
⦁ Chapter 3 , Neural Networks - Perceptron, covers artificial neural networks and explains why it can do the wonderful tasks as claimed recently by DNN. We will learn about different choices of activation functions. We will use all this to build a simple perceptron and use it
for function modeling. We will learn about regularization of data before training. We will also learn to build a multilayer perceptron (MLP) layer by layer. We will see how the autodifferentiator
of TensorFlow makes our work easier.
⦁ Chapter 4 , TensorFlow - Convolutional Neural Networks, discusses the process of convolution and how it is able to extract features. We will learn about three important layers of CNN:
convolutional layers, pooling layer and fully connected layer. We will also learn about dropout, how it can increase performance and different CNN architectures such as LeNET and GoogleNET.
⦁ Chapter 5, CNN in Action, covers some wow success stories of CNN like face recognition. We will write a recipe for using CNNs for sentiment analysis. We will discuss pre-tuning CNN and learn how to implement transfer learning. We will learn how to use VGG16 for
transfer learning. We will learn classification of images with VGGNet, ResNet, Inception and Xception. We will Generate music using dilated ConvNets, Wavenet and Nsynth. We will also learn how to do Visual Q & A. We will learn how to classify videos.
⦁ Chapter 6, Recurrent Neural Networks, discusses Recurrent Neural networks. We will learn the basic unit of RNNs the RNN cell. We will learn about word embeddings and time sequencing. We will briefly discuss LSTM networks. We will learn about seq2seq RNNs. We will learn how RNNs can be employed for machine translation, generating text, and predicting future values
⦁ Chapter 7, Unsupervised Learning, teaches the unsupervised learning paradigm. We will learn about clustering and dimensionality reduction. We will learn about techniques like Principal Component Analysis (PCA) and see how they can be used for dimensionality
reduction. We will learn about k-means clustering. We will understand the concept of Topographic maps and learn how to train self-organizing maps. We will learn about Restricted Boltzmann Machines (RBM). We will discuss the architecture and training of
RBMs. We learn how to stack RBMs to make Deep Belief Networks, and we will learn how to train them. We will train DBN using the concept of pre-training and fine tuning for emotion detection.
⦁ Chapter 8, Autoencoders, demystifies autoencoders. We will learn about autoencoders and their applications. We will discuss various real-life examples where auto-encoders can be used. We will discuss the process of encoding and subsequent reconstruction. We will learn
about reconstruction error. We will learn about sparse autoencoders, the concept of KL divergence. We will learn Denoising Autoencoders and use them to reconstruct clean images given noisy images. We will learn how to build Convolutional Autoencoders and Stacked Autoencoders.
⦁ Chapter 9, Reinforcement Learning, covers different reinforcement learning algorithms. We will learn the Q-learning algorithm. We will discuss Bellman-Ford equation and how to choose learning rate, discount factor. We will learn how to use OpenAI gym framework. We
will learn about the concepts of Experience Replay and buffering to implement valueiteration Q network. We will use Q learning and policy gradients to build game playing agents. And finally, we will learn how to make our own Deep Q-learning Network (DQN).
A brief description of AlphaGo Zero and its grand win.
⦁ Chapter 10, TensorFlow Mobile Computation, covers TensorFlow mobile. We will learn about different applications of mobile deep learning. We will learn how to use Tensorflow with Android studio on Windows platform. We will learn how to use Tensorflow along with
XCode to make IOS based apps. We will learn how to optimize the Tensorflow graphs for mobile devices. We will also learn how to transform Tensorflow graphs for mobile devices.
⦁ Chapter 11, TensorFlow –. Generative Adversarial Networks (GANs), Variational Autoencoders, and Capsule networks, starts with generative adversarial networks and their strength over other DNNs. We explore different predictive models. We understand the motivation behind GANs and their working intuitively. We learn about the basic GAN architecture. We will explore some very cool applications of GANs. We will learn about another generative network the Variational Autoencoder. Lastly, we will learn about the recently proposed Capsule Networks
⦁ Chapter 12, Distributed TensorFlow and Cloud Deep Learning, explains the cloud environment, dockers, containers, and how to use them. We learn how to work with distributed Tensorflow with multiple GPUs, and multiple servers. We learn how to setup AWS for deep
learning. We learn how to setup Google cloud for deep learning applications. We learn how to setup Microsoft Azure cloud for deep learning applications. We learn about other available cloud services



출판사 서평

▶Editorial Review
In this book, you will learn how to efficiently use TensorFlow, Google's open source framework for deep learning. You will implement different deep learning networks such as Convolutional Neural Networks (CNNs), Recurrent Neural Networks (RNNs), Deep Qlearning Networks (DQNs), and Generative Adversarial Networks (GANs) with easy to follow independent recipes. You will learn how to make Keras as backend with TensorFlow.
You will understand how to implement different deep neural architectures to carry out complex tasks at work. You will learn the performance of different DNNs on some popularly used data sets such as MNIST, CIFAR-10, Youtube8m, and more. You will not only learn about the different mobile and embedded platforms supported by TensorFlow but also how to set up cloud platforms for deep learning applications. Get a sneak peek of TPU architecture and how they will affect DNN future.
By the end of this book, you will be an expert in implementing deep learning techniques in growing real-world applications and research areas such as reinforcement learning, GANs, autoencoders and more.


저자 소개

⦁ Antonio Gulli
Antonio Gulli is a transformational software executive and business leader with a passion for establishing and managing global technological talent for innovation and execution. He is an expert in search engines, online services, machine learning, information retrieval, analytics, and cloud computing. So far, he has been lucky enough to gain professional experience in four different countries in Europe and manage teams in six different countries in Europe and America. Currently, he works as site lead and director of cloud in Google Warsaw, driving European efforts for Serverless, Kubernetes, and Google Cloud UX. Previously, Antonio helped to innovate academic search as the vice president for Elsevier, a worldwide leading publisher. Before that, he drove query suggestions and news search as a principal engineer for Microsoft. Earlier, he served as the CTO for Ask, driving multimedia and news search. Antonio has filed for 20+ patents, published multiple academic papers, and served as a senior PC member in multiple international conferences. He truly believes that to be successful, you must have a great combination of management, research skills, just-get-it-done, and selling attitude
⦁ Amita Kapoor
Amita Kapoor is an associate professor in the Department of Electronics, SRCASW, University of Delhi. She has been actively teaching neural networks for the last 20 years. She did her master's in electronics in 1996 and PhD in 2011. During her PhD, she was awarded the prestigious DAAD fellowship to pursue a part of her research work in Karlsruhe Institute of Technology, Karlsruhe, Germany. She had been awarded the best presentation award at International Conference Photonics 2008 for her paper. She is a member of professional bodies such as OSA (Optical Society of America), IEEE (Institute of Electrical and Electronics Engineers), INNS (International Neural Network Society), and ISBS (Indian Society for Buddhist Studies). Amita has more than 40 publications in international journals and conferences to her credit. Her present research areas include machine learning, artificial intelligence, neural networks, robotics, Buddhism (philosophy and psychology) and ethics in AI.

목차

▶TABLE of CONTENTS
1: TENSORFLOW - AN INTRODUCTION
2: REGRESSION
3: NEURAL NETWORKS - PERCEPTRON
4: CONVOLUTIONAL NEURAL NETWORKS
5: ADVANCED CONVOLUTIONAL NEURAL NETWORKS
6: RECURRENT NEURAL NETWORKS
7: UNSUPERVISED LEARNING
8: AUTOENCODERS
9: REINFORCEMENT LEARNING
10: MOBILE COMPUTATION
11: GENERATIVE MODELS AND CAPSNET
12: DISTRIBUTED TENSORFLOW AND CLOUD DEEP LEARNING
13: LEARNING TO LEARN WITH AUTOML (META-LEARNING)
14: TENSORFLOW PROCESSING UNITS


리뷰

구매자 별점

0.0

점수비율
  • 5
  • 4
  • 3
  • 2
  • 1

0명이 평가함

리뷰 작성 영역

이 책을 평가해주세요!

내가 남긴 별점 0.0

별로예요

그저 그래요

보통이에요

좋아요

최고예요

별점 취소

구매자 표시 기준은 무엇인가요?

'구매자' 표시는 리디에서 유료도서 결제 후 다운로드 하시거나 리디셀렉트 도서를 다운로드하신 경우에만 표시됩니다.

무료 도서 (프로모션 등으로 무료로 전환된 도서 포함)
'구매자'로 표시되지 않습니다.
시리즈 도서 내 무료 도서
'구매자’로 표시되지 않습니다. 하지만 같은 시리즈의 유료 도서를 결제한 뒤 리뷰를 수정하거나 재등록하면 '구매자'로 표시됩니다.
영구 삭제
도서를 영구 삭제해도 ‘구매자’ 표시는 남아있습니다.
결제 취소
‘구매자’ 표시가 자동으로 사라집니다.

이 책과 함께 구매한 책


이 책과 함께 둘러본 책



본문 끝 최상단으로 돌아가기

spinner
모바일 버전