I'm trying to create a regression model with MLP to predict a continuous variable, that is the income of a movie. My set of regressors is composed by around 15 binary variables (I've used one-hot-encoding on some categorical variables) and two continuous variables, the length in minutes of the movie and the budget of production of the movie. My questions are: 1) how should I treat these two continuous regressors? Is it enough to standardize them, or should I create bins and then use one-hot-encoding? If I standardize them, should I also standardize the rest of the binary regressors? 2) After taking care of the regressors, what should I do with the dependent variable? Should I standardize it or leave it as it is?
Sorry if my doubts seem stupid, but I'm just getting started with predictions. Thank you