Repository: spark Updated Branches: refs/heads/master a848d552e -> 8ca4ebefa
[MINOR] Add french stop word "les" ## What changes were proposed in this pull request? Added "les" as french stop word (plurial of le) Author: Thomas Decaux <[email protected]> Closes #18514 from ebuildy/patch-1. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/8ca4ebef Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/8ca4ebef Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/8ca4ebef Branch: refs/heads/master Commit: 8ca4ebefa6301d9cb633ea15cf71f49c2d7f8607 Parents: a848d55 Author: Thomas Decaux <[email protected]> Authored: Tue Jul 4 12:17:48 2017 +0100 Committer: Sean Owen <[email protected]> Committed: Tue Jul 4 12:17:48 2017 +0100 ---------------------------------------------------------------------- .../resources/org/apache/spark/ml/feature/stopwords/french.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/8ca4ebef/mllib/src/main/resources/org/apache/spark/ml/feature/stopwords/french.txt ---------------------------------------------------------------------- diff --git a/mllib/src/main/resources/org/apache/spark/ml/feature/stopwords/french.txt b/mllib/src/main/resources/org/apache/spark/ml/feature/stopwords/french.txt index 94b8f8f..a59a042 100644 --- a/mllib/src/main/resources/org/apache/spark/ml/feature/stopwords/french.txt +++ b/mllib/src/main/resources/org/apache/spark/ml/feature/stopwords/french.txt @@ -15,6 +15,7 @@ il je la le +les leur lui ma @@ -152,4 +153,4 @@ eusses eût eussions eussiez -eussent \ No newline at end of file +eussent --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
