radnn 0.0.7.2__py3-none-any.whl → 0.0.7.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.
Files changed (45) hide show
  1. radnn/__init__.py +5 -4
  2. radnn/core.py +44 -28
  3. radnn/data/__init__.py +6 -0
  4. radnn/data/data_feed.py +142 -0
  5. radnn/data/dataset_base.py +3 -5
  6. radnn/data/image_dataset.py +0 -2
  7. radnn/data/preprocess/normalizer.py +7 -1
  8. radnn/data/preprocess/standardizer.py +9 -2
  9. radnn/data/sample_set.py +30 -17
  10. radnn/data/sequence_dataset.py +0 -2
  11. radnn/data/subset_type.py +39 -0
  12. radnn/data/tf_classification_data_feed.py +97 -0
  13. radnn/errors.py +29 -0
  14. radnn/evaluation/evaluate_classification.py +7 -3
  15. radnn/experiment/ml_experiment.py +29 -0
  16. radnn/experiment/ml_experiment_config.py +7 -3
  17. radnn/experiment/ml_experiment_env.py +6 -2
  18. radnn/experiment/ml_experiment_store.py +0 -1
  19. radnn/learn/learning_algorithm.py +4 -3
  20. radnn/ml_system.py +59 -19
  21. radnn/plots/plot_auto_multi_image.py +21 -12
  22. radnn/plots/plot_confusion_matrix.py +7 -4
  23. radnn/plots/plot_learning_curve.py +7 -3
  24. radnn/plots/plot_multi_scatter.py +7 -3
  25. radnn/plots/plot_roc.py +8 -4
  26. radnn/plots/plot_voronoi_2d.py +8 -5
  27. radnn/system/files/csvfile.py +8 -5
  28. radnn/system/files/fileobject.py +9 -4
  29. radnn/system/files/imgfile.py +8 -4
  30. radnn/system/files/jsonfile.py +8 -4
  31. radnn/system/files/picklefile.py +8 -4
  32. radnn/system/files/textfile.py +8 -4
  33. radnn/system/filestore.py +10 -8
  34. radnn/system/filesystem.py +7 -2
  35. radnn/system/hosts/colab_host.py +29 -0
  36. radnn/system/hosts/linux_host.py +29 -0
  37. radnn/system/hosts/windows_host.py +29 -1
  38. radnn/system/tee_logger.py +7 -3
  39. radnn/utils.py +54 -3
  40. {radnn-0.0.7.2.dist-info → radnn-0.0.7.3.dist-info}/METADATA +1 -1
  41. radnn-0.0.7.3.dist-info/RECORD +56 -0
  42. radnn-0.0.7.2.dist-info/RECORD +0 -53
  43. {radnn-0.0.7.2.dist-info → radnn-0.0.7.3.dist-info}/LICENSE.txt +0 -0
  44. {radnn-0.0.7.2.dist-info → radnn-0.0.7.3.dist-info}/WHEEL +0 -0
  45. {radnn-0.0.7.2.dist-info → radnn-0.0.7.3.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,32 @@
1
+ # ======================================================================================
2
+ #
3
+ # Rapid Deep Neural Networks
4
+ #
5
+ # Licensed under the MIT License
6
+ # ______________________________________________________________________________________
7
+ # ......................................................................................
8
+
9
+ # Copyright (c) 2019-2025 Pantelis I. Kaplanoglou
10
+
11
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ # of this software and associated documentation files (the "Software"), to deal
13
+ # in the Software without restriction, including without limitation the rights
14
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ # copies of the Software, and to permit persons to whom the Software is
16
+ # furnished to do so, subject to the following conditions:
17
+
18
+ # The above copyright notice and this permission notice shall be included in all
19
+ # copies or substantial portions of the Software.
20
+
21
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ # SOFTWARE.
28
+
29
+ # .......................................................................................
1
30
  import os
2
31
  from google.colab import drive
3
32
  from google.colab import files
@@ -1,3 +1,32 @@
1
+ # ======================================================================================
2
+ #
3
+ # Rapid Deep Neural Networks
4
+ #
5
+ # Licensed under the MIT License
6
+ # ______________________________________________________________________________________
7
+ # ......................................................................................
8
+
9
+ # Copyright (c) 2024-2025 Pantelis I. Kaplanoglou
10
+
11
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ # of this software and associated documentation files (the "Software"), to deal
13
+ # in the Software without restriction, including without limitation the rights
14
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ # copies of the Software, and to permit persons to whom the Software is
16
+ # furnished to do so, subject to the following conditions:
17
+
18
+ # The above copyright notice and this permission notice shall be included in all
19
+ # copies or substantial portions of the Software.
20
+
21
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ # SOFTWARE.
28
+
29
+ # .......................................................................................
1
30
  class LinuxHost(object):
2
31
  def __init__(self):
3
32
  pass
@@ -1,5 +1,33 @@
1
- import win32api
1
+ # ======================================================================================
2
+ #
3
+ # Rapid Deep Neural Networks
4
+ #
5
+ # Licensed under the MIT License
6
+ # ______________________________________________________________________________________
7
+ # ......................................................................................
8
+
9
+ # Copyright (c) 2024-2025 Pantelis I. Kaplanoglou
10
+
11
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ # of this software and associated documentation files (the "Software"), to deal
13
+ # in the Software without restriction, including without limitation the rights
14
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ # copies of the Software, and to permit persons to whom the Software is
16
+ # furnished to do so, subject to the following conditions:
2
17
 
18
+ # The above copyright notice and this permission notice shall be included in all
19
+ # copies or substantial portions of the Software.
20
+
21
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ # SOFTWARE.
28
+
29
+ # .......................................................................................
30
+ import win32api
3
31
  class WindowsHost(object):
4
32
  # --------------------------------------------------------------------------------------------------------------------
5
33
  @classmethod
@@ -1,5 +1,10 @@
1
+ # ======================================================================================
2
+ #
3
+ # Rapid Deep Neural Networks
4
+ #
5
+ # Licensed under the MIT License
6
+ # ______________________________________________________________________________________
1
7
  # ......................................................................................
2
- # MIT License
3
8
 
4
9
  # Copyright (c) 2024-2025 Pantelis I. Kaplanoglou
5
10
 
@@ -21,8 +26,7 @@
21
26
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
27
  # SOFTWARE.
23
28
 
24
- # ......................................................................................
25
-
29
+ # .......................................................................................
26
30
  import os
27
31
  import sys
28
32
  from datetime import datetime
radnn/utils.py CHANGED
@@ -1,7 +1,58 @@
1
- import numpy as np
1
+ # ======================================================================================
2
+ #
3
+ # Rapid Deep Neural Networks
4
+ #
5
+ # Licensed under the MIT License
6
+ # ______________________________________________________________________________________
7
+ # ......................................................................................
8
+
9
+ # Copyright (c) 2024-2025 Pantelis I. Kaplanoglou
10
+
11
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ # of this software and associated documentation files (the "Software"), to deal
13
+ # in the Software without restriction, including without limitation the rights
14
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ # copies of the Software, and to permit persons to whom the Software is
16
+ # furnished to do so, subject to the following conditions:
2
17
 
18
+ # The above copyright notice and this permission notice shall be included in all
19
+ # copies or substantial portions of the Software.
20
+
21
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ # SOFTWARE.
28
+
29
+ # .......................................................................................
30
+ import numpy as np
31
+ import time
32
+ import hashlib
33
+ import zlib
3
34
 
4
- def print_tensor(tensor, title=None, format="%+.3f", axes_descr=["Sample"]):
35
+ # ----------------------------------------------------------------------------------------------------------------------
36
+ def interactive_matplotlib():
37
+ import matplotlib
38
+ matplotlib.use('TkAgg')
39
+ # ----------------------------------------------------------------------------------------------------------------------
40
+ def print_method_execution_time(func, *args, **kwargs):
41
+ start = time.perf_counter() # High-resolution timer
42
+ result = func(*args, **kwargs)
43
+ end = time.perf_counter()
44
+ print(f"{func.__name__} took {end - start:.6f} seconds")
45
+ return result
46
+ # ----------------------------------------------------------------------------------------------------------------------
47
+ def data_hash(data: np.ndarray):
48
+ nBytes = data.tobytes()
49
+ return hashlib.sha256(nBytes).hexdigest()
50
+ # ----------------------------------------------------------------------------------------------------------------------
51
+ def data_crc32(data: np.ndarray):
52
+ nBytes = data.tobytes()
53
+ return zlib.crc32(nBytes)
54
+ # ----------------------------------------------------------------------------------------------------------------------
55
+ def print_tensor(tensor: np.ndarray, title=None, format="%+.3f", axes_descr=["Sample"]):
5
56
  # ................................................
6
57
  def printElement(p_nElement, p_bIsScalar):
7
58
  if p_bIsScalar:
@@ -86,4 +137,4 @@ def print_tensor(tensor, title=None, format="%+.3f", axes_descr=["Sample"]):
86
137
  print(strBoxRight(nRow, nGridRows))
87
138
  print("." * 60)
88
139
  nSampleIndex += 1
89
- # -----------------------------------------------------------------------------
140
+ # ----------------------------------------------------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: radnn
3
- Version: 0.0.7.2
3
+ Version: 0.0.7.3
4
4
  Summary: Rapid Deep Neural Networks
5
5
  Author-email: "Pantelis I. Kaplanoglou" <pikaplanoglou@ihu.gr>
6
6
  License: MIT License
@@ -0,0 +1,56 @@
1
+ radnn/__init__.py,sha256=O1TYOKNZnvLZeRHro5lPlyMZQF_eLLGIoqP2ECgUKts,363
2
+ radnn/core.py,sha256=-v25_yJyioyH_juGPJLWvKojwkdy4AF2TuWMPcnqjDA,4565
3
+ radnn/errors.py,sha256=gFiJYngMO24BApzd1auSBNASeS238MAmG3tubCr0POU,1716
4
+ radnn/ml_system.py,sha256=tbk2gE38Pn38RA7xnvEWe57aUhgQkX-lGdHcgLJqA0Q,5881
5
+ radnn/utils.py,sha256=8HvUWYJL_5k0QOKlvyRTQ9KKtmX3SjnOwBz7DlHTAZI,5898
6
+ radnn/data/__init__.py,sha256=Fqs6z2KXEQ8GKw7K_kXcT4WSlAMskJAFGZLpdWWulpo,351
7
+ radnn/data/data_feed.py,sha256=ByYBi6iq_Qv63MPfq4IBkw-DnFSAqcsK-sX-PeyYuTs,7061
8
+ radnn/data/dataset_base.py,sha256=VRGlXZhcBb7i5p39GbqUjau12UxPb2kwBVQTZTVG-WI,15184
9
+ radnn/data/image_dataset.py,sha256=2TOKXKml0qzj1CvMfJdMMjE3QhquCD-lZIsttFDuBoM,4516
10
+ radnn/data/sample_set.py,sha256=WMhXxl2yW749l9TbcjGsh9sCXHRKTyeJkhY5Y_PpO5A,7281
11
+ radnn/data/sequence_dataset.py,sha256=CRKeHjOF34TRmTLIWVp2oLv2eVETrhVH4KDI61hHgZM,6205
12
+ radnn/data/subset_type.py,sha256=y7R-hyGHUERI8hx1VRQDC6ogudczZEuKLYMA4QATVB8,1798
13
+ radnn/data/tf_classification_data_feed.py,sha256=Md0DVDit0KkLQ_M3R2aT30MH-EbK-hjB0rLBXtCDWTI,5592
14
+ radnn/data/preprocess/__init__.py,sha256=6JTaWzzeXAbIXkH8O9JDawtObutCyXQjHEZdlofSics,74
15
+ radnn/data/preprocess/normalizer.py,sha256=QgXuFOLrJPdgmas2mRu7KWeT_1dzx3wyz5dA8EGCcqs,5832
16
+ radnn/data/preprocess/standardizer.py,sha256=RTGIoniYSY0jvc_ILGU1iwDOR8SDL6s_aM_TQi8swoI,5413
17
+ radnn/evaluation/__init__.py,sha256=7dXDyJfOpSAr7G8jfDofsW4YEHNElCTTyMXuLCtpoOI,59
18
+ radnn/evaluation/evaluate_classification.py,sha256=ma8TdBFrUua00dMJVlT5J9-ITEOuT3ySSEc4hgOgoIU,5738
19
+ radnn/experiment/__init__.py,sha256=8gxrFS4bG7rg2kgrDEhemJgDbO-5KhBYc4owJZ-S--k,247
20
+ radnn/experiment/ml_experiment.py,sha256=Cq-Cvn5kd97uJGKIr4DOoNTwULt5XKUdBu5sunD0dKg,19426
21
+ radnn/experiment/ml_experiment_config.py,sha256=bfuMyC6LQNQuavuiKVJt8HYyZxRhN-2zQi70-2FfWi4,10026
22
+ radnn/experiment/ml_experiment_env.py,sha256=zoB5NxvFn5CyTq_FRsxB01HrnfnHLcYJUOTgPjL4_ac,11447
23
+ radnn/experiment/ml_experiment_store.py,sha256=Ph-4DQ9zEjhxZlQ13t-qnmCyxsKwsO2Df_Kj0vbMS_Q,396
24
+ radnn/learn/__init__.py,sha256=gF-5pD1OxrxhOeO7G7wbpr37LRjGkT71PY78Li3bBJU,252
25
+ radnn/learn/keras_learning_rate_scheduler.py,sha256=l0c53dtq1W5oclXDLxXzUlmBG_hzO-19EFRw3518PJs,1156
26
+ radnn/learn/keras_optimization_algorithm.py,sha256=ff3S_3CJ2t0N4_TZiGDpiAhExquRsqAGZDc42werGJo,1686
27
+ radnn/learn/learning_algorithm.py,sha256=Z8OSiNLLCD5AesMQ0ioODFMHBfW13Dh5OSVPnFwA3rQ,1411
28
+ radnn/learn/state/__init__.py,sha256=zExYBp7mkQlzDZX3jnzYa5piwOEFxUwe6ZvKI6IiE6o,117
29
+ radnn/learn/state/keras_best_state_saver.py,sha256=ep9QP7bZqmN8XmSzUpRXuBh6ccrbhFdFL4p5c3pg3MA,883
30
+ radnn/plots/__init__.py,sha256=dVd7QDrkD_fBUag4Kz3yTnPvBxaBgpDt16bbbNlqLKw,286
31
+ radnn/plots/plot_auto_multi_image.py,sha256=o-uFZSg9TuFtK1COKR9mANlmJmiQ_5xeaRLIMqVbA7E,4984
32
+ radnn/plots/plot_confusion_matrix.py,sha256=0pJben22SEgpIEUDI5t2NNdiiHOtfBcDRR1FQh09YMw,2865
33
+ radnn/plots/plot_learning_curve.py,sha256=sD6o8tKxV8PkKMdhHKR69uIgHU_vzKdhxFPV-5eU4W0,3722
34
+ radnn/plots/plot_multi_scatter.py,sha256=OfO-b38L7qYg93-oohLpJGYyj-3jkXdFn6lXu0F-QVc,5039
35
+ radnn/plots/plot_roc.py,sha256=LisQZ4XFCoHHT9kOJtgKMu-6F1zdT4SKJ_lmROZEz94,3735
36
+ radnn/plots/plot_voronoi_2d.py,sha256=mxGAVfnDVCBn3-soYlD-LS32meeLpmfibIUZB-Tier0,4649
37
+ radnn/system/__init__.py,sha256=uJLg56njcLtaRO0Kyudat055DGxqWsLMvrn9P8_Rt6A,119
38
+ radnn/system/filestore.py,sha256=S3WuG7r6v2fENFQmYRDN2xyVM5OqqVli9EKati9ybTs,9210
39
+ radnn/system/filesystem.py,sha256=QdKLKFWsqU0m2GK5smZEEraRenhuAexTVGztMIdF6hE,5810
40
+ radnn/system/tee_logger.py,sha256=le453-SWpnvODW9y8OXErsnXLQXDahG7pml9-vKsLG4,2871
41
+ radnn/system/files/__init__.py,sha256=u2oGHNKM362JwqrDgwmWTAiisL067h6H9uu-d0iTBks,169
42
+ radnn/system/files/csvfile.py,sha256=xoV0tGKDKlIq20P7-9NQ2Pq0rX3XrM-fTgumWN-uHmI,2486
43
+ radnn/system/files/fileobject.py,sha256=nHz0JumwsO_T9BNLbCzkhca6i5ScweYuIenhpaLAovo,4095
44
+ radnn/system/files/imgfile.py,sha256=B752yCxnHcJDwC7qognZ6zLKnqXcEUUuMrUEglXkXT8,2484
45
+ radnn/system/files/jsonfile.py,sha256=bjS1gnM1QMAP7zmCTGWq3-Z86iwdIq20mk58-guKBMQ,3533
46
+ radnn/system/files/picklefile.py,sha256=n362cyoxwZtANJwuu8xHWDLttqNY4QqwDR1Jh-2VwUk,5768
47
+ radnn/system/files/textfile.py,sha256=5TNIxIXjSZIv_CeBDN_PhTa3j8efozjWx2SSgsuE57o,3133
48
+ radnn/system/hosts/__init__.py,sha256=k2gkMJhe96Nf-V2ex6jZqmCRX9vA_K6gFB8J8Ii9ahc,261
49
+ radnn/system/hosts/colab_host.py,sha256=i0s43KjdJ-gjLGyQAItubz2gZvOj-DbFnH1EGYguoVk,4000
50
+ radnn/system/hosts/linux_host.py,sha256=AuOTpQ3OB1SXvsS1F-ksLVL44HXeRz5UEM2jbQ_1nbg,1623
51
+ radnn/system/hosts/windows_host.py,sha256=DFXJRjrg2ZnyaarnL8eF2K-P8S3ocNI4S2gegW16vB4,3821
52
+ radnn-0.0.7.3.dist-info/LICENSE.txt,sha256=vYtt_GDvm_yW65X9YMBOOu8Vqc9SAvqH94TbfBc2ckU,1106
53
+ radnn-0.0.7.3.dist-info/METADATA,sha256=F_1o-YcvLdkgDCM_2G1coqk-GnWJMWOqoeWSC9SYI80,2863
54
+ radnn-0.0.7.3.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
55
+ radnn-0.0.7.3.dist-info/top_level.txt,sha256=FKlLIm6gRAeZlRzs-HCBJAB1q9ELJ7MgaL-qqFuPo6M,6
56
+ radnn-0.0.7.3.dist-info/RECORD,,
@@ -1,53 +0,0 @@
1
- radnn/__init__.py,sha256=5uPiqiHDaYdsGupS0bxtGQ1SxcaxiupuprGmPP912zE,322
2
- radnn/core.py,sha256=c60Lv2osyy3S6IxYIfbMSC9QMwnyT8qPED2xy_UnM24,3399
3
- radnn/errors.py,sha256=upA3Afpvrkxexf956PwITHB-fR_V2n2k4Jn8HaZcpm8,150
4
- radnn/ml_system.py,sha256=MXSrRz3UB9CqXt7otZohXEGpfMrOA4IV4gymbH7X5GU,3894
5
- radnn/utils.py,sha256=Q2nGUgyTGrhs0vxEmHfEZffWb7JBewmiygcHRaWw1W8,3100
6
- radnn/data/__init__.py,sha256=09OkpdAe59yJH74DuQrxLtCiiNXgX6E3F2MKjzz8Cns,117
7
- radnn/data/dataset_base.py,sha256=3b8UaJFBiN0cY8C9uZKFzRt0g_4Q_EZgVEKWgsAA4t8,15181
8
- radnn/data/image_dataset.py,sha256=REGEomCmt0IFcjxYWtziELJFBoVnfR_TDFtct3IGR8U,4520
9
- radnn/data/sample_set.py,sha256=rvRtS7EqLFVF4Hf6qmIuxE-fatFiqWbETnh5RWqVj5E,6685
10
- radnn/data/sequence_dataset.py,sha256=DZAFgatzpf86nI62TJV5limYP3dP_z30UgWV2dYTDgc,6209
11
- radnn/data/preprocess/__init__.py,sha256=6JTaWzzeXAbIXkH8O9JDawtObutCyXQjHEZdlofSics,74
12
- radnn/data/preprocess/normalizer.py,sha256=7ZD1Z2_nW8KAG7cJ1RCYn-TMzVcW7dqWLTAjSPzMXo8,5444
13
- radnn/data/preprocess/standardizer.py,sha256=tzH3aJ8seTw-UwxnAb0Z6eAkW5iPu1c12_Kenuv7X2Q,5019
14
- radnn/evaluation/__init__.py,sha256=7dXDyJfOpSAr7G8jfDofsW4YEHNElCTTyMXuLCtpoOI,59
15
- radnn/evaluation/evaluate_classification.py,sha256=Iiv0aZcIEzVMg8BNNxyNzl7g23SdMiENQxeEKep8Cpg,5497
16
- radnn/experiment/__init__.py,sha256=8gxrFS4bG7rg2kgrDEhemJgDbO-5KhBYc4owJZ-S--k,247
17
- radnn/experiment/ml_experiment.py,sha256=FPxOlzNLyDEqFBAyCc7zMrc26pQwr5grwbMCBsL89L8,17861
18
- radnn/experiment/ml_experiment_config.py,sha256=YFLaSpz8UPs_JZC_hPkZAUOfelLmmr1cAlgRfbL3TEs,9785
19
- radnn/experiment/ml_experiment_env.py,sha256=vF5sDLzIyLwme82VI4aKgmRxly-31THZyEc0dFof9dg,11206
20
- radnn/experiment/ml_experiment_store.py,sha256=qeujLZJ-qGoBlyib3BukT4PBiioaPm4L1X24aXQ7_yg,398
21
- radnn/learn/__init__.py,sha256=gF-5pD1OxrxhOeO7G7wbpr37LRjGkT71PY78Li3bBJU,252
22
- radnn/learn/keras_learning_rate_scheduler.py,sha256=l0c53dtq1W5oclXDLxXzUlmBG_hzO-19EFRw3518PJs,1156
23
- radnn/learn/keras_optimization_algorithm.py,sha256=ff3S_3CJ2t0N4_TZiGDpiAhExquRsqAGZDc42werGJo,1686
24
- radnn/learn/learning_algorithm.py,sha256=dRr3QWvY2kXIaEADKTFhEjLw8w99rv4HcgKk-sQ8-d4,1420
25
- radnn/learn/state/__init__.py,sha256=zExYBp7mkQlzDZX3jnzYa5piwOEFxUwe6ZvKI6IiE6o,117
26
- radnn/learn/state/keras_best_state_saver.py,sha256=ep9QP7bZqmN8XmSzUpRXuBh6ccrbhFdFL4p5c3pg3MA,883
27
- radnn/plots/__init__.py,sha256=dVd7QDrkD_fBUag4Kz3yTnPvBxaBgpDt16bbbNlqLKw,286
28
- radnn/plots/plot_auto_multi_image.py,sha256=0-Bmk3aqeO6AzxC2GEycsx6Wp0sByVZdX4NUp-_OnYA,4507
29
- radnn/plots/plot_confusion_matrix.py,sha256=KWW5k7-gaLPXO4oQBnzwAwgI-rvPOmqw8uiZbFlmU5o,2625
30
- radnn/plots/plot_learning_curve.py,sha256=tgx3vAm4rg5qScqxLQ2T82BqrRWjiYaIKgLQp5Y19cQ,3480
31
- radnn/plots/plot_multi_scatter.py,sha256=-VgSwi7knYTNrdW86RGon0MZ_r0JDoiWP9F_gWIvTuo,4797
32
- radnn/plots/plot_roc.py,sha256=iyOnhux2qFEs7W-szEOCg2VCkcnBEaOJxZkWWYuSnCQ,3493
33
- radnn/plots/plot_voronoi_2d.py,sha256=Kq3ZaLhLaFHQAurhFKNy7NNuIm3RArCk_WxPT8Ftxek,4409
34
- radnn/system/__init__.py,sha256=uJLg56njcLtaRO0Kyudat055DGxqWsLMvrn9P8_Rt6A,119
35
- radnn/system/filestore.py,sha256=gNESaiJNwdrFbkzcbkSv-O4V8vrBagOSR90WcFueNsA,8977
36
- radnn/system/filesystem.py,sha256=Q9eydbKF2syFax6D82kgcEaj6_h-rVgxLAs_6mm2JIc,5566
37
- radnn/system/tee_logger.py,sha256=WcyIJiW851PP6Jk7SyCHj63BEt7HnWa5-GJtw1CjGHE,2629
38
- radnn/system/files/__init__.py,sha256=u2oGHNKM362JwqrDgwmWTAiisL067h6H9uu-d0iTBks,169
39
- radnn/system/files/csvfile.py,sha256=9uKqmCdqLAKomANejcSruHle1r3gVdByQb1I2otLcMs,2246
40
- radnn/system/files/fileobject.py,sha256=qT9qzpH6YFSIzaKfILxhpaQ1P2o2tqRh9J5J2L_Kp8Y,3851
41
- radnn/system/files/imgfile.py,sha256=HxvvittOUG1mmIp-Bg8vHnLPtRYD-N4nE86G0Rcys6M,2242
42
- radnn/system/files/jsonfile.py,sha256=1IgfK0j58RjvkV7pw7Z5oR49W071OmsMceX7F4w0MZw,3291
43
- radnn/system/files/picklefile.py,sha256=0BFiYzr6BbGWMXyQCMjYHa_GlW8nEZ95CQtn7lpH254,5526
44
- radnn/system/files/textfile.py,sha256=r7FZ1pdFGYxKrQ_kgkEK35GIqRU8k_MjdB0OrDd5m0o,2891
45
- radnn/system/hosts/__init__.py,sha256=k2gkMJhe96Nf-V2ex6jZqmCRX9vA_K6gFB8J8Ii9ahc,261
46
- radnn/system/hosts/colab_host.py,sha256=tAuLn9gTkX9cCSEmm7sG1JmCtNIgFlASwBt2olHUSe4,2434
47
- radnn/system/hosts/linux_host.py,sha256=TZ-5JEZV0WNEB5trTbRWM0REhpuK5oYxoLodKKqhm9s,57
48
- radnn/system/hosts/windows_host.py,sha256=u4IvgfFoKWdrFy0hYG__AoxfEJYHF4-ISNXTCJ5uN8I,2257
49
- radnn-0.0.7.2.dist-info/LICENSE.txt,sha256=vYtt_GDvm_yW65X9YMBOOu8Vqc9SAvqH94TbfBc2ckU,1106
50
- radnn-0.0.7.2.dist-info/METADATA,sha256=vKGKKwUbqHlvphHOT0M2mllslbeZjScHXv5l1oIuYvY,2863
51
- radnn-0.0.7.2.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
52
- radnn-0.0.7.2.dist-info/top_level.txt,sha256=FKlLIm6gRAeZlRzs-HCBJAB1q9ELJ7MgaL-qqFuPo6M,6
53
- radnn-0.0.7.2.dist-info/RECORD,,