You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2019. It is now read-only.
Hi,
Nice code, just to be sure. Did you implemented a strategy for each Neural Net? Or just for feedfoward?
class InputHandler: def __init__(self, inputs): self.inputs = inputs if self.inputs.train: self.train(self.inputs.train) if self.inputs.btest: if self.inputs.btest == "test": self.run(TestStrategy) elif self.inputs.btest == "feedfoward": self.run(FeedforwardStrategy)Willian