内容简介:With a video chat feature coming soon, the dating platform could use artificial intelligence to detect offensive imagesAnother is joining Tinder. We may be physically distanced, but the need to connect with others is stronger than ever. Absence makes the h
With a video chat feature coming soon, the dating platform could use artificial intelligence to detect offensive images
Jun 20 ·4min read
T urning 18 is a big step in anyone’s life, one that I took a month or two ago. It usually comes with a number of rites of passage: buying your first lottery, having your first drink, entering into soul-crushing debt agreements.
Another is joining Tinder. We may be physically distanced, but the need to connect with others is stronger than ever. Absence makes the heart grow fonder, I guess?
That’s a lie, your high school relationship won’t last 2 weeks into university, JESSICA.
Tinder recently announced plans to introduce a video chat feature to the platform, and they’ve made it clear that some sort of artificial intelligence + object detection will be leveraged to prevent harassment and ensure safety during what I’m calling ‘sexy vertical Zoom meetings’.
What is object recognition?
Some definitions:
- AI (artificial intelligence): broadly refers to machine (computer) systems that perform tasks that humans can do.
- CV (computer vision): a type of AI that specifically understands the contents of an image or video.
- Object detection: adjacent to CV in that it’s looking for a specific object.
In human terms, the ‘ brain ’ is kind of like the overall concept of AI, your ‘ eyes ’ perform computer vision, and when you’re looking for something specific (your keys, a snack, true love) you’re doing an object detection task.
Most CV programs useCNNs(convolutional neural networks):
Each ‘layer’ of a CNN looks at parts of an image for certain features (via the pixel values) — starting with simple ones like edges and gradually getting more complex.
Those features are mapped to give a probabilistic location of where each one is. The highest probabilities from each section are pooled into a smaller image, where negative pixel values are turned into 0.
Then the process repeats . Eventually, all these connected layers can be compiled such that they match a certain label/outcome. Based on the probability of these outcomes, the CNN gives its best guess of what’s in the image.
It’s pretty ingenious, but also time-consuming. If Chaddington Woodsworth starts getting too… comfy on Tinder video chat, 20 seconds for processing can feel like a lifetime.
Luckily, some CNNs can operate in real-time . YOLO is an object detection algorithm that shows promise when it comes to autonomous vehicles, where real-time detection is a life-or-death matter.
The only time saying YOLO is acceptable in 2020
YOLO breaks the image up into a grid , where each grid square is responsible for predicting the size, class, and location of an object that is within its bounds.
It also gives a confidence score — how sure is it that this an object? Then, it tries to figure the class of the object (under the condition that it actually is an object). This returns a conditional probability : P(Car | Object), for example.
These confidence scores are associated with bounding boxes around the object in question, ultimately resulting in a lot of bounding boxes of varying weights. The algorithm then looks for boxes with lots of overlap — this signifies a high probability there’s an object there.
Those high-overlap predictions are output, and they’re kept if they meet a certain threshold probability score . YOLO can do this for every frame/second during a video making this the perfect tool if Tinder wants to monitor video chats for safety.
What this means for Tinder moving forward
Tinder has stated that when it comes to the balance between safety and privacy, they learn towards safety . Using YOLO real-time object detection for their upcoming video chat feature could make many people feel safer using it + deter any creeps.
The next wave of Tinder users is Gen Z — our whole lives are on the Internet, so I think we’ll be fine with Tinder watching our video chats.
How this feature might work is a different question. If Tinder sees an unwelcome/inappropriate object, would they end the call, report the user, or give you a warning?
Technically, it’s a whole other story. Classification of what counts as inappropriate changes from user to user, and throughout a relationship. Even if algorithms are customized to each user, this is going to be a computationally challenging problem.
Luckily I’m 18
3 miles away
And I love solving problems and long walks on the beach.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
深入浅出React和Redux
程墨 / 机械工业出版社 / 2017-4-28 / 69
本书作者是资深开发人员,有过多年的开发经验,总结了自己使用React和Redux的实战经验,系统分析React和Redux结合的优势,与开发技巧,为开发大型系统提供参考。主要内容包括:React的基础知识、如何设计易于维护的React组件、如何使用Redux控制数据流、React和Redux的相结合的方式、同构的React和Redux架构、React和Redux的性能优化、组件的测试等。一起来看看 《深入浅出React和Redux》 这本书的介绍吧!