M
M
Maxim Vlasov2021-10-07 11:02:29
Python
Maxim Vlasov, 2021-10-07 11:02:29

How to properly train a neural network model?

Hello! There is a certain array of numbers, for example: the numbers in the arrays are different (from 1 to 52), only 30 numbers in a different sequence. It is necessary to give a forecast for the next step with the probabilities of all 52 numbers falling out. For example: 1 - 10% 2 - 5% ... 52 - 0% Would LSTM work here? And how to properly parse the data?
data = [ [1,2,3,4], [5,6,7,8] ]

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vindicar, 2021-10-07
@Vindicar

First you need to decide if your numbers are random, or they are associated with other numbers in the group, or they form a time series. And if they form, then what should be the dependence - individual in each position in the group, or for the series as a whole.
For random numbers, you can only try to determine the distribution for each position.
For time series, you can try LSTM.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question