Github user HyukjinKwon commented on the issue:
https://github.com/apache/spark/pull/16103
Oh @hhbyyh, I think I am not used to this area but actually I just wanted
leave a comment just for stop words list that I considered for my elasticsearch
cluster before. I just made a list for missing ones via
```python
target =
open("mllib/src/main/resources/org/apache/spark/ml/feature/stopwords/english.txt").read().split("\n")
source = open("mylist.txt").read().split("\n")
for w in source:
if w not in target:
print w
```
and I got these below:
```
cannot
could
here's
how's
let's
ought
that's
there's
what's
when's
where's
who's
why's
would
```
I am not sure if they should be added here or not but I just wanted to let
you know what I considered before for stop words.
---
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]