toai

To AI helper library

MIT License

Downloads
387
Stars
13
Committers
1

Toai

Toai provides convenient classes and functions for machine learning, data science and data analysis.

Install

pip install toai

Usage

  • Import most useful default imports (useful for notebooks). This will give you access to np for NumPy, pd for Pandas, sns for Seaborn and many more.

    from toai.imports import *
    
  • Import functions from a specific submodule. This will import RMSE and error rate metrics from the metrics submodule.

    from toai.metrics import rmse, error_rate