Practical Neural Network Recipies in C++ and over one million other books are available for Amazon Kindle . Learn more

Have one to sell? Sell yours here
or
Get a £6.95 Amazon.co.uk Gift Card
Practical Neural Network Recipes in C++ (with diskette)
 
 
Start reading Practical Neural Network Recipies in C++ on your Kindle in under a minute.

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Practical Neural Network Recipes in C++ (with diskette) [Paperback]

Timothy Masters
3.5 out of 5 stars  See all reviews (2 customer reviews)

Available from these sellers.


Formats

Amazon Price New from Used from
Kindle Edition £51.53  
Paperback --  
Trade In this Item for up to £6.95
Get an extra £5 when you trade in books worth £10 or more until June 30, 2012. Trade in Practical Neural Network Recipes in C++ (with diskette) for an Amazon.co.uk gift card of up to £6.95, which you can then spend on millions of items across the site. Trade-in values may vary (terms apply). Find more products eligible for trade-in.


Product details

  • Paperback: 493 pages
  • Publisher: Morgan Kaufmann Publishers In; Pap/Dskt edition (5 Nov 1993)
  • Language English
  • ISBN-10: 0124790402
  • ISBN-13: 978-0124790407
  • Product Dimensions: 23.3 x 19 x 2.4 cm
  • Average Customer Review: 3.5 out of 5 stars  See all reviews (2 customer reviews)
  • Amazon Bestsellers Rank: 920,553 in Books (See Top 100 in Books)
  • See Complete Table of Contents

More About the Author

Timothy Masters
Discover books, learn about writers, and more.

Visit Amazon's Timothy Masters Page

Product Description

Product Description

This text serves as a cookbook for neural network solutions to practical problems using C++. It will enable those with moderate programming experience to select a neural network model appropriate to solving a particular problem, and to produce a working program implementing that network. The book provides guidance along the entire problem-solving path, including designing the training set, preprocessing variables, training and validating the network, and evaluating its performance. Though the book is not intended as a general course in neural networks, no background in neural works is assumed and all models are presented from the ground up. The principle focus of the book is the three layer feedforward network, for more than a decade as the workhorse of professional arsenals. Other network models with strong performance records are also included. Bound in the book is an IBM diskette that includes the source code for all programs in the book. Much of this code can be easily adapted to C compilers. In addition, the operation of all programs is thoroughly discussed both in the text and in the comments within the code to facilitate translation to other languages.

About the Author

By Masters

Inside This Book (Learn More)
First Sentence
From the time of the first primitive computing machines, their designers and users have been trying to push computers beyond the role of automatic calculators and into the realm of "thinking" machines. Read the first page
Explore More
Concordance
Browse Sample Pages
Front Cover | Copyright | Table of Contents | Excerpt | Index | Back Cover
Search inside this book:

