[mlpack-svn] r11637 - mlpack/trunk/src/mlpack/methods/radical

fastlab-svn at coffeetalk-1.cc.gatech.edu fastlab-svn at coffeetalk-1.cc.gatech.edu
Tue Feb 28 14:19:31 EST 2012


Author: rcurtin
Date: 2012-02-28 14:19:31 -0500 (Tue, 28 Feb 2012)
New Revision: 11637

Modified:
   mlpack/trunk/src/mlpack/methods/radical/radical.hpp
   mlpack/trunk/src/mlpack/methods/radical/radical_main.cpp
Log:
Remove citation from -h and put @code around it in the RADICAL documentation.


Modified: mlpack/trunk/src/mlpack/methods/radical/radical.hpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/radical/radical.hpp	2012-02-28 19:18:17 UTC (rev 11636)
+++ mlpack/trunk/src/mlpack/methods/radical/radical.hpp	2012-02-28 19:19:31 UTC (rev 11637)
@@ -24,14 +24,16 @@
  *
  * For more details, see the following paper:
  *
+ * @code
  * @article{learned2003ica,
- *   title={ICA Using Spacings Estimates of Entropy},
- *   author={Learned-Miller, E.G. and Fisher III, J.W.},
- *   journal={Journal of Machine Learning Research},
- *   volume={4},
- *   pages={1271--1295},
- *   year={2003}
+ *   title = {ICA Using Spacings Estimates of Entropy},
+ *   author = {Learned-Miller, E.G. and Fisher III, J.W.},
+ *   journal = {Journal of Machine Learning Research},
+ *   volume = {4},
+ *   pages = {1271--1295},
+ *   year = {2003}
  * }
+ * @endcode
  */
 class Radical {
  public:

Modified: mlpack/trunk/src/mlpack/methods/radical/radical_main.cpp
===================================================================
--- mlpack/trunk/src/mlpack/methods/radical/radical_main.cpp	2012-02-28 19:18:17 UTC (rev 11636)
+++ mlpack/trunk/src/mlpack/methods/radical/radical_main.cpp	2012-02-28 19:19:31 UTC (rev 11637)
@@ -11,18 +11,7 @@
 PROGRAM_INFO("RADICAL", "An implementation of RADICAL, a method for independent"
     "component analysis (ICA).  Assuming that we have an input matrix X, the"
     "goal is to find a square unmixing matrix W such that Y = W * X and the "
-    "dimensions of Y are independent components.\n"
-    "\n"
-    "For more details, see the following paper:\n"
-    "\n"
-    "@article{\n"
-    "  title = {ICA Using Spacings Estimates of Entropy},\n"
-    "  author = {Learned-Miller, E.G. and Fisher III, J.W.},\n"
-    "  journal = {Journal of Machine Learning Research},\n"
-    "  volume = {4},\n"
-    "  pages = {1271--1295},\n"
-    "  year = {2003}\n"
-    "}");
+    "dimensions of Y are independent components.");
 
 PARAM_STRING_REQ("input_file", "Input dataset filename for ICA.", "i");
 




More information about the mlpack-svn mailing list