neural-networkartificial-intelligencelayerpredictionbiological-neural-network

ANN Shape for Sale Prediction


The inputs (features) and expected output for my ANN are these:

I need to predict the sale of a product for a certain month in a certain year. How many layers and how many neurons on there layers should I put?


Solution

  • There's one suggestion in here: https://ai.stackexchange.com/questions/3292/ann-shape-for-sale-prediction

    But I finally implemented the network as LMS (least mean square) neural network with:

    And instead of using 3 feature inputs, I use the sale of 4 previous months of a product as input. The prediction curve is rather flat than it's supposed to be but at least it is working.