I want to train my SVR (support vector regression) model using experimental data. The experimental data is as follows:-
Each experiment results in a similar to sinusoidal wave output with X axis being time, sampling interval being 0.1 sec and total 200 sec so each experiment gives 2000 points.
If I repeat the experiment 100 times I will have 100 similar results with the same sampling intervals and 2000 points.
Now my problem is that I will have around 100 CSV files . How will I train my SVR model using these CSV files since whatever code I have seen they usually input 1 CSV file per fitting.
Also what would be the test train data split procedure for this kind of problem.