All Projects → yusugomori → conveyer

yusugomori / conveyer

Licence: other
Machine Learning for everybody.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to conveyer

Xcessiv
A web-based application for quick, scalable, and automated hyperparameter tuning and stacked ensembling in Python.
Stars: ✭ 1,255 (+4920%)
Mutual labels:  automated-machine-learning
Transmogrifai
TransmogrifAI (pronounced trăns-mŏgˈrə-fī) is an AutoML library for building modular, reusable, strongly typed machine learning workflows on Apache Spark with minimal hand-tuning
Stars: ✭ 2,084 (+8236%)
Mutual labels:  automated-machine-learning
Auto viml
Automatically Build Multiple ML Models with a Single Line of Code. Created by Ram Seshadri. Collaborators Welcome. Permission Granted upon Request.
Stars: ✭ 216 (+764%)
Mutual labels:  automated-machine-learning
Autoalbument
AutoML for image augmentation. AutoAlbument uses the Faster AutoAugment algorithm to find optimal augmentation policies. Documentation - https://albumentations.ai/docs/autoalbument/
Stars: ✭ 99 (+296%)
Mutual labels:  automated-machine-learning
Auptimizer
An automatic ML model optimization tool.
Stars: ✭ 166 (+564%)
Mutual labels:  automated-machine-learning
Hyperactive
A hyperparameter optimization and data collection toolbox for convenient and fast prototyping of machine-learning models.
Stars: ✭ 182 (+628%)
Mutual labels:  automated-machine-learning
Tpot
A Python Automated Machine Learning tool that optimizes machine learning pipelines using genetic programming.
Stars: ✭ 8,378 (+33412%)
Mutual labels:  automated-machine-learning
EvolutionaryForest
An open source python library for automated feature engineering based on Genetic Programming
Stars: ✭ 56 (+124%)
Mutual labels:  automated-machine-learning
Autoclint
A specially designed light version of Fast AutoAugment
Stars: ✭ 171 (+584%)
Mutual labels:  automated-machine-learning
Flaml
A fast and lightweight AutoML library.
Stars: ✭ 205 (+720%)
Mutual labels:  automated-machine-learning
Nni
An open source AutoML toolkit for automate machine learning lifecycle, including feature engineering, neural architecture search, model compression and hyper-parameter tuning.
Stars: ✭ 10,698 (+42692%)
Mutual labels:  automated-machine-learning
Remixautoml
R package for automation of machine learning, forecasting, feature engineering, model evaluation, model interpretation, data generation, and recommenders.
Stars: ✭ 159 (+536%)
Mutual labels:  automated-machine-learning
Lale
Library for Semi-Automated Data Science
Stars: ✭ 198 (+692%)
Mutual labels:  automated-machine-learning
Fast Autoaugment
Official Implementation of 'Fast AutoAugment' in PyTorch.
Stars: ✭ 1,297 (+5088%)
Mutual labels:  automated-machine-learning
automl
Automated Machine Learning Framework for kdb+
Stars: ✭ 22 (-12%)
Mutual labels:  automated-machine-learning
Mlbox
MLBox is a powerful Automated Machine Learning python library.
Stars: ✭ 1,199 (+4696%)
Mutual labels:  automated-machine-learning
Autofeat
Linear Prediction Model with Automated Feature Engineering and Selection Capabilities
Stars: ✭ 178 (+612%)
Mutual labels:  automated-machine-learning
featuretoolsOnSpark
A simplified version of featuretools for Spark
Stars: ✭ 24 (-4%)
Mutual labels:  automated-machine-learning
empythy
Automated NLP sentiment predictions- batteries included, or use your own data
Stars: ✭ 17 (-32%)
Mutual labels:  automated-machine-learning
Lightautoml
LAMA - automatic model creation framework
Stars: ✭ 196 (+684%)
Mutual labels:  automated-machine-learning

conveyer🏭

Machine Learning for everybody. conveyer is an automated machine learning library.

Quick glance

import os
from glob import glob
import conveyer

data_dir = os.path.join(os.path.dirname(__file__), 'data')
f_train = os.path.join(data_dir, 'train.csv')
f_test = os.path.join(data_dir, 'test.csv')

# training and validation
conveyer.convey(path=f_train,
                ignore_cols=['Id', 'Name'],
                out_dir='model')

# test
preds = conveyer.produce(f_test, model_dir='model')
print(preds)

Installation

  • Install conveyer from PyPI (recommended):
pip install conveyer
  • Alternatively: install conveyer from the GitHub source:

First, clone conveyer using git:

git clone https://github.com/yusugomori/conveyer.git

Then, cd to the conveyer folder and run the install command:

cd conveyer
sudo python setup.py install

License

Free for personal use only. Contact @yusugomori for commercial use or more details.

NOTICE

conveyer is still in development.

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