Skip to content

Commit

Permalink
Finish pytorch port of part2 notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
Holger Kohr committed Dec 16, 2017
1 parent adc43c1 commit 857414f
Show file tree
Hide file tree
Showing 2 changed files with 245 additions and 38 deletions.
2 changes: 1 addition & 1 deletion code/part2_classification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"In these exercies we'll use the software library [tensorflow](https://www.tensorflow.org/), which is a state of the art library for numerical computations in python developed by Google. The package supports computation on both the CPU and GPU, and also supports automatic differentiation (more on that later).\n",
"\n",
"### Execution\n",
"Writing code in tensorflow is quite similar to classical python, except for one thing: tensorflow uses *deffered execution*, this means that instead of executing the code in one step (called eager execution), the computational graph is first defined, and it is then fed data upon which the computation is performed. Users from compiled languages will recongnize this execution method.\n",
"Writing code in tensorflow is quite similar to classical python, except for one thing: tensorflow uses *deferred execution*, this means that instead of executing the code in one step (called eager execution), the computational graph is first defined, and it is then fed data upon which the computation is performed. Users from compiled languages will recongnize this execution method.\n",
"\n",
"The execution flow typically goes like this:\n",
"\n",
Expand Down
Loading

0 comments on commit 857414f

Please sign in to comment.