We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tf.data.AUTOTUNE
tf.data.experimental.AUTOTUNE
1 parent c5ef7e8 commit 3e482cfCopy full SHA for 3e482cf
tensorflow_probability/examples/jupyter_notebooks/Probabilistic_Layers_VAE.ipynb
@@ -203,12 +203,12 @@
203
"train_dataset = (datasets['train']\n",
204
" .map(_preprocess)\n",
205
" .batch(256)\n",
206
- " .prefetch(tf.data.experimental.AUTOTUNE)\n",
+ " .prefetch(tf.data.AUTOTUNE)\n",
207
" .shuffle(int(10e3)))\n",
208
"eval_dataset = (datasets['test']\n",
209
210
211
- " .prefetch(tf.data.experimental.AUTOTUNE))"
+ " .prefetch(tf.data.AUTOTUNE))"
212
]
213
},
214
{
0 commit comments