PyAiNetwork 0.0.2__tar.gz

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.
File without changes
@@ -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,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,7 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ PyAiNetwork/PyAiNetwork.egg-info/PKG-INFO
5
+ PyAiNetwork/PyAiNetwork.egg-info/SOURCES.txt
6
+ PyAiNetwork/PyAiNetwork.egg-info/dependency_links.txt
7
+ PyAiNetwork/PyAiNetwork.egg-info/top_level.txt
@@ -0,0 +1,34 @@
1
+ # PyAi
2
+
3
+ PyAi is a Python library for creating AI systems and neural networks using simple commands.
4
+
5
+ ## About
6
+
7
+ 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.
8
+
9
+ 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.
10
+
11
+ ## Developers
12
+
13
+ ***Eyes Studio***
14
+
15
+ Eyes Studio is an independent, unofficial company with a small team of developers focused on creating AI tools and open-source projects.
16
+
17
+ ## Features
18
+
19
+ - Create neural networks with just a few commands
20
+ - Fast and simple tokenizer for AI models
21
+ - Train neural networks on custom information
22
+ - Build and experiment with different AI architectures
23
+ - Easy-to-use tools for AI development
24
+
25
+ ## example of ai
26
+
27
+ ```bash
28
+ from PyAi import Network
29
+
30
+ Net = Network(2,1,1,2)#input neoron,layers,neoron on 1 layer,output neoron
31
+ test_list=[1,2]
32
+ answer = Net.forward(test_list)
33
+
34
+ print(answer)
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+
6
+ [project]
7
+ name = "PyAiNetwork"
8
+ version = "0.0.2"
9
+ description = "A simple Python library for creating neural networks"
10
+ readme = "README.md"
11
+ requires-python = ">=3.12"
12
+ license = {text = "MIT"}
13
+
14
+ authors = [
15
+ {name = "eyes-studio"}
16
+ ]
17
+
18
+
19
+ [tool.setuptools.packages.find]
20
+ where = ["PyAiNetwork"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+