⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 003-005.html

📁 遗传算法经典书籍-英文原版 是研究遗传算法的很好的资料
💻 HTML
字号:
<HTML>
<HEAD>
<META name=vsisbn content="0849398010">
<META name=vstitle content="Industrial Applications of Genetic Algorithms">
<META name=vsauthor content="Charles Karr; L. Michael Freeman">
<META name=vsimprint content="CRC Press">
<META name=vspublisher content="CRC Press LLC">
<META name=vspubdate content="12/01/98">
<META name=vscategory content="Web and Software Development: Artificial Intelligence: Other">




<TITLE>Industrial Applications of Genetic Algorithms:Genetic Algorithms in the Engineer's Toolbox</TITLE>

<!-- HEADER -->

<STYLE type="text/css"> 
 <!--
 A:hover  {
 	color : Red;
 }
 -->
</STYLE>

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

<!--ISBN=0849398010//-->
<!--TITLE=Industrial Applications of Genetic Algorithms//-->
<!--AUTHOR=Charles Karr//-->
<!--AUTHOR=L. Michael Freeman//-->
<!--PUBLISHER=CRC Press LLC//-->
<!--IMPRINT=CRC Press//-->
<!--CHAPTER=1//-->
<!--PAGES=003-005//-->
<!--UNASSIGNED1//-->
<!--UNASSIGNED2//-->

<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="001-003.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="005-007.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<P><BR></P>
<P>New populations of candidate solutions are generated by implementing operators inspired by natural genetic variation. The three most popular operators used in almost all GAs, are:
</P>
<DL>
<DD><B>1.</B>&nbsp;&nbsp;<I>selection,</I>
<DD><B>2.</B>&nbsp;&nbsp;<I>recombination</I> (often termed <I>crossover</I>), and
<DD><B>3.</B>&nbsp;&nbsp;<I>mutation</I>.
</DL>
<P><I>Selection</I> is a process through which high quality candidate solutions are chosen to form a basis for subsequent generations of solutions. Selection operators are generally driven by probabilistic decisions that ensure the best solutions are given the greatest consideration. <I>Recombination</I> is an operation by which the attributes of two quality solutions are combined to form a new, often better solution. This operator plays a key role in determining how the quality attributes of the candidate solutions are combined. <I>Mutation</I> is an operation that provides a random element to the search. It allows for various attributes of the candidate solutions to be occasionally altered. Together, these three operators produce an efficient search mechanism that generally converges rapidly to near-optimal solutions.</P>
<P>Given a coding scheme, a fitness function, and specific genetic operators, it is rather straightforward to develop a GA that mimics natural evolution to effectively drive toward near-optimal solutions. Despite the fact that the particulars of any GA application may vary, the basic approach is the same. The fundamental algorithm is summarized as follows:</P>
<DL>
<DD><B>1.</B>&nbsp;&nbsp;Generate a random initial population of candidate solutions in the form of chromosomes.
<DD><B>2.</B>&nbsp;&nbsp;Evaluate each chromosome in the population according to a pre-defined fitness function.
<DD><B>3.</B>&nbsp;&nbsp;Employ a selection operator to create new chromosomes. The selection operator biases the new generation of chromosomes toward higher quality solutions. As the chromosomes mate, genetic operators such as recombination and mutation are applied to form new candidate solutions.
<DD><B>4.</B>&nbsp;&nbsp;Delete members of the existing population to make room for the new candidates.
<DD><B>5.</B>&nbsp;&nbsp;Evaluate the new chromosomes and insert them into the population.
<DD><B>6.</B>&nbsp;&nbsp;If a satisfactory solution has been achieved (or if some other stopping criteria has been met), stop; otherwise, go to step 3.
</DL>
<P>This approach to solving search problems may seem unusual at first consideration. However, GAs demonstrate at least three characteristics which allow them to perform efficiently in difficult search spaces. First, GAs consider a population of solutions simultaneously. Thus, they tend to maintain a global perspective due to their parallel consideration of solutions, whereas traditional search routines tend to perform local searches due to the point-by-point manner in which they traverse a search space. Second, GAs do not rely on derivative information. Thus, they tend not to get fooled in multi-modal search problems that perplex derivative-based techniques so popular in the field of optimization. Third, GAs do not depend on continuity of the search space. Thus, they have been used to solve problems that have stymied more traditional search routines which can break down when applied in discontinuous search spaces.
</P>
<P>Although GAs have been used to solve a wide variety of problems, most GA applications fall into one of three categories: (1) optimization, (2) machine learning in the form of learning classifier systems, and (3) genetic programming. The optimization applications are characterized by evaluation functions that are indicative of some desired result. Classic examples of optimization problems are those in which some profit measure must be maximized or some error term must be minimized. However, GAs have expanded their horizons well beyond traditional optimization. A second use of GAs is in learning classifier systems which employ a GA for developing effective if-then rules for solving a particular machine learning problem. GAs are used in these systems as discovery and adaptive engines that drive a rule base toward an effective solution. A third use of GAs is genetic programming [8], an approach to problem solving in which a GA is used to discover entire computer programs. Candidate programs are represented as tree-like symbolic expressions (S-expressions), and a GA breeds existing programs to develop new, more effective programs. As always, the search for more efficient computer programs is driven by a fitness function.</P>
<P>GAs and evolutionary algorithms of all types can be quite fascinating and are growing in popularity. However, they are by no means some &#147;fly-by-night&#148; approach to problem solving; GAs are well grounded in theory, and empirical studies demonstrate that, in some problems, they consistently outperform more traditional search routines. Although GAs are a very young technology, their brief history is rich with success stories and peppered with researchers from diverse backgrounds. The next section provides a flavor of this rich history and mentions some of the researchers who have elevated GAs to their current status in the computational community.</P><P><BR></P>
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="001-003.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="005-007.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>

<hr width="90%" size="1" noshade>
<div align="center">
<font face="Verdana,sans-serif" size="1">Copyright &copy; <a href="/reference/crc00001.html">CRC Press LLC</a></font>
</div>
<!-- all of the reference materials (books) have the footer and subfoot reveresed -->
<!-- reference_subfoot = footer -->
<!-- reference_footer = subfoot -->

</BODY>
</HTML>

<!-- END FOOTER -->

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -