pyerualjetwork 1.2.1__py3-none-any.whl → 1.2.3__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.
- plan/__init__.py +1 -1
- plan/plan.py +5 -5
- {pyerualjetwork-1.2.1.dist-info → pyerualjetwork-1.2.3.dist-info}/METADATA +2 -2
- pyerualjetwork-1.2.3.dist-info/RECORD +6 -0
- pyerualjetwork-1.2.1.dist-info/RECORD +0 -6
- {pyerualjetwork-1.2.1.dist-info → pyerualjetwork-1.2.3.dist-info}/WHEEL +0 -0
- {pyerualjetwork-1.2.1.dist-info → pyerualjetwork-1.2.3.dist-info}/top_level.txt +0 -0
plan/__init__.py
CHANGED
@@ -2,4 +2,4 @@
|
|
2
2
|
|
3
3
|
# Bu dosya, plan modülünün ana giriş noktasıdır.
|
4
4
|
|
5
|
-
from .plan import AutoBalancer, Normalization, Softmax, Sigmoid, Relu, SynapticPruning, SynapticDividing, WeightIdentification, Fex, Cat, TrainPLAN, TestPLAN, SavePLAN, LoadPLAN, PredictFromDiscPLAN, PredictFromRamPLAN
|
5
|
+
from .plan import AutoBalancer, Normalization, Softmax, Sigmoid, Relu, SynapticPruning, SynapticDividing, WeightIdentification, Fex, Cat, TrainPLAN, TestPLAN, SavePLAN, LoadPLAN, PredictFromDiscPLAN, PredictFromRamPLAN, GetWeights, GetDf, GetPreds, GetAcc, GetAllFromLoad
|
plan/plan.py
CHANGED
@@ -1033,21 +1033,21 @@ def AutoBalancer(TrainInputs, TrainLabels, ClassCount):
|
|
1033
1033
|
|
1034
1034
|
def GetWeights():
|
1035
1035
|
|
1036
|
-
return
|
1036
|
+
return 0
|
1037
1037
|
|
1038
1038
|
def GetDf():
|
1039
1039
|
|
1040
|
-
return
|
1040
|
+
return 6
|
1041
1041
|
|
1042
1042
|
def GetPreds():
|
1043
1043
|
|
1044
|
-
return
|
1044
|
+
return 1
|
1045
1045
|
|
1046
1046
|
def GetAcc():
|
1047
1047
|
|
1048
|
-
return
|
1048
|
+
return 2
|
1049
1049
|
|
1050
1050
|
def GetAllFromLoad():
|
1051
1051
|
|
1052
|
-
return
|
1052
|
+
return 0,1,2,3,4,5
|
1053
1053
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 1.2.
|
4
|
-
Summary: Advanced python deep learning library.UPDATED TO 1.2.
|
3
|
+
Version: 1.2.3
|
4
|
+
Summary: Advanced python deep learning library.UPDATED TO 1.2.2 NEW FEATURES: GetWeights() func for TrainPLAN, TestPLAN and LoadPLAN, GetPreds() and GetAcc() funcs for TrainPLAN and TestPLAN, GetAllFromLoad() func for LoadPLAN, GetDf() for LoadPLAN (Documentation in desc. Examples in GİTHUB: HCB06)
|
5
5
|
Author: Hasan Can Beydili
|
6
6
|
Author-email: tchasancan@gmail.com
|
7
7
|
Keywords: model evaluation,classifcation,pruning learning artficial neural networks
|
@@ -0,0 +1,6 @@
|
|
1
|
+
plan/__init__.py,sha256=_jNJho5JbgO70TN4ixL13C5XbdeLmsZapy97_yu-GB0,368
|
2
|
+
plan/plan.py,sha256=M69vG4FqkZUqfKb2G1nnE_SVFbkCV5K1HDiy3CLaQg0,40159
|
3
|
+
pyerualjetwork-1.2.3.dist-info/METADATA,sha256=S3A-CkWiy7Cr0-urVvxRO4I_DexqjXAi-qOjevc5OUg,513
|
4
|
+
pyerualjetwork-1.2.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
5
|
+
pyerualjetwork-1.2.3.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
+
pyerualjetwork-1.2.3.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
plan/__init__.py,sha256=cyb3DkUey_4zEApoFtf-UBMGwd8uFADSjy3osQUG_pY,315
|
2
|
-
plan/plan.py,sha256=29ZssCXXZ7WNGsrjE5M2hoCg1CXdIA-E2dtHYsEpVZU,40174
|
3
|
-
pyerualjetwork-1.2.1.dist-info/METADATA,sha256=ubFmxrhTHB2erpx10qp_xmTybJI3gUUC0X37G8zAtyE,513
|
4
|
-
pyerualjetwork-1.2.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
5
|
-
pyerualjetwork-1.2.1.dist-info/top_level.txt,sha256=G0Al3HuNJ88434XneyDtRKAIUaLCizOFYFYNhd7e2OM,5
|
6
|
-
pyerualjetwork-1.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|