Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fully automated machine learning in one-liners.

License

NotificationsYou must be signed in to change notification settings

learnpy2020/libra

 
 

Repository files navigation

Test Image 1

Fully Automated Machine Learning in One-Liners

Build StatusDownloadsSlackPyPiRelease

Libra automates the end-to-end machine learning process in just one line of code. It is built for both non-technical users and software professionals of all kinds.


Full documentation can be found atlibradocs.github.io

Installation

Install latest release version:

pip install -U libra

Install directory from github:

git clone https://github.com/Palashio/libra.gitcd librapip install .

Usage: the basics

The core functionality of libra works through theclient object. A new client object should be created for every dataset that you want to produce results for. All information about the models that're built, the plots that are generated, and the metrics are created will be stored in the object.

You can then call different queries on that client object, and the dataset you passed to it will be used.

fromlibraimportclientnewClient=client('path/to/dataset')newClient.neural_network_query('please model the median number of households')

Now, calling

newClient.info()

will return a dictionary of all the information that was generated:

dict_keys(['id','model','num_classes','plots','target','preprocesser','interpreter','test_data','losses','accuracy'])

Other queries can also be called on the same object, and will be appended to themodels dictionary.

newClient.svm_query('predict the proximity to the ocean')newClient.model().keys()dict_keys(['regression_ANN',svm'])

About

Fully automated machine learning in one-liners.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python99.6%
  • Other0.4%

[8]ページ先頭

©2009-2025 Movatter.jp