Tensorflow_documentation.md - #292
Open
Graviton28 wants to merge 2 commits into
Open
Conversation
Graviton28
marked this pull request as ready for review
August 4, 2026 04:53
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
found this one still had TF1.x code in it - tf.Session(), tf.placeholder/feed_dict, tf.initialize_all_variables(), tf.InteractiveSession(). all of that's gone/deprecated in TF2 so none of it actually ran. rewrote the examples to TF2 eager execution and tested every single snippet end to end in a conda env on easley (no shared tensorflow module, so built a temp
tf_retestconda-forge env with tensorflow-cpu to test against, then tore it down after).also found a couple real bugs while testing:
np.reshape(b,(1,3))on a (2,2) array throws a ValueError, 4 elements don't fit into shape (1,3). fixed to (1,4).tf.constant(9999999) * tf.constant(111111111)example silently overflows int32 and gives a wrong negative number. fixed by making both constants int64.dropped the old benchmark section (Xena/K40 hardware, dead image links pointing to someone's personal github repo) since the "Tensorflow with multiple GPUs" quickbyte already has fresh tested Easley benchmarks - just linked to that instead of duplicating stale broken content here.
fixed typos: "Comparision"->"Comparison", "enviroment"->"environment", "corresonds"->"corresponds", "exectute"->"execute", missing space before "Tensorflow" in one spot.