본문 바로가기

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

Mastering Azure Machine Learning 상세페이지

Mastering Azure Machine Learning

Perform large-scale end-to-end advanced machine learning on the cloud with Microsoft Azure ML

  • 관심 0
소장
전자책 정가
24,000원
판매가
24,000원
출간 정보
  • 2020.04.30 전자책 출간
듣기 기능
TTS(듣기) 지원
파일 정보
  • PDF
  • 378 쪽
  • 15.5MB
지원 환경
  • PC뷰어
  • PAPER
ISBN
9781789801521
UCI
-
Mastering Azure Machine Learning

작품 정보

▶What You Will Learn
- Setup your Azure ML workspace for data experimentation and visualization
- Perform ETL, data preparation, and feature extraction using Azure best practices
- Implement advanced feature extraction using NLP and word embeddings
- Train gradient boosted tree-ensembles, recommendation engines and deep neural networks on Azure ML
- Use hyperparameter tuning and AutoML to optimize your ML models
- Employ distributed ML on GPU clusters using Horovod in Azure ML
- Deploy, operate and manage your ML models at scale
- Automated your end-to-end ML process as CI/CD pipelines for MLOps

▶Key Features
- Make sense of data on the cloud by implementing advanced analytics
- Train and optimize advanced deep learning models efficiently on Spark using Azure Databricks
- Deploy machine learning models for batch and real-time scoring with Azure Kubernetes Service (AKS)

▶Who This Book Is For
This machine learning book is for data professionals, data analysts, data engineers, data scientists, or machine learning developers who want to master scalable cloud-based machine learning architectures in Azure. This book will help you use advanced Azure services to build intelligent machine learning applications. A basic understanding of Python and working knowledge of machine learning are mandatory.

▶What this book covers
- Chapter 1, Building an End-to-End Machine Learning Pipeline in Azure, covers all the required components for running a custom end-to-end ML pipeline in Azure. Some sections might be a recap of your existing knowledge with useful practical tips, step-by-step guidelines, and pointers to Azure services to perform ML at scale. You can see it as an overview of the book, after which we will dive into every section in great detail with many practical examples and code throughout the remaining chapters of the book.

- Chapter 2, Choosing a Machine Learning Service in Azure, helps us to find out how to best navigate to all available ML services in Azure and how to select the right one for your goal. Finally, we will explain why Azure ML is the best choice for building custom ML models. This is the service that we will use throughout the book to implement an end-to-end ML pipeline.

- Chapter 3, Data Experimentation and Visualization Using Azure, takes a look at how to implement data experimentation and perform data visualizations with Azure ML. First, you will learn how to prepare and interact with your ML workspace. Once set up, you will be able to perform and track experiments in Azure, as well as trained models, plots, metrics, and snapshots of your code. This can all be done from your authoring Python environment, for example, Jupyter using Azure ML's Compute Instance or any Python interpreter running in PyCharm, VS Code, and so on. You will see many popular embeddings and visualization techniques including PCA, LDA, t-SNE, and UMAP in action.

- Chapter 4, ETL, Data Preparation, and Feature Extraction, explores data preparation and Extract, Transform, and Load (ETL) techniques within the Azure ML using Azure DataPrep. We will start by looking behind the scenes of datasets and data stores, the abstraction for physical data storage systems. Then, you will use Azure DataPrep to implement many popular preprocessing and feature engineering techniques such as imputing missing values, transformations, data type conversions, and many more. This will help you to implement a scalable ETL pipeline using Azure ML.

- Chapter 5, Advanced Feature Extraction with NLP, takes us one step further to extract features from textual and categorical data – a problem that users are faced often when training ML models. This chapter will describe the foundations of feature extraction with NLP. This will help the reader to create semantic embeddings from categorical and textual data using techniques including n-grams, Bag of Words, TF-IDF, Word2Vec, and more.

- Chapter 6, Building ML Models Using Azure Machine Learning, teaches you how to use ensembling techniques to build a traditional ML model in Azure. This chapter focuses on decision tree-based ensemble learning with popular state-of-the-art boosting and bagging techniques through the use of LightGBM in Azure ML. This will help you to apply concepts of bragging and boosting on ML models.

