Dzandaa

Results 20 comments of Dzandaa

I have the same problem with Brightness, Contrast, Saturation, etc... The last command reset the other.

Hi, Thank you, I missed it :) Rate is from 0 to 100, right? B->

Hi again, I have a directory with 8 sub-directories containing images (64x64) of faces expressions. I try to train this network: ` VGG13NN := TNNet.Create; // VGG13 Custom Net VGG13NN.AddLayer([...

[VGG13 Net.pdf](https://github.com/joaopauloschuler/neural-api/files/12488048/VGG13.Net.pdf) This is the model I tried to reproduce. B->

Hi, Still testing :) When you convert RGB images to TNeuralFloat, what is the range of NeuralFloat? RGB = 0..255 NeuralFloat =? Thank you. B->

Sorry, I didn't see that there is a NeuronalInputToRgbImg function :) I've go some good results using your model. I think mine is to big for my computer and graphic...

Hi, Thank you for the links. I've already tested "Plant leaf Disease" and "Colorectal" ![NetworkTest](https://github.com/joaopauloschuler/neural-api/assets/33924361/b51e3ca9-0348-4373-be52-83e58a2c1259) What I try to do with CAI, is to detect Atoms in a Spectrum The...

Hi Joao, Thank you. We are testing CAI vs Python, for speed, memory consumption, ease of installation. Work in progress :) B->

Hi Joao in TNNetGet2VolumesProc = procedure(Idx: integer; ThreadId: integer; pInput, pOutput: TNNetVolume) of object What is the meaning of Idx? And This is my GetTrainingData Code for a Denoiser: //...

I tried this: Cores: Integer; Cores := {$IFDEF UNIX}GetSystemThreadCount{$ELSE}GetCPUCount{$ENDIF}; NeuralFit.MaxThreadNum := Cores; And add in Project->Options->Custom Options: -dHASTHREADS Is this relevant? Also, what is the range of NeuralFit.CurrentTrainingError? I try...