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.
ANNSER
Forum rules
This forum is for general chit-chat, not necessarily APL-related. However, it's not for spam or for offensive or illegal comments.
This forum is for general chit-chat, not necessarily APL-related. However, it's not for spam or for offensive or illegal comments.
Re: ANNSER
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:
and later on
Dan
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