Search found 222 matches

by Luxan
Feb 28, 2024 20:10
Forum: Libraries & Headers
Topic: ODE 0.14 Windows and Linux 32/64-bit Jan 27, 2017
Replies: 2
Views: 1836

Re: ODE 0.14 Windows and Linux 32/64-bit Jan 27, 2017

Elsewhere, I've been using an ODE solver that returns an answer that contains the erfi(z)
function, where z might be complex.

This function can return quite large numbers even for moderately large values of z, do you know of a
way to avoid, or manage, this ?
by Luxan
Jan 23, 2024 0:26
Forum: Community Discussion
Topic: Programming with Chatgpt
Replies: 21
Views: 4943

Re: Programming with Chatgpt

Yes, however what type of A.I; a rather large and power hungry variety or a nimble edge computing device. Once you've trained a Neural Network , for instance, then you're able to use the known weights in a very power efficient way. Even if a certain set of weights doesn't meet all of your requiremen...
by Luxan
Jan 21, 2024 23:18
Forum: Community Discussion
Topic: Programming with Chatgpt
Replies: 21
Views: 4943

Re: Programming with Chatgpt

What should the FreeBasic community use ChatGPT, or similar, for ? There's some low lying fruit; like developing a cross platform GUI designer, with a myriad of features, including embedded animated graphics. Translating libraries from other languages. Hopefully we don't need a nuclear fission react...
by Luxan
Nov 11, 2023 5:49
Forum: Sources, Examples, Tips and Tricks
Topic: 3D Geometry , basics
Replies: 50
Views: 13681

Re: 3D Geometry , basics

A little graphics plotting program I've been writing, with the help [65%] of ChatGPT and hindrance [30%]; my contribution is indeterminate. To get specular reflection from the surface of the [sinc] function, the calculation of normal's is most likely required. ' ' ' Freebasic : luxan ' sciwiseg@gmai...
by Luxan
Nov 02, 2023 22:20
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

Star Trek "The search for Spock"

Scotty:
The more they overthink the plumbing, the easier it is to stop up the drain.


Kruge:
No tricks, Kirk. You have one minute.

Luxan
You have ....
by Luxan
Oct 31, 2023 21:34
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

So, we've explored your development of the switchnet 4 , from the initial concept through to code that produces sensible results. If I go back to the original illustration of switchnet 4, where the standard fast WHT is shown, and I use that in the code will I retain the functionality of your evolved...
by Luxan
Oct 15, 2023 5:46
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

Single-threaded parallelisation, using Freebasic , sounds ambitious .
by Luxan
Oct 12, 2023 20:40
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

Thank you for informing me. If possible, I keep to the readily available functions and operators of the underlying language, it's generally easier to determine what's going on with the code that way. Also FreeBasic has quite good documentation. During the development phase I Iterate through many cod...
by Luxan
Oct 10, 2023 0:24
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

Your Sparse Net certainly incorporates a few extras, like the anti aliased line drawing.

At present my mind is probably over fitted to previous knowledge and pruning new
knowledge; a long learning curve is predicted.

At least until such time as there are fewer out standing tasks to complete.
by Luxan
Oct 02, 2023 6:00
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

It's option 0: 0 .

SparseNet, is this new to the Freebasic forum ?
by Luxan
Oct 02, 2023 1:17
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

It's just your option 1. 0, leaves me puzzled; do you mean to dynamically
prune the NN connections .

I've noticed my time stamp, and yours, we appear to be on opposite sides
of the world.
by Luxan
Oct 01, 2023 23:45
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

You're being whimsical , right ? There are a few things I'm attempting to do , one in particular though tends to preempt the others; home renovation . Eventually I'll bring all of the bits and pieces of Switch nets together into, hopefully, a functioning whole that I , and anyone else, can comprehend.
by Luxan
Oct 01, 2023 4:11
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

I updated some code I'd been using previously to examine the WHT. With L=4, N=16, hs_pow2_shl = 2, it's apparent that the first two passes are skipped and the remaining are evaluated. Is setting hs_pow2_shl = 3, ever considered ? Elsewhere I examined this via your SwNet4.recall(), with certain piece...
by Luxan
Sep 30, 2023 23:16
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

For the last, illustrated, example pow2_shl = 1, within your SwNet4.recall it's const pow2_shl = 2 .
Hence N>8 is required before the last pass[es] of the wht will be evaluated .
by Luxan
Sep 30, 2023 1:17
Forum: General
Topic: Switch Net 4 neural network
Replies: 54
Views: 7155

Re: Switch Net 4 neural network

For the wht, where multiplications aren't involved or twiddle factors, your shorter sub using while statements is a useful approach. However being able to compare this to the more traditional representation helps illuminate what's being attempted. Now, so far, I've illustrated the situation for an 8...