14 using namespace shogun;
38 SG_ERROR(
"Specified features are not of type CDotFeatures\n");
58 for (int32_t i=0; i<num_feat; i++)
66 for (int32_t i=0; i<num_vec; i++)
70 if (CMath::sign<float64_t>(output[i]) != train_labels.
vector[i])
79 for (int32_t j=0; j<num_feat; j++)
87 SG_INFO(
"Averaged Perceptron algorithm converged after %d iterations.\n", iter);
89 SG_WARNING(
"Averaged Perceptron algorithm did not converge after %d iterations.\n",
max_iter);
92 for (int32_t i=0; i<num_feat; i++)
93 w[i]=tmp_w[i]/(num_vec*iter);
94 bias=tmp_bias/(num_vec*iter);
bool has_property(EFeatureProperty p)
The class Labels models labels, i.e. class assignments of objects.
virtual ~CAveragedPerceptron()
virtual int32_t get_num_vectors() const =0
virtual void add_to_dense_vec(float64_t alpha, int32_t vec_idx1, float64_t *vec2, int32_t vec2_len, bool abs_val=false)=0
Features that support dot products among other operations.
virtual int32_t get_dim_feature_space() const =0
virtual void free_vector()
SGVector< int32_t > get_int_labels()
Class LinearMachine is a generic interface for all kinds of linear machines like classifiers.
The class Features is the base class of all feature objects.
virtual void set_features(CDotFeatures *feat)
virtual void set_labels(CLabels *lab)
virtual CLabels * apply()
#define SG_MALLOC(type, len)
virtual bool train(CFeatures *data=NULL)