Purchase Solution

neural network

Not what you're looking for?

Ask Custom Question

What is a neural network?

Purchase this Solution

Solution Summary

This job explores neural networks.

Solution Preview

Notice: This is strictly the text from the attachment. There are pictures that will help to illustrate the ideas in this document.

At its core, a neural network is designed to be a computer simulation of the human brain. It is represented by a labeled, directed graph structure, where nodes perform some simple computations. Each node represents a neuron, and each directed edge represents a weighted connection between two nodes.

A very simple example of a neural network is the following AND-gate.

In this example, nodes x and y are the inputs to node z. w_1 and w_2 are the weights on the connection. In order for this to operate as an AND-gate, we need to set w_1 and w_2 to 1. This means that the input from x will be multiplied by the weight w_1, and the input from y will be multiplied by the weight w_2. We also need to define the operation in node z. If we say that z calculates the product of its inputs, that is, z calculates (x*w_1)(x*w_2), we will have an AND-gate. Why is this true? We can examine the truth ...

Purchase this Solution


Free BrainMass Quizzes
Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

Java loops

This quiz checks your knowledge of for and while loops in Java. For and while loops are essential building blocks for all Java programs. Having a solid understanding of these constructs is critical for success in programming Java.