《MobiDev:利用深度学习提高人工智能人脸识别精确度(英文版)(15页).pdf》由会员分享,可在线阅读,更多相关《MobiDev:利用深度学习提高人工智能人脸识别精确度(英文版)(15页).pdf(15页珍藏版)》请在三个皮匠报告文库上搜索。
1、Table of ContentsHow Deep Learning Upgrades Face Recognition SoftwareLIMITATIONS OF THE TRADITIONAL APPROACH TO FACIAL RECOGNITIONAI-ENHANCED FACE RECOGNITIONHighlights of AI face recognition system softwareHOW FACE RECOGNITION WORKSFace recognition accuracy and how to improve itConclusion1Biometric
2、 identification of a person by facial features is increasingly usedto solve business and technical issues.The development of relevant automatedsystems or the integration of such tools into advanced applications has becomemuch easier.First of all,this is caused by the significant progress in AI facer
3、ecognition.In this article,we will explain what the components are of a facerecognition software and how to overcome the limitations and challenges ofthese technologies.You will find out how AI,namely Deep Learning,can improve the accuracyand performance of face recognition software,and how,thanks t
4、o this,it ispossible to train an automated system to correctly identify even poorly lit andchanged faces.It will also become clear what techniques are used to trainmodels for face detection and recognition.Do you remember trying to unlock something or validate that its you,with thehelp of a selfie y
5、ou have taken,but lighting conditions didnt allow you to dothat?Do you wonder how to avoid the same problem when building your appwith a face recognition feature?How Deep Learning Upgrades FaceRecognition SoftwareTraditional face recognition methods come from using eigenfaces to form abasic set of i
6、mages.They also use a low-dimensional representation of imagesusing algebraic calculations.Then the creators of the algorithms moved indifferent ways.Part of them focused on the distinctive features of the faces andtheir spatial location relative to each other.Some experts have also researchedhow to
7、 break up the images to compare them with templates.As a rule,an automated face recognition algorithm tries to reproduce theway a person recognizes a face.However,human capabilities allow us to storeall the necessary visual data in the brain and use it when needed.In the case of acomputer,everything
8、 is much harder.To identify a human face,an automatedsystem must have access to a fairly comprehensive database and query it fordata to match what it sees.2The traditional approach has made it possible to develop face recognitionsoftware,which has proven itself satisfactorily in many cases.The stren
9、gths ofthe technology made it possible to accept even its lower accuracy compared toother methods of biometric identification-using the iris and fingerprints.Automated face recognition gained popularity due to the contactless andnon-invasive identification process.Confirmation of the persons identit
10、y in thisway is quick and inconspicuous,and also causes relatively fewer complaints,opposition,and conflicts.Among the strengths that should be noted are the speed of dataprocessing,compatibility,and the possibility of importing data from most videosystems.At the same time,the disadvantages and limi
11、tations of the traditionalapproach to facial recognition are also obvious.LIMITATIONS OF THE TRADITIONAL APPROACH TO FACIALRECOGNITIONFirst of all,it is necessary to note the low accuracy in conditions of fastmovement and poor lighting.Unsuccessful cases with the recognition of twins,as well as exam
12、ples which revealed certain racial biases,are perceivednegatively by users.The weak point was the preservation of data confidentiality.Sometimes the lack of guaranteed privacy and observance of civil rights evenbecame the reason for banning the use of such systems.Vulnerability topresentation attack
13、s(PA)is also a major concern.The need arose both toincrease the accuracy of biometric systems,and to add to them the function ofdetection of digital or physical PAs.However,the traditional approach to face recognition has largely exhausted itspotential.It does not allow using very large sets of face
14、 data.It also does notensure training and tuning identification systems at an acceptable speed.AI-ENHANCED FACE RECOGNITIONModern researchers are focusing on artificial intelligence(AI)to overcome theweaknesses and limitations of traditional methods of face recognition.Therefore,in this article we c
15、onsider certain aspects of AI face recognition.Thedevelopment of these technologies takes place through the application of3advances in such subfields of AI as computer vision,neural networks,andmachine learning(ML).A notable technological breakthrough is occurring in Deep Learning(DL).DeepLearning i
16、s part of ML and is based on the use of artificial neural networks.Themain difference between DL and other machine learning methods isrepresentation learning.Such learning does not require specialized algorithmsfor each specific task.Deep Learning owes its progress to convolutional neural networks(C
17、NN).Previously,artificial neural networks needed enormous computing resources forlearning and applying fully connected models with a large number of layers ofartificial neurons.With the appearance of CNN,this drawback was overcome.Inaddition,there are many more hidden layers of neurons in neural net
18、worksused in deep learning.Modern DL methods allow training and use of all layers.Among the ways of improving neural networks for face recognition systems,it isappropriate to mention the following:Knowledge distillation.A combination of two similar networks of differentsizes,where the larger one tra
19、ins the smaller one.As a result of training,asmaller network gives the same result as a large one,but it does it faster.Transfer learning.Focused on training the entire network or its specificlayers on a specific set of training data.This creates the possibility ofeliminating bottlenecks.For example
20、,we can improve accuracy by using aset of images of exactly the type that errors occur most often.Quantization.This approach aims to speed up processing by reducing thenumber of calculations and the amount of memory used.Approximationsof floating-point numbers by low-bit numbers help in this.Depthwi
21、se separable convolutions.From such layers,developers createCNNs that have fewer parameters and require fewer calculations butprovide good performance in image recognition,and in particular,faces.Regarding the topic we are considering,it is important to train a Deepconvolutional neural network(DCNN)
22、to extract from images of faces uniquefacial embeddings.In addition,it is crucial to provide DCNN with the ability tolevel the impact of displacements,different angles,and other distortions in theimage on the result of its recognition.Due to the data augmentation,the images4are modified in every way
23、 before training.This helps mitigate the risksassociated with different angles,distortions,etc.The more variety of imagesused during training,the better the model will generalize.Let us remember the main challenge of face recognition software development.This is the provision of fast and error-free
24、recognition by an automated system.In many cases,this requires training the system at optimal speed on very largedata sets.It is deep learning that helps to provide an appropriate answer to thischallenge.Highlights of AI face recognition systemsoftwareAs we said above,at the moment,when deciding how
25、 to build a face recognitionsystem,it is worth focusing on Convolutional Neural Networks(CNN).In thisarea,there are already well-proven approaches to creating architecture.In thiscontext,we can mention residual neural network(ResNet),which is a variant of avery deep feedforward neural network.And,fo
26、r example,such a solution as5EfficientNet is not only the architecture of a convolutional neural network butalso a scaling method.It allows uniform scaling of the depth and width of theCNN as well as the resolution of the input image used for training andevaluation.Periodically,thanks to the efforts
27、 of researchers,new architectures of neuralnetworks are created.As a general rule,newer architectures use more and morelayers of deep neural networks,which reduces the probability of errors.It is truethat models with more parameters may perform better,but slower.This shouldbe kept in mind.When consi
28、dering face recognition deep learning models,the topics of thealgorithms that are embedded in them and the data sets on which they aretrained come to the fore.In this regard,it is appropriate to recall how facerecognition works.HOW FACE RECOGNITION WORKSThe face recognition system is based on the se
29、quence of the followingprocesses:Face detection and capture,i.e.identification of objects in images or videoframes that can be classified as human faces,capturing faces in a givenformat and sending them for processing by the system.Normalization or alignment of images,i.e.processing to prepare forco
30、mparison with data stored in a database.Extraction of predefined unique facial embeddings.Comparison and matching,when the system calculates the distancebetween the same points on the images and then infers face recognition.6The creation of artificial neural networks and algorithms is aimed at learn
31、ingautomated systems,training them on data,and detecting and recognizingimages,including all of the above stages.Building AI face recognition systems is possible in two ways:1.Use of ready-made pre-trained face recognition deep learning models.Models such as DeepFace,FaceNet,and others are specially
32、 designed forface recognition tasks.2.Custom model development.When starting the development of a new model,it is necessary to define severalmore parameters.First of all,this concerns the inference time for which theoptimal range is set.You will also have to deal with the loss function.With itshelp,
360insights & IDG Research:2022年渠道营销现状报告(英文版)(26页).pdf
群邑集团(GroupM):2022年全球广告市场年中预测报告(英文版)(43页).pdf
凯度(Kantar):2022年618购物节白皮书(英文版)(59页).pdf
施耐德电气(SCHNEIDER ELECTRIC)2021年年度报告(英文版)(488页).pdf
Drake Star Partners:2022年5月全球体育科技行业更新报告(英文版)(16页).pdf
标普全球(S&P Global):2022年第三季度北美地区信贷状况报告(英文版)(28页).pdf
牛津经济研究院(Oxford Economics):从机会到影响-评估YouTube在瑞典的经济、社会和文化效益(英文版)(7页).pdf
优兴咨询(Universum):2022年雇主品牌报告(英文版)(24页).pdf
美国合众银行(U.S. BANCORP)2021年年度报告(英文版)(157页).pdf
斯巴鲁公司(SUBARU)2021年年度报告(英文版)(130页).pdf
关西电力(KANSAI ELECTRIC POWER)2021年年度报告(英文版)(138页).pdf
Enbridge公司(ENBRIDGE)2021年年度报告(英文版)(199页).pdf
阿联酋零售集团 (Majid Al Futtaim):2022年第一季度阿联酋零售经济报告(英文版)(32页).pdf
Wright:比亚迪公司资金流动报告(英文版)(64页).pdf
彩讯股份:深耕主营守正出新成长动能不断提升-220830(22页).pdf
广联达-国产数字建筑龙头建筑产业转型升级核心引擎-220829(19页).pdf
合锻智能-受益下游需求扩张业绩拐点已至-220829(17页).pdf
徕木股份-汽车连接器厚积薄发品类扩张打开新市场-220829(34页).pdf
内窥镜行业专题报告:市场需求景气国产替代空间广-220830(34页).pdf
顺络电子-深度报告:携汽车智能化 光伏储能 军工本土红利电感龙头迎来加速增长-220830(25页).pdf
我武生物-国内脱敏治疗龙头黄花蒿滴剂稳步放量-220828(26页).pdf
永新光学-深度报告:依托光学技术最核心积淀卡位激光雷达高壁垒环节-220830(22页).pdf
冰轮环境-聚焦低碳能源技术推广多能互补应用-220830(22页).pdf
东方电缆-深耕海缆领域壁垒高筑乘海上东风扬帆起航-220830(28页).pdf
线上健身第一股-keep招股说明书(463页).pdf
蜜雪冰城招股说明书-连锁茶饮第一股(724页).pdf
QuestMobile:2022年中国短视频直播电商发展洞察报告(30页).pdf
QuestMobile:2022新中产人群洞察报告(37页).pdf
町芒:2022现制茶饮行业研究报告(47页).pdf
麦肯锡:2023中国消费者报告:韧性时代(33页).pdf
罗振宇2023“时间的朋友”跨年演讲完整PDF.pdf
QuestMobile:2021新中产人群洞察报告(30页).pdf
锐仕方达&薪智:2022年薪酬白皮书(105页).pdf
美团:2022新餐饮行业研究报告(74页).pdf