Output layer using shared layer
Now that you've looked up how "strong" each team is, subtract the team strengths to determine which team is expected to win the game.
This is a bit like the seeds that the tournament committee uses, which are also a measure of team strength. But rather than using seed differences to predict score differences, you'll use the difference of your own team strength model to predict score differences.
The subtract layer will combine the weights from the two layers by subtracting them.
Latihan ini adalah bagian dari kursus
Advanced Deep Learning with Keras
Petunjuk latihan
- Import the
Subtractlayer fromkeras.layers. - Combine the two-team strength lookups you did earlier.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
# Import the Subtract layer from tensorflow.keras
from tensorflow.keras.layers import ____
# Create a subtract layer using the inputs from the previous exercise
score_diff = ____()([____, ____])