Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tribeofai/toai
- Owner: tribeofai
- License: mit
- Created: 2019-07-18T15:00:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-24T13:10:04.000Z (almost 2 years ago)
- Last Synced: 2024-10-05T15:47:05.050Z (3 months ago)
- Topics: jupyter-notebook, numpy, pandas, python, scikit-learn, tensorflow
- Language: Python
- Size: 90.8 KB
- Stars: 13
- Watchers: 3
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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
```