adaiml-tools 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- adAI/__init__.py +37 -0
- adAI/cnn.py +683 -0
- adAI/core.py +8 -0
- adAI/mlp.py +402 -0
- adAI/perceptron.py +363 -0
- adaiml_tools-0.1.0.dist-info/METADATA +115 -0
- adaiml_tools-0.1.0.dist-info/RECORD +10 -0
- adaiml_tools-0.1.0.dist-info/WHEEL +5 -0
- adaiml_tools-0.1.0.dist-info/licenses/LICENSE +21 -0
- adaiml_tools-0.1.0.dist-info/top_level.txt +1 -0
adAI/__init__.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"""
|
|
2
|
+
adAI - A Python library for making AI easier
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
__version__ = "0.1.0"
|
|
6
|
+
__author__ = "Your Name"
|
|
7
|
+
__email__ = "your.email@example.com"
|
|
8
|
+
|
|
9
|
+
from .perceptron import (
|
|
10
|
+
GeneratePerceptron,
|
|
11
|
+
Perceptron,
|
|
12
|
+
generate_logic_gate_data,
|
|
13
|
+
generate_not_data,
|
|
14
|
+
generate_or_data,
|
|
15
|
+
generate_nor_data,
|
|
16
|
+
generate_and_data,
|
|
17
|
+
generate_nand_data,
|
|
18
|
+
)
|
|
19
|
+
from .mlp import GenerateMLP, GenerateXORMlp, MLP, generate_xor_data
|
|
20
|
+
from .cnn import GenerateCNN, CNN
|
|
21
|
+
|
|
22
|
+
__all__ = [
|
|
23
|
+
'GeneratePerceptron',
|
|
24
|
+
'Perceptron',
|
|
25
|
+
'generate_logic_gate_data',
|
|
26
|
+
'generate_not_data',
|
|
27
|
+
'generate_or_data',
|
|
28
|
+
'generate_nor_data',
|
|
29
|
+
'generate_and_data',
|
|
30
|
+
'generate_nand_data',
|
|
31
|
+
'GenerateMLP',
|
|
32
|
+
'GenerateXORMlp',
|
|
33
|
+
'MLP',
|
|
34
|
+
'generate_xor_data',
|
|
35
|
+
'GenerateCNN',
|
|
36
|
+
'CNN',
|
|
37
|
+
]
|