00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
#include "IsAboveThresholdVariable.h"
00044
00045
namespace PLearn {
00046
using namespace std;
00047
00048
00051
PLEARN_IMPLEMENT_OBJECT(IsAboveThresholdVariable,
00052
"ONE LINE DESCR",
00053
"NO HELP");
00054
00055 IsAboveThresholdVariable::IsAboveThresholdVariable(
Variable* input,
real the_threshold,
00056
real the_truevalue,
real the_falsevalue,
00057
bool the_strict)
00058 :
inherited(input, input->length(), input->width()),
00059 threshold(the_threshold), truevalue(the_truevalue), falsevalue(the_falsevalue), strict(the_strict)
00060 {}
00061
00062
void
00063 IsAboveThresholdVariable::declareOptions(
OptionList &ol)
00064 {
00065
declareOption(ol,
"threshold", &IsAboveThresholdVariable::threshold, OptionBase::buildoption,
"");
00066
declareOption(ol,
"truevalue", &IsAboveThresholdVariable::truevalue, OptionBase::buildoption,
"");
00067
declareOption(ol,
"falsevalue", &IsAboveThresholdVariable::falsevalue, OptionBase::buildoption,
"");
00068
declareOption(ol,
"strict", &IsAboveThresholdVariable::strict, OptionBase::buildoption,
"");
00069 inherited::declareOptions(ol);
00070 }
00071
00072 void IsAboveThresholdVariable::recomputeSize(
int& l,
int& w)
const
00073
{
00074
if (input) {
00075 l = input->
length();
00076 w = input->
width();
00077 }
else
00078 l = w = 0;
00079 }
00080
00081 void IsAboveThresholdVariable::fprop()
00082 {
00083
if (
strict)
00084
for(
int i=0; i<input->nelems(); i++)
00085
if(input->valuedata[i]>
threshold)
00086 valuedata[i] =
truevalue;
00087
else
00088 valuedata[i] =
falsevalue;
00089
else
00090
for(
int i=0; i<input->nelems(); i++)
00091
if(input->valuedata[i]>=
threshold)
00092 valuedata[i] = truevalue;
00093
else
00094 valuedata[i] = falsevalue;
00095 }
00096
00097
00098 void IsAboveThresholdVariable::bprop() {}
00099
00100 void IsAboveThresholdVariable::symbolicBprop() {}
00101
00102
00103 void IsAboveThresholdVariable::rfprop()
00104 {
00105
if (rValue.
length()==0)
resizeRValue();
00106 }
00107
00108
00109
00110 }
00111
00112