use of com.airbnb.aerosolve.core.Example in project aerosolve by airbnb.
the class ModelTransformsTest method makeExample.
private Example makeExample() {
Example example = new Example();
example.setContext(makeFeatureVector("guest_loc", 1.0, 2.0));
example.addToExample(makeFeatureVector("host_loc", 3.1, 4.2));
example.addToExample(makeFeatureVector("host_loc", 5.3, 6.4));
return example;
}
Aggregations