Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tribeofai/toai


https://github.com/tribeofai/toai

jupyter-notebook numpy pandas python scikit-learn tensorflow

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# Toai

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

## Install

```python
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.

```python
from toai.imports import *
```

- Import functions from a specific submodule. This will import RMSE and error rate metrics from the metrics submodule.

```python
from toai.metrics import rmse, error_rate
```