Repository: incubator-hivemall Updated Branches: refs/heads/master 845fc83dc -> 69a44ad22
Fix typo in documentation: Whether, wheather -> weather Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/69a44ad2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/69a44ad2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/69a44ad2 Branch: refs/heads/master Commit: 69a44ad221e7905b92c41f4e9ab9d529034a7fc6 Parents: 845fc83 Author: Takuya Kitazawa <[email protected]> Authored: Tue Apr 17 09:42:47 2018 +0900 Committer: Takuya Kitazawa <[email protected]> Committed: Tue Apr 17 09:42:47 2018 +0900 ---------------------------------------------------------------------- docs/gitbook/ft_engineering/vectorization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/69a44ad2/docs/gitbook/ft_engineering/vectorization.md ---------------------------------------------------------------------- diff --git a/docs/gitbook/ft_engineering/vectorization.md b/docs/gitbook/ft_engineering/vectorization.md index 45d4062..69685b5 100644 --- a/docs/gitbook/ft_engineering/vectorization.md +++ b/docs/gitbook/ft_engineering/vectorization.md @@ -40,8 +40,8 @@ select vectorize_features(array("a"),*) from dual; > ["a:1.0"] -- has categorical feature -select vectorize_features(array("a","b","Whether"),"0.2","0.3","sunny") from dual; -> ["a:0.2","b:0.3","whether#sunny"] +select vectorize_features(array("a","b","weather"),"0.2","0.3","sunny") from dual; +> ["a:0.2","b:0.3","weather#sunny"] ``` ```sql
