Metadata-Version: 2.1
Name: BlastPY
Version: 1.0.2
Summary: a machine learning framework by W̷̛͒i̶̓͗l̷͗̌ľ̶͘
Home-page: https://github.com/Ugric/Blast
Author: W̷̛͒i̶̓͗l̷͗̌ľ̶͘
Author-email: epicugric@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/Ugric/Blast/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# BlastPY
a machine learning framework by W̷̛͒i̶̓͗l̷͗̌ľ̶͘

# Example
```
from BlastPY.AI import BlastAI

# create AI or load from file
ai = BlastAI("FIRSTAI.dat")

if len(ai.questions) == 0:  # check if no questions have been added

    # add questions
    # [list-of-input-to-AI, list-of-wanted-outputs-from-AI]
    ai.appendQuestions([[[0], [0]],
                        [[1], [1]],
                        [[2], [2]],
                        [[3], [6]],
                        [[4], [8]],
                        [[5], [10]],
                        [[6], [30]],
                        [[7], [44]],
                        [[8], [51]],
                        [[9], [56]],
                        [[10], [56]]
                        ])

while True:

    # the AI generation
    print(ai.gen)

    # examen the AI
    print(ai.exam(1000))

    # compile the AI to python code
    open("compiled.py", "w").write(ai.toPythonCode())
```

# Licence
This project is licensed under the terms of the MIT license.

