python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Elastic: Treat symbol and html encoded symbol the same during search
My goal is to return the same results when searching by the symbol or html encoded version. Example Queries:
# searching with symbol
GET my-test-index/_search
{
"query": {
"bool&...
Caleb
Votes: 0
Answers: 1
Stemming and lemming words
I have a text document i need to use stemming and Lemmatization on. I have already cleaned the data and tokenised it as well as removing stop words
what i need to do is take the list as an input and r...
Retsukki
Votes: 0
Answers: 2
Should you Stem and lemmatize?
I am currently working with python NLTK to preprocess text data for Kaggle SMS Spam Classification Dataset. I have completed the following steps during preprocessing:
Removed any extra spaces
Removed...
FlukeKing
Votes: 0
Answers: 1
How to apply stemming to a column in a pandas dataframe
If i had the following dataframe:
import pandas as pd
d = {'col1': ['goodness', 'beautiful'], 'col2': [3, 4]}
df = pd.DataFrame(data=d)
Output
col1 col2
0 goodness 3
1 beautiful ...
daniel
Votes: 0
Answers: 1