Suggested Tags from Similar Products

 (What's this?)
Be the first one to add a relevant tag (keyword that's strongly related to this product)
 

Your tags: Add your first tag
 

What Other Items Do Customers Buy After Viewing This Item?


Customer Reviews

4 star
0
3 star
0
1 star
0
Most Helpful Customer Reviews
7 of 7 people found the following review helpful
By A Customer
Format:Paperback
I must say that I have found this book very hard to get in to. The C++ listings are probably the worst C++ code I have ever come across with listings in a proportional font that makes them incredibly difficult to browse. The use of pointers is confusing ( I understand the need for speed etc) but honestly, functions with 18 parameters p149/50 (fn genetic) as an example. Where is the use of the keyword 'const' to at least give an idea of what variables are ins and which are outs etc. The technical content of the book seems good however (I confess that I have not read it from cover to cover for the reasons stated above) and has proved a useful reference on the subject. I am glad though that this was not the first book that I picked up on Neural Networks, as without doubt it would also have been my last.
Comment | 
Was this review helpful to you?
2 of 3 people found the following review helpful
By A Customer
Format:Paperback
The author does a great job with this book. He presents the complex material of neural networks in a very simple manner making it understandable to anyone interested in: (1) finding out more about neural networks, (2) using neural networks in any field, (3) applying neural networks in any field of research (ie: medicine, biology, finance, etc...). The author goes over everything that one needs to know about neural networks -- from the basics to how to implement your own network. Not only does he present the material in a concise manner, but he also gives C++ code to implement a neural network both in the book and on disk. Overall, I think that this is an excellent book to begin with if you are interested in neural networks and their applications.
Comment | 
Was this review helpful to you?
Most Helpful Customer Reviews on Amazon.com (beta)
Amazon.com:  20 reviews
25 of 25 people found the following review helpful
Very practical indeed 5 Aug 2001
By W. A. Norris - Published on Amazon.com
Format:Paperback
This book is exactly as advertised. Other excellent books on Neural Networks will have you buried in mathematical notation that will challenge even readers with some statistics background and a couple of semesters of Calculus. These books are definitely worth your while if you can handle the math, but even then, translating these books from theories to solving real problems is no easy feat. By contrast, this book presents a good introduction to basic feedforward neural networks that is very readable to users with a moderate math background, and probably readable with some effort for motivated readers with limited math. You can read this book and come away with a reasonable understanding of how a feedforward network functions. Still, that's not even the strength of this book.

Not only is this book "practical" in the sense that it is readable, it is practical in that it tackles a host of additional topics necessary for using a neural network in the real world. It discusses annealing and genetic techniques for avoiding local minima. It discusses singular value decomposition for avoiding problems with redundant inputs. It discusses the best ways of building training sets and preparing input data, as well as ways of evaluating the performance of networks and attaching confidence measures. It would be easy to charge right in, use a neural network as a black box, give it a dataset and train it, and then wait for it to pop answers out. The only problem is, this will yield results that are worthless in the real world. All of these concerns have to be addressed to build a model that can actually be used for something.

I was very happy with the code base included with this book as well. In addition to a neural network using conjugate gradient descent (as well as Kohonen learning), code is integrated into the main program for annealing, genetic initialization, and singular value decomposition, as discussed in the text. I found the section on how to use the program slightly confusing at first, but once I figured out how to operate it, it was easy to set it up and use it. The code base is C++ that is deeply rooted in C, so it won't impress object-oriented gurus at all, but it should be understandable and fairly easy to work with for users with a good background in C, but who aren't C++ experts. For me, the bottom line is that the code works, it's not hard to understand (in my opinion), and it shouldn't be that hard to extend to perform new functions. In this day and age, it's probably worth mentioning that the program comes with a simple command-line interface, so if you want something that runs in a spiffy GUI, you'll have to write one.

I would recommend this book strongly as a first book on neural networks for readers that are interested in learning neural networks in the context of solving practical problems. I would also recommend this book to readers who have a book or two discussing the theoretical aspects of neural networks and want something that will help them translate that into attacking practical problems, and also provide a code base that will give them a head start.

12 of 12 people found the following review helpful
A good start 24 May 2000
By A. Scudiero - Published on Amazon.com
Format:Paperback
Some of the other reviewers of this book must have suffered from a misconception about the book. It is exactly as advertised, if you don't think so, compare it to Neural Networks, A Comprehensive Foundation by Haykin or Artificial Neural Networks by Schalkoff. Those are REALLY academic. Neural Networks is a very difficult topic,but this book does the best job I've seen yet of explaining Neural Nets in a Straightfoward, understandable way. C++ Neural Networks & Fuzzy Logic by V. and H. Rao tried this and failed. The math is very needed, and I respect the approach of only looking at one type of neural net (feedfoward 3 layer) in depth rather than a billion short, unexplained looks a many. Yes, the code is not the best I've ever seen, and it gets a bit rough to follow, but it explains the ideas. Overall I'd say know a little about what you're getting into before buying ANY book on Neural Networks.
10 of 10 people found the following review helpful
How to build 'em - How to use 'em - And actual source code! 13 Feb 1997
By A Customer - Published on Amazon.com
Format:Paperback
Easily the best treatment of neural networks I have ever read. Outstanding treatment of the innards, how they work, and years of practical experience boiled down into heuristics for programming (with optimized source code examples!), configuring, training, and evaluating nets. The theory is brilliantly explained within each topical context in lieu of boring chapters on NN theory and math. Mathematical expressions are used only where they add clarity and are not gratuitiously used where the author's excellent English can do the job. And talk about English! Masters is one of those phenoms who speak math and English with equal facility. The writing is simply outstanding. The book is so good it is hard to decide what parts are most valuable. Amazingly, it is as useful for the novice wanting to learn something about neural nets as it is for a professional looking for tips and techniques! I have made the book mandatory reading for my team of knowledge discovery scientists and engineers
Search Customer Reviews
Only search this product's reviews

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 

Search Customer Discussions
Search all Amazon discussions
   


Listmania!


Look for similar items by category


Look for similar items by subject


Feedback