pyerualjetwork 4.3.10b3__py3-none-any.whl → 4.3.11__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.
- pyerualjetwork/__init__.py +29 -7
- pyerualjetwork/activation_functions.py +0 -4
- {pyerualjetwork-4.3.10b3.dist-info → pyerualjetwork-4.3.11.dist-info}/METADATA +2 -2
- {pyerualjetwork-4.3.10b3.dist-info → pyerualjetwork-4.3.11.dist-info}/RECORD +6 -6
- {pyerualjetwork-4.3.10b3.dist-info → pyerualjetwork-4.3.11.dist-info}/WHEEL +0 -0
- {pyerualjetwork-4.3.10b3.dist-info → pyerualjetwork-4.3.11.dist-info}/top_level.txt +0 -0
pyerualjetwork/__init__.py
CHANGED
@@ -1,11 +1,33 @@
|
|
1
|
-
__version__ = "4.3.
|
2
|
-
__update__ = "* Changes: https://github.com/HCB06/PyerualJetwork/blob/main/CHANGES
|
1
|
+
__version__ = "4.3.11"
|
2
|
+
__update__ = """* Changes: https://github.com/HCB06/PyerualJetwork/blob/main/CHANGES
|
3
|
+
* PyerualJetwork Homepage: https://github.com/HCB06/PyerualJetwork/tree/main
|
4
|
+
* PyerualJetwork document: https://github.com/HCB06/PyerualJetwork/blob/main/Welcome_to_PyerualJetwork/PYERUALJETWORK_USER_MANUEL_AND_LEGAL_INFORMATION(EN).pdf
|
5
|
+
* YouTube tutorials: https://www.youtube.com/@HasanCanBeydili"""
|
3
6
|
|
4
|
-
def print_version(
|
5
|
-
print(f"PyerualJetwork Version {
|
7
|
+
def print_version(version):
|
8
|
+
print(f"PyerualJetwork Version {version}\n")
|
6
9
|
|
7
|
-
def print_update_notes(
|
8
|
-
print(f"Notes:\n{
|
10
|
+
def print_update_notes(update):
|
11
|
+
print(f"Notes:\n{update}")
|
9
12
|
|
10
13
|
print_version(__version__)
|
11
|
-
print_update_notes(__update__)
|
14
|
+
print_update_notes(__update__)
|
15
|
+
|
16
|
+
required_modules = ["scipy", "tqdm", "pandas", "numpy", "colorama", "cupy", "psutil"]
|
17
|
+
|
18
|
+
missing_modules = []
|
19
|
+
for module in required_modules:
|
20
|
+
try:
|
21
|
+
__import__(module)
|
22
|
+
except ModuleNotFoundError:
|
23
|
+
missing_modules.append(module)
|
24
|
+
|
25
|
+
if missing_modules:
|
26
|
+
raise ImportError(
|
27
|
+
f"Missing modules detected: {', '.join(missing_modules)}\n"
|
28
|
+
"Please run the following command to install the missing packages:\n\n"
|
29
|
+
f" pip install {' '.join(missing_modules)}\n\n"
|
30
|
+
"For more information, visit the PyerualJetwork GitHub README.md file:\n"
|
31
|
+
"https://github.com/HCB06/PyerualJetwork/blob/main/README.md"
|
32
|
+
|
33
|
+
)
|
@@ -203,9 +203,6 @@ def square_quartic(x):
|
|
203
203
|
def cubic_quadratic(x):
|
204
204
|
return x**3 * (x**2)
|
205
205
|
|
206
|
-
def exp_cubic(x):
|
207
|
-
return np.exp(x**3)
|
208
|
-
|
209
206
|
def sine_square(x):
|
210
207
|
return np.sin(x)**2
|
211
208
|
|
@@ -267,7 +264,6 @@ def apply_activation(Input, activation_list):
|
|
267
264
|
'quartic': quartic,
|
268
265
|
'square_quartic': square_quartic,
|
269
266
|
'cubic_quadratic': cubic_quadratic,
|
270
|
-
'exp_cubic': exp_cubic,
|
271
267
|
'sine_square': sine_square,
|
272
268
|
'logarithmic': logarithmic,
|
273
269
|
'scaled_cubic': lambda x: scaled_cubic(x, 1.0),
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.11
|
4
4
|
Summary: PyerualJetwork is a machine learning library supported with GPU(CUDA) acceleration written in Python for professionals and researchers including with PLAN algorithm, PLANEAT algorithm (genetic optimization). Also includes data pre-process and memory manegament
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
@@ -51,7 +51,7 @@ YouTube Tutorials: https://www.youtube.com/watch?v=6wMQstZ00is&list=PLNgNWpM7Hbs
|
|
51
51
|
'psutil==6.1.1'
|
52
52
|
]
|
53
53
|
|
54
|
-
matplotlib, networkx (optional).
|
54
|
+
matplotlib, networkx, seaborn (optional).
|
55
55
|
|
56
56
|
##############################
|
57
57
|
|
@@ -1,5 +1,5 @@
|
|
1
|
-
pyerualjetwork/__init__.py,sha256=
|
2
|
-
pyerualjetwork/activation_functions.py,sha256=
|
1
|
+
pyerualjetwork/__init__.py,sha256=5snQTX8efGK_JdtgdrZU57alCIlsFlcYror1R3HFFDQ,1280
|
2
|
+
pyerualjetwork/activation_functions.py,sha256=Ms0AGBqkJuCA42ht64MSQnO54Td_1eDGquedpoBDVbc,7642
|
3
3
|
pyerualjetwork/activation_functions_cuda.py,sha256=5y1Ti3GDfDteQDCUmODwe7tAyDAUlDTKmIikChQ8d6g,7772
|
4
4
|
pyerualjetwork/data_operations.py,sha256=Flteouu6rfSo2uHMqBHuzO02dXmbNa-I5qWmUpGTZ5Y,14760
|
5
5
|
pyerualjetwork/data_operations_cuda.py,sha256=ZcjmLXE1-HVwedextYdJZ1rgrns1OfSekzFpr1a9m6o,17625
|
@@ -19,7 +19,7 @@ pyerualjetwork/planeat_cuda.py,sha256=5suVlOfHcThhGbPlHbxAqbp5-rpbw4E2H6trvDvrmg
|
|
19
19
|
pyerualjetwork/ui.py,sha256=wu2BhU1k-w3Kcho5Jtq4SEKe68ftaUeRGneUOSCVDjU,575
|
20
20
|
pyerualjetwork/visualizations.py,sha256=t1BqnFUH5jKiPdFMI2kWjFg6-amrBV0wvW05aD77NQs,28288
|
21
21
|
pyerualjetwork/visualizations_cuda.py,sha256=PYRqj4QYUbuYMYcNwO8yaTPB-jK7E6kZHhTrAi0lwPU,28749
|
22
|
-
pyerualjetwork-4.3.
|
23
|
-
pyerualjetwork-4.3.
|
24
|
-
pyerualjetwork-4.3.
|
25
|
-
pyerualjetwork-4.3.
|
22
|
+
pyerualjetwork-4.3.11.dist-info/METADATA,sha256=6P6WgEt2RMPwvhAVg1cswZvq_fNB875egS_dEiabzlo,7506
|
23
|
+
pyerualjetwork-4.3.11.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
24
|
+
pyerualjetwork-4.3.11.dist-info/top_level.txt,sha256=BRyt62U_r3ZmJpj-wXNOoA345Bzamrj6RbaWsyW4tRg,15
|
25
|
+
pyerualjetwork-4.3.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|