All Projects → ottogroup → Palladium

ottogroup / Palladium

Licence: apache-2.0
Framework for setting up predictive analytics services

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Palladium

Sk Dist
Distributed scikit-learn meta-estimators in PySpark
Stars: ✭ 260 (-45.95%)
Mutual labels:  data-science, scikit-learn
Autogluon
AutoGluon: AutoML for Text, Image, and Tabular Data
Stars: ✭ 3,920 (+714.97%)
Mutual labels:  data-science, scikit-learn
Nimbusml
Python machine learning package providing simple interoperability between ML.NET and scikit-learn components.
Stars: ✭ 265 (-44.91%)
Mutual labels:  data-science, scikit-learn
Igel
a delightful machine learning tool that allows you to train, test, and use models without writing code
Stars: ✭ 2,956 (+514.55%)
Mutual labels:  data-science, scikit-learn
Sktime
A unified framework for machine learning with time series
Stars: ✭ 4,741 (+885.65%)
Mutual labels:  data-science, scikit-learn
Orange3
🍊 📊 💡 Orange: Interactive data analysis
Stars: ✭ 3,152 (+555.3%)
Mutual labels:  data-science, scikit-learn
Code
Compilation of R and Python programming codes on the Data Professor YouTube channel.
Stars: ✭ 287 (-40.33%)
Mutual labels:  data-science, scikit-learn
Data Science Projects With Python
A Case Study Approach to Successful Data Science Projects Using Python, Pandas, and Scikit-Learn
Stars: ✭ 198 (-58.84%)
Mutual labels:  data-science, scikit-learn
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (-28.27%)
Mutual labels:  data-science, scikit-learn
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+576.51%)
Mutual labels:  data-science, scikit-learn
Amazing Feature Engineering
Feature engineering is the process of using domain knowledge to extract features from raw data via data mining techniques. These features can be used to improve the performance of machine learning algorithms. Feature engineering can be considered as applied machine learning itself.
Stars: ✭ 218 (-54.68%)
Mutual labels:  data-science, scikit-learn
Data Science Ipython Notebooks
Data science Python notebooks: Deep learning (TensorFlow, Theano, Caffe, Keras), scikit-learn, Kaggle, big data (Spark, Hadoop MapReduce, HDFS), matplotlib, pandas, NumPy, SciPy, Python essentials, AWS, and various command lines.
Stars: ✭ 22,048 (+4483.78%)
Mutual labels:  data-science, scikit-learn
Eli5
A library for debugging/inspecting machine learning classifiers and explaining their predictions
Stars: ✭ 2,477 (+414.97%)
Mutual labels:  data-science, scikit-learn
Datacamp Python Data Science Track
All the slides, accompanying code and exercises all stored in this repo. 🎈
Stars: ✭ 250 (-48.02%)
Mutual labels:  data-science, scikit-learn
Lale
Library for Semi-Automated Data Science
Stars: ✭ 198 (-58.84%)
Mutual labels:  data-science, scikit-learn
Sagify
MLOps for AWS SageMaker. www.sagifyml.com
Stars: ✭ 277 (-42.41%)
Mutual labels:  data-science, scikit-learn
Virgilio
Virgilio is developed and maintained by these awesome people. You can email us virgilio.datascience (at) gmail.com or join the Discord chat.
Stars: ✭ 13,200 (+2644.28%)
Mutual labels:  data-science, scikit-learn
Imodels
Interpretable ML package 🔍 for concise, transparent, and accurate predictive modeling (sklearn-compatible).
Stars: ✭ 194 (-59.67%)
Mutual labels:  data-science, scikit-learn
Sklearn Evaluation
Machine learning model evaluation made easy: plots, tables, HTML reports, experiment tracking and Jupyter notebook analysis.
Stars: ✭ 294 (-38.88%)
Mutual labels:  data-science, scikit-learn
Machinejs
[UNMAINTAINED] Automated machine learning- just give it a data file! Check out the production-ready version of this project at ClimbsRocks/auto_ml
Stars: ✭ 412 (-14.35%)
Mutual labels:  data-science, scikit-learn

.. image:: https://travis-ci.org/ottogroup/palladium.svg?branch=master :target: https://travis-ci.org/ottogroup/palladium :alt: Build status

.. image:: https://coveralls.io/repos/ottogroup/palladium/badge.svg?branch=master :target: https://coveralls.io/r/ottogroup/palladium :alt: Test coverage status

.. image:: https://readthedocs.org/projects/palladium/badge/?version=latest :target: https://palladium.readthedocs.io/en/latest/ :alt: Documentation status

.. image:: https://img.shields.io/pypi/v/palladium.svg :target: https://pypi.python.org/pypi/palladium/ :alt: Latest version

.. image:: https://img.shields.io/pypi/pyversions/palladium.svg :target: https://pypi.python.org/pypi/palladium/ :alt: Supported Python versions

.. image:: https://img.shields.io/pypi/l/palladium.svg :target: https://pypi.python.org/pypi/palladium/ :alt: License

Palladium

Palladium provides means to easily set up predictive analytics services as web services. It is a pluggable framework for developing real-world machine learning solutions. It provides generic implementations for things commonly needed in machine learning, such as dataset loading, model training with parameter search, a web service, and persistence capabilities, allowing you to concentrate on the core task of developing an accurate machine learning model. Having a well-tested core framework that is used for a number of different services can lead to a reduction of costs during development and maintenance due to harmonization of different services being based on the same code base and identical processes. Palladium has a web service overhead of a few milliseconds only, making it possible to set up services with low response times.

A configuration file lets you conveniently tie together existing components with components that you developed. As an example, if what you want to do is to develop a model where you load a dataset from a CSV file or an SQL database, and train an SVM classifier to predict one of the rows in the data given the others, and then find out about your model's accuracy, then that's what Palladium allows you to do without writing a single line of code. However, it is also possible to independently integrate own solutions.

.. image:: https://raw.githubusercontent.com/ottogroup/palladium/master/docs/palladium_illustration.png :width: 700px :align: center :alt: Illustration of Palladium

|

Much of Palladium's functionality is based on the scikit-learn library. Thus, a lot of times you will find yourself looking at the documentation for scikit-learn <http://scikit-learn.org/>_ when developing with Palladium. Although being implemented in Python, Palladium provides support for other languages and is shipped with examples how to integrate and expose R and Julia models.

For an efficient deployment of services based on Palladium, a script to create Docker images automatically is provided. In order to manage and monitor a number of Palladium service instances in a cluster, Mesosphere’s Mesos framework Marathon can be used for deployment, also enabling scalability by having a variable number of service nodes behind a load balancer. Examples how to create Palladium Docker images and how to use them with Mesos / Marathon are part of the documentation. Other important aspects – especially relevant in enterprise contexts for setting up productive services – like authentication, logging, or monitoring, can be easily integrated via pluggable decorator lists in the configuration file of a service, keeping track of service calls and corresponding permissions.

Everyone is welcome to contribute to Palladium. More information on how to to contribute can be found in the FAQ section of the Palladium documentation <http://palladium.readthedocs.org>_.

Links

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].