how to use tensorflow model in c++ code example

Example 1: how to use max_element in c++ with vector

int main() 
{ 
    // Get the vector 
    vector<int> a = { 1, 45, 54, 71, 76, 12 }; 
  
    // Print the vector 
    cout << "Vector: "; 
    for (int i = 0; i < a.size(); i++) 
        cout << a[i] << " "; 
    cout << endl; 
  
    // Find the max element 
    cout << "\nMax Element = "
         << *max_element(a.begin(), a.end()); 
    return 0; 
}

Example 2: how to build svm model in r

library(e1071)
svm_model <- svm(y ~ ., data = ..., 
                 type = "C-classification", kernel = "polynomial", degree = 3, 
                 cost = 50, gamma = 0.01, coef0 = 1)
summary(svm_model)

Tags:

Cpp Example