BaşlayınÜcretsiz Başlayın

Build as shown!

You will take on a final challenge before moving on to the next lesson. Build the network shown in the picture below. Prove your mastered Keras basics in no time!

Bu egzersiz

Introduction to Deep Learning with Keras

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Instantiate a Sequential model.
  • Build the input and hidden layer.
  • Add the output layer.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense

# Instantiate a Sequential model
model = ____

# Build the input and hidden layer
model.____

# Add the ouput layer
model.____
Kodu Düzenle ve Çalıştır