- Chapter 7, Training Deep Neural Networks on Azure, covers training more complex parametric models using deep learning for better generalization over large data. First, we will give a short and practical overview of when and why deep learning works well and its differences with traditional ML approaches. We will focus more on understanding rational, practical principles rather than a theoretical approach. Then we will train a Convolutional Neural Network (CNN) on Azure ML using Keras.

- Chapter 8, Hyperparameter Tuning and Automated Machine Learning, looks at optimizing the training process in order to take away some of the error-prone human choices from ML. These tuning tricks will help you to train better models, faster and more efficiently. First, we will look at hyperparameter tuning (also called HyperDrive in Azure ML), a standard technique for optimizing all parameter choices in an ML process. By evaluating different sampling techniques for hyperparameter tuning such as random sampling, grid sampling, and Bayesian optimization, you will learn how to efficiently manage the trade-offs between runtime and model performance. In the second half of this chapter, we will generalize from hyperparameter optimization to automating the complete end-to-end ML training process using Automated ML, which is often referred to as AutoML. Using AutoML, we can straightforwardly optimize preprocessing, feature engineering, model selection, hyperparameter tuning, and model stacking all together in one simple abstract pipeline.

- Chapter 9, Distributed Machine Learning on Azure ML Clusters, takes a look into distributed and parallel computing algorithms and frameworks for efficiently training ML models in parallel on GPUs. The goal of this chapter is to build an environment in Azure where you can speed up the training process of classical ML and deep learning models by adding more machines to your training environment and hence scaling out the cluster.

- Chapter 10, Building a Recommendation Engine in Azure, dives into traditional and modern recommendation engines that often combine the technologies and techniques covered in the previous chapters. We will take a quick look at the different types of recommendation engines, what data is needed for each type, and what can be recommended using these different approaches, such as content-based recommendations and rating-based recommendation engines. We will combine both techniques into a single hybrid recommender and learn about state-of-the-art techniques for modern recommendation engines. You will implement two hybrid recommenders using Azure ML, one using Python and one using Azure ML Designer—the GUI of Azure ML.

- Chapter 11, Deploying and Operating Machine Learning Models, tackles the next step after training a recommender engine or any of the previously trained ML models: we are going to package the model and execution runtime, register both in a model registry, and deploy them to an execution environment. We will auto-deploy models from Azure ML to Azure Kubernetes Service with only a few lines of code. You will also learn about monitoring your target environments using out-of-the-box custom metrics.

- Chapter 12, MLOps – DevOps for Machine Learning, considers how we've put emphasis throughout the book on the possibility of scripting every step of the ML training and deployment process, either through bash, Powershell, the Python SDK, or any other library wrapping the Azure ML REST service. This is true for creating environments, starting and scaling clusters, submitting experiments, performing parameter optimization, and deploying full-fledged scoring services on Kubernetes. In this chapter, we will reuse all these concepts to build a version-controlled, reproducible, automated ML training, and deployment process as a Continuous Integration/Continuous Deployment (CI/CD) pipeline in Azure.

- Chapter 13, What's Next?, concludes all previous chapters and provides a rough outlook for the future. This chapter also provides ideas on how to continue working with ML in Azure, and which trends and references to watch in the future.

작가 소개

▶About the Author
- Christoph Korner
Christoph Körner recently worked as a Cloud Solution Architect for Microsoft specialised in Azure-based Big Data and Machine Learning solutions where he was responsible to design end-to-end Machine Learning and Data Science platforms. Since a few months, he works as a Senior Software Engineer at HubSpot, building a large-scale analytics platform. Before Microsoft, Christoph was the Technical Lead for Big Data at T-Mobile where his team designed, implemented and operated large-scale data, analytics and prediction pipelines on Hadoop. He also authored the 3 books: Deep Learning in the Browser (for Bleeding Edge Press), Learning Responsive Data Visualization and Data Visualization with D3 and AngularJS (both for Packt).

- Kaijisse Waaijer
Kaijisse Waaijer is an experienced technologist, specializing in Data Platforms, Machine learning, and IoT. Kaijisse currently works for Microsoft EMEA as a Data Platform Consultant, specializing in Data Science, Machine learning and Big Data. She constantly works with customers across multiple industries as their trusted tech advisor, helping them optimize their organizational data creating better outcomes and business insights that drive value, using Microsoft technologies. Her true passion lies within the Trading Systems Automation and applying deep learning and neural networks to achieve advanced levels of prediction and automation.

