// from README.md #include int main() { try { const auto model = fdeep::load_model("fdeep_model.json"); const auto result = model.predict( {fdeep::tensor(fdeep::tensor_shape(static_cast(4)), std::vector{1, 2, 3, 4})}); std::cout << fdeep::show_tensors(result) << std::endl; } catch (std::runtime_error exception) { std::cerr << "Error: " << exception.what() << std::endl; } }