天蓝色在ps中的色值

Data Science & Azure Machine Learning Service — An introduction

数据科学和Azure机器学习服务-简介

Background

背景

I have been practicing data science — developed ML pipelines for Financial services, Pharmaceuticals, Health Care and Consulting domains. I have developed both Machine learning and Deep learning models. I have recently cleared DP-100 Microsoft Azure data scientist certification. As part of my passion for continuous learning, I am planning to write a series of articles on data science, covering machine learning and deep learning, from Microsoft Azure Machine Learning Service point of view.

我一直在练习数据科学-为金融服务,制药,保健和咨询领域开发的ML管道。 我已经开发了机器学习和深度学习模型。 我最近通过了DP-100 Microsoft Azure数据科学家认证。 作为对持续学习的热情的一部分,我计划从Microsoft Azure机器学习服务的角度撰写一系列有关数据科学的文章,涵盖机器学习和深度学习。

Data Science — A generic overview

数据科学-概述

First, a brief synopsis on data science. In a nutshell, data science is all about data — it facilitates understanding data from statistical point of view. In general, data science is an intense quantitative field, requiring strong fundamentals in mathematics, statistics, computational, data structures & programming. In today’s data driven world, data science broadly supports three inter-related areas: AI, Machine Learning, and Deep Learning. Their relationship is shown below:

首先,简要介绍一下数据科学。 简而言之,数据科学就是关于数据的,它有助于从统计角度理解数据。 通常,数据科学是一个激烈的定量领域,需要在数学,统计,计算,数据结构和编程方面具有强大的基础知识。 在当今数据驱动的世界中,数据科学广泛支持三个相互关联的领域:人工智能,机器学习和深度学习。 它们的关系如下所示:

With this simple background, without much ado, let us focus on our topic of interest: how do we leverage feature-rich powerful Azure Machine Learning to solve our machine learning business cases.

凭着这样简单的背景,我们毫不费力地将注意力集中在我们感兴趣的主题上:我们如何利用功能丰富且功能强大的Azure机器学习来解决我们的机器学习业务案例。

Azure Machine Learning

Azure机器学习

So, what is Azure Machine Learning? It provides a cloud-based platform for training, deploying, and managing ML models. It is a platform for operating machine learning workloads in the cloud. Azure Machine Learning supports all activities associated with a typical machine learning business case:

那么,什么是Azure机器学习? 它提供了一个基于云的平台,用于训练,部署和管理ML模型。 它是用于在云中操作机器学习工作负载的平台。 Azure机器学习支持与典型机器学习业务案例相关的所有活动:

  1. Understanding data了解数据
  2. Data preprocessing, including featurization数据预处理,包括功能化
  3. Descriptive statistics描述性统计
  4. Model building建筑模型
  5. Model tuning — Hyperparameters模型调整—超参数
  6. Model evaluation模型评估
  7. Model deployment (MLOps pipeline)模型部署(MLOps管道)

In addition, it supports other powerful and useful features such as Data Drift. Data drift involves identifying issues with data changes over a period of time on the trained model. Taking timely action using data drift metrics helps avoiding many pitfalls that data scientists face in today’s production set up.

此外,它还支持其他强大而有用的功能,例如数据漂移。 数据漂移涉及在经过训练的模型上确定一段时间内数据变化的问题。 使用数据漂移指标及时采取行动有助于避免数据科学家在当今生产环境中面临的许多陷阱。

Azure ML Architecture

Azure ML体系结构

The following diagram shows Azure Machine Learning architecture:

下图显示了Azure机器学习架构:

Diagram Credit: Microsoft图来源:微软

As you can see in the above diagram, Azure Machine Learning (henceforth: Azure ML) leverages its resource horsepower from Azure cloud. This combination of cloud and data science makes it extremely powerful to design and train resource intensive machine learning models. Particularly, when a machine learning model is intense (in terms of computation. Ex: Boosting, neural networks, etc.) with sufficient loads of data, cloud based Azure ML could supply powerful compute target to train it much faster.

