|
@@ -61,7 +61,7 @@ public class XGBCalibrationModel extends Model {
|
|
|
for (Table.Cell<Double, Double, Double> cell : table.cellSet()) {
|
|
|
double rowKey = cell.getRowKey();
|
|
|
double columnKey = cell.getColumnKey();
|
|
|
- if (rowKey <= score & score < columnKey) {
|
|
|
+ if (rowKey < score & score <= columnKey) {
|
|
|
LOGGER.info("score {} in {} - {} , value is {}", score, rowKey, columnKey, cell.getValue());
|
|
|
return cell.getValue();
|
|
|
}
|