pyerualjetwork 4.0.5__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pyerualjetwork/__init__.py +71 -0
- pyerualjetwork/activation_functions.py +367 -0
- pyerualjetwork/activation_functions_cuda.py +363 -0
- pyerualjetwork/data_operations.py +439 -0
- pyerualjetwork/data_operations_cuda.py +463 -0
- pyerualjetwork/help.py +16 -0
- pyerualjetwork/loss_functions.py +21 -0
- pyerualjetwork/loss_functions_cuda.py +21 -0
- pyerualjetwork/metrics.py +190 -0
- pyerualjetwork/metrics_cuda.py +165 -0
- pyerualjetwork/model_operations.py +408 -0
- pyerualjetwork/model_operations_cuda.py +414 -0
- pyerualjetwork/plan.py +681 -0
- pyerualjetwork/plan_cuda.py +677 -0
- pyerualjetwork/planeat.py +734 -0
- pyerualjetwork/planeat_cuda.py +736 -0
- pyerualjetwork/ui.py +22 -0
- pyerualjetwork/visualizations.py +799 -0
- pyerualjetwork/visualizations_cuda.py +799 -0
- pyerualjetwork-4.0.5.dist-info/METADATA +95 -0
- pyerualjetwork-4.0.5.dist-info/RECORD +23 -0
- pyerualjetwork-4.0.5.dist-info/WHEEL +5 -0
- pyerualjetwork-4.0.5.dist-info/top_level.txt +1 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: pyerualjetwork
|
3
|
+
Version: 4.0.5
|
4
|
+
Summary: PyerualJetwork is a machine learning library written in Python for professionals, incorporating advanced, unique, new, and modern techniques.
|
5
|
+
Author: Hasan Can Beydili
|
6
|
+
Author-email: tchasancan@gmail.com
|
7
|
+
Keywords: model evaluation,classification,potentiation learning artificial neural networks,NEAT,genetic algorithms,reinforcement learning,neural networks
|
8
|
+
Description-Content-Type: text/markdown
|
9
|
+
|
10
|
+
# PyerualJetwork [![Socket Badge](https://socket.dev/api/badge/pypi/package/pyerualjetwork/4.0.5?artifact_id=tar-gz)](https://socket.dev/pypi/package/pyerualjetwork/overview/4.0.5/tar-gz) [![CodeFactor](https://www.codefactor.io/repository/github/hcb06/pyerualjetwork/badge)](https://www.codefactor.io/repository/github/hcb06/pyerualjetwork) [![PyPI Downloads](https://static.pepy.tech/badge/anaplan)](https://pepy.tech/projects/anaplan) + [![PyPI Downloads](https://static.pepy.tech/badge/pyerualjetwork)](https://pepy.tech/projects/pyerualjetwork) [![PyPI Downloads](https://static.pepy.tech/badge/pyerualjetwork/month)](https://pepy.tech/projects/pyerualjetwork) [![PyPI Downloads](https://static.pepy.tech/badge/pyerualjetwork/week)](https://pepy.tech/projects/pyerualjetwork) [![PyPI version](https://img.shields.io/pypi/v/pyerualjetwork.svg)](https://pypi.org/project/pyerualjetwork/)
|
11
|
+
|
12
|
+
Note: anaplan old name of pyerualjetwork
|
13
|
+
|
14
|
+
https://libraries.io/pypi/pyerualjetwork
|
15
|
+
|
16
|
+
|
17
|
+
pip install pyerualjetwork
|
18
|
+
|
19
|
+
from pyerualjetwork import plan
|
20
|
+
from pyerualjetwork import planeat
|
21
|
+
from pyerualjetwork import data_operations
|
22
|
+
from pyerualjetwork import model_operations
|
23
|
+
|
24
|
+
from pyerualjetwork import plan_cuda
|
25
|
+
from pyerualjetwork import planeat_cuda
|
26
|
+
from pyerualjetwork import data_operations_cuda
|
27
|
+
from pyerualjetwork import model_operations_cuda
|
28
|
+
|
29
|
+
Optimized for Visual Studio Code
|
30
|
+
|
31
|
+
requires=[
|
32
|
+
'setuptools==75.6.0'
|
33
|
+
'scipy==1.13.1',
|
34
|
+
'tqdm==4.66.4',
|
35
|
+
'seaborn==0.13.2',
|
36
|
+
'pandas==2.2.2',
|
37
|
+
'networkx==3.3',
|
38
|
+
'numpy==1.26.4',
|
39
|
+
'matplotlib==3.9.0',
|
40
|
+
'colorama==0.4.6',
|
41
|
+
'cupy-cuda12x'
|
42
|
+
]
|
43
|
+
|
44
|
+
matplotlib, seaborn, networkx (optional).
|
45
|
+
PyerualJetwork checks and install all dependencies (with optional ones but except cupy) for every runing.
|
46
|
+
If your version is higher or lower, PyerualJetwork automaticly delete other versions and installs this versions.
|
47
|
+
|
48
|
+
##############################
|
49
|
+
|
50
|
+
ABOUT PYERUALJETWORK:
|
51
|
+
|
52
|
+
PyerualJetwork is a machine learning library written in Python for professionals, incorporating advanced, unique, new, and modern techniques. Its most important component is the PLAN (Potentiation Learning Artificial Neural Network) https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4862342. (THIS ARTICLE IS FIRST VERSION OF PLAN.) MODERN VERSION OF PLAN: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PLAN/PLAN.pdf
|
53
|
+
Both the PLAN algorithm and the PyerualJetwork library were created by Author, and all rights are reserved by Author.
|
54
|
+
PyerualJetwork is free to use for commercial business and individual users. PyerualJetwork is written in fully functional programming with non-oop elements. PyerualJetwork consists of many functions that complement each other, which facilitates the learning process and debugging during use.
|
55
|
+
As of 12/21/2024, the library includes PLAN and PLANEAT module, but other machine learning modules are expected to be added in the future.
|
56
|
+
<br><br>
|
57
|
+
|
58
|
+
PyerualJetworket includes Plan Vision, NLPlan, PLANEAT and at the between of both, Deep Plan.<br>
|
59
|
+
|
60
|
+
![PyerualJetwork](https://github.com/HCB06/PyerualJetwork/blob/main/Media/anaplanet_logo_final.png)<br><br><br>
|
61
|
+
|
62
|
+
PLAN VISION:<br>
|
63
|
+
|
64
|
+
![PLAN VISION](https://github.com/HCB06/PyerualJetwork/blob/main/Media/PlanVision.jpg)
|
65
|
+
|
66
|
+
You can create artificial intelligence models that perform computer vision tasks using the plan module:<br>
|
67
|
+
|
68
|
+
![AUTONOMOUS](https://github.com/HCB06/PyerualJetwork/blob/main/Media/autonomous.gif)<br><br><br>
|
69
|
+
![XRAY](https://github.com/HCB06/PyerualJetwork/blob/main/Media/chest_xray.png)<br><br><br>
|
70
|
+
![GENDER](https://github.com/HCB06/PyerualJetwork/blob/main/Media/gender_classification.png)<br><br><br>
|
71
|
+
|
72
|
+
NLPlan:<br>
|
73
|
+
|
74
|
+
![NLPLAN](https://github.com/HCB06/PyerualJetwork/blob/main/Media/NLPlan.jpg)<br>
|
75
|
+
|
76
|
+
You can create artificial intelligence models that perform natural language processing tasks using the plan module:
|
77
|
+
|
78
|
+
![PLAN VISION](https://github.com/HCB06/PyerualJetwork/blob/main/Media/NLP.gif)
|
79
|
+
|
80
|
+
PLANEAT:<br>
|
81
|
+
|
82
|
+
You can create artificial intelligence models that perform reinforcement learning tasks and genetic optimization tasks using the planeat module:
|
83
|
+
|
84
|
+
![PLANEAT](https://github.com/HCB06/PyerualJetwork/blob/main/Media/PLANEAT_1.gif)<br>
|
85
|
+
|
86
|
+
![PLANEAT](https://github.com/HCB06/PyerualJetwork/blob/main/Media/PLANEAT_2.gif)<br>
|
87
|
+
|
88
|
+
|
89
|
+
HOW DO I IMPORT IT TO MY PROJECT?
|
90
|
+
|
91
|
+
Anaconda users can access the 'Anaconda Prompt' terminal from the Start menu and add the necessary library modules to the Python module search queue by typing "pip install pyerualjetwork" and pressing enter. If you are not using Anaconda, you can simply open the 'cmd' Windows command terminal from the Start menu and type "pip install PyerualJetwork". (Visual Studio Code reccomended) After installation, it's important to periodically open the terminal of the environment you are using and stay up to date by using the command "pip install PyerualJetwork --upgrade".
|
92
|
+
|
93
|
+
After installing the module using "pip" you can now call the library module in your project environment. Use: “from pyerualjetwork import plan”. Now, you can call the necessary functions from the plan module.
|
94
|
+
|
95
|
+
The PLAN algorithm will not be explained in this document. This document focuses on how professionals can integrate and use PyerualJetwork in their systems. However, briefly, the PLAN algorithm can be described as a classification algorithm. PLAN algorithm achieves this task with an incredibly energy-efficient, fast, and hyperparameter-free user-friendly approach. For more detailed information, you can check out ![PYERUALJETWORK USER MANUEL](https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf) file.
|
@@ -0,0 +1,23 @@
|
|
1
|
+
pyerualjetwork/__init__.py,sha256=mBpIQOG8jn_kVBG6FrXWWqZ39nSivP_ibUikmVmT2Ik,2542
|
2
|
+
pyerualjetwork/activation_functions.py,sha256=iJpdsX8FqZ3lB3x-YG7d9-em8xHD0y1ciJLNWmI7Y6A,9941
|
3
|
+
pyerualjetwork/activation_functions_cuda.py,sha256=8wV31USrS-9BGI388Ntya10HCucNkV-zm5EH0YL2iRw,10896
|
4
|
+
pyerualjetwork/data_operations.py,sha256=ncg9AXy3_NdDcJ6W4U-VC_Ku0mvyLl11RUKffkQ8sxY,16474
|
5
|
+
pyerualjetwork/data_operations_cuda.py,sha256=Ekme6MnVNCqYMjKaO3nGhFYMnvWlELW9__QQWr2LXk4,17368
|
6
|
+
pyerualjetwork/help.py,sha256=pZs7hIhgFkovGLle97d9Qu9m5zKhMh7-OAIphIoSxBg,830
|
7
|
+
pyerualjetwork/loss_functions.py,sha256=6PyBI232SQRGuFnG3LDGvnv_PUdWzT2_2mUODJiejGI,618
|
8
|
+
pyerualjetwork/loss_functions_cuda.py,sha256=C93IZJcrOpT6HMK9x1O4AHJWXYTkN5WZiqdssPbvAPk,617
|
9
|
+
pyerualjetwork/metrics.py,sha256=q7MkhnZDRbCjFBDDfUgrl8lBYnUT_1ro1LxeBq105pI,6077
|
10
|
+
pyerualjetwork/metrics_cuda.py,sha256=TCwn5Z_4jQjqPCURX_xtcz9cjsYVzlahgKDA-qCgpU4,5072
|
11
|
+
pyerualjetwork/model_operations.py,sha256=k_53BJladPm9fBWdlVpS6Uf5IQzpNlJWLH746DXGq_M,13036
|
12
|
+
pyerualjetwork/model_operations_cuda.py,sha256=Guo0lFaaLiAXwKmnOi8Fz_bL_p38qR46CIhGOg_V1Sw,13138
|
13
|
+
pyerualjetwork/plan.py,sha256=kGZucs_GOoSNH25vsvfPgWKttPdFHvjCek8EICj-W1s,34205
|
14
|
+
pyerualjetwork/plan_cuda.py,sha256=4APaOl0_HGmp2i9EubFptajpfRQSoNU0LQHF1LDiQrg,33969
|
15
|
+
pyerualjetwork/planeat.py,sha256=8cwWboJtXgFTKq6nFl1T9McbLDmBquKUr12y168PmcM,39513
|
16
|
+
pyerualjetwork/planeat_cuda.py,sha256=boN-HFwm_D9cT1z0eAR8zgkiD_XOg-J2T2jNFvZweG4,39570
|
17
|
+
pyerualjetwork/ui.py,sha256=wu2BhU1k-w3Kcho5Jtq4SEKe68ftaUeRGneUOSCVDjU,575
|
18
|
+
pyerualjetwork/visualizations.py,sha256=DvbiQGlvlKNAgBJ3O3ukAi6uxSheha9SRFh5YX7ZxIA,26678
|
19
|
+
pyerualjetwork/visualizations_cuda.py,sha256=dA0u85ZIyKqjtoSJ6p3EbEpJs4V4vS5W5ftR6eif8yg,26713
|
20
|
+
pyerualjetwork-4.0.5.dist-info/METADATA,sha256=EXQuW_wIKq9Y7tVYikjrKyJAp-nSc9iEkb-Xxx19954,6357
|
21
|
+
pyerualjetwork-4.0.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
22
|
+
pyerualjetwork-4.0.5.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
|
23
|
+
pyerualjetwork-4.0.5.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
pyerualjetwork
|