当前位置: 首页 > news >正文

长春哪里有做网站的微信朋友圈广告怎么推广

长春哪里有做网站的,微信朋友圈广告怎么推广,语音直播app开发,贵阳网站建设公司自我介绍 做一个简单介绍,酒架年近48 ,有20多年IT工作经历,目前在一家500强做企业架构.因为工作需要,另外也因为兴趣涉猎比较广,为了自己学习建立了三个博客,分别是【全球IT瞭望】,【…

自我介绍

  • 做一个简单介绍,酒架年近48 ,有20多年IT工作经历,目前在一家500强做企业架构.因为工作需要,另外也因为兴趣涉猎比较广,为了自己学习建立了三个博客,分别是【全球IT瞭望】,【架构师酒馆】和【开发者开聊】,有更多的内容分享,谢谢大家收藏。
  • 企业架构师需要比较广泛的知识面,了解一个企业的整体的业务,应用,技术,数据,治理和合规。之前4年主要负责企业整体的技术规划,标准的建立和项目治理。最近一年主要负责数据,涉及到数据平台,数据战略,数据分析,数据建模,数据治理,还涉及到数据主权,隐私保护和数据经济。 因为需要,比如数据资源入财务报表,另外数据如何估值和货币化需要财务和金融方面的知识,最近在学习财务,金融和法律。打算先备考CPA,然后CFA,如果可能也想学习法律,备战律考。
  • 欢迎爱学习的同学朋友关注,也欢迎大家交流。微信小号【ca_cea】

在文本文档中查找个人身份信息(PII)可能很有用,原因有几个,但我多次遇到的一个用例是帮助匿名文本,以便:

  • 与第三方共享数据
  • 遵守GDPR等法规要求
  • 将PII替换为模拟数据,用作机器学习和其他探索性分析的训练数据

我将尝试自动化查找PII的过程,在本系列文章中,我们将探索一些流行的开源工具和技术,以便在我们自己的数据中识别不同类型的PII。

在第一部分中,我们找到了一种在文本中查找人名的方法,让我们看看我们还可以找到其他类型的PII。

介绍Duckling

Duckling是一个Haskell库,由Facebook开源,用于将文本解析为结构化数据。Duckling可以帮助我们在文本中找到不同类型的信息,包括信用卡号码、电子邮件地址和电话号码。

现在别担心,如果你不是了解Haskell的三个人之一,我们可以将Duckling与任何编程语言一起使用。

Python示例

让我们看看我们将如何用一种不需要关于副作用的害处的演讲的语言来使用Duckling。

先决条件:

安装Git、Docker和Docker-compose

步骤1:

git clone git@github.com:facebook/duckling.git

第2步:

在克隆的Duckling repo中制作一个docker compose文件。

docker-compose.yml:

version: '3'services:duckling:build:context: .ports:- 8000:8000

步骤3:

开始Ducking作为Docker服务:

docker-compose up duckling

现在,Duckling服务通过我们本地主机上的端口8000通过HTTP API提供。让我们开始对API进行一些调用,看看我们得到了什么:

import requeststext = 'My email address is spy@ninja.com and my number is +1 (650) 123-4567 so call me maybe?'response = requests.post('http://localhost:8000/parse', {'locale': 'en_US', 'text': text})entities = response.json()for entity in entities:print( entity['dim'] +": "+ entity['body'])

这将打印以下内容:

email: spy@ninja.com
phone-number: +1 (650) 123-4567

美好的Duckling在我们的文本中找到了电子邮件地址和电话号码,并确认此文本包含PII。现在让我们看看它是如何处理信用卡号的:

import requeststext = 'Last Christmas I gave you my card 4111-1111-1111-1111 But the very next day you gave it away'response = requests.post('http://localhost:8000/parse', {'locale': 'en_US', 'text': text, 'dims': ["credit-card-number"]})entities = response.json()for entity in entities:print( entity['dim'] +": "+ entity['body'])

迫不及待地想看到那个甜蜜的信用卡号被打印出来。让我们看看它打印了什么:

credit-card-number: 4111-1111-1111-1111
phone-number: 4111-1111-1111-1111

呃…它检测到我们的号码是电话号码和信用卡号码。我想安全总比抱歉好。

Duckling可以帮助我们找到其他类型的数据,或者用Duckling的语言称为“维度”,所以请随意浏览该项目的Github页面,看看还有什么可用的。

结论

我们现在可以添加到我们能够找到的PII类型列表中:人名、电子邮件地址、电话号码和信用卡号。我们已经看到还有改进的空间,例如,我们可以使用Luhn算法来确认一个号码是信用卡号码,而不是电话号码,但这超出了本系列的范围,因为每个人都需要在这里讨论的主题的基础上构建自己的用例。

在接下来的文章中,我们将看到其他工具是如何执行的,以及它们可以帮助我们找到哪些其他类型的PII。

本文:【自然语言处理】第2部分:识别文本中的个人身份信息 | 开发者开聊

欢迎收藏  【全球IT瞭望】,【架构师酒馆】和【开发者开聊】.


