Skip to content

Commit 39ff245

Browse files
authored
Merge pull request #2202 from felipetovarhenao/patch-1
Minor scope typo fix in music gen tutorial
2 parents 36b0a7d + fe3f9fb commit 39ff245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/en/tutorials/audio/music_generation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@
10811081
" # Add batch dimension\n",
10821082
" inputs = tf.expand_dims(notes, 0)\n",
10831083
"\n",
1084-
" predictions = model.predict(inputs)\n",
1084+
" predictions = keras_model.predict(inputs)\n",
10851085
" pitch_logits = predictions['pitch']\n",
10861086
" step = predictions['step']\n",
10871087
" duration = predictions['duration']\n",

0 commit comments

Comments
 (0)