Gary Biggs

Results 3 issues of Gary Biggs

``` explainer = shap.DeepExplainer(pipeline.model, encoded_x_train[:10]) shap_values = explainer.shap_values(encoded_x_test[:1]) x_test_words = prepare_explanation_words(pipeline, encoded_x_test) y_pred = pipeline.predict(x_test[:1]) print('Actual Category: %s, Predict Category: %s' % (y_test[0], y_pred[0])) shap.force_plot(explainer.expected_value[0], shap_values[0][0], x_test_words[0]) ``` RETURNS: `ValueError:...

Hi Martin, Running your code unchanged after mine threw the same exception. Maybe a Rasa version issue? They seem to break a lot of code with every update. I'm using:...

Hi, Is there any chance I can get a copy of the labeled data? I'm working on a similar project and having a difficult time finding a relevant dataset. Also...