From 274288427389de04e79d0e8c72d2d68854155a54 Mon Sep 17 00:00:00 2001 From: chengmengli06 <31561586+chengmengli06@users.noreply.github.com> Date: Mon, 10 Jul 2023 20:11:55 +0800 Subject: [PATCH] [feat] update version to 0.6.4 (#397) * update version to 0.6.4 --- easy_rec/python/inference/predictor.py | 6 +++--- easy_rec/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/easy_rec/python/inference/predictor.py b/easy_rec/python/inference/predictor.py index dba53f967..340523bfd 100644 --- a/easy_rec/python/inference/predictor.py +++ b/easy_rec/python/inference/predictor.py @@ -493,9 +493,9 @@ def _parse_value(all_vals): else: assert self._all_input_names, 'must set fg_json_path when use fg input' assert fg_input_size == len(self._all_input_names), ( - 'The size of features in fg_json != the size of fg input. ' - 'The size of features in fg_json is: %s; The size of fg input is: %s' - % (fg_input_size, len(self._all_input_names))) + 'The number of features defined in fg_json != the size of fg input. ' + 'The number of features defined in fg_json is: %d; The size of fg input is: %d' + % (len(self._all_input_names), fg_input_size)) for i, k in enumerate(self._all_input_names): split_index.append(k) split_vals[k] = [] diff --git a/easy_rec/version.py b/easy_rec/version.py index f70f1bfba..08d341768 100644 --- a/easy_rec/version.py +++ b/easy_rec/version.py @@ -1,3 +1,3 @@ # -*- encoding:utf-8 -*- # Copyright (c) Alibaba, Inc. and its affiliates. -__version__ = '0.6.3' +__version__ = '0.6.4'