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

📄 261-264.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:Using Genetic Operators to Distinguish Chaotic Behavior from Noise in a Time Series</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=13//-->
<!--PAGES=261-264//-->
<!--UNASSIGNED1//-->
<!--UNASSIGNED2//-->

<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="259-261.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="264-266.html">Next</A></TD>
</TR>
</TABLE>
</CENTER>
<P><BR></P>
<P><FONT SIZE="+1"><B>GENETIC OPERATIONS</B></FONT></P>
<P>The operations of reproduction, crossover, and mutation are used in applying genetic: concepts to the original study. It should be emphasized that it is small changes in the forecast that are important. These represent fluctuations that are present in the time series.
</P>
<P><FONT SIZE="+1"><B><I>Reproduction and the Fitness Function</I></B></FONT></P>
<P>The fitness function replaces the simplex projection previously described. In this projection, the current point (a vector with the first coordinate as the current time value in a rolling series) associated with n nearby points. (In the study, this was necessarily a simplex requiring the extensive search.) The number n is the embedding dimension + 1, emulating the number of vertices in the simplex. These points are chosen as the nearest n neighbors (determined by Euclidean distance). The current position relative to the n points is calculated as the weighted distance to the points and saved for later use. The use of this type of function eliminates the extensive search to find the &#147;smallest&#148; simplex. The only difference between the weights using the simplex projection method and using genetic operations is that in the former case, all of the weights are positive while in the latter case, some of the weights can be (and probably will be) negative. As in the original study, we keep track of where the points end up after x forward time steps. From these, the forecast of the current point is made using the weights previously saved. Thus for every current time value in a rolling time series, one copy is created based upon the weighted distances from the nearest neighbors of the current point end up.
</P>
<P>To demonstrate the operation of the fitness function, it may be helpful to review the example from step 5 in the section entitled: Solution Formulation. In that example, the following vectors, in terms of components, were obtained directly from the time series:</P>
<DL>
<DD>Test vector (T) (17,13,19)
<DD>Simplex Vertex 1 (V1) = (13,19,17)
</DL>
<P>These vectors were determined:
</P>
<TABLE WIDTH="90%"><TR>
<TD WIDTH="50%">Vertex 2 (V2) = (19,17,11)
<TD WIDTH="50%">as the four nearest neighbors
<TR>
<TD>Vertex 3 (V3) = (17,11,4)
<TD>to the test vector.
<TR>
<TD>Vertex 4 (V4) = (11,4,8).
</TABLE>
<DL>
<DD>Projected Simplex Vertex 1 (P1) = (17,13,19)
</DL>
<P>These were determined:
</P>
<TABLE WIDTH="90%"><TR>
<TD WIDTH="50%">Vertex 2 (P2) = (19,17,11)
<TD WIDTH="50%">from the simplex above and
<TR>
<TD>Vertex 3 (P3) = (17,11,4)
<TD>tracking s time steps from each
<TR>
<TD>Vertex 4 (P4) = (11,4,8)
<TD>component in the series.
</TABLE>
<P>Goal: Use a fitness function to project the test vector s time steps into the future by:
</P>
<DL>
<DD><B>1.</B>&nbsp;&nbsp;Determining the relationship of the test vector to the original simplex. This is accomplished by writing the test vector (T) as a linear combination of the simplex vertices (V1, V2, V3, V4) to form:
<P><P ALIGN="CENTER"><IMG SRC="images/13-01d.jpg"></P>
</P>
<P>where the w's are weights.
</P>
<P>The above system consists of three equations in four unknowns. An added restriction requires w1 + w2 + w3 + w4 = 1 to establish a relationship in a convex structure (in this case a tetrahedron). When the w's are either all positive or all negative, the test vector is encapsulated within the structure (simplex).
</P>
<DD><B>2.</B>&nbsp;&nbsp;Using the fitness function to project the test vector into the future. By allowing the fitness function to operate without the strict requirement that all w's be either positive or negative, the exhaustive search to encapsulate the test vector is eliminated. The fitness function is then:
<P><P ALIGN="CENTER"><IMG SRC="images/13-02d.jpg"></P>
</P>
<P>Assuming, for example, that the solution to finding values for the w's are: w1=.6, w2=.3, w3=.5, and w4=-.4, then the fitness function which projects the test vector's time steps into the future is given by:
</P>
<P><P ALIGN="CENTER"><IMG SRC="images/13-03d.jpg"></P>
</DL>
<P><FONT SIZE="+1"><B><I>Crossover</I></B></FONT></P>
<P>A value of about 0.6 will initially be used for the value of the probability of crossover. Multipoint crossover will be determined by choosing n number of random numbers of low order bits for each component value in the projected current value. Using only low order bit positions of the components is consistent with time series that are highly correlated, such as the stock market prices and other economic series.
</P>
<P>Changes in prices are normally very small and reflect fluctuations at or near the decimal point.</P>
<P><FONT SIZE="+1"><B><I>Mutation</I></B></FONT></P>
<P>The probability of mutation will be initially set to about .001. For a sample size of 1000, only one operation of mutation is expected.
</P>
<P><FONT SIZE="+1"><B><I>Coding Scheme</I></B></FONT></P>
<P>The coding scheme comes directly from the vector point, where the components are time series values. As previously described, each point will have the form [x<SUB><SMALL>t</SMALL></SUB>,x <SUB><SMALL>t-1</SMALL></SUB>,x<SUB><SMALL>t-2</SMALL></SUB>], assuming a dimension of three and time difference of one. Sixteen bits will be used as the size for each component in order to provide for a large variety of series. Thus, in the case of dimension 3 and time value 1, three components, each of 16 bits would be required to effectively encode the point. If we were interested in analyzing a time series such as the time series associated with the stock market (whose value is commonly about 6000.00 using the DJIA, including decimals), all 16 bits of each component would be used. An important reason to use this scheme is that for highly correlated time series (which are very common), the most recent values are the most important values. The next most important value is the previous value. Thus, the structure provides for the most effective case for genetic operations - keeping the most important allele adjacent to each other.</P>
<P>Using the example previously described, the coding scheme for the test vector of (17,13,19) would be the 48 bits as follows:</P>
<DL>
<DD>[0000 0000 0001 0001 0000 0000 0000 1101 0000 0000 0001 0011].
</DL>
<P>In a correlated time series, fluctuations in the values are represented as small changes in the low order positions of each vector. In this case, the low order bits would be bits 15,16,31,32,47, and 48. These low order bits would then be subject to crossover and mutation operations. Restricting the effects of cross over and mutation to the low order bits results in short, low order schemata.
</P><P><BR></P>
<CENTER>
<TABLE BORDER>
<TR>
<TD><A HREF="259-261.html">Previous</A></TD>
<TD><A HREF="../ewtoc.html">Table of Contents</A></TD>
<TD><A HREF="264-266.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 + -