Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated few links with direct URLs in data_performance.ipynb #2227
Updated few links with direct URLs in data_performance.ipynb #2227
Changes from 1 commit
9ac9d51
bd1a00c
d105024
de3d730
27fe052
43c6ecf
9d449cb
46e3b35
3410fd3
89bee84
e4210b9
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Automated anchor links for headings are generated differently on different systems, I don't remember the formatting for colab vs. github vs. tensorflow.org. It's best to include an
<a name="">
at the target location so that it unambiguously works in all contexts.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @MarkDaoust ,I don't have idea about the target location. In this case, Can I mention full URL of the working link? or you can suggest.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, my last comment didn't render correctly.
#Reducing-memory-footprint
is trying to point to### Reduce memory footprint
heading.Please add something like
<a name="reduce-memory">
at each heading you're linking to, and update the link to match (like[link](#reduce-memory)
). This is a good idea because each website normalizes the titles to anchors differently.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean like below changes for the line - Use the
prefetch
transformation to overlap the work of a producer and consumerUse the
[<a name="prefetch">](#prefetching)
transformationor
Use the
[prefetch](https://www.tensorflow.org/guide/data_performance#prefetching)
transformationThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. For
[Reduce memory usage](#Reducing-memory-footprint)
go down to the section you're trying to link to and add the
<a>
there:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@MarkDaoust, Sorry for the delay. I have updated the file as you suggested. Please verify it once if it is same as you described. Thank you.