Commit d068afb1 authored by Davis King's avatar Davis King

Changed some things to get the new images to show up in chm files.

parent ebf602e4
......@@ -47,6 +47,10 @@ docs/queue_ex.cpp.html
docs/release_notes.html
docs/old_release_notes.html
docs/sockets_ex.cpp.html
docs/faq.html
docs/rbf_normal.gif
docs/rbf_big_gamma.gif
docs/rbf_small_gamma.gif
[INFOTYPES]
......@@ -138,17 +138,17 @@ cross_validate_trainer_threaded(trainer,
data has just one feature and its value ranges from 0 to 7. Then what you want is a
gamma value that gives nice Gaussian bumps like the one in this graph: <br/>
<center><img src="rbf_normal.gif"/></center>
<center><image src="rbf_normal.gif"/></center>
<br/>
However, if you make gamma really huge you will get this (it's zero everywhere except for one place):
<br/>
<center><img src="rbf_big_gamma.gif"/></center>
<center><image src="rbf_big_gamma.gif"/></center>
<br/>
Or if you make gamma really small then it will be 1.0 everywhere:
<br/>
<center><img src="rbf_small_gamma.gif"/></center>
<center><image src="rbf_small_gamma.gif"/></center>
<p>
So you need to pick the gamma value so that it is scaled reasonably to your data. A <i><font color="red">good rule of
......
......@@ -874,6 +874,9 @@
</font>
</xsl:if>
</xsl:template>
<xsl:template match="image">
<img src="{@src}" border="0"/>
</xsl:template>
<xsl:template match="img">
<img src="{@src}" border="0" height="{@height}" width="{@width}" alt="{@alt}">
<xsl:apply-templates/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment