Commit 36faa29b authored by Davis King's avatar Davis King

updated docs

parent dbe14b7f
...@@ -76,6 +76,8 @@ ...@@ -76,6 +76,8 @@
<item>hash</item> <item>hash</item>
<item>murmur_hash3</item> <item>murmur_hash3</item>
<item>murmur_hash3_128bit</item> <item>murmur_hash3_128bit</item>
<item>gaussian_random_hash</item>
<item>uniform_random_hash</item>
<item>projection_hash</item> <item>projection_hash</item>
<item>create_random_projection_hash</item> <item>create_random_projection_hash</item>
</section> </section>
...@@ -162,6 +164,31 @@ ...@@ -162,6 +164,31 @@
<!-- ************************************************************************* --> <!-- ************************************************************************* -->
<component>
<name>gaussian_random_hash</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/random_hashing_abstract.h</spec_file>
<description>
This function uses hashing to generate Gaussian distributed random values
with mean 0 and variance 1.
</description>
</component>
<!-- ************************************************************************* -->
<component>
<name>uniform_random_hash</name>
<file>dlib/hash.h</file>
<spec_file link="true">dlib/general_hash/random_hashing_abstract.h</spec_file>
<description>
This function uses hashing to generate uniform random values in the range [0,1).
</description>
</component>
<!-- ************************************************************************* -->
<component> <component>
<name>murmur_hash3</name> <name>murmur_hash3</name>
<file>dlib/hash.h</file> <file>dlib/hash.h</file>
......
...@@ -1016,6 +1016,8 @@ ...@@ -1016,6 +1016,8 @@
<term file="algorithms.html" name="murmur_hash3"/> <term file="algorithms.html" name="murmur_hash3"/>
<term file="algorithms.html" name="murmur_hash3_128bit"/> <term file="algorithms.html" name="murmur_hash3_128bit"/>
<term file="algorithms.html" name="hash"/> <term file="algorithms.html" name="hash"/>
<term file="algorithms.html" name="gaussian_random_hash"/>
<term file="algorithms.html" name="uniform_random_hash"/>
<term file="algorithms.html" name="md5"/> <term file="algorithms.html" name="md5"/>
......
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