Giter VIP home page Giter VIP logo

learnit's Introduction

LearnIt: A Tool for Machine Learning Beginners

LearnIt

  1. Introduction
  2. Installation
  3. Quick Tour
  4. Sample Code
  5. Contributors
  6. Contact

Introduction: Machine Learning Made Easy

LearnIt makes the machine learning pipeline easy for you. What you need is just a CSV file and you can quickly obtain a trained machine learning model with evaluation results. You don't have to manually extract features or select machine learning algorithms or tune hyper-parameters or evaluate trained models. LearnIt takes care of everything from end to end.

LearnIt is built on top of Pandas and Scikit-learn, popular data science tools, to minimize additional learning cost. You can also register your own feature extraction templates into the library to make LearnIt better.

Installation

You can install LearnIt (learnit) with pip command.

$ pip install learnit

or

$ pip install git+http://[email protected]/megagonlabs/learnit.git

Quick Tour

import pandas as pd
from learnit.autoconverter.autoconverter import AutoConverter
from learnit.autolearn.autolearn import AutoLearn

# Load data as pd.DataFrame
df = pd.read_csv("data/train.csv")

# Create AutoConverter instance and convert
ac = AutoConverter(target="Survived")
X, y = ac.fit_transform(df)

# Model selection
al = AutoLearn()
al.learn(X, y)

Please also see a detailed step-by-step tutorial.

Sample Code

Contributors

Contact

Please create GitHub issues and PRs. For private communication, please contact Megagon Labs LearnIt Team ([email protected])

learnit's People

Contributors

suhara avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.