16 ms·
What are some common examples of complex numbers in these sorts of applications?
by spadufed 3y ago
What are some common examples of complex numbers in these sorts of applications?
- noway421 2y agoHere complex numbers are used for an eloquent gradient calculation - you can express all sorts of operations through just the 3 functions: `exp`, `log` and `add` defined over complex plane. Simplifies the code! The added benefit is that all the variables become complex. As long as your loss is real-valued you should be able to backprop through your net and update the parameters. PyTorch docs mention that complex variables may be used "in audio and other fields": https://pytorch.org/docs/stable/notes/autograd.html#how-is-wirtinger-calculus-useful-in-optimization https://pytorch.org/docs/stable/notes/autograd.html#how-is-w...