如上图所示,Azure机器学习(以下简称:Azure ML)利用了来自Azure云的资源功能。 云和数据科学的这种结合使设计和训练资源密集型机器学习模型变得极为强大。 尤其是,当机器学习模型非常密集(就计算而言。例如:Boosting,神经网络等)并且有足够的数据负载时,基于云的Azure ML可以提供强大的计算目标来更快地对其进行训练。

Features supported by Azure Machine Learning

Azure机器学习支持的功能

As shown in the diagram above, out of the box, Azure ML supports following business critical features:

如上图所示,Azure ML开箱即用地支持以下关键业务功能:

1. Scalable on-demand compute: Azure ML supports many computes (aka. compute targets), including its powerful compute cluster. It is scalable auto on-demand compute usage for machine learning workloads. That means, in a business sense, you pay only for what you use.

1.可扩展的按需计算:Azure ML支持许多计算(也称为计算目标),包括其强大的计算群集。 它是可扩展的自动按需计算用法,用于机器学习工作负载。 从商业角度讲,这意味着您只为使用的商品付费。

2. Data Storage and connectivity: Provides an easy-to-use, yet powerful data storage layer. It is so flexible, yet poweful, that data storage can be easily integrated with Python Pandas dataframe and Spark dataframe

2.数据存储和连接性:提供易于使用但功能强大的数据存储层。 它非常灵活,但功能强大,可以轻松地将数据存储与Python Pandas数据框和Spark数据框集成。

3. Metrics and monitoring: Feature is very helpful to data scientists and machine learning engineers. You can get various metrics for a given business case and often, it helps you to see how different metrics are behaving

3.指标和监控:功能对数据科学家和机器学习工程师非常有帮助。 您可以获取给定业务案例的各种指标,并且通常可以帮助您了解不同指标的行为方式

Other features such as ML orchestration using Pipeline and model registration

其他功能,例如使用管道进行ML编排和模型注册

Machine Learning features

机器学习功能

Azure Machine Learning platform provides means to implement both machine learning and deep learning. In a broad sense, it supports following machine learning types covering both supervised and unsupervised learning:

Azure机器学习平台提供了实现机器学习和深度学习的方法。 从广义上讲,它支持以下机器学习类型,包括监督学习和无监督学习:

1. Classification

1.分类

2. Regression

2.回归

3. Time series forecasting

3.时间序列预测

4. Clustering

4.聚类

5. Recommenders

5.推荐人

Two powerful Azure ML features that are quite helpful to both seasoned data scientists and those who do not have required mathematical background are:

两项功能强大的Azure ML功能对经验丰富的数据科学家和那些不需要数学背景的人都非常有帮助:

1. Designer — a drag and drop feature using Modules (see below for definition of modules). This is basically a no-code machine learning feature

1.设计器-使用模块的拖放功能(有关模块的定义,请参见下文)。 这基本上是无代码的机器学习功能

2. AutoML — Automated ML. Using this feature, you will let Azure ML choose and run group of algorithms and decide the best algorithm based on a metric. For example, the best classification algorithm could be chosen on ROC AUC curve. It is feature rich and very flexible that the user could block a list of algorithms from choosing.

2. AutoML-自动ML。 使用此功能,您可以让Azure ML选择并运行算法组,并根据指标确定最佳算法。 例如,可以在ROC AUC曲线上选择最佳分类算法。 用户可以阻止选择的算法列表功能丰富且非常灵活。

In Azure ML, a module (UI component) represents a set of code that can run independently and perform a machine learning task, given the required inputs. A module might contain a particular algorithm, or perform a task that is important in machine learning, such as missing value replacement (for data preprocessing), or statistical analysis.

在Azure ML中,模块(UI组件)表示一组代码,这些代码可以在给定所需输入的情况下独立运行并执行机器学习任务。 模块可能包含特定算法,或者执行在机器学习中很重要的任务,例如缺失值替换(用于数据预处理)或统计分析。

