All Projects → SoftwareAG → r-pmml

SoftwareAG / r-pmml

Licence: GPL-3.0 license
Generate PMML for various machine learning and statistical models.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to r-pmml

scoruby
Ruby Scoring API for PMML
Stars: ✭ 69 (+245%)
Mutual labels:  pmml
ai-serving
Serving AI/ML models in the open standard formats PMML and ONNX with both HTTP (REST API) and gRPC endpoints
Stars: ✭ 122 (+510%)
Mutual labels:  pmml
pmml4s
PMML scoring library for Scala
Stars: ✭ 49 (+145%)
Mutual labels:  pmml
sklearn-pmml-model
A library to parse and convert PMML models into Scikit-learn estimators.
Stars: ✭ 71 (+255%)
Mutual labels:  pmml
goscore
Go Scoring API for PMML
Stars: ✭ 85 (+325%)
Mutual labels:  pmml
pmml4s-spark
PMML scoring library for Spark as SparkML Transformer
Stars: ✭ 16 (-20%)
Mutual labels:  pmml
pypmml
Python PMML scoring library
Stars: ✭ 65 (+225%)
Mutual labels:  pmml
fdp-modelserver
An umbrella project for multiple implementations of model serving
Stars: ✭ 47 (+135%)
Mutual labels:  pmml
ai-deployment
关注AI模型上线、模型部署
Stars: ✭ 149 (+645%)
Mutual labels:  pmml

pmml

CRAN status R-CMD-check Codecov test coverage

Overview

Export various machine learning and statistical models to PMML and generate data transformations in PMML format.

For a description of the supported packages, see the vignette: Supported Packages and Additional Functions.

Installation

You can install the released version of pmml from CRAN with:

install.packages("pmml")

Example

library(pmml)

# Build an lm model
iris_lm <- lm(Sepal.Length ~ ., data=iris)

# Convert to pmml
iris_lm_pmml <- pmml(iris_lm)

# Write to file
# save_pmml(iris_lm_pmml,"iris_lm.pmml")

Please note that this project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].