İleri yayılım

Python ile Deep Learning'e Giriş

Dan Becker

Data Scientist and contributor to Keras and TensorFlow libraries

Banka işlemleri örneği

  • Şunlara göre tahmin yapın:
    • Çocuk sayısı
    • Mevcut hesap sayısı
Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.007.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.008.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.009.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.010.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.011.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.012.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.013.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.014.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.015.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.016.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.017.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.018.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.019.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.020.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.021.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.022.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.023.png

Python ile Deep Learning'e Giriş

İleri yayılım

ch1_2.024.png

Python ile Deep Learning'e Giriş

İleri yayılım

  • Çarp-topla süreci
  • Nokta çarpımı
  • Her seferinde tek veri noktası için ileri yayılım
  • Çıktı, o noktanın tahminidir
Python ile Deep Learning'e Giriş

İleri yayılım kodu

import numpy as np
input_data = np.array([2, 3])
weights = {'node_0': np.array([1, 1]),
           'node_1': np.array([-1, 1]),
           'output': np.array([2, -1])}
node_0_value = (input_data * weights['node_0']).sum()
node_1_value = (input_data * weights['node_1']).sum()
Python ile Deep Learning'e Giriş

İleri yayılım kodu

hidden_layer_values = np.array([node_0_value, node_1_value])

print(hidden_layer_values)
[5, 1]
output = (hidden_layer_values * weights['output']).sum()

print(output)
9
Python ile Deep Learning'e Giriş

Haydi pratik yapalım!

Python ile Deep Learning'e Giriş

Preparing Video For Download...