adjust default parameter; successful run recurrent-xor example

This commit is contained in:
root
2024-07-11 10:57:43 +08:00
parent 4a631f9464
commit 9bad577d89
18 changed files with 118 additions and 136 deletions

View File

@@ -23,9 +23,9 @@ from ...utils import (
class DefaultMutation(BaseMutation):
def __init__(
self,
conn_add: float = 0.2,
conn_add: float = 0.1,
conn_delete: float = 0,
node_add: float = 0.2,
node_add: float = 0.1,
node_delete: float = 0,
):
self.conn_add = conn_add