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

📄 306-308.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:What Can I Do with a Learning Classifier System?</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=16//-->
<!--PAGES=306-308//-->
<!--UNASSIGNED1//-->
<!--UNASSIGNED2//-->

<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="303-306.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="308-310.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<P><BR></P>
<P><FONT SIZE="+1"><B><I>The Current State of the Art</I></B></FONT></P>
<P>There is no &#147;standard LCS.&#148; Some notable LCS implementations include the research of Wilson (1986; 1994; 1995). Wilson&#146;s work centers on the usage of LCSs in the simulation of adaptive behavior. His most current efforts have been with an advanced LCS called XCS (Wilson, 1995). For a more introductory system, Wilson provides ZCS, a <I>zeroth-level</I> LCS, which has the basic parts listed in this tutorial, excluding a message list.</P>
<P>The work of Smith and Cribbs (1994) relates artificial neural networks (ANNs) to the LCS. While ANNs may not be exactly the same as LCSs, there is a considerable amount of information that may be applicable to LCS research.</P>
<P>An initial framework by Valenzuela-Rendon (1991) introduces the principles of fuzzy logic to the LCS. More recently, the work by Bonarini (1996) is extending the fuzzy LCS concept. Fuzzy logic, like ANNs, may provide a rich medium of cross-talk to inspire future LCS research.</P>
<P>Finally, there is a variant of the GA that proves quite promising in the LCS. That is <I>genetic programming</I> (GP). GP is a tree based evolutionary algorithm that evolves program trees. This is a variable length structure that may allow for complex relationships to be mapped. This is extremely useful in the area of LCSs, where the system must learn from interacting with the environment. Little work has been done, but the advantages are quite attractive. Tufts (1995) has developed a GP-based LCS. Wilson&#146;s ZCS paper mentions that lisp <I>s-expressions</I>, which are similar to the lisp-like trees found in GP, might provide a compatible representation for LCS rules (Wilson, 1994).</P>
<P><FONT SIZE="+1"><B>ARTIFICIAL NEURAL NETWORKS AND THE LCS</B></FONT></P>
<P>Artificial neural networks (ANNs) provide a method to illustrate many of the ideas embodied by the LCS. This study shows a simple ANN application that involves classification of a series of binary patterns to a single binary signal. Linearly inseparable Boolean problems have become a staple of ANN benchmarks. These results stem from Smith and Cribbs (1994).
</P>
<P>Input connectivity selection has been shown to extend the perceptron (Wilson, 1990). The addition of input selection provides a method to nonlinearly partition inputs. Using the premise of input partitioning, it becomes clear that LCS rules partition the input space through use of the <I>don&#146;t care</I> operator (#), while ANN&#146;s ignore inputs through zero valued weights (see Figure 16.2). The LCS uses 0, 1, and # to denote what values the conditions must meet for the rule to fire. A simple transformation of this scheme to -1, +1, and 0 easily emulates similar traits for the ANN (Smith &amp; Cribbs, 1994). Figure 16.2 shows the overall LCS-like ANN. The ANN structure, presented in Figure 16.3, contains a hidden layer of nonlinear (bipolar sigmoid) activation functions and single output node (linear sum function). The update of weights is constrained to the hidden and output layer weights only.</P>
<P><A NAME="Fig2"></A><A HREF="javascript:displayWindow('images/16-02.jpg',500,169)"><IMG SRC="images/16-02t.jpg"></A>
<BR><A HREF="javascript:displayWindow('images/16-02.jpg',500,169)"><FONT COLOR="#000077"><B>Figure 16.2</B></FONT></A>&nbsp;&nbsp;Mapping of an LCS rule onto an ANN computational unit (neuron).</P>
<P>In an LCS, the GA is responsible for rule discovery. The same premise can be used to evolve ANNs. Assuming a Michigan-style LCS model, the hidden layer of a multi-layer ANN may be considered the ANN&#146;s rule-set. The input to hidden layer connectivity of an ANN may be treated as the conditions for the individual rules (neurons). Fitness governs which rules, or neurons, are selected for evolution. Many fitness measures could be used, but effective measures appear to be those based in correlating the error (reward) signal to the active rules (or neurons). Fahlman (1990) suggests a similar form of correlation measure to grow &#147;cascade-correlation&#148; networks.
</P>
<P>Equation 16.2 shows the fitness function used in an LCS-inspired ANN (Smith &amp; Cribbs, 1994; Cribbs, 1995).</P>
<P ALIGN="CENTER"><IMG SRC="images/16-02d.jpg"></P>
<P>The equation is shown in update fashion. The function &#963; denotes the activation function for the hidden layer neurons, and E complement (the bar above E) denotes when the ANN&#146;s training case (mean square) error is below a given threshold. This &#147;digital&#148; error threshold governs what the GA considers as the error state of the ANN. As long at the ANN&#146;s error is <I>below</I> this value, E is 0&#151;indicating a &#147;no error&#148; state. Using this logical format, the rest of the equation acts as a &#147;bonus&#148; function that provides additional fitness point for firing, when the error threshold has not been exceeded. The multiplication by the absolute value of w<SUB><SMALL>ij</SMALL></SUB> is the magnitude of the output weight of hidden neuron, <TT>i</TT> to output node <TT>j</TT>. The multiplier promotes bonuses that are not &#147;parasitic.&#148; Parasites, in this sense, are rules (or neurons) that act similarly to other rules active at the same time, but do not additively participate, i.e., parasites do not affect the result appropriately.</P>
<P>A typical GA attempts to evolve the individuals in a population until the population consists largely of one type of individual. This form of evolution does not apply to the Michigan style LCS, or ANNs, because a <I>diverse collection</I> of rules must be maintained to allow the system to interact efficiently with its environment. To accomplish this task, several methods to preserve the diversity within a population have been developed. Goldberg (1989) developed a computational method called <I>explicit sharing</I>. The premise of sharing is to measure the &#147;distance,&#148; in the genotype space, of each individual with respect to the rest of the individuals in the population. The fitness values for each individual are degraded based on their proximity to the other members of the population.</P><P><BR></P>
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="303-306.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="308-310.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 + -