What Next?

接下来是什么?

This article covered summary benefits and features available in Azure Machine Learning service. In the next few articles, I will cover some of the Azure resource level topics such as Workspace, Data Storage, and so on. Ultimately, my focus is going to be covering Azure ML Service features and its support for Machine Learning and Deep Learning. I personally feel that Azure ML service in the current form is either missing some of the business critical algorithms or not covered sufficiently. I may touch these topics in the future articles.

本文介绍了Azure机器学习服务中可用的摘要优点和功能。 在接下来的几篇文章中,我将介绍一些Azure资源级别的主题,例如工作区,数据存储等。 最终,我的重点将是覆盖Azure ML服务功能及其对机器学习和深度学习的支持。 我个人认为当前形式的Azure ML服务或者缺少一些关键业务算法,或者没有被充分介绍。 在以后的文章中,我可能会涉及这些主题。

Please stay tuned for my next article on this series. In the meantime, I request readers providing suggestions / feedback for improvement.

请继续关注我关于该系列的下一篇文章。 同时,我要求读者提供建议/反馈以进行改进。

翻译自: https://medium.com/@ram.analytics1/machine-learning-on-azure-cloud-dc64d2855147

天蓝色在ps中的色值


http://www.taodudu.cc/news/show-4561994.html

相关文章:

  • 天蓝色在ps中的色值_加强天蓝色政策
  • (六)安装xdd-plus的保姆级搭建教程+xdd-plus修复+对接青龙+指令用途/看了你就能学废【2022年5月23日】【更新】
  • 易筋洗髓笔记(四)
  • 为大数据定个小目标:从改变惯例开始
  • 读书笔记:《成为技术领导者 掌握全面解决问题的方法》
  • 我所理解的技术领导力
  • Android图片格式转换为JPG
  • web test LoadRunner error list / error log
  • 微软 Microsoft
  • 转载 loadrunner的一些问题解决
  • 自动驾驶架构
  • 自动驾驶仿真测试
  • 五分钟通俗理解自动驾驶
  • 大一猛男女厕奇遇
  • 5个城市,5个女人,5种生活
  • 互联网商规-part2
  • 丑女的“罗曼蒂克”
  • 在游戏策划中应用SCAMPER创新
  • 蹦蹦跳跳创新法
  • 游戏设计的艺术:一本透镜的书——第二十五章 好的游戏是通过游戏测试做出来的
  • 7-11便利店,为什么活的那么滋润?
  • 人工智能还是人工学习
  • java什么是显示类型转换_【Java的显示转换方法是什么?这种数据类型转换就要这样操作】- 环球网校...
  • java强制转换用法_Java入门课|这才是Java强制类型转换的正确使用方法,你真的会用这些吗...
  • 如何成为一个高效、快乐、健康的程序员
  • OSChina 周五乱弹 ——爸妈是真爱,你只是意外。
  • 番茄钟工作法--我们天生爱分享
  • OSChina 周五乱弹 ——什么情况下两个人之间的距离能成为负数
  • [解决方案]未能找到路径“~\bin\roslyn\csc.exe”的一部分
  • FSL安装教程(Ubuntu)

