Questions tagged [interpretation]

49 questions
20
votes
5 answers

What is the difference between explainable and interpretable machine learning?

O’Rourke says that explainable ML uses a black box model and explains it afterwards, whereas interpretable ML uses models that are no black boxes. Christoph Molnar says interpretable ML refers to the degree to which a human can understand the cause…
5
votes
1 answer

Shapley values without intercept (or without `expected_value`)

I have a model and I want to derive its interpretability by using feature contributions. In the end, I want to have some contribution per feature such that the sum of contributions equals the prediction of the model. One approach may be to use…
David Masip
  • 5,981
  • 2
  • 23
  • 61
5
votes
1 answer

How do I interpret loss in a neural network?

I am studying how to evaluate the performances of a convolutional neural network, and in particular I have seen that we have to look both at accuracy and loss. I don't understand why do we have to look also at the loss, and honestly I haven' t…
J.D.
  • 841
  • 4
  • 15
  • 29
5
votes
2 answers

How to interpret two continous variables output using GAM?

I really need help with GAM. I have to find out whether association is linear or non-linear by using GAM. The predictor variable is temperature at lag0 and the output is cardiovascular admissions (count variable). I have tried a lot but I am not…
3
votes
1 answer

Interpreting ROC curves across k-fold cross-validation

I have used a MARS model (multivariate adaptive regression splines) and I have used k fold cross validation for the evaluation of the model, obtaining the following graph: How would be the interpretation of this model? I understand that in the 6…
PicaR
  • 304
  • 2
  • 13
2
votes
2 answers

What are available Python libraries for Interpretable ML?

I recently become familiar with Interpretable ML and I found some libraries like LIME. I would be thankful if you can suggest to me some libraries and what are the advantages of each library.
Amin
  • 191
  • 3
  • 9
2
votes
1 answer

Suggestions for improvement? Time series of variation in relative frequency of emotion-related words in academic psychology over time

First time plotting and interpreting time series data and I have used a line plot for ease of use. I am aware this is incredibly basic, but any input/ recommendations would be much appreciated (e.g., is anything unclear?). My main concern is…
n.baes
  • 39
  • 10
2
votes
2 answers

How do standardization and normalization impact the coefficients of linear models?

One benefit of creating a linear model is that you can look at the coefficients the model learns and interpret them. For example, you can see which features have the most predictive power and which do not. How, if at all, does feature…
2
votes
3 answers

How do I interpret the output of linear regression model in R?

I have the following linear regression model and its analysis. There are a few errors, but I am not very sure about the errors. I have not succeeded in finding them so far. First, the 95% confidence interval for the slope should be So the…
2
votes
0 answers

Understanding CNN by visualizing class activations using GRAD_CAM

I followed the blog Where CNN is looking? to understand and visualize the class activations in order to predict something. The given example works very well. I have developed a custom model using autoencoders for image similarity. The model accepts…
Ali Raza Memon
  • 113
  • 1
  • 8
2
votes
2 answers

How to interpret Correlation along with Coefficients of multiple linear regression ?£

I have 10000 samples. There are 4 independent variables and 1 dependent variable. The independent variables are all centered with 0 mean. I found the correlation coefficients between each of these variables which are as below: I used linear…
2
votes
0 answers

When is scaling and centering important?

There are some models such as PCA or SVM where scaling and centering of training data is essential. There are some models, mostly tree-based where scaling and centering is not required at all. I don't think some of the linear models like linear or…
xan
  • 121
  • 1
2
votes
0 answers

Shapley values for channel attribution equal to linear attribution

I am looking into Shapley values for online marketing attribution. In recent time many articles seem to have been made on this particular approach to attribution (there are…
Tpeeters
  • 21
  • 1
1
vote
0 answers

Understanding, visualizing and interpreting CNN activations

I am working with the first layer of a CNN and trying to understand how to interpret the activation output. My CNN takes input from 3 channels (RBG picture) and the first layer is Conv2d(3, 64, kernel_size=(7, 7), stride=(2, 2), padding=(3, 3),…
User2321
  • 111
  • 3
1
vote
0 answers

paired t-test shows no difference between median and Wilcoxon test p value shows that there is a difference between median values ? How to interpret?

I have a dataset. I wanted to do paired t test on it. So I carried out normality test and it showed that it does not follow normal distribution. So I used Wilcoxon test in place of paired t test. The descriptive statistics of my data shows median…
1
2 3 4