新睿云 亚马逊

Few days back in Amazon Web Services (AWS) re:Invent 2019, Amazon announced its fully managed service that detects anomalies in transactions, Amazon Fraud Detector. The service is currently in preview and I couldn’t wait to get my hands dirty experimenting with some fraud detections samples as soon as my preview application was approved.

˚FEW天Amazon Web Services的备份(AWS)回复:创造2019年,亚马逊宣布其全托管服务,在交易异常检测,亚马逊欺诈检测。 该服务目前处于预览状态,一旦我的预览申请获得批准,我就迫不及待地尝试一些欺诈检测样本。

The best thing about Amazon Fraud Detector is that you don’t need any ML expertise to build fraud-detection models. Just grab some historical data and Amazon Fraud detector will use this data to automatically train, test, and deploy a customised fraud detection model.

关于Amazon Fraud Detector的最好之处在于,您不需要任何ML专业知识即可构建欺诈检测模型。 只需获取一些历史数据,Amazon Fraud Detector将使用此数据自动训练,测试和部署自定义的欺诈检测模型。

To get started, I would always recommend the official documentation which is a great place to start. You can follow the reference links provided at the end of this article to learn more about Amazon Fraud Detector .

首先,我将始终推荐官方文档,这是一个很好的起点。 您可以单击本文结尾处提供的参考链接,以了解有关Amazon Fraud Detector的更多信息。

For those who are still eagerly waiting for a preview, this article will provide a glimpse of the service and walk-through of the steps to build a fraud detection model and run fraud prediction tests.

对于仍急于等待预览的用户,本文将简要介绍该服务,并逐步介绍构建欺诈检测模型和运行欺诈预测测试的步骤。

I’ve used some fake data generated from https://mockaroo.com/ which is a wonderful tool to generate realistic data at ease . You can also use the open-source faker.js (https://github.com/marak/Faker.js/) library to generate massive amounts of fake data in Node.js and the browser.

我使用了从https://mockaroo.com/生成的一些虚假数据,这是一个轻松生成真实数据的绝妙工具。 您还可以使用开源的faker.js( https://github.com/marak/Faker.js/ )库在Node.js和浏览器中生成大量假数据。

Once you have the dataset ready, upload the csv file to an S3 bucket and the console will provide you the option to create or select an existing IAM role to access the training dataset.

准备好数据集后,将csv文件上传到S3存储桶,控制台将为您提供创建或选择现有IAM角色以访问训练数据集的选项。

Defining data location
定义数据位置

The Amazon Fraud Detector Model templates provides options for three flavours of templates out of which “The Online Fraud Insights” Model is available currently. The other two model templates namely Account Takeover for identifying compromised accounts and Transaction Fraud for capturing fraudulent transactions are in roadmap for future release.

Amazon Fraud Detector模型模板为三种模板提供了选项,其中三种模板目前可用。 其他两个模型模板,即用于识别受感染帐户的“帐户接管”和用于捕获欺诈性交易的“交易欺诈”,已在将来的发布路线图中。

The Online Fraud Insights model template requires the inputs as shown in the image below to create a model. We need to make sure our dataset includes email, timestamp, IP and fraud label fields.

Online Fraud Insights模型模板需要输入,如下图所示,以创建模型。 我们需要确保我们的数据集包括电子邮件,时间戳,IP和欺诈标签字段。

At the next step, we need to configure our model to ensure inputs are mapped correctly to selected variables.

下一步,我们需要配置我们的模型,以确保将输入正确映射到所选变量。

The third and last step allows us to review our model details and a final click to create and train our model. The model takes some time to train before it’s available to deploy. It took approximately 20 minutes in this case to train for a dataset with 20,000 rows.

第三步(也是最后一步)使我们可以查看模型详细信息,并最终单击以创建和训练模型。 该模型需要花费一些时间进行培训,然后才能进行部署。 在这种情况下,大约需要20分钟才能训练出具有20,000行的数据集。

Once the training is successful, we can deploy this specific version of model to use with our detectors. In below image, we see the model performance and a tabular representation to help us determine which model threshold we should use when writing rules to evaluate events.

训练成功后,我们可以部署此特定版本的模型以与我们的探测器一起使用。 在下图中,我们看到了模型性能和表格表示形式,可帮助我们确定在编写规则以评估事件时应使用哪个模型阈值。

Once, we’ve deployed the fraud detection model successful, we will go ahead and create a detector in this second part of this hands-on demonstration. There are five simple steps involve in creation of a detector starting with the step of defining a name for our detector.

一旦成功部署了欺诈检测模型,我们将继续在本动手演示的第二部分中创建检测器。 从定义检测器名称的步骤开始,创建检测器需要五个简单步骤。

At the second step, add the model that we have created in the first part of this demonstration.

在第二步,添加我们在本演示的第一部分中创建的模型。

After this, we can add rules to interpret our Amazon Fraud Detector model’s score. Here, we will need to provide rule expressions and an outcome which would be the result from a fraud prediction and is returned if the rule matches during an evaluation.

