Github user mengxr commented on the pull request:
https://github.com/apache/spark/pull/11871#issuecomment-199638568
@burakkose I made a quick pass. Just want to mention another option for the
implementation. Instead of having `language`, `ignoredWords`, and
`additionalWords`, we can separate the lists from `StopwordsRemover`:
~~~scala
val stopWords = StopWordsRemover.loadStopWords("turkish").toSet ++ Set("a")
-- Set("b"))
val swr = new StopWordsRemover()
.setStopWords(stopWords.toArray)
...
~~~
This makes more composite code.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]