@@ -16,9 +16,9 @@ public class AdActionFeature {
}
private double bucketRatioFeature(Double key) {
- long bucket = Math.round(Math.log((key + 1) * 1000));
- if (bucket > 1000)
- bucket = 1000;
+ long bucket = Math.round(Math.log((key + 1) * 50));
+ if (bucket > 50)
+ bucket = 50;
return (double) bucket;