Amazon.com: Introduction to Neural Networks with Java eBook: Jeff Heaton: The Kindle Store
Start reading Introduction to Neural Networks with Java on your Kindle in under a minute. Don’t have a Kindle? Get yours here.

Send wirelessly to your Kindle or Kindle for iPhone

 
   
  Try it free  
 
Sample the beginning of this book for free

Send wirelessly to your Kindle or Kindle for iPhone

 
   
Introduction to Neural Networks with Java
 
See larger image
 

Introduction to Neural Networks with Java (Kindle Edition)

by Jeff Heaton (Author)
4.2 out of 5 stars See all reviews (4 customer reviews)

Digital List Price: $24.99  What's this?
Kindle Price: $24.99 & includes wireless delivery via Amazon Whispernet

Kindle Books
  • Kindle Books include free wireless delivery - read your book on your Kindle within a minute of placing your order.
  • Don't have a Kindle? Get yours here.
  • New: Read more than 300,000 Kindle books on your iPhone or iPod touch
Subscribe to the Amazon Kindle Delivers email to be in the know on recent arrivals and the latest Kindle news.

Customers Who Bought This Item Also Bought

Effective Java

Effective Java

4.9 out of 5 stars (35)  $28.79
The Cook's Illustrated How-to-Cook Library: An illustrated step-by-step guide to Foolproof Cooking

The Cook's Illustrated How-to-Cook Library: An illustrated step-by-step guide to Foolproof Cooking

4.5 out of 5 stars (27)  $9.99
Neuromancer

Neuromancer

4.0 out of 5 stars (471)  $5.59
His Majesty's Dragon

His Majesty's Dragon

4.4 out of 5 stars (240)  $0.00
4 Books in 1 Combo Offering: Complete User's Guides to the Kindle 1, 2, Kindle for iPhone App, & Kindle DTP Publishing Platform (DRM-Free with Text-to-Speech Enabled, User-Friendly)

4 Books in 1 Combo Offering: Complete User's Guides to the Kindle 1, 2, Kindle for iPhone App, & Kindle DTP Publishing Platform (DRM-Free with Text-to-Speech Enabled, User-Friendly)

3.9 out of 5 stars (124)  $9.99
Explore similar items

Editorial Reviews

Product Description
Introduction to Neural Networks in Java introduces the Java programmer to the world of Neural Networks and Artificial Intelligence. Neural network architectures such as the feedforward backpropagation, Hopfield, and Kohonen networks are discussed. Additional AI topics, such as Genetic Algorithms and Simulated Annealing, are also introduced.

Practical examples are given for each neural network. Examples include the Traveling Salesman problem, handwriting recognition, fuzzy logic and learning mathematical functions. All Java source code can be downloaded online. In addition to showing the programmer how to construct these neural networks, the book discusses the Java Object Oriented Neural Engine (JOONE). JOONE is a free open source Java neural engine.



About the Author
Jeff Heaton is an author, college instructor, and consultant. Jeff lives in Chesterfield (St. Louis), Missouri. The author of four books and over two dozen journal and magazine articles, Jeff specializes in Internet, socket-level/spidering and Artificial Intelligence programming. A Sun Certified Java Programmer and a Senior IEEE Member Jeff holds a Masters Degree in Information Management from Washington University in St. Louis.


