|
|
|
|
|
by yonkshi
2834 days ago
|
|
AI can also be used to identify these fake videos, and they are probably better than human identification. There will be a rise of AI forensics. The type of neural network they use (GAN) works by having two networks battling each other, one tries to generate fake, and another (discriminator) tries to identify fake, it's a constant arms race. As the generator gets better, the discriminator also gets better. Which means, if the fake video is this good, there must be a discriminator network that identifies fakes just as good. We did a similar project using GAN, generating images from a text description. You can see the progression of generator and discriminator battling each other, and both get better with time. https://github.com/yonkshi/text2imageNet |
|
Because the discriminator (D) and generator (G) usually compete in a minimax game, the equilibrium probability of D correctly classifying an image as fake tends to 1/2 (ignoring distributional factors). If the competing networks have enough capacity and can be stably trained, then in theory they will reach equilibrium as the data distribution from G converges to the actual data distribution. If this is the case, then the discriminator correctly identifies fake videos with a probability of 1/2.
They may not reach equilibrium (making D > 0.5), but it's not clear that the discriminator itself is a panacea for identifying fake videos/images.