Вхідні та щільні шари Keras

Просунуте глибоке навчання з Keras

Zach Deane-Mayer

Data Scientist

Опис курсу

  • Розділ 1: Огляд функціонального API Keras
  • Розділ 2: Моделі з 2 входами
  • Розділ 3: Моделі з 3 входами
  • Розділ 4: Кілька виходів
Просунуте глибоке навчання з Keras

Набори даних курсу: коледж-баскетбол, 1989–2017

Набір даних 1: Регулярний сезон

  • Ідентифікатор команди 1
  • Ідентифікатор команди 2
  • Вдома чи в гостях
  • Різниця в рахунку (Команда 1 − Команда 2)
  • Рахунок Команди 1
  • Рахунок Команди 2
  • Перемога чи поразка

Набір даних 2: Ігри турніру

  • Те саме, що Набір даних 1
  • Додатково різниця у Seed
Просунуте глибоке навчання з Keras

Набори даних курсу: коледж-баскетбол, 1989–2017

import pandas as pd
games_season = pd.read_csv('datasets/games_season.csv')
games_season.head()

Out[1]:
   season  team_1  team_2  home  score_diff  score_1  score_2  won
0    1985    3745    6664     0          17       81       64    1
1    1985     126    7493     1           7       77       70    1
2    1985     288    3593     1           7       63       56    1
3    1985    1846    9881     1          16       70       54    1
4    1985    2675   10298     1          12       86       74    1

games_tourney = pd.read_csv('datasets/games_tourney.csv')
games_tourney.head()

Out[2]:
   season  team_1  team_2  home  seed_diff  score_diff  score_1  score_2  won
0    1985     288      73     0         -3          -9       41       50    0
1    1985    5929      73     0          4           6       61       55    1
2    1985    9884      73     0          5          -4       59       63    0
3    1985      73     288     0          3           9       50       41    1
4    1985    3920     410     0          1          -9       54       63    0
Просунуте глибоке навчання з Keras

Входи та виходи

Дві базові частини:

  • Вхідний шар
  • Вихідний шар
Просунуте глибоке навчання з Keras

Входи

from tensorflow.keras.layers import Input
input_tensor = Input(shape=(1,))

Просунуте глибоке навчання з Keras

Входи

from tensorflow.keras.layers import Input
input_tensor = Input(shape=(1,))
print(input_tensor)

KerasTensor(type_spec=TensorSpec(shape=(None, 1), dtype=tf.float32, name='input_1'), name='input_1', description="created by layer 'input_1'")

Просунуте глибоке навчання з Keras

Виходи

from tensorflow.keras.layers import Dense
output_layer = Dense(1)

Просунуте глибоке навчання з Keras

Виходи

from tensorflow.keras.layers import Dense
output_layer = Dense(1)
print(output_layer)

<keras.layers.core.dense.Dense object at 0x15df15e80>

Просунуте глибоке навчання з Keras

З'єднання входів із виходами

from tensorflow.keras.layers import Input, Dense
input_tensor = Input(shape=(1,))
output_layer = Dense(1)
output_tensor = output_layer(input_tensor)

Просунуте глибоке навчання з Keras

З'єднання входів із виходами

print(output_tensor)

KerasTensor(type_spec=TensorSpec(shape=(None, 1), dtype=tf.float32, name=None), name='dense_1/BiasAdd:0', description="created by layer 'dense_1'")

Просунуте глибоке навчання з Keras

Давайте потренуємось!

Просунуте глибоке навчання з Keras

Preparing Video For Download...