pyerualjetwork 2.1.5__tar.gz → 2.1.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 2.1.5
3
+ Version: 2.1.6
4
4
  Summary: 8 new functions: multiple_evaluate , encode_one_hot, split, metrics, decode_one_hot, roc_curve, confusion_matrix, plot_evaluate And Code improvements (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
@@ -1306,14 +1306,18 @@ def confusion_matrix(y_true, y_pred, class_count=None):
1306
1306
  """
1307
1307
  if class_count is None:
1308
1308
  class_count = len(np.unique(np.concatenate((y_true, y_pred))))
1309
-
1309
+
1310
1310
  confusion = np.zeros((class_count, class_count), dtype=int)
1311
1311
 
1312
1312
  for i in range(len(y_true)):
1313
1313
  true_label = y_true[i]
1314
1314
  pred_label = y_pred[i]
1315
- if true_label < class_count and pred_label < class_count:
1315
+
1316
+ # Ensure that true_label and pred_label are within the correct range
1317
+ if 0 <= true_label < class_count and 0 <= pred_label < class_count:
1316
1318
  confusion[true_label, pred_label] += 1
1319
+ else:
1320
+ print(f"Warning: Ignoring out of range label - True: {true_label}, Predicted: {pred_label}")
1317
1321
 
1318
1322
  return confusion
1319
1323
 
@@ -1280,14 +1280,18 @@ def confusion_matrix(y_true, y_pred, class_count=None):
1280
1280
  """
1281
1281
  if class_count is None:
1282
1282
  class_count = len(np.unique(np.concatenate((y_true, y_pred))))
1283
-
1283
+
1284
1284
  confusion = np.zeros((class_count, class_count), dtype=int)
1285
1285
 
1286
1286
  for i in range(len(y_true)):
1287
1287
  true_label = y_true[i]
1288
1288
  pred_label = y_pred[i]
1289
- if true_label < class_count and pred_label < class_count:
1289
+
1290
+ # Ensure that true_label and pred_label are within the correct range
1291
+ if 0 <= true_label < class_count and 0 <= pred_label < class_count:
1290
1292
  confusion[true_label, pred_label] += 1
1293
+ else:
1294
+ print(f"Warning: Ignoring out of range label - True: {true_label}, Predicted: {pred_label}")
1291
1295
 
1292
1296
  return confusion
1293
1297
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyerualjetwork
3
- Version: 2.1.5
3
+ Version: 2.1.6
4
4
  Summary: 8 new functions: multiple_evaluate , encode_one_hot, split, metrics, decode_one_hot, roc_curve, confusion_matrix, plot_evaluate And Code improvements (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.1.5",
8
+ version = "2.1.6",
9
9
  author = "Hasan Can Beydili",
10
10
  author_email = "tchasancan@gmail.com",
11
11
  description= " 8 new functions: multiple_evaluate , encode_one_hot, split, metrics, decode_one_hot, roc_curve, confusion_matrix, plot_evaluate And Code improvements (Documentation in desc. Examples in GİTHUB: https://github.com/HCB06/PyerualJetwork)",
File without changes