PyAiNetwork 0.0.2__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.
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: PyAiNetwork
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: A simple Python library for creating neural networks
|
|
5
|
+
Author: eyes-studio
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Dynamic: license-file
|
|
11
|
+
|
|
12
|
+
# PyAi
|
|
13
|
+
|
|
14
|
+
PyAi is a Python library for creating AI systems and neural networks using simple commands.
|
|
15
|
+
|
|
16
|
+
## About
|
|
17
|
+
|
|
18
|
+
PyAi is a library designed to make AI development easier and more accessible. It allows users to create, train, and experiment with neural networks without writing complex code.
|
|
19
|
+
|
|
20
|
+
With PyAi, you can build everything from small AI models to large-scale LLMs. The library provides simple tools for creating neural networks, processing data, and training AI models.
|
|
21
|
+
|
|
22
|
+
## Developers
|
|
23
|
+
|
|
24
|
+
***Eyes Studio***
|
|
25
|
+
|
|
26
|
+
Eyes Studio is an independent, unofficial company with a small team of developers focused on creating AI tools and open-source projects.
|
|
27
|
+
|
|
28
|
+
## Features
|
|
29
|
+
|
|
30
|
+
- Create neural networks with just a few commands
|
|
31
|
+
- Fast and simple tokenizer for AI models
|
|
32
|
+
- Train neural networks on custom information
|
|
33
|
+
- Build and experiment with different AI architectures
|
|
34
|
+
- Easy-to-use tools for AI development
|
|
35
|
+
|
|
36
|
+
## example of ai
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
from PyAi import Network
|
|
40
|
+
|
|
41
|
+
Net = Network(2,1,1,2)#input neoron,layers,neoron on 1 layer,output neoron
|
|
42
|
+
test_list=[1,2]
|
|
43
|
+
answer = Net.forward(test_list)
|
|
44
|
+
|
|
45
|
+
print(answer)
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
pyainetwork-0.0.2.dist-info/licenses/LICENSE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
pyainetwork-0.0.2.dist-info/METADATA,sha256=xlnfwwlcnMHpLrI9QxG9VFYdNnvPY8KRsY3fhecC-j4,1386
|
|
3
|
+
pyainetwork-0.0.2.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
4
|
+
pyainetwork-0.0.2.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
5
|
+
pyainetwork-0.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|