ctr_double_accessor.h 8.2 KB
Newer Older
Y
yaoxuefeng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
// Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#pragma once
#include <stdint.h>
#include <stdio.h>
#include <vector>
#include "paddle/fluid/distributed/common/registerer.h"
#include "paddle/fluid/distributed/ps.pb.h"
#include "paddle/fluid/distributed/ps/table/accessor.h"
#include "paddle/fluid/distributed/ps/table/sparse_sgd_rule.h"

namespace paddle {
namespace distributed {

class DownpourCtrDoubleAccessor : public ValueAccessor {
 public:
  struct DownpourCtrDoubleFeatureValue {
    /*
    float unseen_days;
    float delta_score;
    double show;
    double click;
    float embed_w;
    float embed_g2sum;
    float slot;
    float embedx_g2sum;
    std::vector<float> embedx_w;
    */
41 42 43 44
    static int Dim(int embedx_dim) { return 8 + embedx_dim; }
    static int DimSize(size_t dim, int embedx_dim) { return sizeof(float); }
    static int Size(int embedx_dim) {
      return (Dim(embedx_dim) + 2) * sizeof(float);
Y
yaoxuefeng 已提交
45
    }
46 47 48
    static int UnseenDaysIndex() { return 0; }
    static int DeltaScoreIndex() {
      return DownpourCtrDoubleFeatureValue::UnseenDaysIndex() + 1;
Y
yaoxuefeng 已提交
49
    }
50
    static int ShowIndex() {
51
      return DownpourCtrDoubleFeatureValue::DeltaScoreIndex() + 1;
Y
yaoxuefeng 已提交
52 53
    }
    // show is double
54 55
    static int ClickIndex() {
      return DownpourCtrDoubleFeatureValue::ShowIndex() + 2;
Y
yaoxuefeng 已提交
56 57
    }
    // click is double
58
    static int EmbedWIndex() {
59
      return DownpourCtrDoubleFeatureValue::ClickIndex() + 2;
Y
yaoxuefeng 已提交
60
    }
61 62
    static int EmbedG2SumIndex() {
      return DownpourCtrDoubleFeatureValue::EmbedWIndex() + 1;
Y
yaoxuefeng 已提交
63
    }
64
    static int SlotIndex() {
65
      return DownpourCtrDoubleFeatureValue::EmbedG2SumIndex() + 1;
Y
yaoxuefeng 已提交
66
    }
67
    static int EmbedxG2SumIndex() {
68
      return DownpourCtrDoubleFeatureValue::SlotIndex() + 1;
Y
yaoxuefeng 已提交
69
    }
70 71
    static int EmbedxWIndex() {
      return DownpourCtrDoubleFeatureValue::EmbedxG2SumIndex() + 1;
Y
yaoxuefeng 已提交
72
    }
73 74
    static float& UnseenDays(float* val) {
      return val[DownpourCtrDoubleFeatureValue::UnseenDaysIndex()];
Y
yaoxuefeng 已提交
75
    }
76 77
    static float& DeltaScore(float* val) {
      return val[DownpourCtrDoubleFeatureValue::DeltaScoreIndex()];
Y
yaoxuefeng 已提交
78
    }
79 80
    static double& Show(float* val) {
      return ((double*)(val + DownpourCtrDoubleFeatureValue::ShowIndex()))[0];
Y
yaoxuefeng 已提交
81
    }
82 83
    static double& Click(float* val) {
      return ((double*)(val + DownpourCtrDoubleFeatureValue::ClickIndex()))[0];
Y
yaoxuefeng 已提交
84
    }
85 86
    static float& Slot(float* val) {
      return val[DownpourCtrDoubleFeatureValue::SlotIndex()];
Y
yaoxuefeng 已提交
87
    }
88
    static float& EmbedW(float* val) {
89
      return val[DownpourCtrDoubleFeatureValue::EmbedWIndex()];
Y
yaoxuefeng 已提交
90
    }
91 92
    static float& EmbedG2Sum(float* val) {
      return val[DownpourCtrDoubleFeatureValue::EmbedG2SumIndex()];
Y
yaoxuefeng 已提交
93
    }
94 95
    static float& EmbedxG2Sum(float* val) {
      return val[DownpourCtrDoubleFeatureValue::EmbedxG2SumIndex()];
Y
yaoxuefeng 已提交
96
    }
97
    static float* EmbedxW(float* val) {
98
      return (val + DownpourCtrDoubleFeatureValue::EmbedxWIndex());
Y
yaoxuefeng 已提交
99 100 101 102 103 104 105 106 107 108
    }
  };
  struct DownpourCtrDoublePushValue {
    /*
    float slot;
    float show;
    float click;
    float embed_g;
    std::vector<float> embedx_g;
    */
109 110 111 112 113 114
    static int Dim(int embedx_dim) { return 4 + embedx_dim; }
    static int DimSize(int dim, int embedx_dim) { return sizeof(float); }
    static int Size(int embedx_dim) { return Dim(embedx_dim) * sizeof(float); }
    static int SlotIndex() { return 0; }
    static int ShowIndex() {
      return DownpourCtrDoublePushValue::SlotIndex() + 1;
Y
yaoxuefeng 已提交
115
    }
116 117
    static int ClickIndex() {
      return DownpourCtrDoublePushValue::ShowIndex() + 1;
Y
yaoxuefeng 已提交
118
    }
119
    static int EmbedGIndex() {
120
      return DownpourCtrDoublePushValue::ClickIndex() + 1;
Y
yaoxuefeng 已提交
121
    }
122 123
    static int EmbedxGIndex() {
      return DownpourCtrDoublePushValue::EmbedGIndex() + 1;
Y
yaoxuefeng 已提交
124
    }
125 126
    static float& Slot(float* val) {
      return val[DownpourCtrDoublePushValue::SlotIndex()];
Y
yaoxuefeng 已提交
127
    }
128 129
    static float& Show(float* val) {
      return val[DownpourCtrDoublePushValue::ShowIndex()];
Y
yaoxuefeng 已提交
130
    }
131 132
    static float& Click(float* val) {
      return val[DownpourCtrDoublePushValue::ClickIndex()];
Y
yaoxuefeng 已提交
133
    }
134
    static float& EmbedG(float* val) {
135
      return val[DownpourCtrDoublePushValue::EmbedGIndex()];
Y
yaoxuefeng 已提交
136
    }
137
    static float* EmbedxG(float* val) {
138
      return val + DownpourCtrDoublePushValue::EmbedxGIndex();
Y
yaoxuefeng 已提交
139 140 141 142 143 144 145 146 147
    }
  };
  struct DownpourCtrDoublePullValue {
    /*
    float show;
    float click;
    float embed_w;
    std::vector<float> embedx_w;
    */
148 149 150 151 152
    static int Dim(int embedx_dim) { return 3 + embedx_dim; }
    static int DimSize(size_t dim) { return sizeof(float); }
    static int Size(int embedx_dim) { return Dim(embedx_dim) * sizeof(float); }
    static int ShowIndex() { return 0; }
    static int ClickIndex() { return 1; }
153 154
    static int EmbedWIndex() { return 2; }
    static int EmbedxWIndex() { return 3; }
155 156
    static float& Show(float* val) {
      return val[DownpourCtrDoublePullValue::ShowIndex()];
Y
yaoxuefeng 已提交
157
    }
158 159
    static float& Click(float* val) {
      return val[DownpourCtrDoublePullValue::ClickIndex()];
Y
yaoxuefeng 已提交
160
    }
161
    static float& EmbedW(float* val) {
162
      return val[DownpourCtrDoublePullValue::EmbedWIndex()];
Y
yaoxuefeng 已提交
163
    }
164
    static float* EmbedxW(float* val) {
165
      return val + DownpourCtrDoublePullValue::EmbedxWIndex();
Y
yaoxuefeng 已提交
166 167 168 169
    }
  };
  DownpourCtrDoubleAccessor() {}
  virtual ~DownpourCtrDoubleAccessor() {}
170
  virtual int Initialize();
171 172
  // 初始化AccessorInfo
  virtual void InitAccessorInfo();
Y
yaoxuefeng 已提交
173
  // 判断该value是否进行shrink
174 175
  virtual bool Shrink(float* value);
  virtual bool NeedExtendMF(float* value);
Y
yaoxuefeng 已提交
176 177 178 179 180
  // 判断该value是否在save阶段dump,
  // param作为参数用于标识save阶段,如downpour的xbox与batch_model
  // param = 0, save all feature
  // param = 1, save delta feature
  // param = 3, save all feature with time decay
181
  virtual bool Save(float* value, int param) override;
Y
yaoxuefeng 已提交
182
  // update delta_score and unseen_days after save
183
  virtual void UpdateStatAfterSave(float* value, int param) override;
Y
yaoxuefeng 已提交
184 185 186 187 188 189
  // 判断该value是否保存到ssd
  virtual bool save_ssd(float* value);
  // virtual bool save_cache(float* value, int param, double
  // global_cache_threshold) override;
  // keys不存在时,为values生成随机值
  // 要求value的内存由外部调用者分配完毕
190
  virtual int32_t Create(float** value, size_t num);
Y
yaoxuefeng 已提交
191
  // 从values中选取到select_values中
192
  virtual int32_t Select(float** select_values, const float** values,
Y
yaoxuefeng 已提交
193 194
                         size_t num);
  // 将update_values聚合到一起
195
  virtual int32_t Merge(float** update_values,
Y
yaoxuefeng 已提交
196 197
                        const float** other_update_values, size_t num);
  // 将update_values聚合到一起,通过it.next判定是否进入下一个key
198
  // virtual int32_t Merge(float** update_values, iterator it);
Y
yaoxuefeng 已提交
199
  // 将update_values更新应用到values中
200
  virtual int32_t Update(float** values, const float** update_values,
Y
yaoxuefeng 已提交
201
                         size_t num);
202 203 204
  virtual std::string ParseToString(const float* value, int param) override;
  virtual int32_t ParseFromString(const std::string& str, float* v) override;
  virtual bool CreateValue(int type, const float* value);
Y
yaoxuefeng 已提交
205
  //这个接口目前只用来取show
206
  virtual float GetField(float* value, const std::string& name) override {
Y
yaoxuefeng 已提交
207 208
    CHECK(name == "show");
    if (name == "show") {
209
      return (float)DownpourCtrDoubleFeatureValue::Show(value);
Y
yaoxuefeng 已提交
210 211 212 213 214 215 216 217
    }
    return 0.0;
  }
  // DEFINE_GET_INDEX(DownpourCtrDoubleFeatureValue, show)
  // DEFINE_GET_INDEX(DownpourCtrDoubleFeatureValue, click)
  // DEFINE_GET_INDEX(DownpourCtrDoubleFeatureValue, embed_w)
  // DEFINE_GET_INDEX(DownpourCtrDoubleFeatureValue, embedx_w)
 private:
218
  double ShowClickScore(double show, double click);
Y
yaoxuefeng 已提交
219 220 221 222 223 224 225 226 227

 private:
  SparseValueSGDRule* _embed_sgd_rule;
  SparseValueSGDRule* _embedx_sgd_rule;
  float _show_click_decay_rate;
  int32_t _ssd_unseenday_threshold;
};
}  // namespace distributed
}  // namespace paddle