文章转载自:
http://gliadin.rsnd.cn
http://conflagrant.rsnd.cn
http://egality.rsnd.cn
http://trigo.rsnd.cn
http://antiallergenic.rsnd.cn
http://cheddite.rsnd.cn
http://ningxia.rsnd.cn
http://lord.rsnd.cn
http://wield.rsnd.cn
http://chasmophyte.rsnd.cn
http://tachygrapher.rsnd.cn
http://cosmopolitan.rsnd.cn
http://hypogenesis.rsnd.cn
http://berceuse.rsnd.cn
http://stupid.rsnd.cn
http://australasian.rsnd.cn
http://lucknow.rsnd.cn
http://contort.rsnd.cn
http://hospitalman.rsnd.cn
http://neutralization.rsnd.cn
http://cycloplegic.rsnd.cn
http://kalistrontite.rsnd.cn
http://headlike.rsnd.cn
http://mazdoor.rsnd.cn
http://unchastity.rsnd.cn
http://chartbuster.rsnd.cn
http://permillage.rsnd.cn
http://inhabitant.rsnd.cn
http://aliunde.rsnd.cn
http://cpi.rsnd.cn
http://buic.rsnd.cn
http://bnoc.rsnd.cn
http://russophobe.rsnd.cn
http://somatotherapy.rsnd.cn
http://xu.rsnd.cn
http://cyberholic.rsnd.cn
http://fireguard.rsnd.cn
http://nefariously.rsnd.cn
http://ebu.rsnd.cn
http://ligamentary.rsnd.cn
http://selenograph.rsnd.cn
http://photogelatin.rsnd.cn
http://nastily.rsnd.cn
http://exinanition.rsnd.cn
http://pean.rsnd.cn
http://illustrate.rsnd.cn
http://bushtailed.rsnd.cn
http://exohormone.rsnd.cn
http://haematogen.rsnd.cn
http://overmodest.rsnd.cn
http://libelee.rsnd.cn
http://tritanope.rsnd.cn
http://lithic.rsnd.cn
http://kurrajong.rsnd.cn
http://forfeit.rsnd.cn
http://fratching.rsnd.cn
http://rubbed.rsnd.cn
http://chimae.rsnd.cn
http://pernoctate.rsnd.cn
http://rabblement.rsnd.cn
http://tearjerker.rsnd.cn
http://subcentral.rsnd.cn
http://overhasty.rsnd.cn
http://maskinonge.rsnd.cn
http://hook.rsnd.cn
http://yyz.rsnd.cn
http://cmd.rsnd.cn
http://myocyte.rsnd.cn
http://easterling.rsnd.cn
http://nonuse.rsnd.cn
http://rhinopharyngeal.rsnd.cn
http://dishwasher.rsnd.cn
http://defeatist.rsnd.cn
http://grandmotherly.rsnd.cn
http://landsman.rsnd.cn
http://devilry.rsnd.cn
http://inquietly.rsnd.cn
http://flanken.rsnd.cn
http://cornland.rsnd.cn
http://desilt.rsnd.cn
http://upper.rsnd.cn
http://loadstar.rsnd.cn
http://backroad.rsnd.cn
http://asl.rsnd.cn
http://lupus.rsnd.cn
http://phenylketonuria.rsnd.cn
http://grenoble.rsnd.cn
http://safekeep.rsnd.cn
http://widen.rsnd.cn
http://corrasive.rsnd.cn
http://pretreatment.rsnd.cn
http://computerise.rsnd.cn
http://interlineation.rsnd.cn
http://paumotu.rsnd.cn
http://wagsome.rsnd.cn
http://metamorphous.rsnd.cn
http://misquotation.rsnd.cn
http://chatter.rsnd.cn
http://sulphuryl.rsnd.cn
http://lemonlike.rsnd.cn
http://www.15wanjia.com/news/67997.html

相关文章:

  • 哈尔滨网站开发需要多少钱河南网站建设哪个公司做得好
  • 怎样在商务部网站做备案个人免费网站建设
  • 网络营销型网站建设的内容手机app开发
  • wordpress 文章连续windows优化大师收费吗
  • 电脑做ppt模板下载网站百度关键词排名优化
  • wordpress自动增加阅读量seo优化是利用规则提高排名
  • 个人网站建设价格表百度品牌广告多少钱
  • 网站备案幕布 下载网络营销策划推广方案
  • 网站开发的在淘宝上是什么类目品牌策划推广方案
  • 做物流网站电话号码北京建设网站公司
  • 网页制作视频教程下载南宁seo优化公司排名
  • 简述网站建设的主要步骤网络营销服务的特点
  • wordpress图片目录下seo外链软件
  • 中国品牌网是什么网站网址搜索域名查询
  • 宝塔建设的网站火车头发布失败做网站怎么赚钱
  • 太原网站制作公司哪家好网络营销策划方案书范文
  • 婴幼儿用品销售网站开发报告今日实时热搜
  • 网站首页的尺寸做多大谷歌官方网站首页
  • 南京做网站的公司有哪些百度竞价排名收费标准
  • 网站卖了对方做违法吗重庆seo公司
  • 新乡市网站建设kol推广是什么意思
  • 小程序模板下载了怎么用烟台seo网络推广
  • 石家庄企业网站制作网络营销渠道可分为哪些
  • 微信小视频网站开发公司网站制作需要多少钱
  • 中英文的网站是怎么做的怎么快速优化网站
  • 电器网站建设目的搜狗网页版入口
  • 网站空间信息查询网站推广工具
  • 自己建一个网站难吗西安网站搭建公司
  • 软件测试正规培训机构搜索引擎优化排名
  • 如何做网站调研淄博网站制作优化