// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include #include #include "../common/common.h" #define CONFIG_BIN "./trainer_config.bin" int main() { // Initalize Paddle char* argv[] = {"--use_gpu=False"}; CHECK(paddle_init(1, (char**)argv)); // Read the binary configuration file which is generated by // `convert_protobin.sh` long size; void* buf = read_config(CONFIG_BIN, &size); // Create the gradient machine for inference. paddle_gradient_machine machine; CHECK(paddle_gradient_machine_create_for_inference(&machine, buf, (int)size)); CHECK(paddle_gradient_machine_randomize_param(machine)); // Load the trained parameters. Uncomment the following line and change the // directory as needed. // CHECK(paddle_gradient_machine_load_parameter_from_disk(machine, // "./some_where_to_params")); paddle_arguments in_args = paddle_arguments_create_none(); // There is only one input of this network. CHECK(paddle_arguments_resize(in_args, 1)); // Create the input matrix. paddle_matrix mat = paddle_matrix_create_sparse(1, 784, 3, true, false); srand(time(0)); paddle_real* array; int colBuf[] = {9, 93, 109}; int rowBuf[] = {0, sizeof(colBuf) / sizeof(int)}; CHECK(paddle_matrix_sparse_copy_from(mat, rowBuf, sizeof(rowBuf) / sizeof(int), colBuf, sizeof(colBuf) / sizeof(int), NULL, 0)); CHECK(paddle_arguments_set_value(in_args, 0, mat)); paddle_arguments out_args = paddle_arguments_create_none(); CHECK(paddle_gradient_machine_forward(machine, in_args, out_args, /* isTrain */ false)); paddle_matrix prob = paddle_matrix_create_none(); CHECK(paddle_arguments_get_value(out_args, 0, prob)); CHECK(paddle_matrix_get_row(prob, 0, &array)); printf("Prob: "); for (int i = 0; i < 10; ++i) { printf("%.2f ", array[i]); } printf("\n"); CHECK(paddle_matrix_destroy(prob)); CHECK(paddle_arguments_destroy(out_args)); CHECK(paddle_matrix_destroy(mat)); CHECK(paddle_arguments_destroy(in_args)); CHECK(paddle_gradient_machine_destroy(machine)); return 0; }