Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members

Distribution.h

Go to the documentation of this file.
00001 00002 00003 // -*- C++ -*- 00004 00005 // Distribution.h 00006 // 00007 // Copyright (C) *YEAR* *AUTHOR(S)* 00008 // ... 00009 // Copyright (C) *YEAR* *AUTHOR(S)* 00010 // 00011 // Redistribution and use in source and binary forms, with or without 00012 // modification, are permitted provided that the following conditions are met: 00013 // 00014 // 1. Redistributions of source code must retain the above copyright 00015 // notice, this list of conditions and the following disclaimer. 00016 // 00017 // 2. Redistributions in binary form must reproduce the above copyright 00018 // notice, this list of conditions and the following disclaimer in the 00019 // documentation and/or other materials provided with the distribution. 00020 // 00021 // 3. The name of the authors may not be used to endorse or promote 00022 // products derived from this software without specific prior written 00023 // permission. 00024 // 00025 // THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR 00026 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00027 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 00028 // NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00029 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 00030 // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00031 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00032 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00033 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00034 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00035 // 00036 // This file is part of the PLearn library. For more information on the PLearn 00037 // library, go to the PLearn Web site at www.plearn.org 00038 00039 /* ******************************************************* 00040 * $Id: Distribution.h,v 1.11 2004/07/21 16:30:55 chrish42 Exp $ 00041 ******************************************************* */ 00042 00044 #ifndef Distribution_INC 00045 #define Distribution_INC 00046 00047 #include <plearn_learners/generic/Learner.h> 00048 00049 namespace PLearn { 00050 using namespace std; 00051 00052 class Distribution: public Learner 00053 { 00054 protected: 00055 // ********************* 00056 // * protected options * 00057 // ********************* 00058 00059 // ### declare protected option fields (such as learnt parameters) here 00060 // ... 00061 00062 public: 00063 00064 typedef Learner inherited; 00065 00066 // ************************ 00067 // * public build options * 00068 // ************************ 00069 00072 string use_returns_what; 00073 00074 // **************** 00075 // * Constructors * 00076 // **************** 00077 00078 // Default constructor, make sure the implementation in the .cc 00079 // initializes all fields to reasonable default values. 00080 Distribution(); 00081 00082 00083 // ****************** 00084 // * Object methods * 00085 // ****************** 00086 00087 private: 00089 // (Please implement in .cc) 00090 void build_(); 00091 00092 protected: 00094 // (Please implement in .cc) 00095 static void declareOptions(OptionList& ol); 00096 00097 public: 00098 // simply calls inherited::build() then build_() 00099 virtual void build(); 00100 00102 virtual void makeDeepCopyFromShallowCopy(map<const void*, void*>& copies); 00103 00105 PLEARN_DECLARE_OBJECT(Distribution); 00106 00107 // ******************* 00108 // * Learner methods * 00109 // ******************* 00110 00112 virtual void train(VMat training_set); 00113 00115 virtual void use(const Vec& input, Vec& output); 00116 00117 00119 virtual double log_density(const Vec& x) const; 00120 00123 virtual double density(const Vec& x) const; 00124 00126 virtual double survival_fn(const Vec& x) const; 00127 00129 virtual double cdf(const Vec& x) const; 00130 00132 virtual Vec expectation() const; 00133 00135 virtual Mat variance() const; 00136 00138 virtual void generate(Vec& x) const; 00139 00140 }; 00141 00142 // Declares a few other classes and functions related to this class 00143 DECLARE_OBJECT_PTR(Distribution); 00144 00145 } // end of namespace PLearn 00146 00147 #endif

Generated on Tue Aug 17 15:51:30 2004 for PLearn by doxygen 1.3.7