Skip to main content

A toolbox for learning anything and everything from data.

Project description

bigbrain

Python License

bigbrain is a toolbox for learning anything and everything from data.

No machine learning knowledge needed!

With this toolbox, all your data science problems can be solved with a single command. No longer will you need to know anything about machine learning in order to use its power to solve all your problems.

  • Learn the best models from your data without any background knowledge!
  • Let the AI learn the best algorithm for your data, and then use what it learned on other data!

Tech

bigbrain wraps scikit-learn to try many different models on your data and find the best performing algorithm for you.

Installation

bigbrain can be installed using pypi, either from the website, or from the command line:

$ pip install bigbrain

Example Usage

With this package, you can easily create regression or classification models for supervised learning techniques.

>>> from bigbrain import AI

####### Classification #######
>>> machine = AI(model_type='classification')
>>> machine.learn(X_train, y_train)
"My big brain has learned everything."
>>> predictions = machine.go(X_test)

####### Regression #######
>>> machine = AI(model_type='regression')
"My big brain has learned everything."
>>> predictions = machine.go(X_test)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bigbrain-0.1.2.tar.gz (4.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page