pyerualjetwork 2.1.0__tar.gz → 2.3.0__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.1.0 → pyerualjetwork-2.3.0}/PKG-INFO +2 -2
- pyerualjetwork-2.3.0/plan_bi/__init__.py +5 -0
- pyerualjetwork-2.3.0/plan_bi/plan_bi.py +1458 -0
- pyerualjetwork-2.3.0/plan_di/__init__.py +5 -0
- pyerualjetwork-2.3.0/plan_di/plan_di.py +1429 -0
- {pyerualjetwork-2.1.0 → pyerualjetwork-2.3.0}/pyerualjetwork.egg-info/PKG-INFO +2 -2
- {pyerualjetwork-2.1.0 → pyerualjetwork-2.3.0}/setup.py +2 -2
- pyerualjetwork-2.1.0/plan_bi/__init__.py +0 -5
- pyerualjetwork-2.1.0/plan_bi/plan_bi.py +0 -976
- pyerualjetwork-2.1.0/plan_di/__init__.py +0 -5
- pyerualjetwork-2.1.0/plan_di/plan_di.py +0 -973
- {pyerualjetwork-2.1.0 → pyerualjetwork-2.3.0}/pyerualjetwork.egg-info/SOURCES.txt +0 -0
- {pyerualjetwork-2.1.0 → pyerualjetwork-2.3.0}/pyerualjetwork.egg-info/dependency_links.txt +0 -0
- {pyerualjetwork-2.1.0 → pyerualjetwork-2.3.0}/pyerualjetwork.egg-info/top_level.txt +0 -0
- {pyerualjetwork-2.1.0 → pyerualjetwork-2.3.0}/setup.cfg +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pyerualjetwork
|
3
|
-
Version: 2.
|
4
|
-
Summary:
|
3
|
+
Version: 2.3.0
|
4
|
+
Summary: Weights now noramlized, new function: manuel_balancer. And scaler_params added for scaled models.
|
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,5 @@
|
|
1
|
+
# pyerualjetwork/PLAN/__init__.py
|
2
|
+
|
3
|
+
# Bu dosya, plan modülünün ana giriş noktasıdır.
|
4
|
+
|
5
|
+
from .plan_bi import auto_balancer, normalization, Softmax, Sigmoid, Relu, weight_identification, fex, fit, evaluate, save_model, load_model, predict_model_ssd, predict_model_ram, get_weights, get_df, get_preds, get_acc, get_pot, synthetic_augmentation, standard_scaler, multiple_evaluate, encode_one_hot, split, metrics, decode_one_hot, roc_curve, confusion_matrix, plot_evaluate, manuel_balancer
|