Code Monkey home page Code Monkey logo

Comments (1)

vruusmann avatar vruusmann commented on August 11, 2024 1

I'm looking at a simple model built on the titanic dataset and transformed using pmml, but I'm not seeing any specific reference to the encoding.

One-Hot-Encoding (OHE) is a "helper"-transformation, not a proper "do something useful with data"-transformation. The JPMML conversion libraries do their best to clean pipelines of no-op/helper transformations. So, the OHE transformation is erased on purpose; it's safe to do so, because it does not change the behaviour of the pipeline in any way.

Technical explanation: Apache Spark transformers and estimators typically only accept all-numerical feature vectors; you can't have a feature vector that contains six numeric elements and one string element (ie. can't put a string into floating point array). Therefore, Apache Spark transforms the string column to numeric column, by simply performing a dict mapping from unique string values to unique integer indexes.

Now, JPMML converters are able to detect such dummy re-mappings from string to integer index, and during the conversion, perform a reverse mapping - replacing integer index back with strings.

If you open the PMML document in a text editor you shall see category levels as original strings. It's very easy for a human to see where particular category levels are used, what are their contributions. Would you really prefer to see those re-mapped OHE indices in their place?

TLDR: The JPMML-SparkML deletes OHE transformations on purpose, because they only obfuscate the pipeline/model. It's a feature, not a bug. The pipeline will still make correct predictions.

from jpmml-sparkml.

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.