add downsample

This commit is contained in:
Rowan Torbitzky-Lane 2025-02-25 18:47:50 -06:00
parent 53c490b3b3
commit 2f6675e9f5
2 changed files with 8 additions and 0 deletions

View File

@ -63,6 +63,7 @@ library
, HushGP.GP
, HushGP.GP.PushArgs
, HushGP.GP.Variation
, HushGP.GP.Downsample
, HushGP.Problems.IntegerRegression

View File

@ -0,0 +1,7 @@
module HushGP.GP.Downsample where
import HushGP.State
import HushGP.Genome
updateCaseDistances :: [Individual] -> ([[Gene]], [Gene]) -> ([[Gene]], [Gene]) -> String -> Double -> ([[Gene]], [Gene])
updateCaseDistances evaledPop downsampleData trainingData informedDownsamplingType solutionThreshold = undefined