Skip to content

Commit 44cca33

Browse files
committed
Updated notice for TensorFlow and future math book.
1 parent 3089f0e commit 44cca33

File tree

6 files changed

+88
-8
lines changed

6 files changed

+88
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,4 @@ install_manifest.txt
9494

9595
# Other files
9696
*.gz
97+
.ipynb_checkpoints

help/README.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

math/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
AIFH: Introduction to the Math of Neural Networks
2+
=================================================
3+
4+
**Please note: This material is for an upcoming book.**
5+
6+
This book has the following chapters:
7+
8+
* Chapter 1. Activation
9+
* Chapter 2. Error Calculation
10+
* Chapter 3. Differentiation
11+
* Chapter 4. Numeric Differentiation
12+
* Chapter 5. Symbolic Differentation
13+
* Chapter 6. Backpropagation
14+
* Chapter 7. Enhancements to Backpropagation
15+
* Chapter 8. Linear Algebra
16+
* Chapter 9. Integration
17+
* Chapter 10. Probability
18+
* Chapter 11. Statistics
19+
* Chapter 12. Pseudo Random Number Generation
20+
* Chapter 13. Self-Organizing Maps
21+
* Chapter 14. Preprocessing
22+
23+
The following language ports have been completed for this book. See the individual
24+
README files inside of each chapter for language specific instructions. If you find a bug,
25+
or improve an example, please consider pushing a change via GitHub.
26+
27+
## Getting Help
28+
29+
* [Q&A Forum on Google Groups](https://groups.google.com/forum/#!forum/jeffheatons-ai-group)

math/Untitled.ipynb

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"[Artificial Intelligence for Humans](http://www.heatonresearch.com/aifh/)\n",
8+
"\n",
9+
"**Introduction to the Math of Neural Networks**"
10+
]
11+
},
12+
{
13+
"cell_type": "markdown",
14+
"metadata": {},
15+
"source": [
16+
"\n",
17+
"\n",
18+
"**Equation 1.1: The Summation Operator**\n",
19+
"$$ s = \\sum_{i=1}^{10} 2i $$\n",
20+
"\n"
21+
]
22+
},
23+
{
24+
"cell_type": "code",
25+
"execution_count": null,
26+
"metadata": {
27+
"collapsed": true
28+
},
29+
"outputs": [],
30+
"source": []
31+
}
32+
],
33+
"metadata": {
34+
"anaconda-cloud": {},
35+
"kernelspec": {
36+
"display_name": "Python [conda env:tensorflow]",
37+
"language": "python",
38+
"name": "conda-env-tensorflow-py"
39+
},
40+
"language_info": {
41+
"codemirror_mode": {
42+
"name": "ipython",
43+
"version": 3
44+
},
45+
"file_extension": ".py",
46+
"mimetype": "text/x-python",
47+
"name": "python",
48+
"nbconvert_exporter": "python",
49+
"pygments_lexer": "ipython3",
50+
"version": "3.5.2"
51+
}
52+
},
53+
"nbformat": 4,
54+
"nbformat_minor": 1
55+
}

vol3/vol3-csharp-examples/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
AIFH Vol3 - C# Code Examples
22
====
33

4-
**Note: I am in the process of refactoring the conv-nets in the C# versions to use [CNTK](https://github.com/Microsoft/CNTK),
5-
this is to provide greater performance. Sorry for any inconvenience, I hope to have the
6-
new version complete by the end of June 2016.**
7-
84
This folder contains the C# examples for AIFH Volume 2. This software was developed using Visual Studio 2012.
95

106
Two 3rd party DLLs are also used. They are both included in the project via NUGET.

vol3/vol3-python-examples/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ Anaconda is what I used while developing these examples.
1717

1818
##Required Libraries
1919

20+
** Please note (17 Jan 2017): I am in the process of changing the Python examples to use Google TensorFlow, instead of Lasange. **
21+
** I hope to complete this around the time of TensorFlow 1.0's release. **
22+
2023
The Python programming language has some of the most advanced deep learning neural network
2124
frameworks available of any language. These libraries are designed for maximum
2225
efficiency and computational power. Most of these frameworks can also use a GPU to

0 commit comments

Comments
 (0)