Skip to content

update 11/16 #9

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

Merged
merged 28 commits into from
Nov 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
11380c8
Update dcgan.py (#320)
chenminhua Aug 5, 2019
bb4daed
add new examples
aymericdamien Aug 10, 2019
6cb2ad4
update docs
aymericdamien Aug 10, 2019
f4c3435
small fixes
aymericdamien Aug 10, 2019
0564f61
fix docs
aymericdamien Aug 10, 2019
3650e19
add word2vec for TF2.0
aymericdamien Aug 17, 2019
7aeb6cb
Update tensorflow v2 installation
aymericdamien Nov 7, 2019
c577281
A minor mistake in cross entropy loss (#357)
kilarinikhil Apr 12, 2020
39d9d0e
Update convolutional_network_raw.ipynb (#366)
lkdmttg7 May 16, 2020
2cf9bfd
Update neural_network.ipynb (#361)
Dragon-Yu May 16, 2020
e7353b7
output layer aactivation, add fc2 in call (#358)
kilarinikhil May 16, 2020
922833a
make TensorFlow 2 examples compatible with Python 3 (#339)
steinsag May 16, 2020
3a767b1
update docs (#367)
aymericdamien May 16, 2020
6d96494
Modify tf2 linear regression loss function (#371)
HosseinSheikhi May 20, 2020
a8ee3d2
Modify linear regression loss function (#373)
HosseinSheikhi May 27, 2020
4ac5751
fix links in README of TensorFlow_v1 (#374)
ZQX323 Jun 2, 2020
754c331
Fix links
aymericdamien Jun 2, 2020
0d03275
Update README.md
aymericdamien Jun 4, 2020
86fc318
add GBDT example (#379)
aymericdamien Jul 15, 2020
ab1b58b
Add tensorboard example (#381)
aymericdamien Jul 26, 2020
e3414d6
fix ml intro
aymericdamien Jul 26, 2020
a1516d2
fix ml intro
aymericdamien Jul 26, 2020
6b11799
Fix ML intro notebook (#382)
aymericdamien Jul 26, 2020
fedf9e8
Update bidirectional_rnn.ipynb (#380)
Jul 26, 2020
26c4c70
MultiGPU Training Example (#387)
aymericdamien Sep 19, 2020
c4185fe
Merge branch 'master' of github.com:aymericdamien/TensorFlow-Examples
aymericdamien Sep 19, 2020
35de963
fix multigpu typo
aymericdamien Sep 19, 2020
9d7e914
merge 11/16
yuri7718 Nov 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 86 additions & 45 deletions README.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Deprecated - Please Read

Due to TensorFlow radically changing their API in v2, the examples index have been split between [v1](../tensorflow_v1) and [v2](../tensorflow_v2).

The following examples are the original TF v1 examples, and will be deprecated entirely in favor of [tensorflow_v1](../tensorflow_v1) directory in a future release.
2 changes: 1 addition & 1 deletion notebooks/3_NeuralNetworks/bidirectional_rnn.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"<img src=\"https://ai2-s2-public.s3.amazonaws.com/figures/2016-11-08/191dd7df9cb91ac22f56ed0dfa4a5651e8767a51/1-Figure2-1.png\" alt=\"nn\" style=\"width: 600px;\"/>\n",
"\n",
"References:\n",
"- [Long Short Term Memory](http://deeplearning.cs.cmu.edu/pdfs/Hochreiter97_lstm.pdf), Sepp Hochreiter & Jurgen Schmidhuber, Neural Computation 9(8): 1735-1780, 1997.\n",
"- [Long Short Term Memory](https://www.researchgate.net/profile/Sepp_Hochreiter/publication/13853244_Long_Short-term_Memory/links/5700e75608aea6b7746a0624/Long-Short-term-Memory.pdf), Sepp Hochreiter & Jurgen Schmidhuber, Neural Computation 9(8): 1735-1780, 1997.\n",
"\n",
"## MNIST Dataset Overview\n",
"\n",
Expand Down
418 changes: 418 additions & 0 deletions notebooks/5_DataManagement/image_transformation.ipynb

Large diffs are not rendered by default.

Loading