sparse_accessor.cc 11.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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.

#include "paddle/fluid/distributed/ps/table/sparse_accessor.h"
16

17
#include <gflags/gflags.h>
18

19 20 21 22 23 24
#include "glog/logging.h"
#include "paddle/fluid/string/string_helper.h"

namespace paddle {
namespace distributed {

25
int SparseAccessor::Initialize() {
26 27
  auto name = _config.embed_sgd_param().name();
  _embed_sgd_rule = CREATE_PSCORE_CLASS(SparseValueSGDRule, name);
28
  _embed_sgd_rule->LoadConfig(_config.embed_sgd_param(), 1);
29 30 31

  name = _config.embedx_sgd_param().name();
  _embedx_sgd_rule = CREATE_PSCORE_CLASS(SparseValueSGDRule, name);
32 33
  _embedx_sgd_rule->LoadConfig(_config.embedx_sgd_param(),
                               _config.embedx_dim());
34

35
  sparse_feature_value.embed_sgd_dim = _embed_sgd_rule->Dim();
36
  sparse_feature_value.embedx_dim = _config.embedx_dim();
37
  sparse_feature_value.embedx_sgd_dim = _embedx_sgd_rule->Dim();
38 39
  _show_click_decay_rate = _config.ctr_accessor_param().show_click_decay_rate();

40
  InitAccessorInfo();
41 42 43
  return 0;
}

44 45 46
void SparseAccessor::InitAccessorInfo() {
  _accessor_info.dim = sparse_feature_value.Dim();
  _accessor_info.size = sparse_feature_value.Size();
47
  auto embedx_dim = _config.embedx_dim();
48 49 50 51 52 53
  _accessor_info.select_dim = 1 + embedx_dim;
  _accessor_info.select_size = _accessor_info.select_dim * sizeof(float);
  _accessor_info.update_dim = 4 + embedx_dim;
  _accessor_info.update_size = _accessor_info.update_dim * sizeof(float);
  _accessor_info.mf_size =
      (embedx_dim + sparse_feature_value.embedx_sgd_dim) * sizeof(float);
54 55
}

56
bool SparseAccessor::Shrink(float* value) {
57 58 59 60 61
  auto delete_after_unseen_days =
      _config.ctr_accessor_param().delete_after_unseen_days();
  auto delete_threshold = _config.ctr_accessor_param().delete_threshold();

  // time_decay first
62 63
  sparse_feature_value.Show(value) *= _show_click_decay_rate;
  sparse_feature_value.Click(value) *= _show_click_decay_rate;
64 65

  // shrink after
66 67 68
  auto score = ShowClickScore(sparse_feature_value.Show(value),
                              sparse_feature_value.Click(value));
  auto unseen_days = sparse_feature_value.UnseenDays(value);
69 70 71 72 73 74
  if (score < delete_threshold || unseen_days > delete_after_unseen_days) {
    return true;
  }
  return false;
}

75
bool SparseAccessor::Save(float* value, int param) {
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
  auto base_threshold = _config.ctr_accessor_param().base_threshold();
  auto delta_threshold = _config.ctr_accessor_param().delta_threshold();
  auto delta_keep_days = _config.ctr_accessor_param().delta_keep_days();
  if (param == 2) {
    delta_threshold = 0;
  }
  switch (param) {
    // save all
    case 0: {
      return true;
    }
    // save xbox delta
    case 1:
    // save xbox base
    case 2: {
91 92 93 94
      if (ShowClickScore(sparse_feature_value.Show(value),
                         sparse_feature_value.Click(value)) >= base_threshold &&
          sparse_feature_value.DeltaScore(value) >= delta_threshold &&
          sparse_feature_value.UnseenDays(value) <= delta_keep_days) {
95 96
        // do this after save, because it must not be modified when retry
        if (param == 2) {
97
          sparse_feature_value.DeltaScore(value) = 0;
98 99 100 101 102 103 104 105 106
        }
        return true;
      } else {
        return false;
      }
    }
    // already decayed in shrink
    case 3: {
      // do this after save, because it must not be modified when retry
107
      // sparse_feature_value.UnseenDays(value)++;
108 109 110 111 112 113 114 115 116 117 118
      return true;
    }
    // save revert batch_model
    case 5: {
      return true;
    }
    default:
      return true;
  }
}

119
void SparseAccessor::UpdateStatAfterSave(float* value, int param) {
120 121 122 123 124 125 126 127
  auto base_threshold = _config.ctr_accessor_param().base_threshold();
  auto delta_threshold = _config.ctr_accessor_param().delta_threshold();
  auto delta_keep_days = _config.ctr_accessor_param().delta_keep_days();
  if (param == 2) {
    delta_threshold = 0;
  }
  switch (param) {
    case 1: {
128 129 130 131 132
      if (ShowClickScore(sparse_feature_value.Show(value),
                         sparse_feature_value.Click(value)) >= base_threshold &&
          sparse_feature_value.DeltaScore(value) >= delta_threshold &&
          sparse_feature_value.UnseenDays(value) <= delta_keep_days) {
        sparse_feature_value.DeltaScore(value) = 0;
133 134 135 136
      }
    }
      return;
    case 3: {
137
      sparse_feature_value.UnseenDays(value)++;
138 139 140 141 142 143 144
    }
      return;
    default:
      return;
  }
}

145
int32_t SparseAccessor::Create(float** values, size_t num) {
146 147
  for (size_t value_item = 0; value_item < num; ++value_item) {
    float* value = values[value_item];
148 149
    value[sparse_feature_value.UnseenDaysIndex()] = 0;
    value[sparse_feature_value.DeltaScoreIndex()] = 0;
150 151 152
    value[sparse_feature_value.ShowIndex()] = 0;
    value[sparse_feature_value.ClickIndex()] = 0;
    value[sparse_feature_value.SlotIndex()] = -1;
153 154 155 156 157
    _embed_sgd_rule->InitValue(value + sparse_feature_value.EmbedWIndex(),
                               value + sparse_feature_value.EmbedG2SumIndex());
    _embedx_sgd_rule->InitValue(value + sparse_feature_value.EmbedxWIndex(),
                                value + sparse_feature_value.EmbedxG2SumIndex(),
                                false);
158 159 160 161
  }
  return 0;
}

162 163 164
bool SparseAccessor::NeedExtendMF(float* value) {
  float show = value[sparse_feature_value.ShowIndex()];
  float click = value[sparse_feature_value.ClickIndex()];
165 166 167 168 169
  float score = (show - click) * _config.ctr_accessor_param().nonclk_coeff() +
                click * _config.ctr_accessor_param().click_coeff();
  return score >= _config.embedx_threshold();
}

170
bool SparseAccessor::HasMF(int size) {
171
  return size > sparse_feature_value.EmbedxG2SumIndex();
172 173 174
}

// from SparseFeatureValue to SparsePullValue
175 176
int32_t SparseAccessor::Select(float** select_values,
                               const float** values,
177 178 179 180 181
                               size_t num) {
  auto embedx_dim = _config.embedx_dim();
  for (size_t value_item = 0; value_item < num; ++value_item) {
    float* select_value = select_values[value_item];
    const float* value = values[value_item];
182 183 184 185
    select_value[SparsePullValue::EmbedWIndex()] =
        value[sparse_feature_value.EmbedWIndex()];
    memcpy(select_value + SparsePullValue::EmbedxWIndex(),
           value + sparse_feature_value.EmbedxWIndex(),
186 187 188 189 190 191 192 193
           embedx_dim * sizeof(float));
  }
  return 0;
}

// from SparsePushValue to SparsePushValue
// first dim: item
// second dim: field num
194
int32_t SparseAccessor::Merge(float** update_values,
195 196
                              const float** other_update_values,
                              size_t num) {
197
  auto embedx_dim = _config.embedx_dim();
198
  size_t total_dim = SparsePushValue::Dim(embedx_dim);
199 200 201
  for (size_t value_item = 0; value_item < num; ++value_item) {
    float* update_value = update_values[value_item];
    const float* other_update_value = other_update_values[value_item];
202
    for (size_t i = 0; i < total_dim; ++i) {
Z
zhangchunle 已提交
203
      if (static_cast<int>(i) != SparsePushValue::SlotIndex()) {
204 205 206 207 208 209 210 211 212 213
        update_value[i] += other_update_value[i];
      }
    }
  }
  return 0;
}

// from SparsePushValue to SparseFeatureValue
// first dim: item
// second dim: field num
214 215
int32_t SparseAccessor::Update(float** update_values,
                               const float** push_values,
216 217 218 219
                               size_t num) {
  for (size_t value_item = 0; value_item < num; ++value_item) {
    float* update_value = update_values[value_item];
    const float* push_value = push_values[value_item];
220 221 222 223 224 225
    float push_show = push_value[SparsePushValue::ShowIndex()];
    float push_click = push_value[SparsePushValue::ClickIndex()];
    float slot = push_value[SparsePushValue::SlotIndex()];
    update_value[sparse_feature_value.ShowIndex()] += push_show;
    update_value[sparse_feature_value.ClickIndex()] += push_click;
    update_value[sparse_feature_value.SlotIndex()] = slot;
226
    update_value[sparse_feature_value.DeltaScoreIndex()] +=
227 228
        (push_show - push_click) * _config.ctr_accessor_param().nonclk_coeff() +
        push_click * _config.ctr_accessor_param().click_coeff();
229 230 231 232
    update_value[sparse_feature_value.UnseenDaysIndex()] = 0;
    _embed_sgd_rule->UpdateValue(
        update_value + sparse_feature_value.EmbedWIndex(),
        update_value + sparse_feature_value.EmbedG2SumIndex(),
233 234
        push_value + SparsePushValue::EmbedGIndex(),
        push_show);
235 236 237
    _embedx_sgd_rule->UpdateValue(
        update_value + sparse_feature_value.EmbedxWIndex(),
        update_value + sparse_feature_value.EmbedxG2SumIndex(),
238 239
        push_value + SparsePushValue::EmbedxGIndex(),
        push_show);
240 241 242 243
  }
  return 0;
}

244
bool SparseAccessor::CreateValue(int stage, const float* value) {
245 246 247 248 249 250
  // stage == 0, pull
  // stage == 1, push
  if (stage == 0) {
    return true;
  } else if (stage == 1) {
    // operation
251 252
    auto show = SparsePushValue::Show(const_cast<float*>(value));
    auto click = SparsePushValue::Click(const_cast<float*>(value));
253
    auto score = ShowClickScore(show, click);
254 255 256 257 258 259 260 261 262 263 264 265 266
    if (score <= 0) {
      return false;
    }
    if (score >= 1) {
      return true;
    }
    return local_uniform_real_distribution<float>()(local_random_engine()) <
           score;
  } else {
    return true;
  }
}

267
float SparseAccessor::ShowClickScore(float show, float click) {
268 269 270 271 272
  auto nonclk_coeff = _config.ctr_accessor_param().nonclk_coeff();
  auto click_coeff = _config.ctr_accessor_param().click_coeff();
  return (show - click) * nonclk_coeff + click * click_coeff;
}

273
std::string SparseAccessor::ParseToString(const float* v, int param) {
274 275 276 277 278
  thread_local std::ostringstream os;
  os.clear();
  os.str("");
  os << v[0] << " " << v[1] << " " << v[2] << " " << v[3] << " " << v[4] << " "
     << v[5];
279
  for (int i = sparse_feature_value.EmbedG2SumIndex();
280 281
       i < sparse_feature_value.EmbedxWIndex();
       i++) {
282 283
    os << " " << v[i];
  }
284 285
  auto show = sparse_feature_value.Show(const_cast<float*>(v));
  auto click = sparse_feature_value.Click(const_cast<float*>(v));
286
  auto score = ShowClickScore(show, click);
287
  if (score >= _config.embedx_threshold() &&
288 289
      param > sparse_feature_value.EmbedxWIndex()) {
    for (auto i = sparse_feature_value.EmbedxWIndex();
290 291
         i < sparse_feature_value.Dim();
         ++i) {
292 293 294 295 296 297
      os << " " << v[i];
    }
  }
  return os.str();
}

298
int SparseAccessor::ParseFromString(const std::string& str, float* value) {
299 300
  _embedx_sgd_rule->InitValue(value + sparse_feature_value.EmbedxWIndex(),
                              value + sparse_feature_value.EmbedxG2SumIndex());
301 302 303 304 305 306 307
  auto ret = paddle::string::str_to_float(str.data(), value);
  CHECK(ret >= 6) << "expect more than 6 real:" << ret;
  return ret;
}

}  // namespace distributed
}  // namespace paddle