I'd like to see a cost vs precision/recall comparison of using a RNN vs an LLM (local or API) for a problem like this.
My Python code is a neural network
51–60 of 75 posts
Re: My Python code is a neural network
#52> To model the state, we need to add three hidden layers to the network Why 3? And why use "h" for layer names?
Re: My Python code is a neural network
#53Re: My Python code is a neural network
#54Earlier quoted context omitted.
FYI, there are actually many algorithms going back longer than the neural network algorithm that have been proven to be a universal function approximator. Neural networks are certainly not the only and not the first to do so. There are quite a few that are actually much more appropriate for many cases than a neural network.
What other algorithms can do this and which situations would they be more useful than neural networks?
Re: My Python code is a neural network
#55Earlier quoted context omitted.
Not if you want to be a PhD/Researcher in ML, yes otherwise. Source: Working on ML/LLMs as a research engineer for the past 7 years, including for one of the FAANG's research lab, always wanted to take time to learn about RNN but never did and never needed to.
Oh, I'm sure plenty of recent PhDs don't know about RNNs. They've been dropped like a hot potato in the last 4-5 years.
Re: My Python code is a neural network
#56Re: My Python code is a neural network
#57Are RNNs completely subsumed by transformers? IE, can I forget about learning anything about how to work with RNNs, and instead focus on transformers?
Not if you want to be a PhD/Researcher in ML, yes otherwise. Source: Working on ML/LLMs as a research engineer for the past 7 years, including for one of the FAANG's research lab, always wanted to take time to learn about RNN but never did and never needed to.
Re: My Python code is a neural network
#58Earlier quoted context omitted.
FYI, there are actually many algorithms going back longer than the neural network algorithm that have been proven to be a universal function approximator. Neural networks are certainly not the only and not the first to do so. There are quite a few that are actually much more appropriate for many cases than a neural network.
What other algorithms can do this and which situations would they be more useful than neural networks?
Both are universal function approximators and both can be learned via gradient descent.
For the case where the function you want to learn actually is polynomial or periodic (respectively), these are better than neural networks.
Re: My Python code is a neural network
#59Just another thought experiment -> sometimes I imagine neural networks as a zip of the training data where compression algorithm is backpropagation. Just like we have programs which let us see what files inside the zip are -> I imagine there can be programs which will let us select certain inference path of the neural net and then see what data affected that => then we edit that data to fix our issues or add more data there => and we have live neural network debugging and reprogramming in the same way we edit compressed zips