|
|
|
|
|
by CalRobert
3239 days ago
|
|
Just out of curiosity, where would you recommend starting for those outdated people? Machine Learning, Deep Learning, AI (for lack of a more specific acronym), NLP - these things are kind of daunting for newcomers, if only due to the acronym du jour changing constantly. |
|
If you are into CV, first start with very simple static image recognition with AlexNet/VGG/Inception etc. in Keras, try to understand CNNs a bit (it's inspired by biological neurons, they can do simple things like direction detection, edge detection etc. and overlap each other's field of vision; if you look at computational photography, convolutions do something similar, so the idea is why not use a layer of multiple convolutions, then make a hierarchy of those convolutional layers, and let the optimization/learning part of Deep Learning during training figure out what exact convolutions does it need instead of force-feeding them by hand). Play with the ways to improve training (batch normalization, image augmentation etc.) Once you understand this, your mind would probably explode and then it's time to understand RNNs/LSTMs/GANs and have fun applying it on voice, natural language, generating art etc.
You'll have a blast for sure when you realize what you can now easily do! Have fun! ;-)