리뷰

0.0

구매자 별점
0명 평가

이 작품을 평가해 주세요!

건전한 리뷰 정착 및 양질의 리뷰를 위해 아래 해당하는 리뷰는 비공개 조치될 수 있음을 안내드립니다.
  1. 타인에게 불쾌감을 주는 욕설
  2. 비속어나 타인을 비방하는 내용
  3. 특정 종교, 민족, 계층을 비방하는 내용
  4. 해당 작품의 줄거리나 리디 서비스 이용과 관련이 없는 내용
  5. 의미를 알 수 없는 내용
  6. 광고 및 반복적인 글을 게시하여 서비스 품질을 떨어트리는 내용
  7. 저작권상 문제의 소지가 있는 내용
  8. 다른 리뷰에 대한 반박이나 논쟁을 유발하는 내용
* 결말을 예상할 수 있는 리뷰는 자제하여 주시기 바랍니다.
이 외에도 건전한 리뷰 문화 형성을 위한 운영 목적과 취지에 맞지 않는 내용은 담당자에 의해 리뷰가 비공개 처리가 될 수 있습니다.
아직 등록된 리뷰가 없습니다.
첫 번째 리뷰를 남겨주세요!
'구매자' 표시는 유료 작품 결제 후 다운로드하거나 리디셀렉트 작품을 다운로드 한 경우에만 표시됩니다.
무료 작품 (프로모션 등으로 무료로 전환된 작품 포함)
'구매자'로 표시되지 않습니다.
시리즈 내 무료 작품
'구매자'로 표시되지 않습니다. 하지만 같은 시리즈의 유료 작품을 결제한 뒤 리뷰를 수정하거나 재등록하면 '구매자'로 표시됩니다.
영구 삭제
작품을 영구 삭제해도 '구매자' 표시는 남아있습니다.
결제 취소
'구매자' 표시가 자동으로 사라집니다.

개발/프로그래밍 베스트더보기

  • 바이브 코딩 너머 개발자 생존법 (애디 오스마니, 강민혁)
  • 혼자 공부하는 바이브 코딩 with 클로드 코드 (조태호)
  • 요즘 당근 AI 개발 (당근 팀)
  • AI 자율학습 밑바닥부터 배우는 AI 에이전트 (다비드스튜디오)
  • 알아서 잘하는 에이전틱 AI 시스템 구축하기 (안자나바 비스와스, 릭 탈루크다르)
  • 도메인 주도 설계를 위한 함수형 프로그래밍 (스콧 블라신, 박주형)
  • 개정2판 | 소프트웨어 아키텍처 The Basics (마크 리처즈, 닐 포드)
  • AI 엔지니어링 (칩 후옌, 변성윤)
  • 연필과 종이로 풀어보는 딥러닝 수학 워크북 214제 (톰 예(Tom yeh) )
  • 밑바닥부터 만들면서 배우는 LLM (세바스찬 라시카, 박해선)
  • 러스트 클린 코드 (브렌든 매슈스, 윤인도)
  • 요즘 바이브 코딩 클로드 코드 완벽 가이드 (최지호(코드팩토리))
  • 처음부터 시작하는 Next.js / React 개발 입문 (미요시 아키, 김모세)
  • AI 자율학습 커서 × AI로 완성하는 나만의 웹 서비스 (성구(강성규) )
  • 개정판 | <소문난 명강의> 레트로의 유니티 6 게임 프로그래밍 에센스 (이제민)
  • 만화로 배우는 리눅스 시스템 관리 1권(PDF 버전) (Piro, 서수환)
  • 요즘 개발자를 위한 시스템 설계 수업 (디렌드라 신하 , 테자스 초프라)
  • 언리얼 엔진으로 배우는 게임 디자인 패턴 (스튜어트 버틀러, 톰 올리버)
  • 데이터베이스 설계, 이렇게 하면 된다 (미크, 윤인성)
  • 핸즈온 바이브 코딩 (정도현)

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

spinner
앱으로 연결해서 다운로드하시겠습니까?
닫기 버튼
대여한 작품은 다운로드 시점부터 대여가 시작됩니다.
앱으로 연결해서 보시겠습니까?
닫기 버튼
앱이 설치되어 있지 않으면 앱 다운로드로 자동 연결됩니다.
모바일 버전