add args record_episode in rl tasks, with related test "test_record_episode.ipynb";

add args return_data in func_fit tasks.
This commit is contained in:
wls2002
2024-05-30 17:05:56 +08:00
parent 20320105e6
commit cd92f411dc
8 changed files with 512 additions and 22 deletions

View File

@@ -20,14 +20,14 @@ if __name__ == "__main__":
output_transform=Act.sigmoid, # the activation function for output node
mutation=DefaultMutation(
node_add=0.05,
conn_add=0.2,
conn_add=0.05,
node_delete=0,
conn_delete=0,
),
),
pop_size=10000,
species_size=10,
compatibility_threshold=3.5,
pop_size=100,
species_size=20,
compatibility_threshold=2,
survival_threshold=0.01, # magic
),
),