Reverse engineering a neural network's clever solution to binary addition
1–10 of 160 posts
Re: Reverse engineering a neural network's clever solution to binary addition
#2Re: Reverse engineering a neural network's clever solution to binary addition
#3Re: Reverse engineering a neural network's clever solution to binary addition
#4Spotted one small typo: digital to audio converter should be digital to analog.
Re: Reverse engineering a neural network's clever solution to binary addition
#5Re: Reverse engineering a neural network's clever solution to binary addition
#6Very interesting. But I missed how the network handled the overflow. Spotted one small typo: digital to audio converter should be digital to analog.
Re: Reverse engineering a neural network's clever solution to binary addition
#7Interesting idea to reverse engineer the network. Are there other sources that have done this?
Re: Reverse engineering a neural network's clever solution to binary addition
#8Interesting idea to reverse engineer the network. Are there other sources that have done this?
Somewhat famously, you can plot the weight activations on a heatmap from a CNN for image processing and obtain a visual representation of the "filter" that the model has learned, which the model (conceptually) slides across the image until it matches something. For example: https://towardsdatascience.com/convolutional-neural-network-...
Many techniques don't look directly at the numbers in the model. Instead, they construct inputs to the model that attempt to trace out its behavior under various constraints. Examples include Partial Dependence, LIME, and SHAP.
Also, those "deep dream" images that were popular a couple years ago are generated by running parts of a deep NN model without running the whole thing.
Re: Reverse engineering a neural network's clever solution to binary addition
#9Awesome reverse engineering project. Next up: reverse engineer a NN's solution to Fourier Transform!
Re: Reverse engineering a neural network's clever solution to binary addition
#10Very interesting. But I missed how the network handled the overflow. Spotted one small typo: digital to audio converter should be digital to analog.