RanFog {Microsoft.VisualBasic.MachineLearning.RandomForests} .NET clr documentation

RanFog

Description

Random Forest for classified and regression problems https://github.com/ogrecio/RanFog

Declare

            
# namespace Microsoft.VisualBasic.MachineLearning.RandomForests
export class RanFog extends Model {
   false_negative_cost: double;
   false_positive_cost: double;
   # [LossFunction]
   #  Loss function used for continuous features
   LF_c: LF_c;
   # Max number of branches allowed
   max_branch: integer;
   # [ForestSize]Max number of trees to be constructed
   max_tree: integer;
   # [mtry]
   #  Number of Features randomly selected at each node,
   #  Percentage of Features randomly selected at each node
   mtry: integer;
   # number of times SNPs are selected
   Selected: integer;
   # variable importance
   VI: double;
}

        

.NET clr type reference tree

  1. this class extends from Model class: Model
  2. use by property member LF_c: LF_c

[Package {$package} version {$version} Index]