Re: Neural networks in VBA
Hi
I am interested in NN.
I have implemented a simple one in VB6 that can evolve using backpropagation or Neuroevolution. (all from scratch)
https://www.vbforums.com/showthread....Neural-Network
I would like to try yours because I think it is more advanced (Deep). And maybe it could also be used for "style transfer" on images.
I have (sort of) never worked in VBA, so, do you have a VB6 version ?
Re: Neural networks in VBA
Quote:
Originally Posted by
reexre
Hi
I am interested in NN.
I have implemented a simple one in VB6 that can evolve using backpropagation or Neuroevolution. (all from scratch)
https://www.vbforums.com/showthread....Neural-Network
I would like to try yours because I think it is more advanced (Deep). And maybe it could also be used for "style transfer" on images.
I have (sort of) never worked in VBA, so, do you have a VB6 version ?
Hi,
For me it is the opposite -- I have never worked with VB6. I do rely on saving models to worksheets and reading data from worksheets, so I guess it won't work without modifications.
I only have very basic layers to put together a MLP, but by its modular design it's only a matter of adding new layer classes...
(Currently I'm trying to integrate an extra dll for vector math (Intel Performance Primitives) to speed things up, so I ended up rewriting a few thing.)
For style transfer on images you need at least convolutional layers + pooling layers, I think. Plus, a way to read images from disc, with color channels and everything.
It's possible, but not really what I intended it for:)
Btw, curious to have a peek at your code, but cant seem to find any source...
Re: Neural networks in VBA
Thank you for reply
Quote:
Originally Posted by
drgs
...
Btw, curious to have a peek at your code, but cant seem to find any source...
it's in the #2 post NNandGA.zip
Re: Neural networks in VBA
Quote:
Originally Posted by
drgs
If you guys have some experience from Pytorch or other major deep learning frameworks, and have some time to spare, give my simple neural network project (maybe the first one in VBA?) a test run. Big plus if you can test it with OpenBLAS dll which you put inside the same folder as the Excel workbook and edit the dll path in BlasFunctions module -- OpenBLAS provides prebuilt binary packages here
https://sourceforge.net/projects/ope...files/v0.3.27/:
https://github.com/personalityson/VBANN
Interesting approaching...
I try to test the openBlas option but it don't work or I couldn't do it to work. :o
The last procedure before crash is this
https://imgur.com/a/R52H6eK
What I'm missing? :ehh:
I'm using Office 2019 on Windows 7 x86