more testing
Some checks failed
CI / test-clj (push) Has been cancelled
CI / test-cljs (push) Has been cancelled

This commit is contained in:
Rowan Torbitzky-Lane 2025-03-02 00:45:57 -06:00
parent 83cc26593a
commit 9c671afc4a
2 changed files with 4 additions and 3 deletions

View File

@ -115,7 +115,7 @@
:training-data (:train train-and-test-data) :training-data (:train train-and-test-data)
:testing-data (:test train-and-test-data) :testing-data (:test train-and-test-data)
:max-generations 300 :max-generations 300
:population-size 1000 :population-size 20
:max-initial-plushy-size 100 :max-initial-plushy-size 100
:step-limit 200 :step-limit 200
:parent-selection :lexicase :parent-selection :lexicase

View File

@ -18,6 +18,7 @@
[propeller.push.interpreter :as interpreter] [propeller.push.interpreter :as interpreter]
[propeller.push.state :as state] [propeller.push.state :as state]
[propeller.problems.regression.integer-regression :as regression] [propeller.problems.regression.integer-regression :as regression]
[propeller.problems.string-classification :as sc]
[propeller.downsample :as downsample] [propeller.downsample :as downsample]
)) ))
@ -99,7 +100,7 @@
:population-size 50 :population-size 50
:max-initial-plushy-size 100 :max-initial-plushy-size 100
:step-limit 200 :step-limit 200
:parent-selection :tournament :parent-selection :lexicase
:tournament-size 5 :tournament-size 5
:umad-rate 0.01 :umad-rate 0.01
:variation {:umad 1.0 :variation {:umad 1.0
@ -113,7 +114,7 @@
:training-data (:train sc/train-and-test-data) :training-data (:train sc/train-and-test-data)
:testing-data (:test sc/train-and-test-data) :testing-data (:test sc/train-and-test-data)
:max-generations 500 :max-generations 500
:population-size 500 :population-size 15
:max-initial-plushy-size 100 :max-initial-plushy-size 100
:step-limit 200 :step-limit 200
:parent-selection :lexicase :parent-selection :lexicase