Skip to content

Commit 3410fd3

Browse files
Update data_performance.ipynb
1 parent 46e3b35 commit 3410fd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/en/guide/data_performance.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@
273273
},
274274
"source": [
275275
"### Prefetching\n",
276-
"<a id=\"prefetching\"></a>\n",
276+
"<a name=\"prefetching\"></a>\n",
277277
"Prefetching overlaps the preprocessing and model execution of a training step.\n",
278278
"While the model is executing training step `s`, the input pipeline is reading the data for step `s+1`.\n",
279279
"Doing so reduces the step time to the maximum (as opposed to the sum) of the training and the time it takes to extract the data.\n",
@@ -320,7 +320,7 @@
320320
},
321321
"source": [
322322
"### Parallelizing data extraction\n",
323-
"<a id=\"parallelizing_data_extraction\"></a>\n",
323+
"<a name=\"parallelizing_data_extraction\"></a>\n",
324324
"In a real-world setting, the input data may be stored remotely (for example, on Google Cloud Storage or HDFS).\n",
325325
"A dataset pipeline that works well when reading data locally might become bottlenecked on I/O when reading data remotely because of the following differences between local and remote storage:\n",
326326
"\n",

0 commit comments

Comments
 (0)