Skip to content

Commit 770ebf6

Browse files
authored
Basics of Neural networks (#75)
1 parent 67ed6ea commit 770ebf6

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

ML_and_DL/neural_nets/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Neural Nets
2+
3+
Neural networks are computing systems vaguely inspired by the biological neural networks that constitute animal brains.
4+
It is a collection of connected units or nodes called artificial neurons.
5+
6+
The neural network method of solving problems is called ***deep learning***.
7+
The concept of a neural network appears to have first been proposed by *Alan Turing* in his 1948 paper *Intelligent Machinery*
8+
in which he called them " *B-type unorganised machines* ".
9+
10+
The utility of artificial neural network models lies in the fact that they can be used to infer a function from observations and also to use it.
11+
Unsupervised neural networks can also be used to learn representations of the input that capture the salient characteristics of the input distribution.
12+
13+
A nice read: [Using neural nets to recognize handwritten digits](http://neuralnetworksanddeeplearning.com/chap1.html)
14+
15+
### Applications
16+
17+
Neural networks can be used in different fields. Few examples -
18+
19+
- Function approximation, or regression analysis, including time series prediction and modeling.
20+
- Classification, including pattern and sequence recognition, novelty detection and sequential decision making.
21+
- Data processing, including filtering, clustering, blind signal separation and compression.
22+
23+
Most applications of deep learning use “convolutional” neural networks, in which the nodes of each layer are clustered, the clusters overlap, and each cluster feeds data to multiple nodes of the next layer.
24+
25+
Reference: [Neural network Wiki](https://en.wikipedia.org/wiki/Neural_network)

ML_and_DL/tensor-flow/example.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Tensorflow - Hello World
22

3+
34
In the below example,we first create a constant named `hello` with the message to be printed.
45

56
*Constants may not be modified once created.*

bigdata/hive/hive create statement.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ Example:
152152
[TBLPROPERTIES (‘key1’=’value1’, ‘key2’=’value2’, …)]
153153
ROW FORMAT DELIMITED
154154
FIELDS TERMINATED BY '1'
155-
STORED AS SEQUENCEFILE;
155+
STORED AS SEQUENCEFILE;

git/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# GIT
22

3+
34
Git is a free and open source distributed version control system designed to handle everything from small to
45
very large projects with speed and efficiency.
56

67
Git is easy to learn and has a tiny footprint with lightning fast performance.
78
It outclasses SCM tools like Subversion, CVS, Perforce, and ClearCase with features like cheap local branching,
8-
convenient staging areas, and multiple workflows.
9+
convenient staging areas, and multiple workflows.
910

1011

1112
- [Why use GIT?](https://github.com/techfaqs/Tech-FAQs/blob/master/git/git_why_use.md)
@@ -28,7 +29,6 @@ You typically obtain a Git repository in one of two ways:
2829
In either case, you end up with a Git repository on your local machine, ready for work.
2930

3031

31-
3232
## git References:
3333

3434
1. [GIT as Version Control System](http://www.makeuseof.com/tag/git-version-control-youre-developer/)

0 commit comments

Comments
 (0)