Questions tagged [feature-interaction]

For questions related to Feature Interactions, the interaction between two features is the change in the prediction that occurs by varying the features after considering the individual feature effects

From the book

Interpretable Machine Learning A Guide for Making Black Box Models Explainable by Christoph Molnar

Feature interactions are defined as

When features interact with each other in a prediction model, the prediction cannot be expressed as the sum of the feature effects, because the effect of one feature depends on the value of the other feature. Aristotle's predicate "The whole is greater than the sum of its parts" applies in the presence of interactions

It is often seen in machine learning experiments when two features combined through an arithmetic operation becomes more significant in explaining variances in the data, than the same two features separately. Creating a new feature through the interaction of existing features is known as feature interaction.

5 questions
5
votes
1 answer

Linear Regression bad results after log transformation

I have a dataset that has the following columns: The variable I'm trying to predict is "rent". My dataset looks a lot similar to what happens in this notebook. I tried to normalize the rent column and the area column using log transformation since…
2
votes
1 answer

Feature Interactions vs Feature Importances

What are the differences between Feature Interactions and Feature Importances?
1
vote
1 answer

Should normalization be applied on interaction feature

I am working with interaction features in my machine learning model, where I create new features by multiplying a numeric variable with an encoded categorical feature. My question is: Should normalization be applied to these interaction terms? If…
0
votes
1 answer

how interacting variables (known in statistics as moderating variable) are handled by KNN algorithm?

Can someone intuitively explain how interacting variables are being handled by KNN.according to the book "Introduction to Data Mining": Nearest neighbor classifiers can handle the presence of interacting attributes, i.e., attributes that have more…
0
votes
0 answers

model interaction between words for a sentiment analysis task

I am wondering what is the most appropriate way to model the interaction between two words/variables in a language model for a sentiment analysis task. For example, in the following dataset: You didn't solve my problem,NEU I never made that…