Skip to content

Commit 7647649

Browse files
authored
Fix predict_next_note() param
1 parent eae9a40 commit 7647649

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
@@ -1072,7 +1072,7 @@
10721072
"source": [
10731073
"def predict_next_note(\n",
10741074
" notes: np.ndarray, \n",
1075-
" keras_model: tf.keras.Model, \n",
1075+
" model: tf.keras.Model, \n",
10761076
" temperature: float = 1.0) -> tuple[int, float, float]:\n",
10771077
" \"\"\"Generates a note as a tuple of (pitch, step, duration), using a trained sequence model.\"\"\"\n",
10781078
"\n",

0 commit comments

Comments
 (0)