天蓝色在ps中的色值_天蓝色云上的机器学习相关推荐

  1. 天蓝色在ps中的色值_天蓝色AI服务在游戏世界中的作用

    天蓝色在ps中的色值 Welcome Back Readers, 欢迎读者, 介绍 (Introduction) I am Dhruv Trehan, Microsoft Student Partne ...

  2. 天蓝色在ps中的色值_天蓝色的cosmosdb文档中的字段级加密

    天蓝色在ps中的色值 In today's world customer's data security and privacy is of utmost importance. This becom ...

  3. 天蓝色在ps中的色值_天蓝色devsecops管道Web配置

    天蓝色在ps中的色值 Content Security Policies & The Occasional Silent Failure 内容安全策略和偶发的静默故障 The Preface ...

  4. 天蓝色在ps中的色值_用天蓝色构建混合云

    天蓝色在ps中的色值 In this day and age who would bother developing solutions on anything but the public clou ...

  5. 天蓝色在ps中的色值_加强天蓝色政策

    天蓝色在ps中的色值 The goal was clear; risk-based metrics providing a defense-in-depth based view of securit ...

  6. 仓库处理中 无法修改_阿里云自研数据仓库 AnalyticDB 再捧 TPC 全球冠军

    作者 | 马超责编 | 伍杏玲出品 | CSDN(ID:CSDNnews) 5月14日,TPC 官网正式公布,阿里云自研的 AnalyticDB 通过了TPC-DS全流程测试,将前世界纪录的性能提升了 ...

  7. 支付宝当面付扫码支付支付后不回调_码云上不错的几个支付相关的项目

    阅读文本大概需要15分钟. 网上支付相关的额业务场景无处不在,如果能掌握支付相关的核心技术,对于升职涨薪有莫大的好处.目前国内支付以支付宝和微信这两种支付为首,其他支付则可以忽略不计.有些网友以这两种 ...

  8. 动态分区分配算法实现_阿里云上利用virtiope+colinux实现linux系统盘动态无损多分区...

    本文关键字:利用colinx+virtio winpe定制aliyun多分区linux系统盘,在winpe xp winpe中运行colinux,在windows pe下真正操作linux分区,利用c ...

  9. 码云上传文件夹_码云上传本地文件夹,码云只能上传20个文件的突破方法

    码云官方地址:https://gitee.com/ 很多人不知道码云上传本地文件夹怎么操作,或者如何突破码云只能上传20个文件限制的问题,今天就来说说这事的方法吧. 简介: 码云是媲美GitHub的代 ...

最新文章

  1. 20行Python代码说清“量子霸权”
  2. 小学二年几手工计算机的制作,小学二年级创意手工制作方法
  3. wordpress home.php,WordPress主题通过function.php来加载js和css文件
  4. 使用栈来完成一个表达式的结果
  5. 疫情下的“双11”,品牌逆势增长背后的数字化变革
  6. 遇到一个在脚本中读取文件内容占用文件句柄的小问题
  7. elementui的横向滚动_记一次element-ui配置化table组件的适应性问题(横向滚动条)...
  8. tcpip详解卷一arp 地址解析协议
  9. 使用allegro画PCB的基本流程:
  10. 魔兽怀旧服怎么找不到服务器,魔兽世界怀旧服世界服务器无法连接怎么办
  11. 基于TI CC2540汽车检测蓝牙4.0 BLE方案
  12. keras merged model
  13. 十月英语——坚持的力量
  14. 电脑链接wifi显示无法连接服务器,电脑连接wifi出现感叹号_电脑连接wifi成功但上不了网怎么办?-192路由网...
  15. 从视频中提取帧图片FFmpeg / 根据文件名提取图片
  16. (二)postman批量执行用例
  17. 机房空调系统集中控制节能降耗方案
  18. 计算机技术在财务会计学中的应用,(完整word版)财务会计学课程中英文简介.docx...
  19. python 驱动级鼠标_颜值最高的鼠标垫 赛睿 Qck Prism Cloth游戏鼠标垫评测
  20. java语言中的while、do while、for循环

热门文章

  1. .dat文件写入byte类型数组_Go语言学习基础-读文件、写文件、行过滤器
  2. 经典Robocode例子代码--SnippetBot
  3. 腾讯投的柠萌影视上市破发:公司市值97亿港元 曾创作《三十而已》
  4. 国内垃圾渗滤液处理主要用什么手段呢?垃圾渗滤液的处理市场前景有吗?
  5. 编译安装 Python
  6. 教您如何采集阿里飞猪各旅行专营店的主图及视频
  7. 2020年3月蓝桥杯校内模拟赛题解
  8. 中国制造2025新机遇 机器视觉行业爆发
  9. JAVA与MAVEN打包
  10. CNC插补技术(从原理、分类到具体插补算法,较为详细)