remove create_func....

This commit is contained in:
wls2002
2023-08-04 17:29:36 +08:00
parent c7fb1ddabe
commit 0e44b13291
29 changed files with 591 additions and 259 deletions

View File

@@ -9,9 +9,9 @@ from config import SubstrateConfig
@dataclass(frozen=True)
class NormalSubstrateConfig(SubstrateConfig):
input_coors: Tuple[Tuple[float]] = ((-1, -1), (0, -1), (1, -1))
hidden_coors: Tuple[Tuple[float]] = ((-1, 0), (0, 0), (1, 0))
output_coors: Tuple[Tuple[float]] = ((0, 1),)
input_coors: Tuple = ((-1, -1), (0, -1), (1, -1))
hidden_coors: Tuple = ((-1, 0), (0, 0), (1, 0))
output_coors: Tuple = ((0, 1),)
class NormalSubstrate(Substrate):