hfawaz / bigdata18

Transfer learning for time series classification
http://germain-forestier.info/src/bigdata2018/
GNU General Public License v3.0
379 stars 68 forks source link

Combined weights of all models #7

Closed talhaanwarch closed 4 years ago

talhaanwarch commented 4 years ago

Is not is there any combined data set model. I am looking to classify EEG using transfer learning. But my query is that, all of your model are trained on seprate data set and have seprate weights. Is not there any sort of cobined weight and architecture. Like we have in computer vision.

hfawaz commented 4 years ago

If I understood correctly, I would recommend checking out the work on domain adaptation maybe or semi-supervised learning , maybe this is a starting point.

forestier commented 4 years ago

Hi @talhaanwarch,

Thank you for your interest in our work.

Unlike computer vision, we do not have repositories of millions of annotated time series. Thus, the creation of a unique pre-trained model suitable for all applications is still an open issue for time series classification.

My advice would be use our method to compare your dataset to available UCR datasets (as described in our paper https://arxiv.org/abs/1811.01533) and to fine tune the most similar one with your data. My first guess would be the three ECG datasets of the UCR archive.

Let us know how it goes.

Best regards,

Germain