quick question about what this class is returning
public static class IndexLinearizer {
int numFeatures;
int numLabels;
public IndexLinearizer(int numFeatures, int numLabels) {
this.numFeatures = numFeatures;
this.numLabels = numLabels;
}
The variable IndexLinearizerer, what does it return?
Say for example numFeatures = 5 and numLabels = 2.
Does it return two objects, such as = 5, 2.
Sorry folks I'm really new to Java but and familiar with Python. Thanks in advance for any help.