Version: 8.3.0
PMMLlib Namespace Reference

Classes

class  PMMLlib
 

Enumerations

enum  PMMLType { kUNDEFINED, kANN, kLR }
 
enum  PMMLActivationFunction { kIDENTITY, kTANH, kLOGISTIC }
 
enum  PMMLMiningFunction { kREGRESSION }
 

Functions

template<typename T >
std::string NumberToString (T Number)
 

Enumeration Type Documentation

See Also
http://www.dmg.org/v4-1/NeuralNetwork.html#xsdType_ACTIVATION-FUNCTION
Enumerator
kIDENTITY 
kTANH 
kLOGISTIC 

Definition at line 61 of file PMMLlib.hxx.

Enumeration to type the PMML file. UNDEFINED: not yet defined ANN: Artificial Neural Network LR: Linear Regression

See Also
http://www.dmg.org/v4-1/GeneralStructure.html#xsdGroup_MODEL-ELEMENT
Enumerator
kUNDEFINED 
kANN 
kLR 

Definition at line 55 of file PMMLlib.hxx.

55 {kUNDEFINED, kANN, kLR};

Function Documentation

template<typename T >
std::string PMMLlib::NumberToString ( Number)

Definition at line 40 of file PMMLlib.hxx.

Referenced by PMMLlib::PMMLlib::ExportLinearRegressionFortran().

41 {
42  std::ostringstream ss;
43  ss << Number;
44  return ss.str();
45 }