Neural Nettwork (ANN) Extension - Printable Version +- Small Basic Forum (https://litdev.uk/mybb) +-- Forum: Small Basic (https://litdev.uk/mybb/forumdisplay.php?fid=1) +--- Forum: Extensions (https://litdev.uk/mybb/forumdisplay.php?fid=3) +--- Thread: Neural Nettwork (ANN) Extension (/showthread.php?tid=83) |
RE: Neural Nettwork (ANN) Extension - jrmrhrb00 - 10-02-2024 Z-S, I did get it loaded. Now, I have to figure out how to use it! Thanks, JR RE: Neural Nettwork (ANN) Extension - jrmrhrb00 - 10-03-2024 (10-01-2024, 10:11 PM)jrmrhrb00 Wrote: QDZM107.000 LitDev, Had to use quote to bring this page forward so you could see my request after updating the page. Still learning how to use this software. JR RE: Neural Nettwork (ANN) Extension - litdev - 10-03-2024 JR, Yes those instructions seem right. RE: Neural Nettwork (ANN) Extension - jrmrhrb00 - 10-03-2024 LitDev, Thanks for looking at it! JR I think that this is the best neural network example that you have created with small basic. I am still trying to learn everything I can about it. You always surprise me with some way of doing something that I would have never thought of. You do an exceedingly great job with your code writing. Thanks, JR RE: Neural Nettwork (ANN) Extension - jrmrhrb00 - 10-06-2024 LitDev, In program qdzm107.000 you have the following in the code: data = "X" data = data+(R/255)+LDText.LF+(G/255)+LDText.LF+(B/255)+LDText.LF+((1+Cos)/2)+LDText.LF+((1+Sin)/2)+LDText.LF+(S)+LDText.LF+(L) data = Text.GetSubTextToEnd(data,2) You start off the data with an x and later remove it. What is the purpose of doing that? Thanks, JR RE: Neural Nettwork (ANN) Extension - Scout - 10-06-2024 Hi JR, I think the parser needs a string as the first variable in order to append the following expressions as a string. Otherwise it would add the expressions as floating point numbers. Best regards Scout RE: Neural Nettwork (ANN) Extension - jrmrhrb00 - 10-09-2024 LitDev, textwindow.Left = (10+GW.Width)*LDGraphicsWindow.MouseXScale I have read the verbage in the intellisense probably a 100 times and it just doesn't make any sense to me for mousex. Could you explain what is being done in layman's terms? I know it has something to do with the desktop and why mousex? I'm still trying to grasp everything that you put in the QDZM107.000 program. Thanks, JR RE: Neural Nettwork (ANN) Extension - litdev - 10-09-2024 JR, This is due to the different scaling used with a GraphicsWindow and the screen. Its kind of hard to explanin in a sentence, but try playing with the commands: Desktop.Width GraphicsWindow.Width GraphicsWindow.Left TextWindow.Left GraphicsWindow.MouseX Mouse.MouseX See which are scaled with GraphicsWindow scaling and which are scaled with screen scaling and find that LDGraphicsWindow.MouseXScale is the scaling conversion between them. Condider the following: Code: GraphicsWindow.Left = 0 RE: Neural Nettwork (ANN) Extension - jrmrhrb00 - 10-09-2024 LitDev, I think I understand it, but the wording in the intellisense is confusing: Mouse.X = MouseXOffset + MouseXScale * GraphicsWindow.MouseX the rest of the wording is OK: Scaling of GraphicsWindow to Desktop coordinates. JR |