本文整理汇总了C++中sfv_t::begin方法的典型用法代码示例。如果您正苦于以下问题:C++ sfv_t::begin方法的具体用法?C++ sfv_t::begin怎么用?C++ sfv_t::begin使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sfv_t
的用法示例。
在下文中一共展示了sfv_t::begin方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: calc_similality
float recommender_base::calc_similality(sfv_t& q1, sfv_t& q2) {
float q1_norm = calc_l2norm(q1);
float q2_norm = calc_l2norm(q2);
if (q1_norm == 0.f || q2_norm == 0.f) {
return 0.f;
}
sort(q1.begin(), q1.end());
sort(q2.begin(), q2.end());
size_t i1 = 0;
size_t i2 = 0;
float ret = 0.f;
while (i1 < q1.size() && i2 < q2.size()) {
const string& ind1 = q1[i1].first;
const string& ind2 = q2[i2].first;
if (ind1 < ind2) {
++i1;
} else if (ind1 > ind2) {
++i2;
} else {
ret += q1[i1].second * q2[i2].second;
++i1;
++i2;
}
}
return ret / q1_norm / q2_norm;
}
示例2: get_weight
void weight_manager::get_weight(sfv_t& fv) const {
for (sfv_t::iterator it = fv.begin(); it != fv.end(); ++it) {
double global_weight = get_global_weight(it->first);
it->second *= global_weight;
}
fv.erase(remove_if(fv.begin(), fv.end(), is_zero()), fv.end());
}
示例3: bulk_update
void local_storage_mixture::bulk_update(const sfv_t& sfv, float step_width, const string& inc_class, const string& dec_class){
uint64_t inc_id = class2id_.get_id(inc_class);
if (dec_class != ""){
uint64_t dec_id = class2id_.get_id(dec_class);
for (sfv_t::const_iterator it = sfv.begin(); it != sfv.end(); ++it){
float val = it->second * step_width;
id_feature_val3_t& feature_row = tbl_diff_[it->first];
feature_row[inc_id].v1 += val;
feature_row[dec_id].v1 -= val;
}
} else {
for (sfv_t::const_iterator it = sfv.begin(); it != sfv.end(); ++it){
float val = it->second * step_width;
id_feature_val3_t& feature_row = tbl_diff_[it->first];
feature_row[inc_id].v1 += val;
}
}
}
示例4: sort_and_merge
void sort_and_merge(sfv_t& sfv) {
if (sfv.size() <= 1) {
return;
}
sort(sfv.begin(), sfv.end());
typedef sfv_t::iterator iterator;
iterator cur = sfv.begin();
iterator end = sfv.end();
for (iterator iter = cur+1; iter != end; ++iter) {
if (iter->first == cur->first) {
cur->second += iter->second;
} else {
++cur;
*cur = *iter;
}
}
sfv.erase(cur+1, end);
}
示例5: sort_and_merge
void sort_and_merge(sfv_t& sfv){
if (sfv.size() == 0) return;
sort(sfv.begin(), sfv.end());
sfv_t ret_sfv;
const string* prev = &sfv[0].first;
float val = sfv[0].second;
for (size_t i = 1; i < sfv.size(); ++i){
if (sfv[i].first == *prev){
val += sfv[i].second;
} else {
ret_sfv.push_back(make_pair(*prev, val));
prev = &sfv[i].first;
val = sfv[i].second;
}
}
ret_sfv.push_back(make_pair(*prev, val));
sfv.swap(ret_sfv);
}
示例6: update
void AROW::update(const sfv_t& sfv, float alpha, float beta,
const std::string& pos_label, const std::string& neg_label){
for (sfv_t::const_iterator it = sfv.begin(); it != sfv.end(); ++it){
const string& feature = it->first;
float val = it->second;
storage::feature_val2_t ret;
storage_->get2(feature, ret);
storage::val2_t pos_val(0.f, 1.f);
storage::val2_t neg_val(0.f, 1.f);
ClassifierUtil::get_two(ret, pos_label, neg_label, pos_val, neg_val);
storage_->set2(feature, pos_label, storage::val2_t(pos_val.v1 + alpha * pos_val.v2 * val, pos_val.v2 - beta * pos_val.v2 * pos_val.v2 * val * val));
if (neg_label != "")
storage_->set2(feature, neg_label, storage::val2_t(neg_val.v1 - alpha * neg_val.v2 * val, neg_val.v2 - beta * neg_val.v2 * neg_val.v2 * val * val));
}
}
示例7: inp
void local_storage_mixture::inp(const sfv_t& sfv, map_feature_val1_t& ret) {
ret.clear();
std::vector<float> ret_id(class2id_.size());
for (sfv_t::const_iterator it = sfv.begin(); it != sfv.end(); ++it){
const string& feature = it->first;
const float val = it->second;
id_feature_val3_t m;
get_internal(feature, m);
for (id_feature_val3_t::const_iterator it3 = m.begin(); it3 != m.end(); ++it3){
ret_id[it3->first] += it3->second.v1 * val;
}
}
for (size_t i = 0; i < ret_id.size(); ++i){
if (ret_id[i] == 0.f) continue;
ret[class2id_.get_key(i)] = ret_id[i];
}
}
示例8: update
void CW::update(const sfv_t& sfv, float step_width, const string& pos_label, const string& neg_label){
for (sfv_t::const_iterator it = sfv.begin(); it != sfv.end(); ++it){
const string& feature = it->first;
float val = it->second;
storage::feature_val2_t val2;
storage_->get2(feature, val2);
storage::val2_t pos_val(0.f, 1.f);
storage::val2_t neg_val(0.f, 1.f);
ClassifierUtil::get_two(val2, pos_label, neg_label, pos_val, neg_val);
const float C = config.C;
float covar_pos_step = 2.f * step_width * pos_val.v2 * val * val * C;
float covar_neg_step = 2.f * step_width * neg_val.v2 * val * val * C;
storage_->set2(feature, pos_label,
storage::val2_t(pos_val.v1 + step_width * pos_val.v2 * val,
1.f / (1.f / pos_val.v2 + covar_pos_step)));
if (neg_label != "")
storage_->set2(feature, neg_label,
storage::val2_t(neg_val.v1 - step_width * neg_val.v2 * val,
1.f / (1.f / neg_val.v2 + covar_neg_step)));
}
}
示例9: update
void NHERD::update(const sfv_t& sfv, float margin, float variance,
const string& pos_label, const string& neg_label){
for (sfv_t::const_iterator it = sfv.begin(); it != sfv.end(); ++it){
const string& feature = it->first;
float val = it->second;
storage::feature_val2_t ret;
storage_->get2(feature, ret);
storage::val2_t pos_val(0.f, 1.f);
storage::val2_t neg_val(0.f, 1.f);
ClassifierUtil::get_two(ret, pos_label, neg_label, pos_val, neg_val);
float val_covariance_pos = val * pos_val.v2;
float val_covariance_neg = val * neg_val.v2;
storage_->set2(feature, pos_label,
storage::val2_t(pos_val.v1 + (1.f - margin) * val_covariance_pos / (val_covariance_pos * val + 1.f / C_),
1.f / ((1.f / pos_val.v2) + (2 * C_ + C_ * C_ * variance) * val * val)));
if (neg_label != "")
storage_->set2(feature, neg_label,
storage::val2_t(neg_val.v1 - (1.f - margin) * val_covariance_neg / (val_covariance_neg * val + 1.f / C_),
1.f / ((1.f / neg_val.v2) + (2 * C_ + C_ * C_ * variance) * val * val)));
}
}
示例10: update_document_frequency
void keyword_weights::update_document_frequency(const sfv_t& fv) {
++document_count_;
for (sfv_t::const_iterator it = fv.begin(); it != fv.end(); ++it) {
++document_frequencies_[it->first];
}
}