Easy tool for creating AI in python
Project description
CreateAI v0.1.1
It's easy tool to create ai in python easy and fast. You can edit source code of CreateAI on Create AI's github
Dependencies
- numpy
- knowledge of python
- our documentation
- your motivation
- your brain
Authors
- @R0fael - main programmer
Features
- Custom function activations - Errors
- 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
Plans
-0.1.2 - More metods of learning
-0.1.3 - Multi neurons update
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file createai-0.1.1.tar.gz.
File metadata
- Download URL: createai-0.1.1.tar.gz
- Upload date:
- Size: 2.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8344d0c980f33c2c09fc0d91f129f920d32806f7a03098e8cf8b4aa39f037662
|
|
| MD5 |
9ad418849d41f84fd10d533802cca673
|
|
| BLAKE2b-256 |
96c1a1c8e48f5f3f4d9fdbaad3d68862add8d8dc8a32a4d2d84a2dc066bf16b2
|
File details
Details for the file createai-0.1.1-py3-none-any.whl.
File metadata
- Download URL: createai-0.1.1-py3-none-any.whl
- Upload date:
- Size: 2.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9caa1db3f84406969ebdf64ab92cdeb15803e1c80e43c314b41dda9a5c8d0c5e
|
|
| MD5 |
9d9a0af0fa1f1ba2e5a6745feb44cbf3
|
|
| BLAKE2b-256 |
b6f7b1368fd090a5368b9c34a8a35ecd1cfd7bb51f0996ddc5627fe235137f2a
|