此后,我们可以添加规则来解释我们的Amazon Fraud Detector模型的得分。 在这里,我们将需要提供规则表达式和结果,这些结果将是欺诈预测的结果,如果在评估期间规则匹配,则将结果返回。

We can see a sample rule expression in below image .

我们可以在下图中看到一个示例规则表达式。

Once we’ve created the rules, we can define the order to execute rules that will affect the resulting fraud prediction outcome. In this case, we have moved the “high_fraud_risk” rule to the first position.

创建规则后,我们可以定义执行规则的顺序,该规则将影响最终的欺诈预测结果。 在这种情况下,我们已将“ high_fraud_risk”规则移至第一位置。

At the last step, we can review the rules and finally, proceed to create the detector.

在最后一步,我们可以检查规则,最后,继续创建检测器。

Once our detector is created, we can test our detector’s logic using some sample event data. As we can see in below image, the test resulted in outcome “Review” with a model score of 688. Thus, our model is now ready and we can make it available for use in real-time fraud detection .

创建检测器后,我们可以使用一些样本事件数据来检测检测器的逻辑。 正如我们在下图中看到的,测试结果为“ Review”,模型得分为688。因此,我们的模型现已准备就绪,可以将其用于实时欺诈检测。

Conclusion

结论

With 20 years of fraud detection expertise from AWS and Amazon.com to automatically identify potential fraudulent activity in milliseconds, Amazon Fraud detector has abstracted away the complex Machine Learning to provide an interface which is easy and simple enough for everyone to use. At present, though this service is limited to few model templates and only available in AWS US East (N. Virginia) region, we can expect this service to grow with the increasing demand for fraud management.

凭借来自AWS和Amazon.com的20年欺诈检测专业知识,Amazon毫秒欺诈检测器已经抽象化了复杂的机器学习,从而提供了一个简单易用的界面,供所有人使用,该欺诈自动检测以毫秒为单位的潜在欺诈活动。 目前,尽管此服务仅限于很少的模型模板,并且仅在AWS美国东部(弗吉尼亚北部)地区可用,但是随着欺诈管理需求的增加,我们可以预期该服务会增长。

翻译自: https://towardsdatascience.com/a-glimpse-of-newly-revealed-amazon-fraud-detector-c8c989501a5d

新睿云 亚马逊


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

相关文章:

  • 亚马逊测评技术一定要懂得以下几点
  • 邮件营销技巧和经验分享
  • 压倒eBay 挑战亚马逊 Shopify到底厉害在哪儿?
  • 亚马逊速卖通tro律所禁令冻结资金的解决方法
  • 亚马逊测评如何做
  • 亚马逊卖家运营必备八大工具
  • 如何防止亚马逊账户关联?
  • PHP资源汇总,内容包括:库、框架、模板等
  • 跨境电商必看:amazon账号关联因素
  • Amazon 新手要知道 100 个问题
  • 贝索斯要卸任 亚马逊换CEO!!!
  • 电子邮件营销的十大技巧
  • 亚马逊要验证收款查关联?
  • Spring boot 集成邮件通知及线程异步发送
  • html语言亚马逊后台,「亚马逊」新手卖家指南-页面与术语
  • 白名单模板_亚马逊白名单申请流程全解析
  • 2019亚马逊差评回复模板,老手惯用的亚马逊差评应对技巧
  • 互联网这个高薪岗位不要错过,平均薪资超15k
  • 学计算机的管理层,毕业很吃香、高薪岗位多的4个专业,计算机科学上榜,你的专业呢...
  • 2020年度十大高薪岗位出炉:程序员霸榜
  • 2020十大高薪资专业和十大高薪资岗位---(之我给程序员丢人了)
  • 百万不是梦!盘点2012年六大IT高薪岗位
  • IT行业里哪些岗位热门又高薪?
  • 从博弈论看高薪行业岗位
  • 【名企招聘】4月26日19点,涛思数据带着高薪岗位JD和精美周边来啦~
  • 软件测试VS软件开发 IT行业两大高薪岗位全方位对比 看完就知道选谁了
  • 高薪岗位大数据开发工程师要如何入门?【重磅】
  • 传智教育|如何转行互联网高薪岗位之一的软件测试?(附软件测试学习路线图)
  • 平均年薪50W+,AI算法岗凭什么?附2020高薪岗位十五强
  • 【CSDN雇主招聘】深信服科技带着高薪岗位JD和公司周边来啦

