Auto Model Performance. Is it training, testing, or validation?

User: "Konradlk"
New Altair Community Member
Updated by Jocelyn

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "varunm1"
    New Altair Community Member
    Accepted Answer
    Updated by varunm1
    @Konradlk

    Here you go. I tried a couple of neural layers with different layer sizes and adding new layers. It looks like the best performance (in my trials) came with only one layer with 2 neurons. Adding more neurons or layers is reducing the Test performance as it seems overfitting.

    The process attached seemed optimal with RMSE of 0.023 and Squared Correlation of 0.5. You can try other models and compare them with a neural network to see if the RMSE is decreasing and Square correlation is increasing. Higher squared correlation and lower RMSE are better.

    Below are the testing data performances (RMSE & Squared Correlation respectively)
    NN with a single layer and  4 neuron Test 0.025 0.430
    NN with a single layer and  10 neuron Test 0.027 0.419
    NN with two-layer and 2 neurons in each layer 0.027  0.395
    NN with a single layer and 2 neurons test 0.023 0.50

    Hope this helps.