-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revised
- Loading branch information
Showing
3 changed files
with
337 additions
and
222 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#Neural Networks in CS | ||
|
||
The human brain processes information, learns, and makes decisions using billions of interconnected neurons. Inspired by this, artificial neural networks (ANNs) use artificial neurons to solve tasks like recognizing speech or diagnosing medical conditions. | ||
|
||
Biological and artificial NNs share a similar structure. In ANNs, the input layer receives raw information (e.g., images or text), similar to how dendrites receive information in biological networks. Each input is assigned a weight to reflect its importance. | ||
|
||
The hidden layer(s) process and refine this information by analyzing patterns, mimicking how biological neurons handle inputs. The output layer makes the final decision, such as identifying an object or answering a question, analogous to the axon in biological neurons. | ||
|
||
Training adjusts the weights to improve the network’s performance, enabling it to learn from data and become increasingly accurate, much like how the brain improves with practice. | ||
|
||
##Miroslava Macejkova |
Oops, something went wrong.