hello , do I need to make some normalize for my da...
# neural-forecast
m
hello , do I need to make some normalize for my data before using model from neural forecast models ?
m
this will depend on your dataset and model. I like to run an experiment without, or at least very little, transformations first
m
any recommendation to some transformations if you deal with this before?
m
which model are you using
m
i am trying different models neural forecast and mlforecast
i mean when i should make transformations how can i get the knowledge from my data ?this data need or doesn't need like this
c
Hi @marah othman. You dont need to normalize the data before send it to the models. The models of both libraries have inbuilt scalers that take care of the normalization. For
neuralforecast
, you only need to specify the
scaler_type
in the initialization of the model (the recommended scalers are
robust
and
minmax1
m
that nice thank you