pyerualjetwork 2.0.3__tar.gz → 2.0.4__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.
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/PKG-INFO +1 -1
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/plan/plan.py +5 -0
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/pyerualjetwork.egg-info/PKG-INFO +1 -1
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/setup.py +1 -1
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/plan/__init__.py +0 -0
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/pyerualjetwork.egg-info/SOURCES.txt +0 -0
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/pyerualjetwork.egg-info/dependency_links.txt +0 -0
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/pyerualjetwork.egg-info/top_level.txt +0 -0
- {pyerualjetwork-2.0.3 → pyerualjetwork-2.0.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.4
|
4
4
|
Summary: Advanced python deep learning library. New features: More simple and practical, all functions and variables are snake_case. (Documentation in desc. Examples in GİTHUB: https://github.com/HCB06/PyerualJetwork)
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
@@ -32,6 +32,11 @@ def fit(
|
|
32
32
|
error handled ?: Process status ('e')
|
33
33
|
"""
|
34
34
|
|
35
|
+
if action_potential < 0 or action_potential > 1:
|
36
|
+
|
37
|
+
print(Fore.RED + "ERROR101: ACTION potential value must be in range 0-1. from: fit",infoPLAN)
|
38
|
+
return 'e'
|
39
|
+
|
35
40
|
if len(x_train) != len(y_train):
|
36
41
|
print(Fore.RED + "ERROR301: x_train list and y_train list must be same length. from: fit",infoPLAN)
|
37
42
|
return 'e'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.4
|
4
4
|
Summary: Advanced python deep learning library. New features: More simple and practical, all functions and variables are snake_case. (Documentation in desc. Examples in GİTHUB: https://github.com/HCB06/PyerualJetwork)
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|
5
5
|
setup(
|
6
6
|
|
7
7
|
name = "pyerualjetwork",
|
8
|
-
version = "2.0.
|
8
|
+
version = "2.0.4",
|
9
9
|
author = "Hasan Can Beydili",
|
10
10
|
author_email = "tchasancan@gmail.com",
|
11
11
|
description= "Advanced python deep learning library. New features: More simple and practical, all functions and variables are snake_case. (Documentation in desc. Examples in GİTHUB: https://github.com/HCB06/PyerualJetwork)",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|