Coder Social home page Coder Social logo

Comments (5)

marcotcr avatar marcotcr commented on June 10, 2024

Sorry for the delay in responding. Are you using the categorical_features parameter with all of your features when initializing the explainer?

If so, can you please share your code?

from anchor.

skavula avatar skavula commented on June 10, 2024

No problem. I am using the categorical_features parameter with all the features in the dataset.
The dataset has categorical features only. These features when fed to the model are discretized by anchor, and this doubles the number of feature vectors (the original 51 feature vectors are converted into 102 feature vectors).
screen shot 2018-05-01 at 10 27 38 am

clf is a one class SVM model.
exp = explainer.explain_instance(test_data[idx], clf.predict, threshold=0.95)

The error it throws is :
return classifier_fn(self.encoder.transform(x))

ValueError: cannot use sparse input in 'OneClassSVM' trained on dense data

Thank you.

from anchor.

marcotcr avatar marcotcr commented on June 10, 2024

I guess I responded to this via email and forgot the thread

from anchor.

skavula avatar skavula commented on June 10, 2024

from anchor.

marcotcr avatar marcotcr commented on June 10, 2024

how about this, try encapsulating the SVM function:

def predict_fn(data):
  return clf.predict(data.todense())

And use this in explain_instance

from anchor.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.