Home > Computing and Information Technology > Computer programming / software engineering > Programming and scripting languages: general > Machine Learning in Production: Developing and Optimizing Data Science Workflows and Applications
11%
Machine Learning in Production: Developing and Optimizing Data Science Workflows and Applications

Machine Learning in Production: Developing and Optimizing Data Science Workflows and Applications

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Foundational Hands-On Skills for Succeeding with Real Data Science Projects This pragmatic book introduces both machine learning and data science, bridging gaps between data scientist and engineer, and helping you bring these techniques into production. It helps ensure that your efforts actually solve your problem, and offers unique coverage of real-world optimization in production settings. –From the Foreword by Paul Dix, series editor Machine Learning in Production is a crash course in data science and machine learning for people who need to solve real-world problems in production environments. Written for technically competent “accidental data scientists” with more curiosity and ambition than formal training, this complete and rigorous introduction stresses practice, not theory.   Building on agile principles, Andrew and Adam Kelleher show how to quickly deliver significant value in production, resisting overhyped tools and unnecessary complexity. Drawing on their extensive experience, they help you ask useful questions and then execute production projects from start to finish.   The authors show just how much information you can glean with straightforward queries, aggregations, and visualizations, and they teach indispensable error analysis methods to avoid costly mistakes. They turn to workhorse machine learning techniques such as linear regression, classification, clustering, and Bayesian inference, helping you choose the right algorithm for each production problem. Their concluding section on hardware, infrastructure, and distributed systems offers unique and invaluable guidance on optimization in production environments.   Andrew and Adam always focus on what matters in production: solving the problems that offer the highest return on investment, using the simplest, lowest-risk approaches that work. Leverage agile principles to maximize development efficiency in production projects Learn from practical Python code examples and visualizations that bring essential algorithmic concepts to life Start with simple heuristics and improve them as your data pipeline matures Avoid bad conclusions by implementing foundational error analysis techniques Communicate your results with basic data visualization techniques Master basic machine learning techniques, starting with linear regression and random forests Perform classification and clustering on both vector and graph data Learn the basics of graphical models and Bayesian inference Understand correlation and causation in machine learning models Explore overfitting, model capacity, and other advanced machine learning techniques Make informed architectural decisions about storage, data transfer, computation, and communication Register your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details.

