Search found 199 matches

by greenink
Feb 22, 2016 2:01
Forum: Sources, Examples, Tips and Tricks
Topic: Neural net comparison (64 bit Linux)
Replies: 1
Views: 609

Neural net comparison (64 bit Linux)

Comparison between 2 options with a type of neural net. In one of them I've added in passive switching to see what will happen. I'll have to determine if it can help or do anything interesting: https://drive.google.com/file/d/0BwsgMLjV0BnhcTZuVkpKOFp3ZzA/view?usp=sharing You will need the freeimage ...
by greenink
Feb 10, 2016 2:28
Forum: Sources, Examples, Tips and Tricks
Topic: Symbols (64 bit Linux only)
Replies: 0
Views: 942

Symbols (64 bit Linux only)

I hesitate to post this, though you can view it as a test for version 1.05. There is nothing new except a fresh perspective. The idea is to convert an image or audio into a bunch of symbols that you can process like text. I'm not sure what I will do with it. I have some decision tree things I can do...
by greenink
Feb 07, 2016 4:19
Forum: Sources, Examples, Tips and Tricks
Topic: RP Bloom filter
Replies: 0
Views: 876

RP Bloom filter

I have to admit this isn't as selective as I thought it would be on images. I can probably improve selectivity by multiplying 2 random projections together and see if that helps. #include "crt.bi" 'FREEIMAGE to use the FreeImage library (which you must install yourself). 'FREEBASICBMP to u...
by greenink
Jan 29, 2016 1:15
Forum: Sources, Examples, Tips and Tricks
Topic: Hashtable
Replies: 0
Views: 1132

Hashtable

'Fixed sized hashtable based on the Robin Hood algorithm. 'Accepts (most of) the FreeBasic primative types. 'Set types required in the macro #macro robinhoodmacro(typename,keytype,valuetype) type rh4item hash as ulongint key as keytype value as valuetype end type type typename count as ulongint 'to...