Research Article

Fake Review Identification Methods Based on Multidimensional Feature Engineering

Algorithm 3

The identification algorithm based on weighted multidimensional feature engineering classification ().
Input: Dataset , feature sequence in feature engineering
Output: Classification results
Procedure
begin
    ;
    for each in
    begin
     calculate the value of the feature vector in the feature engineering, ;
     add to ;
    endfor;
    for each in
    begin
     for each in
     begin
      calculate the weight value of ;
      add to ;
      endfor;
    endfor;
    classify by using SVM algorithm based on and and get the classification result ;
    return ;
end;