Product Details

  • Format: Kindle Edition
  • File Size: 1097 KB
  • Publisher: Heaton Research, Inc.; 1 edition (February 3, 2008)
  • Sold by: Amazon Digital Services
  • Language: English
  • ASIN: B0013V23I2
  • Average Customer Review: 4.2 out of 5 stars See all reviews (4 customer reviews)
  • Amazon.com Sales Rank: #93,257 in Kindle Store (See Bestsellers in Kindle Store)

    Popular in these categories: (What's this?)

    #61 in  Books > Computers & Internet > Certification Central > Java
    #61 in  Books > Computers & Internet > Certification Central > Exams > Java
  •  Would you like to give feedback on images?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
Check the boxes next to the tags you consider relevant or enter your own tags in the field below.
(11)

Your tags: Add your first tag
 
Help others find this product — tag it for Amazon search
No one has tagged this product for Amazon search yet. Why not be the first to suggest a search for which it should appear?

 

Customer Reviews

4 Reviews
5 star:
 (2)
4 star:
 (1)
3 star:
 (1)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
4.2 out of 5 stars (4 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
14 of 14 people found the following review helpful:
5.0 out of 5 stars Excellent practical book on neural networks using Java, March 26, 2006
By calvinnme "Texan refugee" (Fredericksburg, Va) - See all my reviews
(TOP 10 REVIEWER)      
Programming Neural Networks in Java will show the intermediate to advanced Java programmer how to create neural networks. This book attempts to teach neural network programming through two mechanisms. First the reader is shown how to create a reusable neural network package that could be used in any Java program. Second, this reusable neural network package is applied to several real world problems that are commonly faced by programmers. This book covers such topics as Kohonen neural networks, multi layer neural networks, training, back propagation, and many other topics. The content of the book is as follows:
Chapter 1: An Introduction to Neural Networks
The structure of neural networks will be briefly introduced in this chapter. Also discussed is the history of neural networks, since it is important to know where neural networks came from, as well as where they are ultimately headed. Finally, there is a broad overview of both the biological and historic context of neural networks.
Chapter 2: Understanding Neural Networks
A neural network can be trained to recognize specific patterns in data. This chapter will teach you the basic layout of a neural network and end by demonstrating the Hopfield neural network, which is one of the simplest forms of neural network.
Chapter 3: Using Multilayer Neural Networks
You will see how to use the feed-forward multilayer neural network and two ways that you can implement such a neural network. The chapter begins by examining an open source neural network engine called JOONE. JOONE contains a neural network editor that allows you to quickly model and test neural networks.
Chapter 4: How a machine learns
Every learning algorithm involves somehow modifying the weight matrices between the neurons. This chapter examines some of the more popular ways of adjusting these weights.
Chapter 5: Understanding Back Propagation
This chapter examines one of the most common neural network architectures-- the feed foreword back propagation neural network.
Chapter 6: Understanding the Kohonen Neural Network
The Kohonen neural network contains no hidden layer. The Kohonen neural network differs from the feedfroward back propagation neural network in several important ways. This chapter examines the Kohonen neural network and how it is implemented.
Chapter 7: Optical Character Recognition
This chapter develops an example program that can be trained to recognize human handwriting. It is not a program that can scan pages of text. Rather this program will read character by character, as the user draws them. This function will be similar to the handwriting recognition used by many PDA's.
Chapter 8: Understanding Genetic Algorithms
A chapter on an AI technology unrelated to neural networks.
Chapter 9: Understanding Simulated Annealing
A second AI technology that can be used to train neural networks.
Chapter 10: Eluding Local Minima
One of the most fundamental flaws is the tendency for the backpropagation training algorithm to fall into a "local minima". A local minimum is a false optimal weight matrix that prevents the backpropagation training algorithm from seeing the true solution. This chapter shows how to use certain training techniques to supplement backpropagation and elude local minima.
Chapter 11: Pruning Neural Networks
This chapter examines several algorithms that modify the structure of the neural network. This structural modification will not generally improve the performance of the neural network, but makes it more efficient. If a particular neuron's connection to other neurons does not significantly affect the output of the neural network, the connection will be pruned.
Chapter 12: Fuzzy Logic
Fuzzy logic is a branch of AI not directly related to the neural networks examined so far. Fuzzy logic is often used to process data before it is fed to a neural network, or to process the outputs from the neural network. Fuzzy logic is examined in reference to removing SPAM from emails.
Appendix A: JOONE Reference
Appendix B: Mathematical Backgrounder
Appendix C: Using the Examples on a Windows System
Appendix D: Using the Examples on a UNIX System
This book is currently available online. Since Amazon throws out reviews with web addresses in them, suffice it to say that you just need to type "HeatonResearch" into Google. The 2nd address is the one you want. This book couples accessible instruction with plenty of code that you can lift to make your own neural network applications. I highly recommend it.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
10 of 10 people found the following review helpful:
5.0 out of 5 stars Unique book, January 30, 2006
I have received my copy of the book and I can't put it down. It has been great help with my AI research at the University. I have the other book from the same author "Programming Spiders, Bots and Aggregators in Java" and I have the same comments for both. Both are easy to read, have precise information and great code. Chapter 7 of this book "OCR with Kohonen Neural Network" makes the book more than worth it. Great stuff. I hope the author does not stop and keep writting books like these. I recommend this book for anyone interested in learning AI and also experienced programmers alike. The author makes though topics seem easy. Highly recommended.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
14 of 20 people found the following review helpful:
3.0 out of 5 stars A bit disappointed because I expected more from this book., June 19, 2006
I have been reading through the book. Actually it provides very clear explanations, but I had the impression the author talks too much and keep saying the same things over and over again. The book could be half its volume with the same content of knowledge. Besides the provided examples are a bit too simple and obvious.
Nothing much to put under the tooth. After reading it I felt left with my hunger for something deeper and more consistent. The algorithms provided also merely implement and stick to the few examples introduced. On the course of the book, the author wanders from the main point which is first and foremost to discuss neural networks under all angles. He unexpectedly brings up Fuzzy logic and Genetic algorithms which is not what the book title purports to talk about: a bit of confusion.
Overall there is a bit of deception, but indeed the book does what its title says : it is really just an "introduction" to Neural Networks with Java and nothing more. I would recommend it to somebody seeking to embrace the field and who is really a beginner in the domain.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews

4.0 out of 5 stars Very Nice
Very nice introduction to NeuralNetworks and how to implement them in Java.
If you're looking for deep concepts on NeuralNetwork this isn't the best choice. Read more
Published 13 months ago by M. Caseiro

Only search this product's reviews



Customer Discussions

 Beta (What's this?)
New! See all customer communities, and bookmark your communities to keep track of them.
This product's forum (0 discussions)
  Discussion Replies Latest Post
  No discussions yet

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


   


So You'd Like to...


Look for Similar Items by Category


Turn On the Savings

Home Improvement Value Center
Shop for bathroom faucets in the Home Improvement Value Center, where the savings can flow as much as 50% off brand-name products.

Shop the Value Center

 

Get the Cutting Power of a Chain Saw

Shop for chain saws
Whether you're trimming limbs in the yard or removing entire trees, nothing cuts like a chain saw.

Shop for chain saws

  

Comfortable and Cozy

Shop for Furnace Accessories
Maintain the efficiency and heating power of your furnace during the cooler months with filters and accessories. Don't be left in the cold.

Shop all heating and cooling products


 
Feedback
If you need help or have a question for Customer Service, contact us.
Please log in if you would like to report this content as inappropriate? Click here
Do you believe that this item violates a copyright? Click here
Is there any other feedback you would like to provide?

Your comments can help make our site better for everyone.


Where's My Stuff?

Shipping & Returns

Need Help?

Your Recent History

  (What's this?)
You have no recently viewed items or searches.

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.

Look to the right column to find helpful suggestions for your shopping session.

Continue shopping: Top Sellers

Conditions of Use | Privacy Notice © 1996-2009, Amazon.com, Inc. or its affiliates