Skip to content

Commit

Permalink
Reverted to old features
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Sol committed Sep 4, 2024
1 parent 979119f commit ecd3ef8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions MetaMorpheus/EngineLayer/FdrAnalysis/PEPAnalysisEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,13 @@ public Microsoft.ML.Trainers.FastTree.FastTreeBinaryTrainer.Options GetFastTreeO
NumberOfThreads = maxThreads,
NumberOfTrees = 400,
MinimumExampleCountPerLeaf = 10,
MaximumBinCountPerFeature = 255,
NumberOfLeaves = 20,
LearningRate = 0.2,
Shrinkage = 0.1,
LabelColumnName = "Label",
FeatureColumnName = "Features",
UnbalancedSets = true,
Seed = 42,
FeatureSelectionSeed = 42
FeatureSelectionSeed = 42,
UnbalancedSets = false // You might think this should be set to true, but you'd be wrong
};
}

Expand Down

0 comments on commit ecd3ef8

Please sign in to comment.