-
Notifications
You must be signed in to change notification settings - Fork 138
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
Review Machine Learning tutorials #1626
Comments
Before we review the tutorials to add more example, we need to review those we have. tf.reset_default_graph()
sess = tf.Session() We could use it with compat.v1 tf.compat.v1.reset_default_graph()
sess = tf.compat.v1.Session() but we shouldn't rely on Tensorflow backward compatibility since this is an example for the community. Additionally, let's add a link to a backtest with the notebook to avoid copy and paste the code snippets. The notebook should include the page text. |
Some issues I found with the new TF tutorials:
Might be other errors too, please review it. The TF tutorial should include a The TF tutorial should use |
Since we are not using |
The Aesera tutorial defines a |
Expected Behavior
The ML tutorials here provide educational material on how to use all three learning paradigms: supervised, unsupervised, and reinforcement learning. Each example is unique and informative.
Actual Behavior
Most of the examples solve the same problem, but just use a different library to do so. The text is also largely duplicated.
Checklist
master
branchThe text was updated successfully, but these errors were encountered: