Skip to content

R0fael/CreateAI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CreateAI v0.1.2.1

It's easy tool to create ai in python easy and fast. You can look at source code of CreateAI on Create AI's github

WARNING!

On my PC python can't find this module. I am using source code from github.

Dependencies

  • numpy
  • knowledge of python
  • our documentation
  • your motivation
  • your brain

Authors

Features

  • Custom function activations
  • Neuron creating in one line of code
  • absolutly open sourse

Installation

Installing project with pip

Windows:

pip install createai

MacOS:

pip3 install createai

Linux:

sudo pip install createai

Or if you don't have pip : download sourse code and editing examples files

Example

# importing CreateAI
from createai import *

n = Neuron(weights(3, 1), inputs([
    [0, 0, 1],
    [1, 1, 1],
    [1, 0, 1],
    [0, 1, 1]
]), outputs([[0, 1, 1, 0]]),save_path="my_save.cns")  # Neuron creating with saving
#.cns -> file extension -> neuron weight save

n.learn(20_000)  # Neuron learning

print(n.process([1, 1, 0]))  # Neuron test
print(n.process([0, 1, 0]))  # Neuron test

Change log

-0.1.0 - first version

-0.1.1 - speed up and little bug fix

-0.1.2 - without numpy - error

-0.1.2.1 - big bugfix

Plans

-0.1.3 - More metods of learning

-0.1.4 - Multi neurons update

About

Source code of CreateAI

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages