Skip to content

Commit

Permalink
[feat] update version to 0.6.4 (#397)
Browse files Browse the repository at this point in the history
* update version to 0.6.4
  • Loading branch information
chengmengli06 committed Jul 10, 2023
1 parent 303eef3 commit 2742884
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions easy_rec/python/inference/predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] = []
Expand Down
2 changes: 1 addition & 1 deletion easy_rec/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- encoding:utf-8 -*-
# Copyright (c) Alibaba, Inc. and its affiliates.
__version__ = '0.6.3'
__version__ = '0.6.4'

0 comments on commit 2742884

Please sign in to comment.