Metadata-Version: 2.1
Name: toai
Version: 0.6.5
Summary: To AI helper library
Home-page: https://github.com/tribeofai/toai
Author: Dovydas Ceilutka
Author-email: dovydas.ceilutka@gmail.com
License: MIT
Download-URL: https://github.com/tribeofai/toai
Description: # 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
          ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Provides-Extra: tests
