Metadata-Version: 2.1
Name: pollai
Version: 0.0.1
Summary: AI models simplified and implemented
Home-page: 
Author: ByteVolx
Author-email: onions193@gmail.com
License: MIT
Keywords: ai
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt


    ## How to initialize the ML_Model class:

from pollai import ML_Model # Can also be * (which imports all classes and functions)

model = ML_Model(training_data) # params: self, training_data

## Training the model

from pollai import ML_Model # Can also be * (which imports all classes and functions)

model = ML_Model(training_data) # initialize the model first

model.train() # no params required. trains the model

## Running the model

from pollai import ML_Model # Can also be * (which imports all classes and functions)

model = ML_Model(training_data) # initialize the model first

model.train() # train the model first to avoid the TrainingException exception.

## Exceptions:
### TrainingException:
Exception when training is incomplete or not implemented at all.
The model needs to be trained to produce the expected accurate results.

# Imperfections in AI
Don't get me wrong, AI is amazing. However, it could use improvements. PollAI is imperfect too!
Machine learning, Rule based, any AI model has imperfections and can be improved.
For example, Machine Learning requires lots of computational resources and Rule based models are constantly inaccurate.
