Page 1 of 1

ANNSER

Posted: Fri Jun 03, 2016 8:39 am
by romilly
I've just launched https://github.com/annser/annser - A Neural Network Simulator for Education and Research. No code yet, but a statement of goals.

The code will be implemented in Dyalog APL.

Let me know if you would like to contribute.

Re: ANNSER

Posted: Sat Jun 04, 2016 11:30 am
by DanB|Dyalog
Hi,
I had a quick look. You say the ws is V15 and won't be able to be loaded in previous versions but can't you make a dyapp or dyalog file so people can boot with them?

If you put all your code into a program in a .dyalog file then anyone, from any version from 14 onwards will be able to use it.

Ex:
      ∇ launch
[1] ⎕SE.SALT.Load'/my/path/*'
[2] NNP ⍝ start Neural Network Program

]save launch /my/NN/code/ -m
\my\NN\code\launch.dyalog

and later on
      ⎕SE.SALT.Boot '/my/NN/code/launch.dyalog'


Dan