sklearn-pmml-model


Namesklearn-pmml-model JSON
Version 1.0.7 PyPI version JSON
download
home_pagehttps://github.com/iamDecode/sklearn-pmml-model
SummaryA library to parse PMML models into Scikit-learn estimators.
upload_time2024-04-15 17:19:40
maintainerNone
docs_urlNone
authorDennis Collaris
requires_pythonNone
licenseBSD-2-Clause
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img src="https://user-images.githubusercontent.com/1223300/41346080-c2c910a0-6f05-11e8-89e9-71a72bb9543f.png" width="300">

# sklearn-pmml-model

[![PyPI version](https://badge.fury.io/py/sklearn-pmml-model.svg)](https://badge.fury.io/py/sklearn-pmml-model)
[![codecov](https://codecov.io/gh/iamDecode/sklearn-pmml-model/branch/master/graph/badge.svg?token=CGbbgziGwn)](https://codecov.io/gh/iamDecode/sklearn-pmml-model)
[![CircleCI](https://circleci.com/gh/iamDecode/sklearn-pmml-model.svg?style=shield)](https://circleci.com/gh/iamDecode/sklearn-pmml-model)
[![ReadTheDocs](https://readthedocs.org/projects/sklearn-pmml-model/badge/?version=latest&style=flat)](https://sklearn-pmml-model.readthedocs.io/en/latest/)

A library to effortlessly import models trained on different platforms and with programming languages into scikit-learn in Python. First export your model to [PMML](http://dmg.org/pmml/v4-3/GeneralStructure.html) (widely supported). Next, load the exported PMML file with this library, and use the class as any other scikit-learn estimator.


## Installation

The easiest way is to use pip:

```
$ pip install sklearn-pmml-model
```

## Status
The library currently supports the following models:

| Model                                                  | Classification | Regression | Categorical features |
|--------------------------------------------------------|----------------|------------|----------------------|
| [Decision Trees](sklearn_pmml_model/tree)              | ✅             | ✅         | ✅<sup>1</sup>        |
| [Random Forests](sklearn_pmml_model/ensemble)          | ✅             | ✅         | ✅<sup>1</sup>        |
| [Gradient Boosting](sklearn_pmml_model/ensemble)       | ✅             | ✅         | ✅<sup>1</sup>        |
| [Linear Regression](sklearn_pmml_model/linear_model)   | ✅             | ✅         | ✅<sup>3</sup>        |
| [Ridge](sklearn_pmml_model/linear_model)               | ✅<sup>2</sup> | ✅         | ✅<sup>3</sup>        |
| [Lasso](sklearn_pmml_model/linear_model)               | ✅<sup>2</sup> | ✅         | ✅<sup>3</sup>        |
| [ElasticNet](sklearn_pmml_model/linear_model)          | ✅<sup>2</sup> | ✅         | ✅<sup>3</sup>        |
| [Gaussian Naive Bayes](sklearn_pmml_model/naive_bayes) | ✅             |            | ✅<sup>3</sup>        |
| [Support Vector Machines](sklearn_pmml_model/svm)      | ✅             | ✅         | ✅<sup>3</sup>        |
| [Nearest Neighbors](sklearn_pmml_model/neighbors)      | ✅             | ✅         |                      |
| [Neural Networks](sklearn_pmml_model/neural_network)   | ✅             | ✅         |                      |

<sub><sup>1</sup> Categorical feature support using slightly modified internals, based on [scikit-learn#12866](https://github.com/scikit-learn/scikit-learn/pull/12866).</sub>

<sub><sup>2</sup> These models differ only in training characteristics, the resulting model is of the same form. Classification is supported using `PMMLLogisticRegression` for regression models and `PMMLRidgeClassifier` for general regression models.</sub>

<sub><sup>3</sup> By one-hot encoding categorical features automatically.</sub>
  
## Example
A minimal working example (using [this PMML file](https://github.com/iamDecode/sklearn-pmml-model/blob/master/models/randomForest.pmml)) is shown below:

```python
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
import pandas as pd
import numpy as np
from sklearn_pmml_model.ensemble import PMMLForestClassifier
from sklearn_pmml_model.auto_detect import auto_detect_estimator

# Prepare the data
iris = load_iris()
X = pd.DataFrame(iris.data)
X.columns = np.array(iris.feature_names)
y = pd.Series(np.array(iris.target_names)[iris.target])
y.name = "Class"
Xtr, Xte, ytr, yte = train_test_split(X, y, test_size=0.33, random_state=123)

# Specify the model type for the least overhead...
#clf = PMMLForestClassifier(pmml="models/randomForest.pmml")

# ...or simply let the library auto-detect the model type
clf = auto_detect_estimator(pmml="models/randomForest.pmml")

# Use the model as any other scikit-learn model
clf.predict(Xte)
clf.score(Xte, yte)
```

More examples can be found in the subsequent packages: [tree](sklearn_pmml_model/tree), [ensemble](sklearn_pmml_model/ensemble), [linear_model](sklearn_pmml_model/linear_model), [naive_bayes](sklearn_pmml_model/naive_bayes), [svm](sklearn_pmml_model/svm), [neighbors](sklearn_pmml_model/neighbors) and [neural_network](sklearn_pmml_model/neural_network).

## Benchmark

Depending on the data set and model, `sklearn-pmml-model` is between 5 and a 1000 times faster than competing libraries, by leveraging the optimization and industry-tested robustness of `sklearn`. Source code for this benchmark can be found in the corresponding [jupyter notebook](benchmark.ipynb). 


### Running times (load + predict, in seconds)
|               |                     | Linear model | Naive Bayes | Decision tree | Random Forest | Gradient boosting |
|---------------|---------------------|--------------|-------------|---------------|---------------|-------------------|
| Wine          | `PyPMML`            | 0.773291     | 0.77384     | 0.777425      | 0.895204      | 0.902355          |
|               | `sklearn-pmml-model`| 0.005813     | 0.006357    | 0.002693      | 0.108882      | 0.121823          |
| Breast cancer | `PyPMML`            | 3.849855     | 3.878448    | 3.83623       | 4.16358       | 4.13766           |
|               | `sklearn-pmml-model`| 0.015723     | 0.011278    | 0.002807      | 0.146234      | 0.044016          |

### Improvement

|               |                    | Linear model | Naive Bayes | Decision tree | Random Forest | Gradient boosting |
|---------------|--------------------|--------------|-------------|---------------|---------------|-------------------|
| Wine          | Improvement        | 133×         | 122×        | 289×          | 8×            | 7×                |
| Breast cancer | Improvement        | 245×         | 344×        | **1,367×**    | 28×           | 94×               |

## Development

### Prerequisites

Tests can be run using Py.test. Grab a local copy of the source:

```
$ git clone http://github.com/iamDecode/sklearn-pmml-model
$ cd sklearn-pmml-model
```

create a virtual environment and activating it:
```
$ python3 -m venv venv
$ source venv/bin/activate
```

and install the dependencies:

```
$ pip install -r requirements.txt
```

The final step is to build the Cython extensions:

```
$ python setup.py build_ext --inplace
```

### Testing

You can execute tests with py.test by running:
```
$ python setup.py pytest
```

## Contributing

Feel free to make a contribution. Please read [CONTRIBUTING.md](CONTRIBUTING.md) for more details.

## License

This project is licensed under the BSD 2-Clause License - see the [LICENSE](LICENSE) file for details.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/iamDecode/sklearn-pmml-model",
    "name": "sklearn-pmml-model",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Dennis Collaris",
    "author_email": "d.collaris@me.com",
    "download_url": "https://files.pythonhosted.org/packages/0c/c9/0137ca1537b2943c336da08fa358cf1496b251f94c25c2ffd2acd8266523/sklearn_pmml_model-1.0.7.tar.gz",
    "platform": null,
    "description": "<img src=\"https://user-images.githubusercontent.com/1223300/41346080-c2c910a0-6f05-11e8-89e9-71a72bb9543f.png\" width=\"300\">\n\n# sklearn-pmml-model\n\n[![PyPI version](https://badge.fury.io/py/sklearn-pmml-model.svg)](https://badge.fury.io/py/sklearn-pmml-model)\n[![codecov](https://codecov.io/gh/iamDecode/sklearn-pmml-model/branch/master/graph/badge.svg?token=CGbbgziGwn)](https://codecov.io/gh/iamDecode/sklearn-pmml-model)\n[![CircleCI](https://circleci.com/gh/iamDecode/sklearn-pmml-model.svg?style=shield)](https://circleci.com/gh/iamDecode/sklearn-pmml-model)\n[![ReadTheDocs](https://readthedocs.org/projects/sklearn-pmml-model/badge/?version=latest&style=flat)](https://sklearn-pmml-model.readthedocs.io/en/latest/)\n\nA library to effortlessly import models trained on different platforms and with programming languages into scikit-learn in Python. First export your model to [PMML](http://dmg.org/pmml/v4-3/GeneralStructure.html) (widely supported). Next, load the exported PMML file with this library, and use the class as any other scikit-learn estimator.\n\n\n## Installation\n\nThe easiest way is to use pip:\n\n```\n$ pip install sklearn-pmml-model\n```\n\n## Status\nThe library currently supports the following models:\n\n| Model                                                  | Classification | Regression | Categorical features |\n|--------------------------------------------------------|----------------|------------|----------------------|\n| [Decision Trees](sklearn_pmml_model/tree)              | \u2705             | \u2705         | \u2705<sup>1</sup>        |\n| [Random Forests](sklearn_pmml_model/ensemble)          | \u2705             | \u2705         | \u2705<sup>1</sup>        |\n| [Gradient Boosting](sklearn_pmml_model/ensemble)       | \u2705             | \u2705         | \u2705<sup>1</sup>        |\n| [Linear Regression](sklearn_pmml_model/linear_model)   | \u2705             | \u2705         | \u2705<sup>3</sup>        |\n| [Ridge](sklearn_pmml_model/linear_model)               | \u2705<sup>2</sup> | \u2705         | \u2705<sup>3</sup>        |\n| [Lasso](sklearn_pmml_model/linear_model)               | \u2705<sup>2</sup> | \u2705         | \u2705<sup>3</sup>        |\n| [ElasticNet](sklearn_pmml_model/linear_model)          | \u2705<sup>2</sup> | \u2705         | \u2705<sup>3</sup>        |\n| [Gaussian Naive Bayes](sklearn_pmml_model/naive_bayes) | \u2705             |            | \u2705<sup>3</sup>        |\n| [Support Vector Machines](sklearn_pmml_model/svm)      | \u2705             | \u2705         | \u2705<sup>3</sup>        |\n| [Nearest Neighbors](sklearn_pmml_model/neighbors)      | \u2705             | \u2705         |                      |\n| [Neural Networks](sklearn_pmml_model/neural_network)   | \u2705             | \u2705         |                      |\n\n<sub><sup>1</sup> Categorical feature support using slightly modified internals, based on [scikit-learn#12866](https://github.com/scikit-learn/scikit-learn/pull/12866).</sub>\n\n<sub><sup>2</sup> These models differ only in training characteristics, the resulting model is of the same form. Classification is supported using `PMMLLogisticRegression` for regression models and `PMMLRidgeClassifier` for general regression models.</sub>\n\n<sub><sup>3</sup> By one-hot encoding categorical features automatically.</sub>\n  \n## Example\nA minimal working example (using [this PMML file](https://github.com/iamDecode/sklearn-pmml-model/blob/master/models/randomForest.pmml)) is shown below:\n\n```python\nfrom sklearn.datasets import load_iris\nfrom sklearn.model_selection import train_test_split\nimport pandas as pd\nimport numpy as np\nfrom sklearn_pmml_model.ensemble import PMMLForestClassifier\nfrom sklearn_pmml_model.auto_detect import auto_detect_estimator\n\n# Prepare the data\niris = load_iris()\nX = pd.DataFrame(iris.data)\nX.columns = np.array(iris.feature_names)\ny = pd.Series(np.array(iris.target_names)[iris.target])\ny.name = \"Class\"\nXtr, Xte, ytr, yte = train_test_split(X, y, test_size=0.33, random_state=123)\n\n# Specify the model type for the least overhead...\n#clf = PMMLForestClassifier(pmml=\"models/randomForest.pmml\")\n\n# ...or simply let the library auto-detect the model type\nclf = auto_detect_estimator(pmml=\"models/randomForest.pmml\")\n\n# Use the model as any other scikit-learn model\nclf.predict(Xte)\nclf.score(Xte, yte)\n```\n\nMore examples can be found in the subsequent packages: [tree](sklearn_pmml_model/tree), [ensemble](sklearn_pmml_model/ensemble), [linear_model](sklearn_pmml_model/linear_model), [naive_bayes](sklearn_pmml_model/naive_bayes), [svm](sklearn_pmml_model/svm), [neighbors](sklearn_pmml_model/neighbors) and [neural_network](sklearn_pmml_model/neural_network).\n\n## Benchmark\n\nDepending on the data set and model, `sklearn-pmml-model` is between 5 and a 1000 times faster than competing libraries, by leveraging the optimization and industry-tested robustness of `sklearn`. Source code for this benchmark can be found in the corresponding [jupyter notebook](benchmark.ipynb). \n\n\n### Running times (load + predict, in seconds)\n|               |                     | Linear model | Naive Bayes | Decision tree | Random Forest | Gradient boosting |\n|---------------|---------------------|--------------|-------------|---------------|---------------|-------------------|\n| Wine          | `PyPMML`            | 0.773291     | 0.77384     | 0.777425      | 0.895204      | 0.902355          |\n|               | `sklearn-pmml-model`| 0.005813     | 0.006357    | 0.002693      | 0.108882      | 0.121823          |\n| Breast cancer | `PyPMML`            | 3.849855     | 3.878448    | 3.83623       | 4.16358       | 4.13766           |\n|               | `sklearn-pmml-model`| 0.015723     | 0.011278    | 0.002807      | 0.146234      | 0.044016          |\n\n### Improvement\n\n|               |                    | Linear model | Naive Bayes | Decision tree | Random Forest | Gradient boosting |\n|---------------|--------------------|--------------|-------------|---------------|---------------|-------------------|\n| Wine          | Improvement        | 133\u00d7         | 122\u00d7        | 289\u00d7          | 8\u00d7            | 7\u00d7                |\n| Breast cancer | Improvement        | 245\u00d7         | 344\u00d7        | **1,367\u00d7**    | 28\u00d7           | 94\u00d7               |\n\n## Development\n\n### Prerequisites\n\nTests can be run using Py.test. Grab a local copy of the source:\n\n```\n$ git clone http://github.com/iamDecode/sklearn-pmml-model\n$ cd sklearn-pmml-model\n```\n\ncreate a virtual environment and activating it:\n```\n$ python3 -m venv venv\n$ source venv/bin/activate\n```\n\nand install the dependencies:\n\n```\n$ pip install -r requirements.txt\n```\n\nThe final step is to build the Cython extensions:\n\n```\n$ python setup.py build_ext --inplace\n```\n\n### Testing\n\nYou can execute tests with py.test by running:\n```\n$ python setup.py pytest\n```\n\n## Contributing\n\nFeel free to make a contribution. Please read [CONTRIBUTING.md](CONTRIBUTING.md) for more details.\n\n## License\n\nThis project is licensed under the BSD 2-Clause License - see the [LICENSE](LICENSE) file for details.\n",
    "bugtrack_url": null,
    "license": "BSD-2-Clause",
    "summary": "A library to parse PMML models into Scikit-learn estimators.",
    "version": "1.0.7",
    "project_urls": {
        "Homepage": "https://github.com/iamDecode/sklearn-pmml-model"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c74e905d0a9e7986cd098f3d869e2d497cfa637d431fcca4131e4191435f89a2",
                "md5": "78163381bb5629dc93050e41b6ace676",
                "sha256": "967d142099d4716990e8b78a2deeba2cb489325f8a01af40eb9a2f066f411993"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "78163381bb5629dc93050e41b6ace676",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 481857,
            "upload_time": "2024-04-15T17:17:59",
            "upload_time_iso_8601": "2024-04-15T17:17:59.901790Z",
            "url": "https://files.pythonhosted.org/packages/c7/4e/905d0a9e7986cd098f3d869e2d497cfa637d431fcca4131e4191435f89a2/sklearn_pmml_model-1.0.7-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "139a216169cc3e5420f13e5adc817c26ce11a9accb21d182f38d809092295456",
                "md5": "5455caf3882f1fffd69ee5520d657419",
                "sha256": "b18e2c0c20fcc748565769db7053fa2f0543cb36354654210a2d205fe3ea47ca"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5455caf3882f1fffd69ee5520d657419",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 464864,
            "upload_time": "2024-04-15T17:18:03",
            "upload_time_iso_8601": "2024-04-15T17:18:03.545568Z",
            "url": "https://files.pythonhosted.org/packages/13/9a/216169cc3e5420f13e5adc817c26ce11a9accb21d182f38d809092295456/sklearn_pmml_model-1.0.7-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6e05d299775859afc5df0814ccefb52324368594899c86b773382cafd576ec5",
                "md5": "400a2eddf688f76bc554236ce2be4df1",
                "sha256": "4dc18b8c745c7b982044a27b889fb15dc8e02d16f4775f02bf0bd24cdfca1d60"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "400a2eddf688f76bc554236ce2be4df1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1960064,
            "upload_time": "2024-04-15T17:18:05",
            "upload_time_iso_8601": "2024-04-15T17:18:05.420451Z",
            "url": "https://files.pythonhosted.org/packages/e6/e0/5d299775859afc5df0814ccefb52324368594899c86b773382cafd576ec5/sklearn_pmml_model-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "006ce4bdd4d6926c82451cbad5228430642029adac4c83b4e9e00f8a7c82a60f",
                "md5": "02896d1d28048635ab6840c6e92cccfa",
                "sha256": "2c63e3b53bdb499fafb5b601a42fca7d70865a7a5f777906f17cb670eeb13577"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "02896d1d28048635ab6840c6e92cccfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1868108,
            "upload_time": "2024-04-15T17:18:07",
            "upload_time_iso_8601": "2024-04-15T17:18:07.191488Z",
            "url": "https://files.pythonhosted.org/packages/00/6c/e4bdd4d6926c82451cbad5228430642029adac4c83b4e9e00f8a7c82a60f/sklearn_pmml_model-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "252ac1c786a8d38f624917ec23e5bc6c2969c0d925d7778c44bf6f9339dd16c9",
                "md5": "6f48bcd168d0a157ba8c69443a1c6ed0",
                "sha256": "deebeb05c0cc2b4205dbca535e3574f159e856252c00e2e9dc202dd5ca21fdbd"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "6f48bcd168d0a157ba8c69443a1c6ed0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2136178,
            "upload_time": "2024-04-15T17:18:09",
            "upload_time_iso_8601": "2024-04-15T17:18:09.135996Z",
            "url": "https://files.pythonhosted.org/packages/25/2a/c1c786a8d38f624917ec23e5bc6c2969c0d925d7778c44bf6f9339dd16c9/sklearn_pmml_model-1.0.7-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08bff066c58283d18973e2f3257f3f69edc3d372a4ac5583f8bfc1f6c45458e5",
                "md5": "ea28a80ea05a4f240bd505945de02786",
                "sha256": "f45100589ede9a37bd9c276486cd37f3caf4114674457ce71f8ed8f4ccd507d0"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea28a80ea05a4f240bd505945de02786",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2219520,
            "upload_time": "2024-04-15T17:18:10",
            "upload_time_iso_8601": "2024-04-15T17:18:10.710966Z",
            "url": "https://files.pythonhosted.org/packages/08/bf/f066c58283d18973e2f3257f3f69edc3d372a4ac5583f8bfc1f6c45458e5/sklearn_pmml_model-1.0.7-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "746040d464d6021ca51b183f906791a6b2d10910352533bd9cc07b55ff60e936",
                "md5": "b413b1cde48c8d7cac3ef76fce4b1b00",
                "sha256": "74e936efdce6c29ad1a411418a9bacc6febadc32501f433834142db4fcc8e5e3"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "b413b1cde48c8d7cac3ef76fce4b1b00",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 413004,
            "upload_time": "2024-04-15T17:18:12",
            "upload_time_iso_8601": "2024-04-15T17:18:12.125222Z",
            "url": "https://files.pythonhosted.org/packages/74/60/40d464d6021ca51b183f906791a6b2d10910352533bd9cc07b55ff60e936/sklearn_pmml_model-1.0.7-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffa0937b27d39a26e71709f37b3be575d9d6a3edc515adf583fbb58af47ca567",
                "md5": "ed62c27d19f3a9384145af5104421a64",
                "sha256": "cb148febd68de6d7b2e30f6953e56a9e8e06558f96911348a79cff9d15b749e4"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ed62c27d19f3a9384145af5104421a64",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 461898,
            "upload_time": "2024-04-15T17:18:13",
            "upload_time_iso_8601": "2024-04-15T17:18:13.442190Z",
            "url": "https://files.pythonhosted.org/packages/ff/a0/937b27d39a26e71709f37b3be575d9d6a3edc515adf583fbb58af47ca567/sklearn_pmml_model-1.0.7-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8684ccd6d488c16ca6c2d3e52e92395b28dd3422b646daf0bd9f785dbf69e798",
                "md5": "8f01381fe897d2ce64cae94f01ba5722",
                "sha256": "86968b1732c86480c12ea33d3a689c1622c253b33622dc0be5c557a695749fca"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f01381fe897d2ce64cae94f01ba5722",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 482848,
            "upload_time": "2024-04-15T17:18:14",
            "upload_time_iso_8601": "2024-04-15T17:18:14.792174Z",
            "url": "https://files.pythonhosted.org/packages/86/84/ccd6d488c16ca6c2d3e52e92395b28dd3422b646daf0bd9f785dbf69e798/sklearn_pmml_model-1.0.7-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33a386c445af611326519e87c8168c76badfa1a15b4e64e14907f9e7cd8c77a1",
                "md5": "864429d1ddbb83e99c727cdd4839a243",
                "sha256": "f127933e7acb21584861d3bbaa8a5d6a151605f8aecd4f1135005fd163893dd7"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "864429d1ddbb83e99c727cdd4839a243",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 465256,
            "upload_time": "2024-04-15T17:18:16",
            "upload_time_iso_8601": "2024-04-15T17:18:16.925403Z",
            "url": "https://files.pythonhosted.org/packages/33/a3/86c445af611326519e87c8168c76badfa1a15b4e64e14907f9e7cd8c77a1/sklearn_pmml_model-1.0.7-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aea32e92c3f09a2cd67954a930be9cf4eead5f655e2667a41302cee14b743b47",
                "md5": "f5a5ccb09cfed44afdae037933b59bc5",
                "sha256": "aee63540e2349675afc536d30d7cafe6d22d4ec37023036d6effaa6f7e5affae"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5a5ccb09cfed44afdae037933b59bc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2076319,
            "upload_time": "2024-04-15T17:18:19",
            "upload_time_iso_8601": "2024-04-15T17:18:19.093111Z",
            "url": "https://files.pythonhosted.org/packages/ae/a3/2e92c3f09a2cd67954a930be9cf4eead5f655e2667a41302cee14b743b47/sklearn_pmml_model-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e36643529fc4546247d69f84d95aac34dbd93785f7cf0d750c702dd90c4ab1d3",
                "md5": "76004f738357e947ad66ed5fee8d64e2",
                "sha256": "ba171a4c929e407223d418dfa492523a740731d827a3a9164c6f9b6a7f794a8f"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "76004f738357e947ad66ed5fee8d64e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1989700,
            "upload_time": "2024-04-15T17:18:20",
            "upload_time_iso_8601": "2024-04-15T17:18:20.844488Z",
            "url": "https://files.pythonhosted.org/packages/e3/66/43529fc4546247d69f84d95aac34dbd93785f7cf0d750c702dd90c4ab1d3/sklearn_pmml_model-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27c4700e2b7b9807d8302e5c1a8a9532aa0806c1765c614f41edc9503a90bc78",
                "md5": "2cfb9fdc13a00eacad604ab65e629089",
                "sha256": "fde3535e4039446ac5b135fd857bd9844b64923b526a37b02cec007d284f73cd"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "2cfb9fdc13a00eacad604ab65e629089",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2258784,
            "upload_time": "2024-04-15T17:18:22",
            "upload_time_iso_8601": "2024-04-15T17:18:22.906369Z",
            "url": "https://files.pythonhosted.org/packages/27/c4/700e2b7b9807d8302e5c1a8a9532aa0806c1765c614f41edc9503a90bc78/sklearn_pmml_model-1.0.7-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09767e5996ba0aa9c5ae9d189884e50996b6300cce243245a08a9e97d8095345",
                "md5": "e43e81b8941c5dccfc04450a86d5e7e6",
                "sha256": "efb04a0bb16238f17ec8b0096e38beb2385d3036df023272c029882c22c9daad"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e43e81b8941c5dccfc04450a86d5e7e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2352524,
            "upload_time": "2024-04-15T17:18:24",
            "upload_time_iso_8601": "2024-04-15T17:18:24.474880Z",
            "url": "https://files.pythonhosted.org/packages/09/76/7e5996ba0aa9c5ae9d189884e50996b6300cce243245a08a9e97d8095345/sklearn_pmml_model-1.0.7-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c350e0e28f78137046a04e5c4ca087870f8e915221e866858854ad29776206b",
                "md5": "b74a34e1eedf2e5c0b98fd5a13d04ea7",
                "sha256": "046b1b8865496ae195f7b41b54e7e51b8f45760459adb5cb57d8f4c9e40bfe54"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "b74a34e1eedf2e5c0b98fd5a13d04ea7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 411576,
            "upload_time": "2024-04-15T17:18:26",
            "upload_time_iso_8601": "2024-04-15T17:18:26.487751Z",
            "url": "https://files.pythonhosted.org/packages/7c/35/0e0e28f78137046a04e5c4ca087870f8e915221e866858854ad29776206b/sklearn_pmml_model-1.0.7-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6d121c741ed7becd2e5d17cdf7402fb9986907637db028498e96682b9c8483d",
                "md5": "cf9402593250f4a9cf7c598c2f6eb887",
                "sha256": "b6af336ef1c2e5f2cbd57880e2e309945bbf31f74e8c0d04f45aec8475be63e5"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cf9402593250f4a9cf7c598c2f6eb887",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 462853,
            "upload_time": "2024-04-15T17:18:27",
            "upload_time_iso_8601": "2024-04-15T17:18:27.873078Z",
            "url": "https://files.pythonhosted.org/packages/f6/d1/21c741ed7becd2e5d17cdf7402fb9986907637db028498e96682b9c8483d/sklearn_pmml_model-1.0.7-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fccbf664c7682100eee0b4b6f58cc227693dccdae6dc8103ffde311a8481d31",
                "md5": "c4a70b0924b63f54e588920b6489b700",
                "sha256": "6f64d39cc33ccafcd64e2f471902e8cd0caffe3873d2004cd6ff751da2b37ba3"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4a70b0924b63f54e588920b6489b700",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 482765,
            "upload_time": "2024-04-15T17:18:30",
            "upload_time_iso_8601": "2024-04-15T17:18:30.067283Z",
            "url": "https://files.pythonhosted.org/packages/7f/cc/bf664c7682100eee0b4b6f58cc227693dccdae6dc8103ffde311a8481d31/sklearn_pmml_model-1.0.7-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "923623cd3317d830ea7da99d4641e4e3a45438ecb05954e389a63107d67e7234",
                "md5": "2d5fdb143fcf84df12395194d5575d7b",
                "sha256": "c2e535fcca510bda89d92720ec068f981789e96e073f730f044a444014a40544"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2d5fdb143fcf84df12395194d5575d7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 462616,
            "upload_time": "2024-04-15T17:18:31",
            "upload_time_iso_8601": "2024-04-15T17:18:31.512895Z",
            "url": "https://files.pythonhosted.org/packages/92/36/23cd3317d830ea7da99d4641e4e3a45438ecb05954e389a63107d67e7234/sklearn_pmml_model-1.0.7-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5282a0aa7d9a7cc340780de12e9538d075f3a002adb9d18170890ca33c3f622c",
                "md5": "bc5dfee6f1091b91c764970f621a8913",
                "sha256": "2983f42c730e9204c9e24948c9a2c09d28e4ac1c7854ff306bcd2914ce349983"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc5dfee6f1091b91c764970f621a8913",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2197070,
            "upload_time": "2024-04-15T17:18:32",
            "upload_time_iso_8601": "2024-04-15T17:18:32.861980Z",
            "url": "https://files.pythonhosted.org/packages/52/82/a0aa7d9a7cc340780de12e9538d075f3a002adb9d18170890ca33c3f622c/sklearn_pmml_model-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dff54abc2103ae354eb2c74a6b5bdd3901a8348530e7eb0a603b6fec385efc7",
                "md5": "c39c9706739d6448a6e86d888497c831",
                "sha256": "09a6e88ddb0c6c55b61b504032cefee86d1bc730209f96fcaf088cd4f674361e"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c39c9706739d6448a6e86d888497c831",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2115264,
            "upload_time": "2024-04-15T17:18:34",
            "upload_time_iso_8601": "2024-04-15T17:18:34.299444Z",
            "url": "https://files.pythonhosted.org/packages/5d/ff/54abc2103ae354eb2c74a6b5bdd3901a8348530e7eb0a603b6fec385efc7/sklearn_pmml_model-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c61253cbbf9c344b1f1b577cd2d77677208fb9dba4e13f7bf8aa6886adccbb1",
                "md5": "72950ff8e4d05a7d7fa60e0ab0989dfc",
                "sha256": "b74725d1de4a148ac5946839f17b853a13b6db37ad4d68b4f3d256677ddd1d26"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "72950ff8e4d05a7d7fa60e0ab0989dfc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2230667,
            "upload_time": "2024-04-15T17:18:35",
            "upload_time_iso_8601": "2024-04-15T17:18:35.821206Z",
            "url": "https://files.pythonhosted.org/packages/6c/61/253cbbf9c344b1f1b577cd2d77677208fb9dba4e13f7bf8aa6886adccbb1/sklearn_pmml_model-1.0.7-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f72cef38cb7f20e8420cea89a59fe6e63229ecc3f65a256af2c142a0cd5e5081",
                "md5": "b513fa2eedbfaa2934e9d8c820d4a5e7",
                "sha256": "0744c4d13d7c499809cc79432f346a8e440c1703adc13a540e42f621a02116d4"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b513fa2eedbfaa2934e9d8c820d4a5e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2331576,
            "upload_time": "2024-04-15T17:18:37",
            "upload_time_iso_8601": "2024-04-15T17:18:37.353602Z",
            "url": "https://files.pythonhosted.org/packages/f7/2c/ef38cb7f20e8420cea89a59fe6e63229ecc3f65a256af2c142a0cd5e5081/sklearn_pmml_model-1.0.7-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc12848bfbd3ad5c6d4a3b448439d28672ffb647fd4a3f3fce092590a7a2be88",
                "md5": "8d5866bfd7704a999bfb294ff3e98b16",
                "sha256": "29ebf5849eb102a9b0c2e597f33dbb549f76a4cb2ccfc708b8603f4ecb5b41a6"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "8d5866bfd7704a999bfb294ff3e98b16",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 408889,
            "upload_time": "2024-04-15T17:18:38",
            "upload_time_iso_8601": "2024-04-15T17:18:38.666283Z",
            "url": "https://files.pythonhosted.org/packages/bc/12/848bfbd3ad5c6d4a3b448439d28672ffb647fd4a3f3fce092590a7a2be88/sklearn_pmml_model-1.0.7-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0e732fd88bd687a92fa269feb244fa0ba69a95fd312ab52a37c9092bc4dbfa4",
                "md5": "b4851b957262339802b56d1ec22d3e2a",
                "sha256": "f4c77898fac17be15d3b93ea39a8a77d59223f287bf97f1101bd8f79eb7a0a26"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4851b957262339802b56d1ec22d3e2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 458147,
            "upload_time": "2024-04-15T17:18:40",
            "upload_time_iso_8601": "2024-04-15T17:18:40.032950Z",
            "url": "https://files.pythonhosted.org/packages/a0/e7/32fd88bd687a92fa269feb244fa0ba69a95fd312ab52a37c9092bc4dbfa4/sklearn_pmml_model-1.0.7-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "172062c7560852da6e9b69312d7ed539adc7d87f60350ce410aac9a14ec7ccf8",
                "md5": "d16f18743b19b9926d2b01bbb88193b4",
                "sha256": "045c0223eeb30ee28ffe794ed2550bea3c4d6d3c0b233a4703f24ce476424e8f"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d16f18743b19b9926d2b01bbb88193b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 473140,
            "upload_time": "2024-04-15T17:18:41",
            "upload_time_iso_8601": "2024-04-15T17:18:41.422794Z",
            "url": "https://files.pythonhosted.org/packages/17/20/62c7560852da6e9b69312d7ed539adc7d87f60350ce410aac9a14ec7ccf8/sklearn_pmml_model-1.0.7-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dec263cde9572445fcff10cc79efdb147ccfe825139c950c712227c1ede06392",
                "md5": "f45cb6442ba7c1698410a11c0f215a9e",
                "sha256": "122b6799f93f86edbc22fc5e0a3f3a9e0189d08c1a16b0596fe4a3b0db711d10"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f45cb6442ba7c1698410a11c0f215a9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1804759,
            "upload_time": "2024-04-15T17:18:42",
            "upload_time_iso_8601": "2024-04-15T17:18:42.783636Z",
            "url": "https://files.pythonhosted.org/packages/de/c2/63cde9572445fcff10cc79efdb147ccfe825139c950c712227c1ede06392/sklearn_pmml_model-1.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fe9c4d3da03d678c9e33c758ae32f943859e102e1d11d23430dac7c713eea77",
                "md5": "ce44ee617a2f318b9f6b2b0d28e7b2f6",
                "sha256": "bd7a94dcf1a7bc5c27c6d60901760ea4b909b0e6bdc749c67e4a9e9fb94b96b8"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ce44ee617a2f318b9f6b2b0d28e7b2f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1711708,
            "upload_time": "2024-04-15T17:18:44",
            "upload_time_iso_8601": "2024-04-15T17:18:44.380334Z",
            "url": "https://files.pythonhosted.org/packages/7f/e9/c4d3da03d678c9e33c758ae32f943859e102e1d11d23430dac7c713eea77/sklearn_pmml_model-1.0.7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f5e8e133acb99ab0effe45a6398c3d250e66d65448b4c95b3c21034007213c1",
                "md5": "326701dba4205d3bc2c9ce03926610de",
                "sha256": "5625616ea7b2c0bbc2320d88b6eed75c6df920760d64261163fd9d996b40ae83"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "326701dba4205d3bc2c9ce03926610de",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1850433,
            "upload_time": "2024-04-15T17:18:45",
            "upload_time_iso_8601": "2024-04-15T17:18:45.857335Z",
            "url": "https://files.pythonhosted.org/packages/1f/5e/8e133acb99ab0effe45a6398c3d250e66d65448b4c95b3c21034007213c1/sklearn_pmml_model-1.0.7-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a7a3aac9315b843219078958a4ce91c9703e89ed1228d8b7b1601d21b008bce",
                "md5": "a1d81cdfbd3da982d42297f88cee8021",
                "sha256": "34b6c975512817413de09b4b803fceba77f2d919ddacc9d38917aa92e2dfa20e"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1d81cdfbd3da982d42297f88cee8021",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1930694,
            "upload_time": "2024-04-15T17:18:47",
            "upload_time_iso_8601": "2024-04-15T17:18:47.968794Z",
            "url": "https://files.pythonhosted.org/packages/1a/7a/3aac9315b843219078958a4ce91c9703e89ed1228d8b7b1601d21b008bce/sklearn_pmml_model-1.0.7-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f893056912f9d0f63f9a0b08d4e8a268fd265c030a110453a596daf350183cc7",
                "md5": "47b356aefdb96e3ca6808ef9d0f72441",
                "sha256": "8ca5b39b2adda440973c17e986a74c40c4562a691d1177d6c11a88ef0b889bf7"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "47b356aefdb96e3ca6808ef9d0f72441",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 404174,
            "upload_time": "2024-04-15T17:18:49",
            "upload_time_iso_8601": "2024-04-15T17:18:49.622323Z",
            "url": "https://files.pythonhosted.org/packages/f8/93/056912f9d0f63f9a0b08d4e8a268fd265c030a110453a596daf350183cc7/sklearn_pmml_model-1.0.7-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f08562b42141f632ba07b79488c10bd45442f462e71cd1e4536f6c50ba5a44b",
                "md5": "1d1bf097d81d77920b2472939ee95bf3",
                "sha256": "9fd220b0353d1a635ddfcdedcbc38b6a53157b71b46fbe20690d2d399f52f8ce"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1d1bf097d81d77920b2472939ee95bf3",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 454383,
            "upload_time": "2024-04-15T17:18:51",
            "upload_time_iso_8601": "2024-04-15T17:18:51.463792Z",
            "url": "https://files.pythonhosted.org/packages/3f/08/562b42141f632ba07b79488c10bd45442f462e71cd1e4536f6c50ba5a44b/sklearn_pmml_model-1.0.7-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da5a57b9bea3be365edfb30ba1168f6f58aec46eb41bf851723ad3b371f3c782",
                "md5": "66e76b692bb892d486a2ae3e87d64f6a",
                "sha256": "ca269ea15c68fc522ba77c14ffcc1da516e134bd0ee3cb1875679a2e6190cb81"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66e76b692bb892d486a2ae3e87d64f6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 487437,
            "upload_time": "2024-04-15T17:18:53",
            "upload_time_iso_8601": "2024-04-15T17:18:53.516122Z",
            "url": "https://files.pythonhosted.org/packages/da/5a/57b9bea3be365edfb30ba1168f6f58aec46eb41bf851723ad3b371f3c782/sklearn_pmml_model-1.0.7-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "307706801482c6b3c65d1f9d194dbc2afde4774ecd39f3c44b083d08722bc026",
                "md5": "a31cc11daa600b05746a1d1566421968",
                "sha256": "0858beb4ab3eeb6bbefe727c2ee800c07af2d7687e18fb4d8aa41de983b93656"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a31cc11daa600b05746a1d1566421968",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1889382,
            "upload_time": "2024-04-15T17:18:55",
            "upload_time_iso_8601": "2024-04-15T17:18:55.705092Z",
            "url": "https://files.pythonhosted.org/packages/30/77/06801482c6b3c65d1f9d194dbc2afde4774ecd39f3c44b083d08722bc026/sklearn_pmml_model-1.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13e44fb87d2bd93b7fed8cb584b5ff67e4773d04b2fef54ce9d442f5c34fd5a8",
                "md5": "69298b80b7de1eb400dd21d4d7814c34",
                "sha256": "60b1ccdccfec9c2cd8dcfe5b37363e1b51307c436b059189b40b7e442b25aa04"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "69298b80b7de1eb400dd21d4d7814c34",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1790519,
            "upload_time": "2024-04-15T17:18:58",
            "upload_time_iso_8601": "2024-04-15T17:18:58.265645Z",
            "url": "https://files.pythonhosted.org/packages/13/e4/4fb87d2bd93b7fed8cb584b5ff67e4773d04b2fef54ce9d442f5c34fd5a8/sklearn_pmml_model-1.0.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dde67ea0a6618d00dcd1a6da3d7c93c9a59221b65651482c83cebf37f620495d",
                "md5": "812bae076d2d5cc5a3cdf5a96a31e837",
                "sha256": "75b46a2f8bd6994fd35d3d3145c62c1fc5c08bba960abf492447bd9b3e6a233b"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "812bae076d2d5cc5a3cdf5a96a31e837",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1959604,
            "upload_time": "2024-04-15T17:19:00",
            "upload_time_iso_8601": "2024-04-15T17:19:00.443934Z",
            "url": "https://files.pythonhosted.org/packages/dd/e6/7ea0a6618d00dcd1a6da3d7c93c9a59221b65651482c83cebf37f620495d/sklearn_pmml_model-1.0.7-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e4ef04beaa60a43ea8e1c7672b4f5b69d88abe2e938ec471ebeaaebd588ca7b",
                "md5": "fbdc565282e8403f0805faf238774464",
                "sha256": "97b388fcd1b0e2051662df4cfdf59d9a99de944931059cdc4e445bd9d00b5a87"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbdc565282e8403f0805faf238774464",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2041883,
            "upload_time": "2024-04-15T17:19:02",
            "upload_time_iso_8601": "2024-04-15T17:19:02.395662Z",
            "url": "https://files.pythonhosted.org/packages/4e/4e/f04beaa60a43ea8e1c7672b4f5b69d88abe2e938ec471ebeaaebd588ca7b/sklearn_pmml_model-1.0.7-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f9174fa6394468169cf4a7fbeb15290df213da106b6f37ec2e7dbf2c36efc1a",
                "md5": "bd707529e7bb7f423d1bec52123479ee",
                "sha256": "c68fa715ede5dcc2a9c47e835c8280e48f24b4cbc4405f313477fd7b57d2d76f"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "bd707529e7bb7f423d1bec52123479ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 412717,
            "upload_time": "2024-04-15T17:19:04",
            "upload_time_iso_8601": "2024-04-15T17:19:04.691405Z",
            "url": "https://files.pythonhosted.org/packages/7f/91/74fa6394468169cf4a7fbeb15290df213da106b6f37ec2e7dbf2c36efc1a/sklearn_pmml_model-1.0.7-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c72d8797fc5dccb3cc7e5672b670ed8f84158c7889026e4cb0d4655d42ad5b93",
                "md5": "2f44d9b50bf2e9d1f18297109087e6f2",
                "sha256": "d8bbb88dc375a9d86dfd9988f533a45088ded9c9b82b2e302af20ba654f1acbf"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f44d9b50bf2e9d1f18297109087e6f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 463280,
            "upload_time": "2024-04-15T17:19:07",
            "upload_time_iso_8601": "2024-04-15T17:19:07.003902Z",
            "url": "https://files.pythonhosted.org/packages/c7/2d/8797fc5dccb3cc7e5672b670ed8f84158c7889026e4cb0d4655d42ad5b93/sklearn_pmml_model-1.0.7-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be8b5dbddecd53c6aa8c8080bed9cf0b3e4907c0ce2a4c8d98ee3b1601740465",
                "md5": "a638aa872995ce496a343d704adee5e0",
                "sha256": "bfbc789bc2c6ffb422ccb8e48fcff31e02a2c77172e230c5a6c71c4b660f0e64"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a638aa872995ce496a343d704adee5e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 490447,
            "upload_time": "2024-04-15T17:19:08",
            "upload_time_iso_8601": "2024-04-15T17:19:08.816278Z",
            "url": "https://files.pythonhosted.org/packages/be/8b/5dbddecd53c6aa8c8080bed9cf0b3e4907c0ce2a4c8d98ee3b1601740465/sklearn_pmml_model-1.0.7-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89e585ee79dec95b0867316cbf1350aa8dd31ea6cdd8ee22b2d2a977cfeab47d",
                "md5": "6013155a41c1c2add627ba2ae12bd7dc",
                "sha256": "b36f665a0439481c1ded13cf118c90e60993cbd8c8bfd18b050d6b30017a44a4"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6013155a41c1c2add627ba2ae12bd7dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 472822,
            "upload_time": "2024-04-15T17:19:10",
            "upload_time_iso_8601": "2024-04-15T17:19:10.770931Z",
            "url": "https://files.pythonhosted.org/packages/89/e5/85ee79dec95b0867316cbf1350aa8dd31ea6cdd8ee22b2d2a977cfeab47d/sklearn_pmml_model-1.0.7-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "554cdbff32993bc63a2e17c4990abae7b540faf0c338ada312985f6cf0aa7e49",
                "md5": "f4b53fe8ec79da6cbd9282645d880e0d",
                "sha256": "adb9ca263f90e2154e52ebec6d8adf9e3f7a349051257b2b8a421ed74a3509b2"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f4b53fe8ec79da6cbd9282645d880e0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2031436,
            "upload_time": "2024-04-15T17:19:12",
            "upload_time_iso_8601": "2024-04-15T17:19:12.868877Z",
            "url": "https://files.pythonhosted.org/packages/55/4c/dbff32993bc63a2e17c4990abae7b540faf0c338ada312985f6cf0aa7e49/sklearn_pmml_model-1.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7752ea5d7c1579cee3450d42d6394e6bcd98557ca1eb2d30c1a53e75ad5fe239",
                "md5": "cb842ad5167fe6d7ef77393fd5794cf2",
                "sha256": "fb878272a7538280acd032ed183bdc6f74739a662f65d2432c70658c084ea73e"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cb842ad5167fe6d7ef77393fd5794cf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1939311,
            "upload_time": "2024-04-15T17:19:14",
            "upload_time_iso_8601": "2024-04-15T17:19:14.970896Z",
            "url": "https://files.pythonhosted.org/packages/77/52/ea5d7c1579cee3450d42d6394e6bcd98557ca1eb2d30c1a53e75ad5fe239/sklearn_pmml_model-1.0.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3a78323eeb7c85881a6aaaab9340529d04f463cef175732c73b38052f5bb682",
                "md5": "9784fc122b29a32481a587f671119952",
                "sha256": "366032aaf1424f8c643bd8f878cfecec29aeb496c1c44c36333238352f2f3b1a"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9784fc122b29a32481a587f671119952",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2180660,
            "upload_time": "2024-04-15T17:19:16",
            "upload_time_iso_8601": "2024-04-15T17:19:16.996412Z",
            "url": "https://files.pythonhosted.org/packages/b3/a7/8323eeb7c85881a6aaaab9340529d04f463cef175732c73b38052f5bb682/sklearn_pmml_model-1.0.7-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78cadcffc3e493709d6e20530c4dc4951f09f4a7ee3680759d853a4247e6a46a",
                "md5": "8736b26cc424e95b121ec0a2cabf66fb",
                "sha256": "cd5f29ad1644d718a2f0ef441e90897bde527c433657268a120934f0425a8567"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8736b26cc424e95b121ec0a2cabf66fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2273204,
            "upload_time": "2024-04-15T17:19:18",
            "upload_time_iso_8601": "2024-04-15T17:19:18.960646Z",
            "url": "https://files.pythonhosted.org/packages/78/ca/dcffc3e493709d6e20530c4dc4951f09f4a7ee3680759d853a4247e6a46a/sklearn_pmml_model-1.0.7-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c33159e528def65eab6c38c47ee5bdd77188671b84b450a85f69bd105906f116",
                "md5": "1daee7d2da3626cdb1b3315e4caa24cb",
                "sha256": "88ccd1674bd7f99a7eb41ea3deadf0a136fa56a904c2a090d05c58d59bd40363"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "1daee7d2da3626cdb1b3315e4caa24cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 416605,
            "upload_time": "2024-04-15T17:19:20",
            "upload_time_iso_8601": "2024-04-15T17:19:20.716856Z",
            "url": "https://files.pythonhosted.org/packages/c3/31/59e528def65eab6c38c47ee5bdd77188671b84b450a85f69bd105906f116/sklearn_pmml_model-1.0.7-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "193a63449847b35e774c2472391882928cd7472d5006191d3c66b31a9dc2e27c",
                "md5": "8f46e16495e988be99fcad21e5c815cd",
                "sha256": "4a1dc244fec0b130b187e3055e340fe9da68b6aa107709b356ef395a9b4acd59"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8f46e16495e988be99fcad21e5c815cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 465369,
            "upload_time": "2024-04-15T17:19:22",
            "upload_time_iso_8601": "2024-04-15T17:19:22.981499Z",
            "url": "https://files.pythonhosted.org/packages/19/3a/63449847b35e774c2472391882928cd7472d5006191d3c66b31a9dc2e27c/sklearn_pmml_model-1.0.7-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a92ce02db20b71086046891b64e84630b86dbcf21028255a6cc5ec1e94c7395e",
                "md5": "5689894c3ea283477ed6fc0941bd8114",
                "sha256": "29efa5388130ff16d03ed2f5d553096a48de70b051b72863e4e074a299add9c8"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5689894c3ea283477ed6fc0941bd8114",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 485388,
            "upload_time": "2024-04-15T17:19:25",
            "upload_time_iso_8601": "2024-04-15T17:19:25.021607Z",
            "url": "https://files.pythonhosted.org/packages/a9/2c/e02db20b71086046891b64e84630b86dbcf21028255a6cc5ec1e94c7395e/sklearn_pmml_model-1.0.7-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63e4d95fcd96d354f6d54f7e347b809aab4941b0c226cc12fa392cae53c0cce6",
                "md5": "2dd7b657fd491406047bfe116b807939",
                "sha256": "a7f4b2a0c91c530fa01f002c202abcaa145d26e208b7abc13643717f63ab8a39"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2dd7b657fd491406047bfe116b807939",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 468359,
            "upload_time": "2024-04-15T17:19:26",
            "upload_time_iso_8601": "2024-04-15T17:19:26.998939Z",
            "url": "https://files.pythonhosted.org/packages/63/e4/d95fcd96d354f6d54f7e347b809aab4941b0c226cc12fa392cae53c0cce6/sklearn_pmml_model-1.0.7-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd188256697fa122646a98d9c6f7c5c19c8e12cbe4de6e8cb7e2ca8228c75b95",
                "md5": "fee53d336144c6fa845cf7e6308739b4",
                "sha256": "caadfd2844acc447c8854cbed175efa77fc7ebbb3e49b46d9ae8cac2e628a1b4"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fee53d336144c6fa845cf7e6308739b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1972098,
            "upload_time": "2024-04-15T17:19:28",
            "upload_time_iso_8601": "2024-04-15T17:19:28.975471Z",
            "url": "https://files.pythonhosted.org/packages/dd/18/8256697fa122646a98d9c6f7c5c19c8e12cbe4de6e8cb7e2ca8228c75b95/sklearn_pmml_model-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1dd74a2af046186e21995b44ba3c75677dac2b241d6caa0f101dc5964e4bfd8",
                "md5": "3d6fe0b7f95aba7185fac1dc82893579",
                "sha256": "7dde19f2a9752007b657e708e56900758c7a30daaf828891ca6423292bd188bb"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3d6fe0b7f95aba7185fac1dc82893579",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1882236,
            "upload_time": "2024-04-15T17:19:31",
            "upload_time_iso_8601": "2024-04-15T17:19:31.127471Z",
            "url": "https://files.pythonhosted.org/packages/a1/dd/74a2af046186e21995b44ba3c75677dac2b241d6caa0f101dc5964e4bfd8/sklearn_pmml_model-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b9540da3a76e21d33a9374f9241ec9ba5463174f5b5fc1b4cb7c262c9f1d12d",
                "md5": "3f32e554c5755f7258e9ac72c4e003e5",
                "sha256": "cdab2a04e1220eb841c62058eeb690878ad67394afb1799173b373f74583047b"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3f32e554c5755f7258e9ac72c4e003e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2156180,
            "upload_time": "2024-04-15T17:19:33",
            "upload_time_iso_8601": "2024-04-15T17:19:33.541544Z",
            "url": "https://files.pythonhosted.org/packages/2b/95/40da3a76e21d33a9374f9241ec9ba5463174f5b5fc1b4cb7c262c9f1d12d/sklearn_pmml_model-1.0.7-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a00dca60221244a48bb4953a90ebb6713ba5bec7c7408898a753133d12e1a2c7",
                "md5": "060dcbb9ce73125c652202149db2aa47",
                "sha256": "b8e21186c43657dcc8ab135936ebb2c32f54c380523446ec0a208cd77d9e07e4"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "060dcbb9ce73125c652202149db2aa47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2239163,
            "upload_time": "2024-04-15T17:19:36",
            "upload_time_iso_8601": "2024-04-15T17:19:36.011275Z",
            "url": "https://files.pythonhosted.org/packages/a0/0d/ca60221244a48bb4953a90ebb6713ba5bec7c7408898a753133d12e1a2c7/sklearn_pmml_model-1.0.7-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45bcc1da065c6c1cf13fc5c5b168f6333d9d23fcda3515638b1613d97e7a21c",
                "md5": "0dffdc0f0193d5302c7e4b9485bfcf9c",
                "sha256": "c903a7686bd749eec6ec9d9b80bcfd55f3de3d0f54ca2796d119bc001275aa00"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "0dffdc0f0193d5302c7e4b9485bfcf9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 416770,
            "upload_time": "2024-04-15T17:19:37",
            "upload_time_iso_8601": "2024-04-15T17:19:37.400619Z",
            "url": "https://files.pythonhosted.org/packages/e4/5b/cc1da065c6c1cf13fc5c5b168f6333d9d23fcda3515638b1613d97e7a21c/sklearn_pmml_model-1.0.7-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53bc3c89d6ab835260036a6a59ccd244b6443838d458fbd124a3f98d9d778c94",
                "md5": "e43d1ea39f03cab6bc8209db4572f4f4",
                "sha256": "939c82719b41c79f970ba475d90195491ebcc1764f2aa0b78cfd069c12269ef4"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e43d1ea39f03cab6bc8209db4572f4f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 465363,
            "upload_time": "2024-04-15T17:19:39",
            "upload_time_iso_8601": "2024-04-15T17:19:39.021898Z",
            "url": "https://files.pythonhosted.org/packages/53/bc/3c89d6ab835260036a6a59ccd244b6443838d458fbd124a3f98d9d778c94/sklearn_pmml_model-1.0.7-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cc90137ca1537b2943c336da08fa358cf1496b251f94c25c2ffd2acd8266523",
                "md5": "69bf9f998c065abf5111dd06d1fb5c19",
                "sha256": "7a94b68600011abb5723b4744fbc5703cf4c88cdcd69c6fd4202ae0a787f81a7"
            },
            "downloads": -1,
            "filename": "sklearn_pmml_model-1.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "69bf9f998c065abf5111dd06d1fb5c19",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 895421,
            "upload_time": "2024-04-15T17:19:40",
            "upload_time_iso_8601": "2024-04-15T17:19:40.665329Z",
            "url": "https://files.pythonhosted.org/packages/0c/c9/0137ca1537b2943c336da08fa358cf1496b251f94c25c2ffd2acd8266523/sklearn_pmml_model-1.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-15 17:19:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "iamDecode",
    "github_project": "sklearn-pmml-model",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "requirements": [],
    "lcname": "sklearn-pmml-model"
}
        
Elapsed time: 0.23486s