Table of Contents:
Foreword xv Preface xvii About the Authors xxi   Part I: Principles of Framing 1   Chapter 1: The Role of the Data Scientist 3 1.1 Introduction 3 1.2 The Role of the Data Scientist 3 1.3 Conclusion 6   Chapter 2: Project Workflow 7 2.1 Introduction 7 2.2 The Data Team Context 7 2.3 Agile Development and the Product Focus 10 2.4 Conclusion 15   Chapter 3: Quantifying Error 17 3.1 Introduction 17 3.2 Quantifying Error in Measured Values 17 3.3 Sampling Error 19 3.4 Error Propagation 21 3.5 Conclusion 23   Chapter 4: Data Encoding and Preprocessing 25 4.1 Introduction 25 4.2 Simple Text Preprocessing 26 4.3 Information Loss 33 4.4 Conclusion 34   Chapter 5: Hypothesis Testing 37 5.1 Introduction 37 5.2 What Is a Hypothesis? 37 5.3 Types of Errors 39 5.4 P-values and Confidence Intervals 40 5.5 Multiple Testing and “P-hacking” 41 5.6 An Example 42 5.7 Planning and Context 43 5.8 Conclusion 44   Chapter 6: Data Visualization 45 6.1 Introduction 45 6.2 Distributions and Summary Statistics 45 6.3 Time-Series Plots 58 6.4 Graph Visualization 61 6.5 Conclusion 64   Part II: Algorithms and Architectures 67   Chapter 7: Introduction to Algorithms and Architectures 69 7.1 Introduction 69 7.2 Architectures 70 7.3 Models 74 7.4 Conclusion 77   Chapter 8: Comparison 79 8.1 Introduction 79 8.2 Jaccard Distance 79 8.3 MinHash 82 8.4 Cosine Similarity 84 8.5 Mahalanobis Distance 86 8.6 Conclusion 88   Chapter 9: Regression 89 9.1 Introduction 89 9.2 Linear Least Squares 96 9.3 Nonlinear Regression with Linear Regression 105 9.4 Random Forest 109 9.5 Conclusion 115   Chapter 10: Classification and Clustering 117 10.1 Introduction 117 10.2 Logistic Regression 118 10.3 Bayesian Inference, Naive Bayes 122 10.4 K-Means 125 10.5 Leading Eigenvalue 128 10.6 Greedy Louvain 130 10.7 Nearest Neighbors 131 10.8 Conclusion 133   Chapter 11: Bayesian Networks 135 11.1 Introduction 135 11.2 Causal Graphs, Conditional Independence, and Markovity 136 11.3 D-separation and the Markov Property 138 11.4 Causal Graphs as Bayesian Networks 142 11.5 Fitting Models 143 11.6 Conclusion 147   Chapter 12: Dimensional Reduction and Latent Variable Models 149 12.1 Introduction 149 12.2 Priors 149 12.3 Factor Analysis 151 12.4 Principal Components Analysis 152 12.5 Independent Component Analysis 154 12.6 Latent Dirichlet Allocation 159 12.7 Conclusion 165   Chapter 13: Causal Inference 167 13.1 Introduction 167 13.2 Experiments 168 13.3 Observation: An Example 171 13.4 Controlling to Block Non-causal Paths 177 13.5 Machine-Learning Estimators 182 13.6 Conclusion 187   Chapter 14: Advanced Machine Learning 189 14.1 Introduction 189 14.2 Optimization 189 14.3 Neural Networks 191 14.4 Conclusion 201   Part III: Bottlenecks and Optimizations 203   Chapter 15: Hardware Fundamentals 205 15.1 Introduction 205 15.2 Random Access Memory 205 15.3 Nonvolatile/Persistent Storage 206 15.4 Throughput 208 15.5 Processors 209 15.6 Conclusion 212   Chapter 16: Software Fundamentals 213 16.1 Introduction 213 16.2 Paging 213 16.3 Indexing 214 16.4 Granularity 214 16.5 Robustness 216 16.6 Extract, Transfer/Transform, Load 216 16.7 Conclusion 216   Chapter 17: Software Architecture 217 17.1 Introduction 217 17.2 Client-Server Architecture 217 17.3 N-tier/Service-Oriented Architecture 218 17.4 Microservices 220 17.5 Monolith 220 17.6 Practical Cases (Mix-and-Match Architectures) 221 17.7 Conclusion 221   Chapter 18: The CAP Theorem 223 18.1 Introduction 223 18.2 Consistency/Concurrency 223 18.3 Availability 225 18.4 Partition Tolerance 231 18.5 Conclusion 232   Chapter 19: Logical Network Topological Nodes 233 19.1 Introduction 233 19.2 Network Diagrams 233 19.3 Load Balancing 234 19.4 Caches 235 19.5 Databases 238 19.6 Queues 241 19.7 Conclusion 243   Bibliography 245   Index 247


Best Sellers


Product Details
  • ISBN-13: 9780134116594
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Addison Wesley
  • Language: English
  • Sub Title: Developing and Optimizing Data Science Workflows and Applications
  • ISBN-10: 0134116593
  • Publisher Date: 27 Feb 2019
  • Binding: Digital download
  • No of Pages: 288
  • Weight: 1 gr


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Machine Learning in Production: Developing and Optimizing Data Science Workflows and Applications
Pearson Education (US) -
Machine Learning in Production: Developing and Optimizing Data Science Workflows and Applications
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Machine Learning in Production: Developing and Optimizing Data Science Workflows and Applications

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA