Way to skip reCAPTCHA images challenge

后端 未结 2 1243
迷失自我
迷失自我 2021-02-05 03:34

I am implementing reCAPTCHA on one of my websites and I have successfully implemented it. It is working fine. Sometime the reCAPTCHA gets completed only by clicking the \"I\'m n

2条回答
  •  温柔的废话
    2021-02-05 04:08

    No, you can't skip it.

    I am surprised that no one pointed out why we get them. The image recaptcha is not only to detect that the user is not a bot. If you notice, they are always related to traffic, bridges, signs, store fronts and so on. Google uses this tool to train artificial neural networks , mainly for autonomous cars. This method is called supervised training.

    In neural networks there are two types of training, supervised and unsupervised training. Supervised training is when you provide a mechanism of manually grading the performance of the network. So when you choose all those car pictures, the network is also attempting to do the same, you are basically grading the network's performance. The more input it gets, the more intelligent it becomes by adjusting the weights of each neuron in the network.

    In unsupervised training the network has to make sense of whatever you are trying to teach without outside help. It is a lot less efficient but it still can be done.

提交回复
热议问题