新睿云 亚马逊_一窥新发现的亚马逊欺诈检测器相关推荐

  1. 新睿云 亚马逊_等待亚马逊新的可穿戴需求,让我穿着内衣

    新睿云 亚马逊 Amazon says your semi-nude pictures will be automatically deleted from its servers after 3D ...

  2. 使用FIO测试工具对新睿云、xrcloud.net、云主机进行测试

    对于当前市面上可购买的云主机,主要集中在阿里云.亚马逊.腾讯云.华为云.金山云.UCloud云.青云.比格云等可选产品,同时最近发现由北京允睿讯通科技有限公司推出的新睿云.XRcloud.云主机.云网 ...

  3. 怎么增加服务器容量,新睿云服务器硬盘容量怎么增加?

    新睿云服务器固然好用,不过默认只有40G硬盘,如果我们用其搭建了一个自己的网盘,则40G可能显着不够用.这个时候我们需要把云服务器的硬盘的容量增加,这个我们需要怎么来操作呢? 一.新睿云服务器硬盘容量 ...

  4. 新睿云服务器安装Oracle 11g数据库

    云服务器搭建测试环境还是十分方便,我们上线一个应用在发布前需要大量的测试.上线后如果更改功能也需要在测试环境中调试完毕. 不论什么样的应用调试数据总是离不开的,今天我们就用新睿云服务器安装oracle ...

  5. 渲染吃CPU还是显卡呢?未来是否新睿云的云渲染会大行其道呢?

    渲染是一个十分有魔力的东西,比如就一张动画图片,如果经过渲染则看起来跟真的一样- 这是动画片片段的渲染后的效果,大家可以看到其第二章图片简直如同实拍了,早些年我们只能在一些比较大的电影中看到渲染效果, ...

  6. 弹性云服务器的规格系列,新睿云简析云服务器的配置规格怎么选择?

    云服务器出现的本质就是解决传统服务器定制困难,耗时时间长.而且升级起来也没有那么方便,当然这对云服务器来说不算什么,用起来自然是简便容易.其云服务器最大的特点就是配置灵活,云服务器有以下主要几个参数. ...

  7. 为用户提供质量好,服务好,运作成本低的云计算产品—记新睿云服务团队顺利完成春节保障任务...

    2020年1月的武汉新冠病毒肺炎事件突然爆发,让2020年春节变得不同寻常.新型冠状病毒肺炎疫情来势汹汹,各省陆续启动重大公共突发卫生事件一级响应,并实施最严举措全力以赴做好防疫工作,注定这个春节许多 ...

  8. 新睿云科普:什么叫云技术?云技术是如何发展到如今的?

    云技术是计算机系统资源(尤其是数据存储和计算能力)的按需可用性,而无需用户直接进行主动管理.该术语通常用于描述Internet上可供许多用户使用的数据中心.在当今占主导地位的大型云通常具有从中央服务器 ...

  9. 我的世界云服务器自动保存,租用新睿云服务器一分钟搭建我的世界

    最近因为新睿云优惠多多,笔者也做了一回羊毛党,目前做任务免费用云服务器笔者直接撸了一台.用着还不错,想起来大学跟室友一起开黑的时光,因此笔者这里直接搭建一个<我的世界>服务器端,连上玩的还 ...

  10. 新睿云云服务器稳定吗,新睿云云主机评测—用数据告诉您“新睿云”为何这么受欢迎...

    所谓"文无第一,武无第二."云服务器行业也是如此,小编今天针对新睿云的云服务器做一下评测,让大家看到具体的数据,以数据说话. 本次笔者拿的是新睿云入门1核1g40g硬盘的入门级别的 ...

最新文章

  1. 网络推广外包——还记得网络推广外包中的site收录吗?
  2. 【Python】青少年蓝桥杯_每日一题_1.11_奇偶数
  3. h5的横线_CSS文字两边添加横线的几种方法
  4. .NET6之MiniAPI(十三):健康检查
  5. 一些常见文件加密软件的破解方法
  6. 如何在Linux里面安装Java的运行环境(详细过程)
  7. dex字符串解密_Dex加密(上)
  8. pytest接口自动化测试框架 | 为什么要做pytest插件的二次开发
  9. selenium-java 实现QQ音乐自动登录获取cookie数据,爬取qq音乐会员资源和网易云音乐会员资源。实现任意网站的会员资源爬取
  10. Python网络与并发编程 02 TCP粘包
  11. android做试卷的页面,《Android UI界面设计》17移动互联网A卷试题和答案(3页)-原创力文档...
  12. JAVA加密工具类实例
  13. 基于动力学模型的无人驾驶车辆MPC轨迹跟踪算法及carsim+matlab联合仿真学习笔记
  14. 从网易与淘宝的font-size思考前端设计稿与工作流
  15. 二分——切绳子(C++)
  16. 建立自己的kindle书库,并实现公网访问
  17. 美团到点事业部后台一二面经
  18. XLOOKUP如何同时根据横坐标和纵坐标查找值?
  19. 【C++详解】——多态
  20. DAC配置—SPI的使用

热门文章

  1. php学籍信息管理系统心得_php学籍管理系统,源码免费分享
  2. python 残差图_为啥一定要用残差图检查你的回归分析?
  3. request请求 下载附件
  4. 基于单片机的智能视力保护监控系统设计
  5. mac iphone模拟器 真机 操作
  6. T检验、卡方检验、F检验
  7. 组合数有关的一些求和公式
  8. 使用Fiddler抓取websocket包-Android
  9. [微信小程序开发者工具] [error] Error: Fail to open IDE 问题解决方法
  10. EIA/TIA布线标准(568A、568B)