All Projects → mljar → mljar-api-R

mljar / mljar-api-R

Licence: other
R wrapper for MLJAR API

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to mljar-api-R

timemachines
Predict time-series with one line of code.
Stars: ✭ 342 (+2037.5%)
Mutual labels:  predictive-modeling, prediction-algorithm
Prediction-using-Bayesian-Neural-Network
Prediction of continuous signals data and Web tracking data using dynamic Bayesian neural network. Compared with other network architectures aswell.
Stars: ✭ 28 (+75%)
Mutual labels:  prediction-algorithm
Machine Learning Deployment
Launch machine learning models into production using flask, docker etc.
Stars: ✭ 177 (+1006.25%)
Mutual labels:  predictive-modeling
Mindsdb
Predictive AI layer for existing databases.
Stars: ✭ 4,199 (+26143.75%)
Mutual labels:  machine-learning-api
Contrastive Predictive Coding Pytorch
Contrastive Predictive Coding for Automatic Speaker Verification
Stars: ✭ 223 (+1293.75%)
Mutual labels:  predictive-modeling
STOCK-RETURN-PREDICTION-USING-KNN-SVM-GUASSIAN-PROCESS-ADABOOST-TREE-REGRESSION-AND-QDA
Forecast stock prices using machine learning approach. A time series analysis. Employ the Use of Predictive Modeling in Machine Learning to Forecast Stock Return. Approach Used by Hedge Funds to Select Tradeable Stocks
Stars: ✭ 94 (+487.5%)
Mutual labels:  predictive-modeling
Data Science Wg
SF Brigade's Data Science Working Group.
Stars: ✭ 135 (+743.75%)
Mutual labels:  predictive-modeling
Wharton Stat 422 722
The official class webpage for Statistics 422/722 taught at Wharton in the Spring of 2017
Stars: ✭ 14 (-12.5%)
Mutual labels:  predictive-analytics
SuperCell
Public tutorials and code that accompanies articles
Stars: ✭ 37 (+131.25%)
Mutual labels:  machine-learning-api
allie
🤖 A machine learning framework for audio, text, image, video, or .CSV files (50+ featurizers and 15+ model trainers).
Stars: ✭ 93 (+481.25%)
Mutual labels:  machine-learning-api
Smt
Surrogate Modeling Toolbox
Stars: ✭ 233 (+1356.25%)
Mutual labels:  predictive-modeling
mljar-examples
Examples how MLJAR can be used
Stars: ✭ 42 (+162.5%)
Mutual labels:  machine-learning-api
Nanodegrees
Nanodegree programs https://www.udacity.com/nanodegree
Stars: ✭ 21 (+31.25%)
Mutual labels:  predictive-analytics
Data Science Live Book
An open source book to learn data science, data analysis and machine learning, suitable for all ages!
Stars: ✭ 193 (+1106.25%)
Mutual labels:  predictive-modeling
NDD
Drug-Drug Interaction Predicting by Neural Network Using Integrated Similarity
Stars: ✭ 25 (+56.25%)
Mutual labels:  predictive-modeling
Modelstudio
📍 Interactive Studio for Explanatory Model Analysis
Stars: ✭ 163 (+918.75%)
Mutual labels:  predictive-modeling
datafsm
Machine Learning Finite State Machine Models from Data with Genetic Algorithms
Stars: ✭ 14 (-12.5%)
Mutual labels:  predictive-modeling
ufc fight predictor
UFC bout winner prediction using neural nets.
Stars: ✭ 22 (+37.5%)
Mutual labels:  predictive-modeling
Sales-Prediction
In depth analysis and forecasting of product sales based on the items, stores, transaction and other dependent variables like holidays and oil prices.
Stars: ✭ 56 (+250%)
Mutual labels:  prediction-algorithm
Statistical-Learning-using-R
This is a Statistical Learning application which will consist of various Machine Learning algorithms and their implementation in R done by me and their in depth interpretation.Documents and reports related to the below mentioned techniques can be found on my Rpubs profile.
Stars: ✭ 27 (+68.75%)
Mutual labels:  predictive-modeling

Build Status codecov

mljar-api-R

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

library(mljar)

model <- mljar_fit(x.training, y.training, validx=x.validation, validy=y.validation,
                proj_title="Project title", exp_title="experiment title",
                algorithms = c("logreg"), metric = "logloss")

predicted_values <- mljar_predict(model, x.to.predict, "Project title")

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 directly from CRAN:

install.packages("mljar")

Alternatively, you can install the latest development version from GitHub using devtools:

devtools::install_github("mljar/mljar-api-R")

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 in shell:
export MLJAR_TOKEN=exampleexampleexample

or directly in RStudio:

Sys.setenv(MLJAR_TOKEN="examplexampleexample")
  1. That's all, you are ready to use MLJAR in your R 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 function mljar_fit 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 mljar_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

Soon

Testing

To run tests use simple command in your R session:

devtools::test()
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].