-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FasterTokenizer model in experiment #1220
Merged
ZeyuChen
merged 17 commits into
PaddlePaddle:develop
from
Steffy-zxf:exp-faster-tokenizer
Nov 1, 2021
Merged
Changes from 10 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
d8eacc9
1. add FasterTokenizer model in experiment
18587f9
add cpp deploy demo
9b74b1b
add test time script
f6ef389
add example
6e32df5
mv python_deploy location
771af1b
optimize cpp demo
3775622
add faster model
8eec9ca
add faster tokenizer export model
d5ff0ee
1. rename to_string_tensor to to_tensor
84959f6
1. add text cls example with FasterModelForSequenceClassification
f96c478
update cpp deploy
d6c77a3
1. rename text_cls with seq_cls
bcb5d76
add experimental.model_utils.py
734b93e
update seq_cls cpp demo, drop to print the label string
046d9ce
add FasterTokenizer.from_pretrained() api
de328db
use FasterTokenizer.from_pretrained() api
fda2ec2
Merge branch 'develop' into exp-faster-tokenizer
ZeyuChen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
221 changes: 221 additions & 0 deletions
221
examples/experimental/faster_ernie/text_cls/cpp_deploy/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
cmake_minimum_required(VERSION 3.0) | ||
project(text_cls_infer CXX C) | ||
option(WITH_MKL "Compile demo with MKL/OpenBlas support, default use MKL." ON) | ||
option(WITH_GPU "Compile demo with GPU/CPU, default use CPU." OFF) | ||
option(WITH_STATIC_LIB "Compile demo with static/shared library, default use static." ON) | ||
option(USE_TENSORRT "Compile demo with TensorRT." OFF) | ||
option(WITH_ROCM "Compile demo with rocm." OFF) | ||
|
||
if(NOT WITH_STATIC_LIB) | ||
add_definitions("-DPADDLE_WITH_SHARED_LIB") | ||
else() | ||
# PD_INFER_DECL is mainly used to set the dllimport/dllexport attribute in dynamic library mode. | ||
# Set it to empty in static library mode to avoid compilation issues. | ||
add_definitions("/DPD_INFER_DECL=") | ||
endif() | ||
|
||
macro(safe_set_static_flag) | ||
foreach(flag_var | ||
CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE | ||
CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO) | ||
if(${flag_var} MATCHES "/MD") | ||
string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}") | ||
endif(${flag_var} MATCHES "/MD") | ||
endforeach(flag_var) | ||
endmacro() | ||
|
||
if(NOT DEFINED PADDLE_LIB) | ||
message(FATAL_ERROR "please set PADDLE_LIB with -DPADDLE_LIB=/path/paddle/lib") | ||
endif() | ||
if(NOT DEFINED PROJECT_NAME) | ||
message(FATAL_ERROR "please set PROJECT_NAME with -DPROJECT_NAME=demo_name") | ||
endif() | ||
|
||
include_directories("${PADDLE_LIB}/") | ||
set(PADDLE_LIB_THIRD_PARTY_PATH "${PADDLE_LIB}/third_party/install/") | ||
include_directories("${PADDLE_LIB_THIRD_PARTY_PATH}protobuf/include") | ||
include_directories("${PADDLE_LIB_THIRD_PARTY_PATH}glog/include") | ||
include_directories("${PADDLE_LIB_THIRD_PARTY_PATH}gflags/include") | ||
include_directories("${PADDLE_LIB_THIRD_PARTY_PATH}xxhash/include") | ||
include_directories("${PADDLE_LIB_THIRD_PARTY_PATH}cryptopp/include") | ||
include_directories("${PADDLE_LIB_THIRD_PARTY_PATH}utf8proc/include") | ||
|
||
link_directories("${PADDLE_LIB_THIRD_PARTY_PATH}protobuf/lib") | ||
link_directories("${PADDLE_LIB_THIRD_PARTY_PATH}glog/lib") | ||
link_directories("${PADDLE_LIB_THIRD_PARTY_PATH}gflags/lib") | ||
link_directories("${PADDLE_LIB_THIRD_PARTY_PATH}xxhash/lib") | ||
link_directories("${PADDLE_LIB_THIRD_PARTY_PATH}cryptopp/lib") | ||
link_directories("${PADDLE_LIB_THIRD_PARTY_PATH}utf8proc/lib") | ||
link_directories("${PADDLE_LIB}/paddle/lib") | ||
|
||
if (WIN32) | ||
add_definitions("/DGOOGLE_GLOG_DLL_DECL=") | ||
option(MSVC_STATIC_CRT "use static C Runtime library by default" ON) | ||
if (MSVC_STATIC_CRT) | ||
if (WITH_MKL) | ||
set(FLAG_OPENMP "/openmp") | ||
endif() | ||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} /bigobj /MTd ${FLAG_OPENMP}") | ||
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} /bigobj /MT ${FLAG_OPENMP}") | ||
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /bigobj /MTd ${FLAG_OPENMP}") | ||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /bigobj /MT ${FLAG_OPENMP}") | ||
safe_set_static_flag() | ||
if (WITH_STATIC_LIB) | ||
add_definitions(-DSTATIC_LIB) | ||
endif() | ||
endif() | ||
else() | ||
if(WITH_MKL) | ||
set(FLAG_OPENMP "-fopenmp") | ||
endif() | ||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 ${FLAG_OPENMP}") | ||
endif() | ||
|
||
if(WITH_GPU) | ||
if(NOT WIN32) | ||
set(CUDA_LIB "/usr/local/cuda/lib64/" CACHE STRING "CUDA Library") | ||
else() | ||
if(CUDA_LIB STREQUAL "") | ||
set(CUDA_LIB "C:\\Program\ Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v8.0\\lib\\x64") | ||
endif() | ||
endif(NOT WIN32) | ||
endif() | ||
|
||
if (USE_TENSORRT AND WITH_GPU) | ||
set(TENSORRT_ROOT "" CACHE STRING "The root directory of TensorRT library") | ||
if("${TENSORRT_ROOT}" STREQUAL "") | ||
message(FATAL_ERROR "The TENSORRT_ROOT is empty, you must assign it a value with CMake command. Such as: -DTENSORRT_ROOT=TENSORRT_ROOT_PATH ") | ||
endif() | ||
set(TENSORRT_INCLUDE_DIR ${TENSORRT_ROOT}/include) | ||
set(TENSORRT_LIB_DIR ${TENSORRT_ROOT}/lib) | ||
file(READ ${TENSORRT_INCLUDE_DIR}/NvInfer.h TENSORRT_VERSION_FILE_CONTENTS) | ||
string(REGEX MATCH "define NV_TENSORRT_MAJOR +([0-9]+)" TENSORRT_MAJOR_VERSION | ||
"${TENSORRT_VERSION_FILE_CONTENTS}") | ||
if("${TENSORRT_MAJOR_VERSION}" STREQUAL "") | ||
file(READ ${TENSORRT_INCLUDE_DIR}/NvInferVersion.h TENSORRT_VERSION_FILE_CONTENTS) | ||
string(REGEX MATCH "define NV_TENSORRT_MAJOR +([0-9]+)" TENSORRT_MAJOR_VERSION | ||
"${TENSORRT_VERSION_FILE_CONTENTS}") | ||
endif() | ||
if("${TENSORRT_MAJOR_VERSION}" STREQUAL "") | ||
message(SEND_ERROR "Failed to detect TensorRT version.") | ||
endif() | ||
string(REGEX REPLACE "define NV_TENSORRT_MAJOR +([0-9]+)" "\\1" | ||
TENSORRT_MAJOR_VERSION "${TENSORRT_MAJOR_VERSION}") | ||
message(STATUS "Current TensorRT header is ${TENSORRT_INCLUDE_DIR}/NvInfer.h. " | ||
"Current TensorRT version is v${TENSORRT_MAJOR_VERSION}. ") | ||
include_directories("${TENSORRT_INCLUDE_DIR}") | ||
link_directories("${TENSORRT_LIB_DIR}") | ||
endif() | ||
|
||
if(WITH_MKL) | ||
set(MATH_LIB_PATH "${PADDLE_LIB_THIRD_PARTY_PATH}mklml") | ||
include_directories("${MATH_LIB_PATH}/include") | ||
if(WIN32) | ||
set(MATH_LIB ${MATH_LIB_PATH}/lib/mklml${CMAKE_STATIC_LIBRARY_SUFFIX} | ||
${MATH_LIB_PATH}/lib/libiomp5md${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
else() | ||
set(MATH_LIB ${MATH_LIB_PATH}/lib/libmklml_intel${CMAKE_SHARED_LIBRARY_SUFFIX} | ||
${MATH_LIB_PATH}/lib/libiomp5${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
endif() | ||
set(MKLDNN_PATH "${PADDLE_LIB_THIRD_PARTY_PATH}mkldnn") | ||
if(EXISTS ${MKLDNN_PATH}) | ||
include_directories("${MKLDNN_PATH}/include") | ||
if(WIN32) | ||
set(MKLDNN_LIB ${MKLDNN_PATH}/lib/mkldnn.lib) | ||
else(WIN32) | ||
set(MKLDNN_LIB ${MKLDNN_PATH}/lib/libmkldnn.so.0) | ||
endif(WIN32) | ||
endif() | ||
else() | ||
set(OPENBLAS_LIB_PATH "${PADDLE_LIB_THIRD_PARTY_PATH}openblas") | ||
include_directories("${OPENBLAS_LIB_PATH}/include/openblas") | ||
if(WIN32) | ||
set(MATH_LIB ${OPENBLAS_LIB_PATH}/lib/openblas${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
else() | ||
set(MATH_LIB ${OPENBLAS_LIB_PATH}/lib/libopenblas${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
endif() | ||
endif() | ||
|
||
if(WITH_STATIC_LIB) | ||
set(DEPS ${PADDLE_LIB}/paddle/lib/libpaddle_inference${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
else() | ||
if(WIN32) | ||
set(DEPS ${PADDLE_LIB}/paddle/lib/paddle_inference${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
else() | ||
set(DEPS ${PADDLE_LIB}/paddle/lib/libpaddle_inference${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
endif() | ||
endif() | ||
|
||
if (NOT WIN32) | ||
set(EXTERNAL_LIB "-lrt -ldl -lpthread") | ||
set(DEPS ${DEPS} | ||
${MATH_LIB} ${MKLDNN_LIB} | ||
glog gflags protobuf xxhash cryptopp utf8proc | ||
${EXTERNAL_LIB}) | ||
else() | ||
set(DEPS ${DEPS} | ||
${MATH_LIB} ${MKLDNN_LIB} | ||
glog gflags_static libprotobuf xxhash cryptopp-static utf8proc_static ${EXTERNAL_LIB}) | ||
set(DEPS ${DEPS} shlwapi.lib) | ||
endif(NOT WIN32) | ||
|
||
if(WITH_GPU) | ||
if(NOT WIN32) | ||
if (USE_TENSORRT) | ||
set(DEPS ${DEPS} ${TENSORRT_LIB_DIR}/libnvinfer${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
set(DEPS ${DEPS} ${TENSORRT_LIB_DIR}/libnvinfer_plugin${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
endif() | ||
set(DEPS ${DEPS} ${CUDA_LIB}/libcudart${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
else() | ||
if(USE_TENSORRT) | ||
set(DEPS ${DEPS} ${TENSORRT_LIB_DIR}/nvinfer${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
set(DEPS ${DEPS} ${TENSORRT_LIB_DIR}/nvinfer_plugin${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
if(${TENSORRT_MAJOR_VERSION} GREATER_EQUAL 7) | ||
set(DEPS ${DEPS} ${TENSORRT_LIB_DIR}/myelin64_1${CMAKE_STATIC_LIBRARY_SUFFIX}) | ||
endif() | ||
endif() | ||
set(DEPS ${DEPS} ${CUDA_LIB}/cudart${CMAKE_STATIC_LIBRARY_SUFFIX} ) | ||
set(DEPS ${DEPS} ${CUDA_LIB}/cublas${CMAKE_STATIC_LIBRARY_SUFFIX} ) | ||
set(DEPS ${DEPS} ${CUDA_LIB}/cudnn${CMAKE_STATIC_LIBRARY_SUFFIX} ) | ||
endif() | ||
endif() | ||
|
||
if(WITH_ROCM) | ||
if(NOT WIN32) | ||
set(DEPS ${DEPS} ${ROCM_LIB}/libamdhip64${CMAKE_SHARED_LIBRARY_SUFFIX}) | ||
endif() | ||
endif() | ||
|
||
add_executable(${PROJECT_NAME} ${PROJECT_NAME}.cc) | ||
target_link_libraries(${PROJECT_NAME} ${DEPS}) | ||
if(WIN32) | ||
if(USE_TENSORRT) | ||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy ${TENSORRT_LIB_DIR}/nvinfer${CMAKE_SHARED_LIBRARY_SUFFIX} | ||
${CMAKE_BINARY_DIR}/${CMAKE_BUILD_TYPE} | ||
COMMAND ${CMAKE_COMMAND} -E copy ${TENSORRT_LIB_DIR}/nvinfer_plugin${CMAKE_SHARED_LIBRARY_SUFFIX} | ||
${CMAKE_BINARY_DIR}/${CMAKE_BUILD_TYPE} | ||
) | ||
if(${TENSORRT_MAJOR_VERSION} GREATER_EQUAL 7) | ||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy ${TENSORRT_LIB_DIR}/myelin64_1${CMAKE_SHARED_LIBRARY_SUFFIX} | ||
${CMAKE_BINARY_DIR}/${CMAKE_BUILD_TYPE}) | ||
endif() | ||
endif() | ||
if(WITH_MKL) | ||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy ${MATH_LIB_PATH}/lib/mklml.dll ${CMAKE_BINARY_DIR}/Release | ||
COMMAND ${CMAKE_COMMAND} -E copy ${MATH_LIB_PATH}/lib/libiomp5md.dll ${CMAKE_BINARY_DIR}/Release | ||
COMMAND ${CMAKE_COMMAND} -E copy ${MKLDNN_PATH}/lib/mkldnn.dll ${CMAKE_BINARY_DIR}/Release | ||
) | ||
else() | ||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy ${OPENBLAS_LIB_PATH}/lib/openblas.dll ${CMAKE_BINARY_DIR}/Release | ||
) | ||
endif() | ||
if(NOT WITH_STATIC_LIB) | ||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy "${PADDLE_LIB}/paddle/lib/paddle_inference.dll" ${CMAKE_BINARY_DIR}/${CMAKE_BUILD_TYPE} | ||
) | ||
endif() | ||
endif() |
41 changes: 41 additions & 0 deletions
41
examples/experimental/faster_ernie/text_cls/cpp_deploy/compile.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
set +x | ||
set -e | ||
|
||
work_path=$(dirname $(readlink -f $0)) | ||
|
||
# 1. check paddle_inference exists | ||
if [ ! -d "${work_path}/lib/paddle_inference" ]; then | ||
echo "Please download paddle_inference lib and move it in cpp_deploy/lib" | ||
exit 1 | ||
fi | ||
|
||
# 2. check CMakeLists exists | ||
if [ ! -f "${work_path}/CMakeLists.txt" ]; then | ||
cp -a "${work_path}/lib/CMakeLists.txt" "${work_path}/" | ||
fi | ||
|
||
# 3. compile | ||
mkdir -p build | ||
cd build | ||
rm -rf * | ||
|
||
# same with the text_cls_infer.cc | ||
PROJECT_NAME=text_cls_infer | ||
|
||
WITH_MKL=ON | ||
WITH_GPU=ON | ||
|
||
LIB_DIR=${work_path}/lib/paddle_inference | ||
CUDNN_LIB=/usr/lib/x86_64-linux-gnu/ | ||
CUDA_LIB=/usr/local/cuda/lib64 | ||
|
||
cmake .. -DPADDLE_LIB=${LIB_DIR} \ | ||
-DWITH_MKL=${WITH_MKL} \ | ||
-DPROJECT_NAME=${PROJECT_NAME} \ | ||
-DWITH_GPU=${WITH_GPU} \ | ||
-DWITH_STATIC_LIB=OFF \ | ||
-DCUDNN_LIB=${CUDNN_LIB} \ | ||
-DCUDA_LIB=${CUDA_LIB} | ||
|
||
make -j |
11 changes: 11 additions & 0 deletions
11
examples/experimental/faster_ernie/text_cls/cpp_deploy/run.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
set +x | ||
set -e | ||
|
||
work_path=$(dirname $(readlink -f $0)) | ||
|
||
# 1. compile | ||
bash ${work_path}/compile.sh | ||
|
||
# 2. run | ||
./build/text_cls_infer -model_file ../export/inference.pdmodel --params_file ../export/inference.pdiparams |
97 changes: 97 additions & 0 deletions
97
examples/experimental/faster_ernie/text_cls/cpp_deploy/text_cls_infer.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/* Copyright (c) 2021 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 <gflags/gflags.h> | ||
#include <glog/logging.h> | ||
|
||
#include <algorithm> | ||
#include <cmath> | ||
#include <numeric> | ||
#include <unordered_map> | ||
|
||
#include "paddle/include/paddle_inference_api.h" | ||
|
||
using paddle_infer::Config; | ||
using paddle_infer::Predictor; | ||
using paddle_infer::CreatePredictor; | ||
|
||
DEFINE_string(model_file, "", "Directory of the inference model."); | ||
DEFINE_string(params_file, "", "Directory of the inference model."); | ||
DEFINE_int32(batch_size, 1, "Directory of the inference model."); | ||
DEFINE_bool(use_gpu, true, "enable gpu"); | ||
|
||
std::shared_ptr<Predictor> InitPredictor() { | ||
Config config; | ||
config.SetModel(FLAGS_model_file, FLAGS_params_file); | ||
if (FLAGS_use_gpu) { | ||
config.EnableUseGpu(100, 0); | ||
} | ||
return CreatePredictor(config); | ||
} | ||
|
||
template <typename T> | ||
void GetOutput(Predictor* predictor, | ||
std::string output_name, | ||
std::vector<T>* out_data) { | ||
auto output = predictor->GetOutputHandle(output_name); | ||
std::vector<int> output_shape = output->shape(); | ||
int out_num = std::accumulate( | ||
output_shape.begin(), output_shape.end(), 1, std::multiplies<int>()); | ||
out_data->resize(out_num); | ||
output->CopyToCpu(out_data->data()); | ||
} | ||
|
||
void Run(Predictor* predictor, | ||
const std::vector<std::string>& input_data, | ||
std::vector<float>* logits, | ||
std::vector<int64_t>* predictions) { | ||
auto input_names = predictor->GetInputNames(); | ||
|
||
auto text = predictor->GetInputHandle(input_names[0]); | ||
text->ReshapeStrings(input_data.size()); | ||
text->CopyStringsFromCpu(&input_data); | ||
|
||
CHECK(predictor->Run()); | ||
|
||
auto output_names = predictor->GetOutputNames(); | ||
GetOutput(predictor, output_names[0], logits); | ||
GetOutput(predictor, output_names[1], predictions); | ||
} | ||
|
||
int main(int argc, char* argv[]) { | ||
google::ParseCommandLineFlags(&argc, &argv, true); | ||
auto predictor = InitPredictor(); | ||
|
||
std::vector<std::string> data{ | ||
"这个宾馆比较陈旧了,特价的房间也很一般。总体来说一般", | ||
"怀着十分激动的心情放映,可是看着看着发现,在放映完毕后,出现一集米老鼠的" | ||
"动画片", | ||
"作为老的四星酒店,房间依然很整洁,相当不错。机场接机服务很好,可以在车上" | ||
"办理入住手续,节省时间。"}; | ||
std::unordered_map<std::size_t, std::string> label_map = {{0, "negative"}, | ||
{1, "positive"}}; | ||
for (size_t i = 0; i < data.size(); i += FLAGS_batch_size) { | ||
std::vector<std::string> batch(FLAGS_batch_size); | ||
batch.assign(data.begin() + i, data.begin() + i + FLAGS_batch_size); | ||
std::vector<float> logits; | ||
std::vector<int64_t> predictions; | ||
Run(predictor.get(), batch, &logits, &predictions); | ||
for (size_t j = 0; j < FLAGS_batch_size; j++) { | ||
LOG(INFO) << "The text is " << batch[j] << "; The predition label is " | ||
<< label_map[predictions[j]]; | ||
} | ||
} | ||
|
||
return 0; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个命令写死路径可能不一定正确,回头得windows测试验证下