jxx123 / fireTS

A python multi-variate time series prediction library working with sklearn
MIT License
93 stars 35 forks source link

Prediction and forecast for Multiple input multipleoutput system #10

Open prajwalthakur opened 3 years ago

prajwalthakur commented 3 years ago

I know that there is a way for training a MIMO system by training multiple MISO systems and get multiple models. But is there any way to get only a single model?

jxx123 commented 3 years ago

As far as I know, you can construct a single neural network with multiple outputs to do that. fireTS does not support a single model with multiple outputs.

I think the major difference between multiple MISO models and single MIMO model is that the single MIMO model shares part of the parameters for the multiple outputs, which is not considered when I wrote fireTS package.

prajwalthakur commented 3 years ago

yes thats true "single MIMO model shares part of the parameters for the multiple outputs". I guess fireTS does not support the generation of MIMO training and test data set? Right now I guess it only support generation training and test data for MISO system.

jxx123 commented 3 years ago

Yes, the package only supports MISO case.