My Python code is a neural network
blog.gabornyeki.com
My Python code is a neural network
1–10 of 75 posts
Re: My Python code is a neural network
#2I thought it was replacing bits of ANN with custom python functions.
Re: My Python code is a neural network
#3Re: My Python code is a neural network
#4It's great that you know NN well enough to fold it into regular work. But think of all us poor regular developers! Who now have to grapple with:
- an unfamiliar architecture
- uncertainty / effectively non-deterministic results in program flow
Re: My Python code is a neural network
#5[flagged]
Re: My Python code is a neural network
#6This seems to be a state machine that is somehow learned. The article could benefit from a longer synopsis and "Python" does not appear to be relevant at all. Learning real Python semantics would prove quite difficult due to the nature of the language (no standard, just do as CPython does).
Re: My Python code is a neural network
#7Re: My Python code is a neural network
#8Question:
> To model the state, we need to add three hidden layers to the network.
How did you determine that it would be three hidden layers? Is it a consequence of the particular rule you were implementing, or is that generally how many layers you would use to implement a rule of this shape (using your architecture rather than Elman's - could we use fewer layers with Elman's?)?
Re: My Python code is a neural network
#9This is new to me, and therefore bad and scary. It's great that you know NN well enough to fold it into regular work. But think of all us poor regular developers! Who now have to grapple with: - an unfamiliar architecture - uncertainty / effectively non-deterministic results in program flow
Uncertainty is probably the better word of the two, but I feel like there should be a different term.
Re: My Python code is a neural network
#10You also touch on something in this article that I've found quite powerful: putting things in terms of digesting an input string character-by-character. Then, we offload all of the reasoning logic to our algorithm. We write very thin i/o logic, and then the algorithm does the rest.