An Introduction to Genetic Algorithms (Complex Adaptive Systems)
Average customer rating: 4.5 out of 5 stars
  • Good Theoretical GA Textbook
  • Not for beginners
  • An introduction and much more
  • A Great Introduction to Genetic Algorithms
  • Good introduction for such a short book
An Introduction to Genetic Algorithms (Complex Adaptive Systems)
Melanie Mitchell
Manufacturer: The MIT Press
ProductGroup: Book
Binding: Paperback

GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Programming | Computers & Internet | Subjects | Books
Artificial LifeArtificial Life | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
GeneralGeneral | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Machine LearningMachine Learning | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Computer MathematicsComputer Mathematics | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
GeneralGeneral | Computers & Internet | Subjects | Books
GeneralGeneral | Science | Subjects | Books
GeneralGeneral | Nature & Ecology | Science | Subjects | Books
GeneralGeneral | Ecology | Biological Sciences | Science | Subjects | Books
All TitlesAll Titles | Qualifying Textbooks - Fall 2007 | Stores | Books
Computers & InternetComputers & Internet | Qualifying Textbooks - Fall 2007 | Stores | Books
ScienceScience | Qualifying Textbooks - Fall 2007 | Stores | Books
Similar Items:
  1. Genetic Algorithms in Search, Optimization, and Machine Learning Genetic Algorithms in Search, Optimization, and Machine Learning
  2. Adaptation in Natural and Artificial Systems: An Introductory Analysis with Applications to Biology, Control, and Artificial Intelligence Adaptation in Natural and Artificial Systems: An Introductory Analysis with Applications to Biology, Control, and Artificial Intelligence
  3. Introduction to Evolutionary Computing (Natural Computing Series) Introduction to Evolutionary Computing (Natural Computing Series)
  4. How to Solve It: Modern Heuristics How to Solve It: Modern Heuristics
  5. Genetic Programming: On the Programming of Computers by Means of Natural Selection (Complex Adaptive Systems) Genetic Programming: On the Programming of Computers by Means of Natural Selection (Complex Adaptive Systems)

ASIN: 0262631857

Book Description

Genetic algorithms have been used in science and engineering as adaptive algorithms for solving practical problems and as computational models of natural evolutionary systems. This brief, accessible introduction describes some of the most interesting research in the field and also enables readers to implement and experiment with genetic algorithms on their own. It focuses in depth on a small set of important and interesting topics--particularly in machine learning, scientific modeling, and artificial life--and reviews a broad span of research, including the work of Mitchell and her colleagues. The descriptions of applications and modeling projects stretch beyond the strict boundaries of computer science to include dynamical systems theory, game theory, molecular biology, ecology, evolutionary biology, and population genetics.

Customer Reviews:

3 out of 5 stars Good Theoretical GA Textbook.......2005-05-06

