File tree Expand file tree Collapse file tree 6 files changed +88
-8
lines changed Expand file tree Collapse file tree 6 files changed +88
-8
lines changed Original file line number Diff line number Diff line change @@ -94,3 +94,4 @@ install_manifest.txt
94
94
95
95
# Other files
96
96
* .gz
97
+ .ipynb_checkpoints
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 1
1
AIFH Vol3 - C# Code Examples
2
2
====
3
3
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
-
8
4
This folder contains the C# examples for AIFH Volume 2. This software was developed using Visual Studio 2012.
9
5
10
6
Two 3rd party DLLs are also used. They are both included in the project via NUGET.
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ Anaconda is what I used while developing these examples.
17
17
18
18
##Required Libraries
19
19
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
+
20
23
The Python programming language has some of the most advanced deep learning neural network
21
24
frameworks available of any language. These libraries are designed for maximum
22
25
efficiency and computational power. Most of these frameworks can also use a GPU to
You can’t perform that action at this time.
0 commit comments