समापन

Keras के साथ Advanced Deep Learning

Zach Deane-Mayer

Data Scientist

अब तक...

  • Functional API
  • साझा लेयर्स
  • श्रेणीगत embeddings
  • एक से अधिक इनपुट
  • एक से अधिक आउटपुट
  • एक ही मॉडल में Regression / Classification
Keras के साथ Advanced Deep Learning

साझा लेयर्स

तुलनाएँ करने में उपयोगी

  • बास्केटबॉल टीमें
  • इमेज समानता/रीट्रीवल
  • डॉक्यूमेंट समानता

शैक्षणिक साहित्य में इसे Siamese networks कहा जाता है

Keras के साथ Advanced Deep Learning

एक से अधिक इनपुट

Keras के साथ Advanced Deep Learning

एक से अधिक आउटपुट

Keras के साथ Advanced Deep Learning

स्किप कनेक्शंस

input_tensor = Input((100,))
hidden_tensor = Dense(256, activation='relu')(input_tensor)
hidden_tensor = Dense(256, activation='relu')(hidden_tensor)
hidden_tensor = Dense(256, activation='relu')(hidden_tensor)
output_tensor = Concatenate()([input_tensor, hidden_tensor])
output_tensor = Dense(256, activation='relu')(output_tensor)

Visualizing the Loss Landscape of Neural Nets

Keras के साथ Advanced Deep Learning

शुभकामनाएँ!

Keras के साथ Advanced Deep Learning

Preparing Video For Download...