|
@@ -44,9 +44,9 @@ public class ThompsonSamplingModel extends Model {
|
|
|
|
|
|
public void putFeature(Map<Long, AdActionFeature> model, Long key, Double expose, Double click, Double conversation) {
|
|
|
AdActionFeature adActionFeature = new AdActionFeature();
|
|
|
- adActionFeature.setOriginAdView(expose);
|
|
|
- adActionFeature.setOriginAdClick(click);
|
|
|
- adActionFeature.setOriginAdConversion(conversation);
|
|
|
+ adActionFeature.setAdView(expose);
|
|
|
+ adActionFeature.setAdClick(click);
|
|
|
+ adActionFeature.setAdConversion(conversation);
|
|
|
model.put(key, adActionFeature);
|
|
|
}
|
|
|
|