-
Notifications
You must be signed in to change notification settings - Fork 200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Equivalent to Dropout #117
Comments
Hello! Have you tried Glad to help. |
Hi, 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: ` TNNetConvolutionReLU.Create({Features=}64, {FeatureSize=}3, {Padding=}1, {Stride=}1), TNNetConvolutionReLU.Create({Features=}128, {FeatureSize=}3, {Padding=}1, {Stride=}1), TNNetConvolutionReLU.Create({Features=}256, {FeatureSize=}3, {Padding=}1, {Stride=}1), TNNetConvolutionReLU.Create({Features=}256, {FeatureSize=}3, {Padding=}1, {Stride=}1), TNNetFullConnectReLU.Create(1024), TNNetLayerFullConnect.Create(8), VGG13NN.DebugStructure(); `
end; And I train with this code: ` VGG13Fit.OnAfterEpoch := @Self.OnAfterEpoch; if HasOpenCL then VGG13Fit.Fit(VGG13NN, ImgTrainingVolumes, ImgValidationVolumes, ImgTestVolumes, {NumClasses=}8, {batchsize=}SEBatch.Value, {epochs=}SEEpoch.Value); IsFitting := False; Nothing happens, Never go to OnStart, OnAfterStep, OnAfterEpoch The test use 1332 images. Any Idea? Thank you. B-> |
Just for debugging, try to add |
I would also recommend giving a try to this model:
This a model that I used in a number of experiments at: |
You can increase |
This is the model I tried to reproduce. B-> |
@Dzandaa , I'm curious if you had a chance to test with smaller number of threads and / or the other simpler model above. |
Hi, Still testing :) When you convert RGB images to TNeuralFloat, what is the range of NeuralFloat? RGB = 0..255 NeuralFloat =? Thank you. B-> |
@Dzandaa , absolute many thanks for sharing this beautiful screenshot!!! In the case that you haven't looked at, I highly recommend having a look at: In the case that you would like to try a more complex model, you could start with:
Then, you could continue with a "RESNET" style: For using the trained NN in production, you can follow the example from (if you like): It would be:
|
Hello,
Is there and equivalent to "dropout" in CAI?
Thank you.
B->
The text was updated successfully, but these errors were encountered: