વિવિધ neural network આર્કિટેક્ચરો વિવિધ ડેટા અને કાર્યો માટે યોગ્ય છે — CNNs ઈમેજોર્સ માટે, RNNs સિક્વન્સ માટે, અને transformers ભાષા માટે (અને ક્રમશ: બધા કુछ માટે). મુખ્ય પ્રકારોને સમજવું સ્પષ્ટ કરે છે કે AI વિવિધ સમસ્યાઓ કેવી રીતે હેન્ડલ કરે છે.
મુખ્ય આર્કિટેક્ચરો
CNN (Convolutional Neural Network) → for IMAGES/spatial data:
→ uses convolutions to detect local features (edges, shapes) hierarchically
→ for: image classification, object detection, computer vision
RNN (Recurrent Neural Network) → for SEQUENCES/time-series:
→ processes sequences step by step, maintaining a 'memory' of previous inputs
→ for: text, time-series, speech (older approach; LSTM/GRU variants)
⚠️ struggles with long sequences; largely SUPERSEDED by transformers for language
TRANSFORMER → for SEQUENCES (language) and increasingly everything:
→ attention mechanism; parallel; the dominant modern architecture (LLMs)
→ for: language (LLMs), and now vision, audio, multimodal
