In my project indoor location I use SVR Regression.
I need to train SVR offline using x,y location and received signal strength WiFi (to build fingerprint database) for training in my location, and build a model after that predict a new location for new signal strength will come online phase.
In SVR Code published predict function in SVR takes an array of numbers as input and returns ONE numeric value as output. But I have two instances, for X and Y.
public double predict(T x);{
}
My question :
Can I train two dimensional x,y together or is each coordinate considered as one output of SVR and trained independently ?