[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"doc-detail-43011-en":3,"doc-seo-43011-105":30,"detail-sidebar-cat-0-en-105":91},{"code":4,"msg":5,"data":6},0,"success",{"doc_id":7,"user_id":8,"nickname":9,"user_avatar":10,"doc_module":4,"category_id":11,"category_name":12,"doc_title":13,"doc_description":14,"doc_content":15,"file_id":16,"file_url":17,"file_type":18,"file_size":19,"view_count":20,"is_deleted":4,"is_public":21,"is_downloadable":21,"audit_status":21,"page_count":22,"language":23,"language_code":24,"site_id":25,"html_lang":24,"table_of_contents":26,"faqs":27,"seo_title":13,"seo_description":14,"update_tm":28,"read_time":29},43011,4398048949847,"Eliana","https://ap-avatar.wpscdn.com/avatar/400002536579ef2da7f?_k=1778318612642679267",6,"Technology","Deep Learning with Python","Deep Learning with Python, by François Chollet, presents a practical, end-to-end introduction to deep learning: from foundational concepts such as neural network representations, tensor operations, and gradient-based optimization, to the core machine-learning workflow and regularization strategies. The book then applies these ideas to real tasks, including computer vision with convolutional networks and modern approaches for text and sequences, covering best practices, generative deep learning, and key conclusions drawn from applied research.","Deep Learning with Python  \nFRANÇOIS CHOLLET  \nMANNING SHELTER ISLAND  \n©2018 by Manning Publications Co. ISBN 9781617294433  \nPrinted in the United States of America  \nbrief contents  \nPART 1 FUNDAMENTALS OF DEEP LEARNING .................................. 1  \n1 ■ What is deep learning? 3  \n2 ■ Before we begin: the mathematical building blocks of neural  \nnetworks 25  \n3 ■ Getting started with neural networks 56  \n4 ■ Fundamentals of machine learning 93  \nPART 2 DEEP LEARNING IN PRACTICE ........................................ 117  \n5 ■ Deep learning for computer vision 119  \n6 ■ Deep learning for text and sequences 178  \n7 ■ Advanced deep-learning best practices 233  \n8 ■ Generative deep learning 269  \n9 ■ Conclusions 314  \ncontents  \npreface xiii  \nacknowledgments xv about this book xvi  \nabout the author xx  \nabout the cover xxi  \nPART 1 FUNDAMENTALS OF DEEP LEARNING ................... 1  \n1 What is deep learning? 3  \n1.1 Artificial intelligence, machine learning,  \nand deep learning 4  \nArtificial intelligence 4 ■ Machine learning 4 ■ Learning representations from data 6 ■ The “deep” in deep learning 8  \nUnderstanding how deep learning works, in three figures 9  \nWhat deep learning has achieved so far 11 ■ Don’t believe the short-term hype 12 ■ The promise of AI 13  \n1.2 Before deep learning: a brief history of machine  \nlearning 14  \nProbabilistic modeling 14 ■ Early neural networks 14  \nKernel methods 15 ■ Decision trees, random forests,  \nand gradient boosting machines 16 ■ Back to neural networks 17 ■ What makes deep learning different 17  \nThe modern machine-learning landscape 18  \n1.3 Why deep learning? Why now? 20  \nHardware 20 ■ Data 21 ■ Algorithms 21 ■ A new wave of investment 22 ■ The democratization of deep learning 23 ■ Will it last? 23  \n2 Before we begin: the mathematical building blocks of  \nneural networks 25  \n2. 1 A first look at a neural network 27  \n2.2 Data representations for neural networks 31 Scalars (0D tensors) 31 ■ Vectors (1D tensors) 31 Matrices (2D tensors) 31 ■ 3D tensors and higherdimensional tensors 32 ■ Key attributes 32 Manipulating tensors in Numpy 34 ■ The notion of data batches 34 ■ Real-world examples of data tensors 35 ■ Vector data 35 ■ Timeseries data or sequence data 35 ■ Image data 36 ■ Video data 37  \n2.3 The gears of neural networks: tensor operations 38 Element-wise operations 38 ■ Broadcasting 39 ■ Tensor dot 40 ■ Tensor reshaping 42 ■ Geometric interpretation of tensor operations 43 ■ A geometric interpretation of deep learning 44  \n2.4 The engine of neural networks: gradient-based optimization 46  \nWhat’s a derivative? 47 ■ Derivative of a tensor operation: the gradient 48 ■ Stochastic gradient descent 48 Chaining derivatives: the Backpropagation algorithm 51  \n2.5 Looking back at our first example 53  \n2.6 Chapter summary 55  \n3  \nGetting started with neural networks 56  \n3.1 Anatomy of a neural network 58  \nLayers: the building blocks of deep learning 58 ■ Models: networks of layers 59 ■ Loss functions and optimizers: keys to configuring the learning process 60  \n3.2 Introduction to Keras 61  \nKeras, TensorFlow, Theano, and CNTK 62 ■ Developing with Keras: a quick overview 62  \n3.3 Setting up a deep-learning workstation 65 Jupyter notebooks: the preferred way to run deep-learning experiments 65 ■ Getting Keras running: two options 66  \nRunning deep-learning jobs in the cloud: pros and cons 66 What is the best GPUfor deep learning? 66  \n3.4 Classifying movie reviews: a binary classification example 68  \nThe IMDB dataset 68 ■ Preparing the data 69  \nBuilding your network 70 ■ Validating your approach 73  \nUsing a trained network to generate predictions on new data 76 ■ Further experiments 77 ■ Wrapping up 77  \n3.5 Classifying newswires: a multiclass classification  \nexample 78  \nThe Reuters dataset 78 ■ Preparing the data 79 Building your network 79 ■ Validating your approach 80 Generating predictions on new data 83 ■ A different way to handle the labels and the loss 83","cbCaikfu00dk4mqY","https://ap.wps.com/l/cbCaikfu00dk4mqY","pdf",6317035,2,1,373,"English","en",105,"# PART 1 FUNDAMENTALS OF DEEP LEARNING\n## What is deep learning?\n## Before we begin: the mathematical building blocks of neural networks\n## Getting started with neural networks\n## Fundamentals of machine learning\n# PART 2 DEEP LEARNING IN PRACTICE\n## Deep learning for computer vision\n## Deep learning for text and sequences\n## Advanced deep-learning best practices\n## Generative deep learning\n## Conclusions","[{\"question\":\"What fundamental topics are covered before building models?\",\"answer\":\"The book introduces neural network building blocks, including tensor representations and operations, and explains gradient-based optimization with backpropagation. It also covers the machine-learning workflow and core evaluation concepts.\"},{\"question\":\"How does the book help readers start training neural networks?\",\"answer\":\"It provides a guided setup for deep-learning workstations using tools such as Jupyter and Keras, then demonstrates training pipelines through classification and regression examples. It emphasizes validating approaches and generating predictions on new data.\"},{\"question\":\"What applications are discussed in the practical part?\",\"answer\":\"The practical sections focus on deep learning for computer vision using convolutional networks, and on deep learning for text and sequences. It also covers advanced best practices and generative deep learning approaches.\"}]",1783375692,940,{"code":4,"msg":31,"data":32},"ok",{"site_id":25,"language":24,"slug":33,"title":13,"keywords":34,"description":14,"schema_data":35,"social_meta":86,"head_meta":88,"extra_data":90,"updated_unix":28},"deep-learning-with-python","",{"@graph":36,"@context":85},[37,53,68],{"@type":38,"itemListElement":39},"BreadcrumbList",[40,44,47,50],{"item":41,"name":42,"@type":43,"position":21},"https://docshare.wps.com","Home","ListItem",{"item":45,"name":46,"@type":43,"position":20},"https://docshare.wps.com/document/","Document",{"item":48,"name":12,"@type":43,"position":49},"https://docshare.wps.com/document/technology/",3,{"item":51,"name":13,"@type":43,"position":52},"https://docshare.wps.com/document/deep-learning-with-python/43011/",4,{"url":51,"name":13,"@type":54,"author":55,"headline":13,"publisher":57,"fileFormat":60,"inLanguage":24,"description":14,"dateModified":61,"datePublished":62,"encodingFormat":60,"isAccessibleForFree":63,"interactionStatistic":64},"DigitalDocument",{"name":9,"@type":56},"Person",{"url":41,"name":58,"@type":59},"DocShare","Organization","application/pdf","2026-07-12","2026-07-06",true,{"@type":65,"interactionType":66,"userInteractionCount":20},"InteractionCounter",{"@type":67},"ViewAction",{"@type":69,"mainEntity":70},"FAQPage",[71,77,81],{"name":72,"@type":73,"acceptedAnswer":74},"What fundamental topics are covered before building models?","Question",{"text":75,"@type":76},"The book introduces neural network building blocks, including tensor representations and operations, and explains gradient-based optimization with backpropagation. It also covers the machine-learning workflow and core evaluation concepts.","Answer",{"name":78,"@type":73,"acceptedAnswer":79},"How does the book help readers start training neural networks?",{"text":80,"@type":76},"It provides a guided setup for deep-learning workstations using tools such as Jupyter and Keras, then demonstrates training pipelines through classification and regression examples. It emphasizes validating approaches and generating predictions on new data.",{"name":82,"@type":73,"acceptedAnswer":83},"What applications are discussed in the practical part?",{"text":84,"@type":76},"The practical sections focus on deep learning for computer vision using convolutional networks, and on deep learning for text and sequences. It also covers advanced best practices and generative deep learning approaches.","https://schema.org",{"og:url":51,"og:type":87,"og:title":13,"og:site_name":58,"og:description":14},"article",{"robots":89,"canonical":51},"index,follow",{"doc_id":7,"site_id":25},{"code":4,"msg":5,"data":92},[93,97,101,105,110,113,118,123,128,131,135],{"id":21,"doc_module":4,"doc_module_name":46,"category_name":94,"show_sort_weight":95,"slug":96},"Story & Novel",90,"story-novel",{"id":20,"doc_module":4,"doc_module_name":46,"category_name":98,"show_sort_weight":99,"slug":100},"Literature",80,"literature",{"id":52,"doc_module":4,"doc_module_name":46,"category_name":102,"show_sort_weight":103,"slug":104},"Exam",70,"exam",{"id":106,"doc_module":4,"doc_module_name":46,"category_name":107,"show_sort_weight":108,"slug":109},5,"Comic",60,"comic",{"id":11,"doc_module":4,"doc_module_name":46,"category_name":12,"show_sort_weight":111,"slug":112},50,"technology",{"id":114,"doc_module":4,"doc_module_name":46,"category_name":115,"show_sort_weight":116,"slug":117},7,"Healthcare",40,"healthcare",{"id":119,"doc_module":4,"doc_module_name":46,"category_name":120,"show_sort_weight":121,"slug":122},8,"Research & Report",30,"research-report",{"id":124,"doc_module":4,"doc_module_name":46,"category_name":125,"show_sort_weight":126,"slug":127},9,"Religion & Spirituality",20,"religion-spirituality",{"id":126,"doc_module":4,"doc_module_name":46,"category_name":129,"show_sort_weight":126,"slug":130},"World Cup","world-cup",{"id":132,"doc_module":4,"doc_module_name":46,"category_name":133,"show_sort_weight":132,"slug":134},10,"Lifestyle","lifestyle",{"id":136,"doc_module":4,"doc_module_name":46,"category_name":137,"show_sort_weight":106,"slug":138},19,"General","general"]