//After the input data is passed in, call 'core->Run()' perform the prediction process.
// After the input data is passed in,
// call 'core->Run()' perform the prediction process.
if(!core->Run()){
LOG(ERROR)<<"Failed run fluid family core";
return-1;
}
//In order to get the results, first, call the 'core->GetOutputNames()' to get the name of output(which is a dict like {OutputName:pointer of OutputValue}).
//Then, use for-loop to get OutputValue by calling 'core->GetOutputHandle'.
// In order to get the results,
// first, call the 'core->GetOutputNames()' to get the name of output
// (which is a dict like {OutputName:pointer of OutputValue}).
// Then, use for-loop to get OutputValue by calling 'core->GetOutputHandle'.