"python/vscode:/vscode.git/clone" did not exist on "095093ee5a3ef7a946a1cced2cfbd6e5164a522f"
Commit d068afb1 authored by Davis King's avatar Davis King
Browse files

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 ...@@ -47,6 +47,10 @@ docs/queue_ex.cpp.html
docs/release_notes.html docs/release_notes.html
docs/old_release_notes.html docs/old_release_notes.html
docs/sockets_ex.cpp.html docs/sockets_ex.cpp.html
docs/faq.html
docs/rbf_normal.gif
docs/rbf_big_gamma.gif
docs/rbf_small_gamma.gif
[INFOTYPES] [INFOTYPES]
...@@ -138,17 +138,17 @@ cross_validate_trainer_threaded(trainer, ...@@ -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 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/> 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/> <br/>
However, if you make gamma really huge you will get this (it's zero everywhere except for one place): However, if you make gamma really huge you will get this (it's zero everywhere except for one place):
<br/> <br/>
<center><img src="rbf_big_gamma.gif"/></center> <center><image src="rbf_big_gamma.gif"/></center>
<br/> <br/>
Or if you make gamma really small then it will be 1.0 everywhere: Or if you make gamma really small then it will be 1.0 everywhere:
<br/> <br/>
<center><img src="rbf_small_gamma.gif"/></center> <center><image src="rbf_small_gamma.gif"/></center>
<p> <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 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 @@ ...@@ -874,6 +874,9 @@
</font> </font>
</xsl:if> </xsl:if>
</xsl:template> </xsl:template>
<xsl:template match="image">
<img src="{@src}" border="0"/>
</xsl:template>
<xsl:template match="img"> <xsl:template match="img">
<img src="{@src}" border="0" height="{@height}" width="{@width}" alt="{@alt}"> <img src="{@src}" border="0" height="{@height}" width="{@width}" alt="{@alt}">
<xsl:apply-templates/> <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