All Projects → mljar → Mljar Api Python

mljar / Mljar Api Python

Licence: apache-2.0
A simple python wrapper over MLJAR API.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Mljar Api Python

BAS
BAS R package https://merliseclyde.github.io/BAS/
Stars: ✭ 36 (-5.26%)
Mutual labels:  predictive-modeling
Islr Python
An Introduction to Statistical Learning (James, Witten, Hastie, Tibshirani, 2013): Python code
Stars: ✭ 3,344 (+8700%)
Mutual labels:  predictive-modeling
Coursera Machine Learning
Coursera Machine Learning - Python code
Stars: ✭ 815 (+2044.74%)
Mutual labels:  predictive-modeling
CAST
Developer Version of the R package CAST: Caret Applications for Spatio-Temporal models
Stars: ✭ 65 (+71.05%)
Mutual labels:  predictive-modeling
ZS-Data-Science-Challenge
A Data science challenge - "Mekktronix Sales Forecasting" organised by ZS through Hackerearth platform. Rank: 223 out of 4743.
Stars: ✭ 21 (-44.74%)
Mutual labels:  predictive-modeling
Pytorch Cortexnet
PyTorch implementation of the CortexNet predictive model
Stars: ✭ 349 (+818.42%)
Mutual labels:  predictive-modeling
Kaggle
Kaggle Kernels (Python, R, Jupyter Notebooks)
Stars: ✭ 26 (-31.58%)
Mutual labels:  predictive-modeling
Skater
Python Library for Model Interpretation/Explanations
Stars: ✭ 973 (+2460.53%)
Mutual labels:  predictive-modeling
ML2017FALL
Machine Learning (EE 5184) in NTU
Stars: ✭ 66 (+73.68%)
Mutual labels:  predictive-modeling
Dalex
moDel Agnostic Language for Exploration and eXplanation
Stars: ✭ 795 (+1992.11%)
Mutual labels:  predictive-modeling
Recommender-System
In this code we implement and compared Collaborative Filtering algorithm, prediction algorithms such as neighborhood methods, matrix factorization-based ( SVD, PMF, SVD++, NMF), and many others.
Stars: ✭ 30 (-21.05%)
Mutual labels:  predictive-modeling
fireTS
A python multi-variate time series prediction library working with sklearn
Stars: ✭ 62 (+63.16%)
Mutual labels:  predictive-modeling
Openchem
OpenChem: Deep Learning toolkit for Computational Chemistry and Drug Design Research
Stars: ✭ 356 (+836.84%)
Mutual labels:  predictive-modeling
learnr
Exploratory, Inferential and Predictive data analysis. Feel free to show your ❤️ by giving a star ⭐
Stars: ✭ 64 (+68.42%)
Mutual labels:  predictive-modeling
Jd Prediction
京东JData算法大赛-高潜用户购买意向预测
Stars: ✭ 18 (-52.63%)
Mutual labels:  predictive-modeling
solar-forecasting-RNN
Multi-time-horizon solar forecasting using recurrent neural network
Stars: ✭ 29 (-23.68%)
Mutual labels:  predictive-modeling
Retentioneering Tools
Retentioneering: product analytics, data-driven customer journey map optimization, marketing analytics, web analytics, transaction analytics, graph visualization, and behavioral segmentation with customer segments in Python. Opensource analytics, predictive analytics over clickstream, sentiment analysis, AB tests, machine learning, and Monte Carlo Markov Chain simulations, extending Pandas, Networkx and sklearn.
Stars: ✭ 291 (+665.79%)
Mutual labels:  predictive-modeling
Mlj.jl
A Julia machine learning framework
Stars: ✭ 982 (+2484.21%)
Mutual labels:  predictive-modeling
Pyncov 19
Pyncov-19: Learn and predict the spread of COVID-19
Stars: ✭ 20 (-47.37%)
Mutual labels:  predictive-modeling
Contrastive Predictive Coding
Keras implementation of Representation Learning with Contrastive Predictive Coding
Stars: ✭ 369 (+871.05%)
Mutual labels:  predictive-modeling

Build Status PyPI version Coverage Status PyPI pyversions

mljar-api-python

A simple python wrapper over mljar API. It allows MLJAR users to create Machine Learning models with few lines of code:

from mljar import Mljar

model = Mljar(project='My awesome project', experiment='First experiment')
model.fit(X,y)

model.predict(X)

That's all folks! Yeah, I know, this makes Machine Learning super easy! You can use this code for following Machine Learning tasks:

  • Binary classification (your target has only two unique values)
  • Regression (your target value is continuous)
  • More is coming soon!

How to install

You can install mljar with pip:

pip install -U mljar

or from source code:

python setup.py install

How to use it

  1. Create an account at mljar.com and login.
  2. Please go to your users settings (top, right corner).
  3. Get your token, for example 'exampleexampleexample'.
  4. Set environment variable MLJAR_TOKEN with your token value:
export MLJAR_TOKEN=exampleexampleexample
  1. That's all, you are ready to use MLJAR in your python code!

What's going on?

  • This wrapper allows you to search through different Machine Learning algorithms and tune each of the algorithm.
  • By searching and tuning ML algorithm to your data you will get very accurate model.
  • By calling method fit from Mljar class you create new project and start experiment with models training. All your results will be accessible from your mljar.com account - this makes Machine Learning super easy and keeps all your models and results in beautiful order. So, you will never miss anything.
  • All computations are done in MLJAR Cloud, they are executed in parallel. So after calling fit method you can switch your computer off and MLJAR will do the job for you!
  • I think this is really amazing! What do you think? Please let us know at [email protected].

Examples

The examples are here!.

Testing

To run tests with command:

python -m tests.run
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].