This book primarily deals with the theoretical side of genetic algorithms. If you are looking for practical knowledge of how to implement a GA you should look elsewhere. For all intents and purposes this is a textbook. It's heavy on theory and proofs, but doesn't always explain everything in depth (that's what class time is for). There are problems at the end of each chapter that can be assigned to students.

There are case studies of many academic projects that seem to drone on forever and aren't really that useful in helping you learn how to write your own GA. Chapter 1 gives an overview and provides all of the appropriate terminology. Chapter 5 gives an high-level overview of how to implement a GA. Those are the 2 must-read chapters, all of the others can be used as torture for CS students.

To recap, if you're teaching a class in artificial intelligence this book is good. If you're trying to figure out how to implement a GA to solve a practical problem not so good. That evens out to 3 stars for my rating. I recommend searching the web, there are a few good sites on GA programming.

3 out of 5 stars Not for beginners.......2004-02-04

I have an engineering degree, and I found this to be a little tough to follow for two reasons:

1. Not enough step by step prodecure especially at the beginning. Mitchell is too quick to start with the math formulas. It turns out that Genetic Algorithms are fairly straight forward and easy to follow, but you have to read this book twice before you "get it" because Mitchell clouds the discussion with proofs and mathematical representations of systems. It is tough to follow.

2. Mitchell does a poor job of selecting meaningful examples to illustrate the points. A nice simple set of examples where the average person easily picture the system would have been delightful. Instead this author chooses to illustrate the Genetic Algorithms through uncommon neural networks amoung other exotic applications. I found myself struggling to understand both the example (I didn't know a thing about neural networks!) and the genetic algorithm.

When buying an Introduction type book, I expected it to be more 'down to earth'. this book is for advanced minds!

5 out of 5 stars An introduction and much more.......2004-01-26

First it must be said that the book is not an introduction that the non-scientist will easily understand. Some knowledge of computer programming is assumed. It acknowledges this in the last paragraph of the preface. Many of the notations in the book are unfamiliar to business or financial readers. There is no mathematics beyond algebra so the aforementioned prerequisites are the main hills to climb.

Mitchell's book is an overview of genetic algorithm analysis techniques as of 1996. The author gives a history of pre-computer evolutionary strategies and a summary of John Holland's pioneering work. A description of the basic terminology is presented and examples of problems solved using a GA (such as the prisoner's dilemma). The second chapter discusses evolving programs in Lisp and cellular automata. Also included in this chapter is a discussion of predicting dynamical systems. This was the section that has the most interest for me. Also interesting was the summary in this chapter about putting GAs into a neural network so that the ANNs could evolve.

The fifth chapter discusses when to employ a GA for maximum success. I appreciate the clearly thought out discussion of when to choose a GA for a problem. Sometimes authors of these types of books mimic the man with a hammer that thinks everything looks like a nail.

5 out of 5 stars A Great Introduction to Genetic Algorithms.......2002-12-07

This is a great place to start to learn about genetic algorithms. The writing is clear and not bogged down by jargon. The book is not overly technical; it is written for the layman and has a casual conversational style that is a pleasure to read.

About half of the book is devoted to presenting examples of studies that have used genetic algorithms. These examples are interesting in themselves and also serve to illustrate the variety of genetic approaches that are available. The book also presents conflicting points of view of experts about which algorithms work best and why. This is helpful in combatting the impression that a beginner sometimes gets that everything is simple and all the answers are known.

4 out of 5 stars Good introduction for such a short book.......2002-04-07

Although short, this book gives a good introduction to genetic algorithms for those who are first entering the field and are looking for insight into the underlying mechanisms behind them. It was first published in 1995, and considerable work has been done in genetic algorithms since then, but it could still serve as an adequate introduction. Emphasizing the scientific and machine learning applications of genetic algorithms instead of applications to optimization and engineering, the book could serve well in an actual course on adaptive algorithms. The author includes excellent problem sets at the end of each chapter, these being divided up into "thought exercises" and "computer exercises", and in the latter she includes some challenge problems for the ambitious reader.

Chapter 1 is an overview of the main properties of genetic algorithms, along with a brief discussion of their history. The role of fitness landscapes and fitness functions is clearly outlined, and the author defines genetic algorithms as methods for searching fitness landscapes for highly fit strings. An elementary example of a genetic algorithm is given, and the author compares genetic algorithms with more traditional search methods. The author emphasizes the unique features of genetic algorithms that distinguish them from other search algorithms, namely the roles of parallel population-based search with stochastic selection of individuals, and crossover and mutation. A list of applications is given, and two explicit examples of applications are given that deal with the Prisoner's Dilemna and sorting networks. The author also gives a brief discussion as to how genetic algorithms work from a more mathematical standpoint, emphasizing the role of Holland schemas. The reader more prepared in mathematics can consult the references for more in-depth discussion.

The next chapter stresses the role of genetic algorithms in problem solving, beginning with a discussion of genetic programming. Automatic programming has long been a goal of computer scientists, and the author discusses the role of genetic programming in this area, particularly the work of John Koza on evolving LISP programs. In addition, she discusses the current work on evolving cellular automata and its role in automatic programming. The latter discussion is more detailed, this resulting from the author's personal involvement in artificial life research. Those interested in time series prediction tools will appreciate the discussion on the use of genetic algorithms to predict the behavior of dynamical systems, with an example given on predicting the behavior of the (chaotic) Mackey-Glass dynamical system. The author also gives applications of genetic algorithms in predicting protein structure, an area of application that has exploded in recent years, due to the importance of the proteome projects. The area of neural networks has also been influenced by genetic algorithms, and the author discusses how they have replaced the familiar back-propagation algorithm as a method to find the optimal weights.

Chapter 3 is more in line with what the author intended in the book, namely a discussion of the relevance of genetic algorithms to study the mechanisms behind natural selection. She discusses the "Baldwin effect", which gives a connection between what an organism has learned (a small time-scale process) to the evolutionary history of the Earth (a long time-scale process). A simple model of the Baldwin effect is given using a genetic algorithm, along with a discussion of the Ackley-Littman evolutionary reinforcement learning model, which involves the use of neural networks, and which is another computational demonstration of the Baldwin effect. In addition, the author discusses models for sexual selection and ecosystems based on genetic algorithms. These are the "artificial life" models that the author has been involved in, and she gives a very understandable overview of their properties.

Chapter 4 should suit the curiosity of the mathematician or computer scientist who wants to understand the theoretical justification behind the use of genetic algorithms. Again employing the Holland notion of schemas and adaptation as a "tension between exploration and exploitation", the author formulates a mathematical model, called the Two-Armed Bandit Problem, of how genetic algorithms are used to study the tradeoffs in this tension. The level of mathematics used here is very elementary with the emphasis placed on the intuition behind this model, with only a sketch of the model's solution given. To address the role of crossover in genetic algorithms, the author discusses in detail a class of fitness landscapes, called "Royal Road functions" that she and others have developed. The performance of the genetic algorithm employed is then compared against the three different hill-climbing methods. Formal mathematical models of genetic algorithms are also discussed, one of which involves dynamical systems, another using Markov chains, and one using the tools of statistical mechanics. The latter is very interesting from a physics standpoint but is only briefly sketched. The interested physicist reader can consult the references given by the author for further details.

Practical use of genetic algorithms demands an understanding of how to implement them, and the author does so in the last chapter of the book. She outlines some ideas on just when genetic algorithms should be used, and this is useful since a newcomer to the field may be tempted to view a genetic algorithm as merely a fancy Monte Carlo simulation. The most difficult part of using a genetic algorithm is how to encode the population, and the author discusses various ways to do this. She also details various "exotic" approaches to improving the performance of genetic algorithms, such as the "messy" genetic algorithms. One must also choose a selection method when employing genetic algorithms, and the author shows how to do this using various techniques, such as roulette wheel and stochastic universal sampling. In addition, genetic operators must also be chosen in implementing genetic algorithms, and the author emphasizes crossover and mutation for this purpose. Lastly, the values of the parameters of the genetic algorithm, such as population size, crossover rate, and mutation rate must be chosen. The author discusses various approaches to this. Although brief, she does give a large set of references for further reading.
Introduction to Evolutionary Computing (Natural Computing Series)
Average customer rating: 4.5 out of 5 stars
  • Excellent textbook
  • Evolution as a practical tool
  • Excellent introduction
  • An excellent textbook suitable for all levels
  • an excellent introduction
Introduction to Evolutionary Computing (Natural Computing Series)
A.E. Eiben , and J.E. Smith
Manufacturer: Springer
ProductGroup: Book
Binding: Hardcover

GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneticGenetic | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Theory of ComputingTheory of Computing | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Computer MathematicsComputer Mathematics | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
GeneralGeneral | Computers & Internet | Subjects | Books
GeneralGeneral | Evolution | Science | Subjects | Books
GeneralGeneral | Science | Subjects | Books
All Amazon UpgradeAll Amazon Upgrade | Amazon Upgrade | Stores | Books
Computers & InternetComputers & Internet | Amazon Upgrade | Stores | Books
ScienceScience | Amazon Upgrade | Stores | Books
All TitlesAll Titles | Qualifying Textbooks - Fall 2007 | Stores | Books
Computers & InternetComputers & Internet | Qualifying Textbooks - Fall 2007 | Stores | Books
ScienceScience | Qualifying Textbooks - Fall 2007 | Stores | Books
Similar Items:
  1. Foundations Of Genetic Programming Foundations Of Genetic Programming
  2. An Introduction to Genetic Algorithms (Complex Adaptive Systems) An Introduction to Genetic Algorithms (Complex Adaptive Systems)
  3. Genetic Algorithms in Search, Optimization, and Machine Learning Genetic Algorithms in Search, Optimization, and Machine Learning
  4. Ant Colony Optimization (Bradford Books) Ant Colony Optimization (Bradford Books)
  5. Genetic Programming: On the Programming of Computers by Means of Natural Selection (Complex Adaptive Systems) Genetic Programming: On the Programming of Computers by Means of Natural Selection (Complex Adaptive Systems)

Accessories:
  1. Artificial General Intelligence (Cognitive Technologies) Artificial General Intelligence (Cognitive Technologies)
  2. Intermediate Robot Building Intermediate Robot Building

ASIN: 3540401849

Book Description

Evolutionary Computing is the collective name for a range of problem-solving techniques based on principles of biological evolution, such as natural selection and genetic inheritance. These techniques are being increasingly widely applied to a variety of problems, ranging from practical applications in industry and commerce to leading-edge scientific research.

This book presents the first complete overview of this exciting field aimed directly at lecturers and graduate and undergraduate students. It is also meant for those who wish to apply evolutionary computing to a particular problem or within a given application area. To this group the book is valuable because it presents EC as something to be used rather than just studied.

Last, but not least, this book contains quick-reference information on the current state-of-the-art in a wide range of related topics, so it is of interest not just to evolutionary computing specialists but to researchers working in other fields.

Customer Reviews:

5 out of 5 stars Excellent textbook.......2006-10-31

I have used evolutionary programming in my research in the past and have read several books on the topic. This is one of the most well written books available, that can easily be read by a beginner despite its depth. The conclusions that they draw are logical and supported by the appropriate references. If you had to read only one book in evolutionary programming, consider this as a candidate.

4 out of 5 stars Evolution as a practical tool.......2006-04-04

The authors emphasise from the get-go that this book is meant as a practical introduction to the application of evolutionary computing. It is not a high brow, abstruse monograph. (Which indeed Springer texts often are.)

The level of discussion can be adequately understood by someone with a good background in computing and hopefully also in some science or engineering field. Certainly, there are important abstractions that must be mastered. Like how the evolutionary search can be seen as a path across a fitness landscape or potential energy surface. But there appears to be a careful explanation of the minimum necessary maths to convey an idea. And where a chapter's references might point to more specialised texts or journal papers that give a fuller math treatment.

It may well be, as another reviewer remarked, that there is insufficient detail in some passages of this book. But perhaps the text is not meant to be a low level "user's manual" type of discussion.

If you do find this book useful, consider a more advanced text, "Foundations of Genetic Programming" by Langdon and Poli, also published by Springer. It takes you deeper into the subject.

5 out of 5 stars Excellent introduction.......2005-02-02

I taught our introduction to evolutionary computation class from this book. It is a well rounded introduction to the topic covering most of the introductorty material you would expect. There is an real dearth of good introductory books for EC. This is probably the best because of its breadth. Its weakness is its lack of detail. It would not hurt if they covered the same material in about 50% more pages. As soon as they start a topic its over and on to the next topic. But if you are new to the field they give plenty of references and touch on most topics in enough detail for students to implement. All in all a good solid job.

5 out of 5 stars An excellent textbook suitable for all levels.......2004-06-06

This is an excellent textbook which covers most aspects of the Evolutionary Computing. It's suitable for all levels. It's easy to follow, rich in content and has many references (439 to be precise) for further information. The table of contents from the book's web site is as follows:

1. Introduction
2. What is an Evolutionary Algorithm?
3. Genetic Algorithms
4. Evolution Strategies
5. Evolutionary Programming
6. Genetic Programming
7. Learning Classifier Systems
8. Parameter Control in Evolutionary Algorithms
9. Multi-Modal Problems and Spatial Distribution
10. Hybridisation with Other Techniques: Memetic Algorithms
11. Theory
12. Constraint Handling
13. Special Forms of Evolution
14. Working with Evolutionary Algorithms
15. Summary
16. Appendices
17. Index
18. References

Recommended to everyone interested in EC.

4 out of 5 stars an excellent introduction.......2004-01-29

The book is easy and refreshing to read. Assuming only a minimum of prior knowledge, all the relevant aspects are covered. The focus is on practical applications, with numerous examples, simple equations and plenty of practical advise for the user.

As should be the costum with every scientific introduction, the authors are at great pains to clarify the relationship between the different flavours of EC and to show how they historically developed.

The book does not provide much on the mathematical level, though. Not even a basic graph theoretical analysis of mutation and recombination.

This said, the book is still perfect to get you started.
Introduction to Stochastic Search and Optimization
Average customer rating: 5 out of 5 stars
  • Great book!!!
  • Recommended to scholars and graduate students
Introduction to Stochastic Search and Optimization
James C. Spall
Manufacturer: Wiley-Interscience
ProductGroup: Book
Binding: Hardcover

GeneralGeneral | Science | Subjects | Books
GeneralGeneral | Applied | Mathematics | Science | Subjects | Books
Linear ProgrammingLinear Programming | Applied | Mathematics | Science | Subjects | Books
Probability & StatisticsProbability & Statistics | Applied | Mathematics | Science | Subjects | Books
GeneralGeneral | Mathematics | Science | Subjects | Books
GeneralGeneral | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
Linear ProgrammingLinear Programming | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
StatisticsStatistics | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
Stochastic ModelingStochastic Modeling | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
All TitlesAll Titles | Qualifying Textbooks - Fall 2007 | Stores | Books
ProfessionalProfessional | Qualifying Textbooks - Fall 2007 | Stores | Books
ScienceScience | Qualifying Textbooks - Fall 2007 | Stores | Books
Similar Items:
  1. Monte Carlo Statistical Methods (Springer Texts in Statistics) Monte Carlo Statistical Methods (Springer Texts in Statistics)
  2. Stochastic Optimization Methods Stochastic Optimization Methods
  3. Numerical Optimization (Springer Series in Operations Research) Numerical Optimization (Springer Series in Operations Research)
  4. Practical Methods of Optimization Practical Methods of Optimization
  5. Introduction to Stochastic Programming (Springer Series in Operations Research and Financial Engineering) Introduction to Stochastic Programming (Springer Series in Operations Research and Financial Engineering)

ASIN: 0471330523

Book Description

Download Description

Customer Reviews:

5 out of 5 stars Great book!!!.......2004-12-07

A must have for anyone interested in otimization! Extremely well written and objective.

5 out of 5 stars Recommended to scholars and graduate students.......2003-09-23

Introduction to Stochastic Search and Optimization provides comprehensive, current information on methods for real-world problem solving, including stochastic gradient and non-gradient techniques, as well as relatively recent innovations such as simulated annealing, genetic algorithms, and MCMC. It is written to be read and understood by graduate students, industrial practitioners, and experienced researchers in the field. Web links to software and data sets, and an extensive list of references of the book allows the reader to explore deeper into certain topic areas. I also found the index to be very comprehensive and carefully done. The appendices are as a refresher and summary of much of the prerequisite material. The book is somewhat unique in providing a balanced discussion of algorithms, including both their strengths and weaknesses. The book is among very few books that have integrated essential parts of statistical fields with optimization and decision making. The book's inclusion of a chapter on optimal experimental design is an example of such integration. The approaches discussed in the book could be used for financial decision making, forecasting, and quality improvement, among many other areas.
An Introduction to Genetic Algorithms for Scientists and Engineers
Average customer rating: 4 out of 5 stars
  • Excellent practical introduction to GAs
  • An honest book
  • Too little information, even for beginners
  • Get started with GAs fast
  • Good.
An Introduction to Genetic Algorithms for Scientists and Engineers
David A. Coley
Manufacturer: World Scientific Publishing Company
ProductGroup: Book
Binding: Hardcover

GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Machine LearningMachine Learning | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Computer MathematicsComputer Mathematics | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
GeneralGeneral | Computers & Internet | Subjects | Books
GeneralGeneral | Science | Subjects | Books
Discrete MathematicsDiscrete Mathematics | Pure Mathematics | Mathematics | Science | Subjects | Books
Discrete MathematicsDiscrete Mathematics | Pure Mathematics | Mathematics | Professional Science | Professional & Technical | Subjects | Books
All TitlesAll Titles | Qualifying Textbooks - Fall 2007 | Stores | Books
Computers & InternetComputers & Internet | Qualifying Textbooks - Fall 2007 | Stores | Books
ProfessionalProfessional | Qualifying Textbooks - Fall 2007 | Stores | Books
ScienceScience | Qualifying Textbooks - Fall 2007 | Stores | Books
Similar Items:
  1. An Introduction to Genetic Algorithms (Complex Adaptive Systems) An Introduction to Genetic Algorithms (Complex Adaptive Systems)
  2. Genetic Algorithms in Search, Optimization, and Machine Learning Genetic Algorithms in Search, Optimization, and Machine Learning
  3. Introduction to Evolutionary Computing (Natural Computing Series) Introduction to Evolutionary Computing (Natural Computing Series)
  4. Practical Genetic Algorithms Practical Genetic Algorithms
  5. Genetic Algorithms + Data Structures = Evolution Programs Genetic Algorithms + Data Structures = Evolution Programs

ASIN: 9810236026

Customer Reviews:

5 out of 5 stars Excellent practical introduction to GAs.......2005-04-10

Well rounded and importantly, practical introduction to the subject. Gives a rapid basic understanding of the elements required, and provides all the information needed for further reading to expand knowledge in timely and appropriate places in the text.

4 out of 5 stars An honest book.......2004-12-07

A fine introduction. Well written, very, very clear... And the codes are pretty easy to understand even for beginners. I would recommend it as a first course on GAs.

2 out of 5 stars Too little information, even for beginners.......2004-06-11

This is an introductory (undergraduate level) book targeted towards practitioners. The content is far from being satisfactory, even for beginners. However, if you have only a couple of hours and you want to get some information about GAs, this book is for you. If you're looking for comprehensive coverage on the topic, I'd recommend Eiben & Smith's "Introduction to Evolutionary Computing".

5 out of 5 stars Get started with GAs fast.......1999-11-30

The best introduction to GAs for those wishing to get up and running and using such algorithms to solve real problems. The software provided seems to work well and just about anyone will understand the book. My only complaint is that the examples could have covered a better range of topics.

3 out of 5 stars Good........1999-02-18

Good
Genetic Programming : An Introduction : On the Automatic Evolution of Computer Programs and Its Applications (The Morgan Kaufmann Series in Artificial Intelligence)
Average customer rating: 5 out of 5 stars
  • Good as an overall, not for the details
  • terrific textbook
  • Excellent, comprehensive and easy to read.
  • A great introduction!
  • Excellent Book on Genetic Programming
Genetic Programming : An Introduction : On the Automatic Evolution of Computer Programs and Its Applications (The Morgan Kaufmann Series in Artificial Intelligence)
Wolfgang Banzhaf
Manufacturer: Morgan Kaufmann Publishers
ProductGroup: Book
Binding: Hardcover

NetworksNetworks | Networks, Protocols & APIs | Networking | Computers & Internet | Subjects | Books
GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneticGenetic | Algorithms | Programming | Computers & Internet | Subjects | Books
Graphics & MultimediaGraphics & Multimedia | Programming | Computers & Internet | Subjects | Books | DirectX | Flash | GIS | General | OpenGL | Solid Works
GeneralGeneral | Introductory & Beginning | Programming | Computers & Internet | Subjects | Books
Software DevelopmentSoftware Development | Software Design, Testing & Engineering | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Languages & Tools | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Machine LearningMachine Learning | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
Software EngineeringSoftware Engineering | Computer Science | Computers & Internet | Subjects | Books | Design Tools & Techniques | General | Information Systems | Methodology | Multimedia Information Systems
GeneralGeneral | Graphic Design | Computers & Internet | Subjects | Books
GeneralGeneral | Computers & Internet | Subjects | Books
MathematicsMathematics | Professional Science | Professional & Technical | Subjects | Books | Applied | Chaos & Systems | Geometry & Topology | Mathematical Analysis | Mathematical Physics | Number Systems | Pure Mathematics | Transformations | Trigonometry
AlgorithmsAlgorithms | Computer Science & Information Systems | New & Used Textbooks | Stores | Books
SoftwareSoftware | Information Systems | Computer Science & Information Systems | New & Used Textbooks | Stores | Books
All Amazon UpgradeAll Amazon Upgrade | Amazon Upgrade | Stores | Books
Computers & InternetComputers & Internet | Amazon Upgrade | Stores | Books
Professional & TechnicalProfessional & Technical | Amazon Upgrade | Stores | Books
All TitlesAll Titles | Qualifying Textbooks - Fall 2007 | Stores | Books
Computers & InternetComputers & Internet | Qualifying Textbooks - Fall 2007 | Stores | Books
ProfessionalProfessional | Qualifying Textbooks - Fall 2007 | Stores | Books
Similar Items:
  1. Genetic Programming: On the Programming of Computers by Means of Natural Selection (Complex Adaptive Systems) Genetic Programming: On the Programming of Computers by Means of Natural Selection (Complex Adaptive Systems)
  2. An Introduction to Genetic Algorithms (Complex Adaptive Systems) An Introduction to Genetic Algorithms (Complex Adaptive Systems)
  3. Foundations Of Genetic Programming Foundations Of Genetic Programming
  4. Genetic Programming III: Darwinian Invention and Problem Solving Genetic Programming III: Darwinian Invention and Problem Solving
  5. Introduction to Evolutionary Computing (Natural Computing Series) Introduction to Evolutionary Computing (Natural Computing Series)

ASIN: 155860510X

Amazon.com

Imagine a world in which computers program other computers based on strategies borrowed from biology and natural selection. Genetic Programming: An Introduction explores fascinating possibilities like these in a thriving area of computer-science research. This research-quality book is for anyone who wants to see what genetic programming is and what it can offer the future of computing.

This text begins by situating genetic programming in terms of the history of computing and machine learning. Early sections show the links between Darwinism, molecular biology, and genetic programming. (Genetic programming uses the strategy of natural selection by solving a problem in successive iterations, which produces the "fittest" solution, much like new species evolve in the natural world.)

The authors present a lot of molecular-biology background since it is central to the genetic-programming project. (There are interesting parallels here. Just as our DNA contains inert information, programs developed using genetic algorithms usually contain many "extra" instructions, too--which often leads to bloated, though effective, code in the final product.) Even though this is extremely technical material, the authors do manage to engage the reader in the imaginative leap from Darwin and DNA to computers and the world of genetic programming.

Later chapters define what genetic programming is and what strategies it uses to let computers program themselves. The authors also examine the state of the art of genetic programming and define what problems need to be solved before it can be widely adopted. The amount of research in this section will mostly benefit specialists in the genetic-programming field.

A later chapter on applications that use genetic programming offers dozens of papers, with applications of this approach from a wide variety of fields, including biology, industry, and computers (and some impressive technologies such as robotics and data mining). Though the authors exaggerate somewhat on how "real world" these applications are, it's clear that genetic programming will continue to improve and find its way into more areas of computing--with even more productive results. Though coding by humans is safe for the foreseeable future, genetic programming offers an appealing alternative to some kinds of problems. --Richard V. Dragan

Book Description

Since the early 1990s, genetic programming (GP)a discipline whose goal is to enable the automatic generation of computer programshas emerged as one of the most promising paradigms for fast, productive software development. GP combines biological metaphors gleaned from Darwin's theory of evolution with computer-science approaches drawn from the field of machine learning to create programs that are capable of adapting or recreating themselves for open-ended tasks.

This unique introduction to GP provides a detailed overview of the subject and its antecedents, with extensive references to the published and online literature. In addition to explaining the fundamental theory and important algorithms, the text includes practical discussions covering a wealth of potential applications and real-world implementation techniques. Software professionals needing to understand and apply GP concepts will find this book an invaluable practical and theoretical guide.

Customer Reviews:

3 out of 5 stars Good as an overall, not for the details.......2003-05-11

This book is good for getting a general view of genetic programming. Nevertheless, I think it neglects many details. For example, it is very hard to from the book how a simple selection strategy (tournament selection) works in practice.

I do not think this book is useful for someone intending to code a genetic programming algorithm.

5 out of 5 stars terrific textbook.......2003-04-18

I skimmed the Koza books (GP: I & II) and this one at the store. Using the layout, chapter names, and the introductory chapters as my guide, I decided to buy this book to introduce me to the current state of the art in GP. The strengths of this book are its textbook format and the informal exercises that are presented for the reader at the end of every chapter. There is also a great deal of compilation from other relevant gp works presented in a localized, intra-chapter basis. The book is thus highly digestable to a newcomer, and is a far less time-consuming way to learn about GP than through the "expert" papers on the web. Having now almost finished the book, I feel that I am ready and able to author and apply GP techniques in a wide variety of applications and languages, having spent less than 20 hours in study time. A terrific achievement by Banzhaf and company, highly recommended.

5 out of 5 stars Excellent, comprehensive and easy to read........2002-01-29

We all know that kind of books where the author likes to show how much he knows making things intentionally complex....well...this is the opposite side of the spectrum.
The book is very complete and detailed yet easy to read, even after a day of work.
The first part of the book contains introductory information on background areas like probability, biology and computer science as a general discipline.
Getting into the topic, it clarifies some of the differences between evolutionary systems and genetic algorithms and shows how all this contributes to the theory of genetic programming and the evolution of computer programs.
It explains how things are done with different types of individuals (tree, linear, graph, etc) and gives valuable insight about the implementation process.
Although you may need other sources for formal treatment of some topics, this book is a very good acquisition.

5 out of 5 stars A great introduction!.......2000-11-19

This book is a great introduction to genetic programming and should be a model for textbook authors in other fields. Knowing little about genetic programming to begin with, this book guides the reader through the various topics and problems associated with genetic programming in a very logical and understandable way. Highly recommended! I wish more technical books were like this!

5 out of 5 stars Excellent Book on Genetic Programming.......2000-01-20

Genetic Programming is an exciting field, and as the desktop computers become more powerful, more applications are occuring. This book prepares both the practitioner and researcher for this field. It covers much material that is needed not only to deploy GP, but to explain it to management and customers. The book also comes with the web address for sample demonstration software that I found easy to learn, and deploy on a project that had previously been analyzed via neural networks.

I recommend this book highly, as well as works by Dr. Koza and Dr. Bentley for anyone interested in working in this field.
Introduction to Computational Biology: And Evolutionary Approach
Average customer rating: 4 out of 5 stars
  • try the enclosed GUI program
Introduction to Computational Biology: And Evolutionary Approach
Bernhard Haubold
Manufacturer: Birkhauser
ProductGroup: Book
Binding: Hardcover

GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneticGenetic | Algorithms | Programming | Computers & Internet | Subjects | Books
GeneralGeneral | Biology | Biological Sciences | Science | Subjects | Books
BioinformaticsBioinformatics | Biological Sciences | Science | Subjects | Books
GeneticsGenetics | Evolution | Science | Subjects | Books
GeneralGeneral | Science | Subjects | Books
GeneralGeneral | Applied | Mathematics | Science | Subjects | Books
GeneralGeneral | Mathematics | Science | Subjects | Books
GeneralGeneral | Biology | Biological Sciences | Professional Science | Professional & Technical | Subjects | Books
GeneticsGenetics | Evolution | Professional Science | Professional & Technical | Subjects | Books
GeneralGeneral | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
All TitlesAll Titles | Qualifying Textbooks - Fall 2007 | Stores | Books
Similar Items:
  1. Biological Sequence Analysis: Probabilistic Models of Proteins and Nucleic Acids Biological Sequence Analysis: Probabilistic Models of Proteins and Nucleic Acids

ASIN: 3764367008

Book Description

Analysis of molecular sequence data is the main subject of this introduction to computational biology. There are two closely connected aspects to biological sequences: (i) their relative position in the space of all other sequences, and (ii) their movement through this sequence space in evolutionary time. Accordingly, the first part of the book deals with classical methods of sequence analysis: pairwise alignment, exact string matching, multiple alignment, and hidden Markov models. In the second part evolutionary time takes center stage and phylogenetic reconstruction, the analysis of sequence variation, and the dynamics of genes in populations are explained in detail. In addition, the book contains a computer program with a graphical user interface that allows the reader to experiment with a number of key concepts developed by the authors.

This textbook is intended for students enrolled in courses in computational biology or bioinformatics as well as for molecular biologists, mathematicians, and computer scientists.

Customer Reviews:

4 out of 5 stars try the enclosed GUI program.......2006-10-14

For some readers, the best attraction of the book is the GUI program that lets you quickly experiment and apply the main ideas. The text is very interdisciplinary, written for diverse audiences, spanning biology, computer science and mathematics. Some aspects of the book may perhaps be too mathematical for some biology readers. Say the Hidden Markov Models, for example. But if you keep at it, you should get able to get the gist of the models. Which is another reason for the usefulness of the GUI. Essentially, so long as you understand the basic math ideas, the GUI lets you sidestep the grotty details and focus on applying the overall models.

It could also be that the book is suitable for a university course. The chapter exercises and accompanying answers are useful, in this regard.
Evolutionary Intelligence: An Introduction to Theory and Applications with Matlab
Average customer rating: Not rated
    Evolutionary Intelligence: An Introduction to Theory and Applications with Matlab
    S. Sumathi , T. Hamsapriya , and P. Surekha
    Manufacturer: Springer
    ProductGroup: Book
    Binding: Hardcover

    GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
    GeneticGenetic | Algorithms | Programming | Computers & Internet | Subjects | Books
    GeneralGeneral | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
    Theory of ComputingTheory of Computing | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
    Computer MathematicsComputer Mathematics | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
    GeneralGeneral | Applied | Mathematics | Science | Subjects | Books
    GeneralGeneral | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
    ASIN: 3540751580

    Book Description

    This book gives a good introduction to evolutionary computation for those who are first entering the field and are looking for insight into the underlying mechanisms behind them. Emphasizing the scientific and machine learning applications of genetic algorithms instead of applications to optimization and engineering, the book could serve well in an actual course on adaptive algorithms. The authors include excellent problem sets, these being divided up into "thought exercises" and "computer exercises" in genetic algorithm. Practical use of genetic algorithms demands an understanding of how to implement them, and the authors do so in the last two chapters of the book by giving the applications in various fields. This book also outlines some ideas on when genetic algorithms and genetic programming should be used, and this is useful since a newcomer to the field may be tempted to view a genetic algorithm as merely a fancy Monte Carlo simulation. The most difficult part of using a genetic algorithm is how to encode the population, and the authors discuss various ways to do this. Various "exotic" approaches to improve the performance of genetic algorithms are also discussed such as the "messy" genetic algorithms, adaptive genetic algorithm and hybrid genetic algorithm.

    Introduction to Genetic Algorithms
    Average customer rating: Not rated
      Introduction to Genetic Algorithms
      S.N. Sivanandam , and S. N. Deepa
      Manufacturer: Springer
      ProductGroup: Book
      Binding: Hardcover

      GeneralGeneral | Algorithms | Programming | Computers & Internet | Subjects | Books
      GeneticGenetic | Algorithms | Programming | Computers & Internet | Subjects | Books
      GeneralGeneral | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
      Computer MathematicsComputer Mathematics | Artificial Intelligence | Computer Science | Computers & Internet | Subjects | Books
      GeneralGeneral | Computers & Internet | Subjects | Books
      GeneralGeneral | Science | Subjects | Books
      GeneralGeneral | Applied | Mathematics | Science | Subjects | Books
      GeneralGeneral | Mathematics | Science | Subjects | Books
      GeneralGeneral | Applied | Mathematics | Professional Science | Professional & Technical | Subjects | Books
      ASIN: 354073189X

      Book Description

      The book contains basic concepts, several applications of Genetic Algorithms and solved Genetic Problems using MATLAB software and C/C++.

      The salient features of the book include - detailed explanation of Genetic Algorithm concepts, - numerous Genetic Algorithm Optimization Problems, - study on various types of Genetic Algorithms, - implementation of Optimization problem using C and C++, - simulated solutions for Genetic Algorithm problems using MATLAB 7.0, - brief description on the basics of Genetic Programming, - application case studies on Genetic Algorithm on emerging fields.

      Genetic algorithms for solving the aircraft-sequencing problem: the introduction of departures into the dynamic model [An article from: Journal of Air Transport Management]
      Average customer rating: Not rated
        Genetic algorithms for solving the aircraft-sequencing problem: the introduction of departures into the dynamic model [An article from: Journal of Air Transport Management]
        S. Capri@? , and M. Ignaccolo
        Manufacturer: Elsevier
        ProductGroup: Book
        Binding: Digital
        ASIN: B000RQZY1C

        Book Description

        This digital document is a journal article from Journal of Air Transport Management, published by Elsevier in 2004. The article is delivered in HTML format and is available in your Amazon.com Media Library immediately after purchase. You can view it with any web browser.

        Description:
        The aircraft-sequencing problem is a well-known operations research problem. It is concerned with defining optimal strategies for the sequencing of arriving flights at an airport to optimize as part of the management of traffic flow during the final flight phase. The model here introduces departing flights into the aircraft sequence, sets up a dynamic model to take account of time-varying variables, and builds a specific genetic algorithm to solve the aircraft-sequencing problem.

        Books:

        1. Anatomy of Love: A Natural History of Mating, Marriage, and Why We Stray
        2. Bats in Forests: Conservation and Management
        3. Birnbaum's Walt Disney World 2007 (Birnbaum's Walt Disney World)
        4. Blue Monday: Fats Domino And the Lost Dawn of Rock 'n' Roll
        5. BRS Cell Biology and Histology (Board Review Series)
        6. Butterfly House
        7. By the River Piedra I Sat Down and Wept: A Novel of Forgiveness (P.S.)
        8. Cape Wind: Money, Celebrity, Class, Politics, and the Battle for Our Energy Future on Nantucket Sound
        9. Catalog of Chevelle, Malibu & El Camino Id Numbers 1964-87 (Cars & Parts Magazine Matching Numbers Series)
        10. Celiac Disease: A Hidden Epidemic

        Books Index

        Books Home

        Recommended Books

        1. Al Capone Does My Shirts
        2. What to Drink with What You Eat: The Definitive Guide to Pairing Food with Wine, Beer, Spirits, Coff
        3. The Underpainter
        4. The Politically Incorrect Guide
        5. The Lord of the Rings: A Reader's Companion
        6. Turbulence: An Introduction for Scientists and Engineers
        7. Wanderlust: A History of Walking
        8. Interpreting East Asian Growth and Innovation
        9. The Quality of Work: A People-Centred Agenda
        10. Howard Street: A Pittsburgh Story