tsadmetrics 0.1.17__py3-none-any.whl → 1.0.1__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 (143) hide show
  1. {docs_api → docs/add_docs/api_doc}/conf.py +3 -26
  2. {docs_manual → docs/add_docs/full_doc}/conf.py +2 -25
  3. docs/add_docs/manual_doc/conf.py +67 -0
  4. docs/conf.py +1 -1
  5. examples/example_direct_data.py +28 -0
  6. examples/example_direct_single_data.py +25 -0
  7. examples/example_file_reference.py +24 -0
  8. examples/example_global_config_file.py +13 -0
  9. examples/example_metric_config_file.py +19 -0
  10. examples/example_simple_metric.py +8 -0
  11. examples/specific_examples/AbsoluteDetectionDistance_example.py +24 -0
  12. examples/specific_examples/AffiliationbasedFScore_example.py +24 -0
  13. examples/specific_examples/AverageDetectionCount_example.py +24 -0
  14. examples/specific_examples/CompositeFScore_example.py +24 -0
  15. examples/specific_examples/DelayThresholdedPointadjustedFScore_example.py +24 -0
  16. examples/specific_examples/DetectionAccuracyInRange_example.py +24 -0
  17. examples/specific_examples/EnhancedTimeseriesAwareFScore_example.py +24 -0
  18. examples/specific_examples/LatencySparsityawareFScore_example.py +24 -0
  19. examples/specific_examples/MeanTimeToDetect_example.py +24 -0
  20. examples/specific_examples/NabScore_example.py +24 -0
  21. examples/specific_examples/PateFScore_example.py +24 -0
  22. examples/specific_examples/Pate_example.py +24 -0
  23. examples/specific_examples/PointadjustedAtKFScore_example.py +24 -0
  24. examples/specific_examples/PointadjustedAucPr_example.py +24 -0
  25. examples/specific_examples/PointadjustedAucRoc_example.py +24 -0
  26. examples/specific_examples/PointadjustedFScore_example.py +24 -0
  27. examples/specific_examples/RangebasedFScore_example.py +24 -0
  28. examples/specific_examples/SegmentwiseFScore_example.py +24 -0
  29. examples/specific_examples/TemporalDistance_example.py +24 -0
  30. examples/specific_examples/TimeTolerantFScore_example.py +24 -0
  31. examples/specific_examples/TimeseriesAwareFScore_example.py +24 -0
  32. examples/specific_examples/TotalDetectedInRange_example.py +24 -0
  33. examples/specific_examples/VusPr_example.py +24 -0
  34. examples/specific_examples/VusRoc_example.py +24 -0
  35. examples/specific_examples/WeightedDetectionDifference_example.py +24 -0
  36. tsadmetrics/__init__.py +0 -21
  37. tsadmetrics/base/Metric.py +188 -0
  38. tsadmetrics/evaluation/Report.py +25 -0
  39. tsadmetrics/evaluation/Runner.py +253 -0
  40. tsadmetrics/metrics/Registry.py +141 -0
  41. tsadmetrics/metrics/__init__.py +2 -0
  42. tsadmetrics/metrics/spm/PointwiseAucPr.py +62 -0
  43. tsadmetrics/metrics/spm/PointwiseAucRoc.py +63 -0
  44. tsadmetrics/metrics/spm/PointwiseFScore.py +86 -0
  45. tsadmetrics/metrics/spm/PrecisionAtK.py +81 -0
  46. tsadmetrics/metrics/spm/__init__.py +9 -0
  47. tsadmetrics/metrics/tem/dpm/DelayThresholdedPointadjustedFScore.py +83 -0
  48. tsadmetrics/metrics/tem/dpm/LatencySparsityawareFScore.py +76 -0
  49. tsadmetrics/metrics/tem/dpm/MeanTimeToDetect.py +47 -0
  50. tsadmetrics/metrics/tem/dpm/NabScore.py +60 -0
  51. tsadmetrics/metrics/tem/dpm/__init__.py +11 -0
  52. tsadmetrics/metrics/tem/ptdm/AverageDetectionCount.py +53 -0
  53. tsadmetrics/metrics/tem/ptdm/DetectionAccuracyInRange.py +66 -0
  54. tsadmetrics/metrics/tem/ptdm/PointadjustedAtKFScore.py +80 -0
  55. tsadmetrics/metrics/tem/ptdm/TimeseriesAwareFScore.py +248 -0
  56. tsadmetrics/metrics/tem/ptdm/TotalDetectedInRange.py +65 -0
  57. tsadmetrics/metrics/tem/ptdm/WeightedDetectionDifference.py +97 -0
  58. tsadmetrics/metrics/tem/ptdm/__init__.py +12 -0
  59. tsadmetrics/metrics/tem/tmem/AbsoluteDetectionDistance.py +48 -0
  60. tsadmetrics/metrics/tem/tmem/EnhancedTimeseriesAwareFScore.py +252 -0
  61. tsadmetrics/metrics/tem/tmem/TemporalDistance.py +68 -0
  62. tsadmetrics/metrics/tem/tmem/__init__.py +9 -0
  63. tsadmetrics/metrics/tem/tpdm/CompositeFScore.py +104 -0
  64. tsadmetrics/metrics/tem/tpdm/PointadjustedAucPr.py +123 -0
  65. tsadmetrics/metrics/tem/tpdm/PointadjustedAucRoc.py +119 -0
  66. tsadmetrics/metrics/tem/tpdm/PointadjustedFScore.py +96 -0
  67. tsadmetrics/metrics/tem/tpdm/RangebasedFScore.py +236 -0
  68. tsadmetrics/metrics/tem/tpdm/SegmentwiseFScore.py +73 -0
  69. tsadmetrics/metrics/tem/tpdm/__init__.py +12 -0
  70. tsadmetrics/metrics/tem/tstm/AffiliationbasedFScore.py +68 -0
  71. tsadmetrics/metrics/tem/tstm/Pate.py +62 -0
  72. tsadmetrics/metrics/tem/tstm/PateFScore.py +61 -0
  73. tsadmetrics/metrics/tem/tstm/TimeTolerantFScore.py +85 -0
  74. tsadmetrics/metrics/tem/tstm/VusPr.py +51 -0
  75. tsadmetrics/metrics/tem/tstm/VusRoc.py +55 -0
  76. tsadmetrics/metrics/tem/tstm/__init__.py +15 -0
  77. tsadmetrics/{_tsadeval/affiliation/_integral_interval.py → utils/functions_affiliation.py} +377 -9
  78. tsadmetrics/utils/functions_auc.py +393 -0
  79. tsadmetrics/utils/functions_conversion.py +63 -0
  80. tsadmetrics/utils/functions_counting_metrics.py +26 -0
  81. tsadmetrics/{_tsadeval/latency_sparsity_aware.py → utils/functions_latency_sparsity_aware.py} +1 -1
  82. tsadmetrics/{_tsadeval/nabscore.py → utils/functions_nabscore.py} +15 -1
  83. tsadmetrics-1.0.1.dist-info/METADATA +83 -0
  84. tsadmetrics-1.0.1.dist-info/RECORD +91 -0
  85. tsadmetrics-1.0.1.dist-info/top_level.txt +3 -0
  86. entorno/bin/activate_this.py +0 -32
  87. entorno/bin/rst2html.py +0 -23
  88. entorno/bin/rst2html4.py +0 -26
  89. entorno/bin/rst2html5.py +0 -33
  90. entorno/bin/rst2latex.py +0 -26
  91. entorno/bin/rst2man.py +0 -27
  92. entorno/bin/rst2odt.py +0 -28
  93. entorno/bin/rst2odt_prepstyles.py +0 -20
  94. entorno/bin/rst2pseudoxml.py +0 -23
  95. entorno/bin/rst2s5.py +0 -24
  96. entorno/bin/rst2xetex.py +0 -27
  97. entorno/bin/rst2xml.py +0 -23
  98. entorno/bin/rstpep2html.py +0 -25
  99. tests/test_binary.py +0 -946
  100. tests/test_non_binary.py +0 -450
  101. tests/test_utils.py +0 -49
  102. tsadmetrics/_tsadeval/affiliation/_affiliation_zone.py +0 -86
  103. tsadmetrics/_tsadeval/affiliation/_single_ground_truth_event.py +0 -68
  104. tsadmetrics/_tsadeval/affiliation/generics.py +0 -135
  105. tsadmetrics/_tsadeval/affiliation/metrics.py +0 -114
  106. tsadmetrics/_tsadeval/auc_roc_pr_plot.py +0 -295
  107. tsadmetrics/_tsadeval/discontinuity_graph.py +0 -109
  108. tsadmetrics/_tsadeval/eTaPR_pkg/DataManage/File_IO.py +0 -175
  109. tsadmetrics/_tsadeval/eTaPR_pkg/DataManage/Range.py +0 -50
  110. tsadmetrics/_tsadeval/eTaPR_pkg/DataManage/Time_Plot.py +0 -184
  111. tsadmetrics/_tsadeval/eTaPR_pkg/DataManage/__init__.py +0 -0
  112. tsadmetrics/_tsadeval/eTaPR_pkg/__init__.py +0 -0
  113. tsadmetrics/_tsadeval/eTaPR_pkg/etapr.py +0 -386
  114. tsadmetrics/_tsadeval/eTaPR_pkg/tapr.py +0 -362
  115. tsadmetrics/_tsadeval/metrics.py +0 -698
  116. tsadmetrics/_tsadeval/prts/__init__.py +0 -0
  117. tsadmetrics/_tsadeval/prts/base/__init__.py +0 -0
  118. tsadmetrics/_tsadeval/prts/base/time_series_metrics.py +0 -165
  119. tsadmetrics/_tsadeval/prts/basic_metrics_ts.py +0 -121
  120. tsadmetrics/_tsadeval/prts/time_series_metrics/__init__.py +0 -0
  121. tsadmetrics/_tsadeval/prts/time_series_metrics/fscore.py +0 -61
  122. tsadmetrics/_tsadeval/prts/time_series_metrics/precision.py +0 -86
  123. tsadmetrics/_tsadeval/prts/time_series_metrics/precision_recall.py +0 -21
  124. tsadmetrics/_tsadeval/prts/time_series_metrics/recall.py +0 -85
  125. tsadmetrics/_tsadeval/tests.py +0 -376
  126. tsadmetrics/_tsadeval/threshold_plt.py +0 -30
  127. tsadmetrics/_tsadeval/time_tolerant.py +0 -33
  128. tsadmetrics/binary_metrics.py +0 -1652
  129. tsadmetrics/metric_utils.py +0 -98
  130. tsadmetrics/non_binary_metrics.py +0 -372
  131. tsadmetrics/scripts/__init__.py +0 -0
  132. tsadmetrics/scripts/compute_metrics.py +0 -42
  133. tsadmetrics/utils.py +0 -124
  134. tsadmetrics/validation.py +0 -35
  135. tsadmetrics-0.1.17.dist-info/METADATA +0 -54
  136. tsadmetrics-0.1.17.dist-info/RECORD +0 -66
  137. tsadmetrics-0.1.17.dist-info/entry_points.txt +0 -2
  138. tsadmetrics-0.1.17.dist-info/top_level.txt +0 -6
  139. {tests → tsadmetrics/base}/__init__.py +0 -0
  140. /tsadmetrics/{_tsadeval → evaluation}/__init__.py +0 -0
  141. /tsadmetrics/{_tsadeval/affiliation → metrics/tem}/__init__.py +0 -0
  142. /tsadmetrics/{_tsadeval/vus_utils.py → utils/functions_vus.py} +0 -0
  143. {tsadmetrics-0.1.17.dist-info → tsadmetrics-1.0.1.dist-info}/WHEEL +0 -0
@@ -0,0 +1,91 @@
1
+ docs/conf.py,sha256=E6PG3lG1_G1MrLlRaKb1zZ7LiCiGoYsKnZXETEouKpE,1665
2
+ docs/add_docs/api_doc/conf.py,sha256=wuQ4yqLoAE_C5t2crlg1ILpc9Zv5BxTrCFuzKvCtmK0,1679
3
+ docs/add_docs/full_doc/conf.py,sha256=E6PG3lG1_G1MrLlRaKb1zZ7LiCiGoYsKnZXETEouKpE,1665
4
+ docs/add_docs/manual_doc/conf.py,sha256=tnfQLdyr9BhOW-r1uSnJHNnAMsPx9e-Vif5ISXpX4h8,1677
5
+ examples/example_direct_data.py,sha256=FQuOplQURSYArXn4BfMiWY5g3g1sjFllqG2duoXOOvU,929
6
+ examples/example_direct_single_data.py,sha256=RTsy7ZfInwZ3W7g2iDeP-HqzIzCPtIDcSnt_c5M9he4,719
7
+ examples/example_file_reference.py,sha256=BInUK4VtqZfmW9C_LW8pJhtcj3d8LMQ8VFdjd3dMHyo,582
8
+ examples/example_global_config_file.py,sha256=8_jbXMHnVCl8REogUQLOxExfVOefmQzZVouI-l1XBXA,441
9
+ examples/example_metric_config_file.py,sha256=7Hr3TqQ0tRDbWP24SVP0djznft0cX5QPg5zJrIXOWHg,552
10
+ examples/example_simple_metric.py,sha256=mGh6t0_2F3BvjNS5pXrT20U1lzhhFESGxI6uCIQtkQM,308
11
+ examples/specific_examples/AbsoluteDetectionDistance_example.py,sha256=FkQxSRGQSEOVe0ATLtqFjcIhL6qiOdZ8ZOnAI2yztE8,639
12
+ examples/specific_examples/AffiliationbasedFScore_example.py,sha256=YnV_N0EXbs_3FHufeu9pClvpgJlswqJV-SB3EMNAcVU,629
13
+ examples/specific_examples/AverageDetectionCount_example.py,sha256=ohSYhKgiDWyKQkmSWw_lZE0_yRoZLzsy5M_RnsetfGw,623
14
+ examples/specific_examples/CompositeFScore_example.py,sha256=Fd4_YAhNGR8aeIrO1jD24NEM0fcBrx5_Zqx-jG-CdPk,598
15
+ examples/specific_examples/DelayThresholdedPointadjustedFScore_example.py,sha256=GrqsqKGty7_JVRHUTt7Jhe5Gc_Bmvp-0wj2FWYijzAQ,680
16
+ examples/specific_examples/DetectionAccuracyInRange_example.py,sha256=_bOvd07Tb1ejI9C-o9tmYr06e4YyyGLzBPJOt1_wf-g,636
17
+ examples/specific_examples/EnhancedTimeseriesAwareFScore_example.py,sha256=mXO8vRxeLRrCe-Jaye-QyLzhdakZTeYBAg7dLSLwKx8,656
18
+ examples/specific_examples/LatencySparsityawareFScore_example.py,sha256=LByNyeOi0RlyQhQWySs0z4-dS6cFqBDSl846WHXRrgY,643
19
+ examples/specific_examples/MeanTimeToDetect_example.py,sha256=XjFiKWKnGVikDSXP6iL84_N9ST2C708bv2V2JlbWbO4,603
20
+ examples/specific_examples/NabScore_example.py,sha256=2V6H1cvP0BHqBe-Btljjx1kccVPw5BNDksRausUCo28,576
21
+ examples/specific_examples/PateFScore_example.py,sha256=KYBsxUq9PNMksSkOHjra00f9G30jTuK1Ygg8j-6c3IM,583
22
+ examples/specific_examples/Pate_example.py,sha256=MjIDupcWamnDyjq7Ap18ZC-ZiMF6vVjF9KEbFdU9kXk,574
23
+ examples/specific_examples/PointadjustedAtKFScore_example.py,sha256=qwZY2clYyOGcfL9lmPdeI2iBUVPQ5dPHB4IEcd_L6Ow,628
24
+ examples/specific_examples/PointadjustedAucPr_example.py,sha256=SJIOTRIO1cuwYdX_9Rxc6Sumd4c2LugdoE4FfjwYOGM,635
25
+ examples/specific_examples/PointadjustedAucRoc_example.py,sha256=Aveo3sRdxhKMdPBTkVoJLZXgK_V0bo_QGrfXf0m_x20,640
26
+ examples/specific_examples/PointadjustedFScore_example.py,sha256=yjE5pjGjJFLK-NM4NR0sFGvS2yLReRZGhAhrU148vns,615
27
+ examples/specific_examples/RangebasedFScore_example.py,sha256=B-UNbUjfx9QqcMo4ZNA9hv6yeBD8IaCxZfqddO8t2M0,603
28
+ examples/specific_examples/SegmentwiseFScore_example.py,sha256=UOGcdf6Q1gVQwL8YwFqVVd2XdTRHsa0MG6VcDkjSJ_0,607
29
+ examples/specific_examples/TemporalDistance_example.py,sha256=ngDXzXgdpf1B2iEA1z62zsSDh2lWc1QMVm24te_ELRI,602
30
+ examples/specific_examples/TimeTolerantFScore_example.py,sha256=scNH0KylaBip26pgam3IzwXWekmS0RJLgXiKrW7zlMc,611
31
+ examples/specific_examples/TimeseriesAwareFScore_example.py,sha256=zIMaf38gB7C2IOmJImNAps6HFzdHzVdjUR5ui5yayvk,623
32
+ examples/specific_examples/TotalDetectedInRange_example.py,sha256=Z-b_gnaUX8xzojw95eZ9rwfqryqySarur-D9HFOJQIo,620
33
+ examples/specific_examples/VusPr_example.py,sha256=74tWoZ-eljpBgrzxRaaGPIY201vr4R-0QjA4Fh4AihU,580
34
+ examples/specific_examples/VusRoc_example.py,sha256=_jkRWH426i4jc9eRC4_58MKJ53qVkGiNa1gqTOKTG3g,585
35
+ examples/specific_examples/WeightedDetectionDifference_example.py,sha256=L6a6WHJosocfigmf9RY-RnqWOY0aJDLBzVtT0SKjn8k,647
36
+ tsadmetrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
+ tsadmetrics/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ tsadmetrics/base/Metric.py,sha256=xbntR43SGvHwByQFtrleE_O16x9GrHuburxxYzpIofc,6998
39
+ tsadmetrics/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ tsadmetrics/evaluation/Report.py,sha256=imOiQE_-vZ8Q4WNU8-qcOMuOGCowZPmCAShKyW2Jbi4,722
41
+ tsadmetrics/evaluation/Runner.py,sha256=fc0dc7FPFQGpoa7OZWxngVoSHuLFXGwGnJG9ov0eTCY,9791
42
+ tsadmetrics/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ tsadmetrics/metrics/Registry.py,sha256=pI04FFZOQH7KqfLv58k25g27OUcdCnVaB0wMxszCGDA,4579
44
+ tsadmetrics/metrics/__init__.py,sha256=HEQ54BVfeahdeSOfB0BUh3IzmS4yNGG5YrL-Xu2sTHU,52
45
+ tsadmetrics/metrics/spm/PointwiseAucPr.py,sha256=YF8Jod8rd_Bf5c7HSkOK_vkvOsdv0brpaHtTsIHQitM,2219
46
+ tsadmetrics/metrics/spm/PointwiseAucRoc.py,sha256=mkQqCOQPLnuz8SBKz8VjHD0UZD3kPv3F_xU9PnulRhs,2213
47
+ tsadmetrics/metrics/spm/PointwiseFScore.py,sha256=2CZKQ_W7RQM2viXRtYJ6nYrUKr-brQXTF4Fwci4jQkk,2797
48
+ tsadmetrics/metrics/spm/PrecisionAtK.py,sha256=A6iVMAJHWcFOZiXcGLOKv12RBIxNW2EzP4TaWuO7tvk,2760
49
+ tsadmetrics/metrics/spm/__init__.py,sha256=iy8PyEaPxvW1qIzC528STpn0ddpgKpJ6UNQYBawn2Bw,293
50
+ tsadmetrics/metrics/tem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ tsadmetrics/metrics/tem/dpm/DelayThresholdedPointadjustedFScore.py,sha256=13BaOTO_UrcTLco8xy9LDstlDQod91i5_kPEh8a-6Kw,3066
52
+ tsadmetrics/metrics/tem/dpm/LatencySparsityawareFScore.py,sha256=3jWGPWYGyEPChnX9tqbE8f8nD5Pdyz_HCeNwcYS0VFE,2736
53
+ tsadmetrics/metrics/tem/dpm/MeanTimeToDetect.py,sha256=fISq2xqJyDrSsurLMBvrmMz7mPU-wZi0gvaV559Ul0s,1646
54
+ tsadmetrics/metrics/tem/dpm/NabScore.py,sha256=LdPKBh97N1gC4yag7yGMWyw1NGjnZsaScDAMlEJW630,2230
55
+ tsadmetrics/metrics/tem/dpm/__init__.py,sha256=nCmTaWzc_jronMtomBZNARCJzU61ie7O2Niy2zz6zFs,360
56
+ tsadmetrics/metrics/tem/ptdm/AverageDetectionCount.py,sha256=bgSSVXjwyjSTSXJYUTNFKMeoWihoWQGxye8QpZCB7kE,1657
57
+ tsadmetrics/metrics/tem/ptdm/DetectionAccuracyInRange.py,sha256=bFQtLlVirY661e4bBHNvSMZ1z1dOc_hYbrEs5yXVvhI,2181
58
+ tsadmetrics/metrics/tem/ptdm/PointadjustedAtKFScore.py,sha256=Pslqt8pYNbf9vV8DwfJ0nYj1tmYVtZVERcTk6YoQkPQ,3168
59
+ tsadmetrics/metrics/tem/ptdm/TimeseriesAwareFScore.py,sha256=9bG1jM5iPU1ikcnHXazSN3OEerVS25pZB_PDXqGqG3E,9759
60
+ tsadmetrics/metrics/tem/ptdm/TotalDetectedInRange.py,sha256=L08ECptpC2gKCs3I-223gxA8gPrbCiV-SONzVXVcgco,2128
61
+ tsadmetrics/metrics/tem/ptdm/WeightedDetectionDifference.py,sha256=iyj2gefry65PXRj3kbcEXo99asaixdlr6sDiMZJRLoQ,3378
62
+ tsadmetrics/metrics/tem/ptdm/__init__.py,sha256=0Yc8YqHR1k1QJSLYPrP8f8qppobcNID1LqSlsUB2dCY,585
63
+ tsadmetrics/metrics/tem/tmem/AbsoluteDetectionDistance.py,sha256=j6VyUoaXotQX0_Uff0FyEqfEprfzCG8PXZjiaDVE0yw,1748
64
+ tsadmetrics/metrics/tem/tmem/EnhancedTimeseriesAwareFScore.py,sha256=hWGHNT2uOZtTBi72-fCOI5Gy4-VHRshc-vhkCqWv6AU,10874
65
+ tsadmetrics/metrics/tem/tmem/TemporalDistance.py,sha256=10RQ7K6bpf1uTk8NrIEZUh3Iq4s2nyvpYmmv564I2To,2168
66
+ tsadmetrics/metrics/tem/tmem/__init__.py,sha256=DCKheDF_DJydOASIBeHNY5g3OzMGChzjZ1iGCIBqnA4,292
67
+ tsadmetrics/metrics/tem/tpdm/CompositeFScore.py,sha256=ZXYR5CVEPhIid8DAQ5rptGhNdG2HIwyunDDpRZ3MA3M,3451
68
+ tsadmetrics/metrics/tem/tpdm/PointadjustedAucPr.py,sha256=085MTHdm-FSLtsFaIr6kzINFmdLMoiTs8wmbkLZ3Uy8,4379
69
+ tsadmetrics/metrics/tem/tpdm/PointadjustedAucRoc.py,sha256=sYkiUPtdKATHFwe7OrQnckhRsxuJnhFaAGU4h0-FnEk,4318
70
+ tsadmetrics/metrics/tem/tpdm/PointadjustedFScore.py,sha256=4bn43u1mVST23cpE5mX0pzEk2vud1kf7svdYdViQzis,3252
71
+ tsadmetrics/metrics/tem/tpdm/RangebasedFScore.py,sha256=2CFS89P0tGSfg1ypzyPDFKhZd1dBq4dBITI2zlzIeJU,9211
72
+ tsadmetrics/metrics/tem/tpdm/SegmentwiseFScore.py,sha256=Gj4DYZ16AhoCiOcowDiQpFepx2u3679yDSnhkG6Eisk,2520
73
+ tsadmetrics/metrics/tem/tpdm/__init__.py,sha256=EgosVoxib1pvTSe39Yzt9sIfaKLzv0e5Wiq-NysgtdY,494
74
+ tsadmetrics/metrics/tem/tstm/AffiliationbasedFScore.py,sha256=4o2AiJvJDJqMf1uACC8AvIrHOR2UVoqFinU_K0S_wwM,2305
75
+ tsadmetrics/metrics/tem/tstm/Pate.py,sha256=FWQ7lur2GfR2umwKL9TvMSYhsd6usRn4ymBSjFntJJU,2252
76
+ tsadmetrics/metrics/tem/tstm/PateFScore.py,sha256=SdrpNolacZN77yTlPPnWdOyG5MKd73W5imZqi0n4DUU,2109
77
+ tsadmetrics/metrics/tem/tstm/TimeTolerantFScore.py,sha256=b8zO8ZrxhETqErEmYIhrBj4IkafOR2-ibnFC-d421TM,3218
78
+ tsadmetrics/metrics/tem/tstm/VusPr.py,sha256=3KxcB66IT_F4fweiueD8CEexatRzbnO163IC7yevhuU,1761
79
+ tsadmetrics/metrics/tem/tstm/VusRoc.py,sha256=vKb8V0vkbReCjbDjnsLKvV2mbhSmR9UrPt75L70hrHA,1778
80
+ tsadmetrics/metrics/tem/tstm/__init__.py,sha256=i2-nLISV_UAK3Fygz_yhOCAYGb2-0D__KiLPG17GhM0,346
81
+ tsadmetrics/utils/functions_affiliation.py,sha256=lJE0FMBqrYOQVIg7VuFeJgkeYIj6jBg08vSK-gU2JmM,35782
82
+ tsadmetrics/utils/functions_auc.py,sha256=wx6FA0thhwmrIuSU1k-Rio_YzYJjiBQ0MC4ytP1OEow,12832
83
+ tsadmetrics/utils/functions_conversion.py,sha256=ym2cVWygFeV99HjVY_VmqOUgIEW3qGedReEMhDxY3Vw,1973
84
+ tsadmetrics/utils/functions_counting_metrics.py,sha256=opEz2c4xOlvnLuWpGTZBkUA4kvWtYv7O_djLIgvjt64,686
85
+ tsadmetrics/utils/functions_latency_sparsity_aware.py,sha256=2-GbRj2-jI0VPu7glrUryxbvtd8cizpmvhQ7uzGFdvU,12092
86
+ tsadmetrics/utils/functions_nabscore.py,sha256=1iT57dckcxkJFm7tV_X5-XKJ6ueBfspQpCt1JdHYoac,12495
87
+ tsadmetrics/utils/functions_vus.py,sha256=XL5tV9hxBW8aGkobT84cp2FdHNuNZ3PUgaplwHsDjNk,7868
88
+ tsadmetrics-1.0.1.dist-info/METADATA,sha256=LM-IpIbv0VweBAkqCthZ9xFgy0NlJcWZfI98FNOukac,3212
89
+ tsadmetrics-1.0.1.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
90
+ tsadmetrics-1.0.1.dist-info/top_level.txt,sha256=SQyE4h3YKaCI8-Cqe-irh5ig4trxq2ZIg8bV0xZ1_UQ,26
91
+ tsadmetrics-1.0.1.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ docs
2
+ examples
3
+ tsadmetrics
@@ -1,32 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- """Activate virtualenv for current interpreter:
3
-
4
- Use exec(open(this_file).read(), {'__file__': this_file}).
5
-
6
- This can be used when you must use an existing Python interpreter, not the virtualenv bin/python.
7
- """
8
- import os
9
- import site
10
- import sys
11
-
12
- try:
13
- abs_file = os.path.abspath(__file__)
14
- except NameError:
15
- raise AssertionError("You must use exec(open(this_file).read(), {'__file__': this_file}))")
16
-
17
- bin_dir = os.path.dirname(abs_file)
18
- base = bin_dir[: -len("bin") - 1] # strip away the bin part from the __file__, plus the path separator
19
-
20
- # prepend bin to PATH (this file is inside the bin directory)
21
- os.environ["PATH"] = os.pathsep.join([bin_dir] + os.environ.get("PATH", "").split(os.pathsep))
22
- os.environ["VIRTUAL_ENV"] = base # virtual env is right above bin directory
23
-
24
- # add the virtual environments libraries to the host python import mechanism
25
- prev_length = len(sys.path)
26
- for lib in "../lib/python3.8/site-packages".split(os.pathsep):
27
- path = os.path.realpath(os.path.join(bin_dir, lib))
28
- site.addsitedir(path.decode("utf-8") if "" else path)
29
- sys.path[:] = sys.path[prev_length:] + sys.path[0:prev_length]
30
-
31
- sys.real_prefix = sys.prefix
32
- sys.prefix = base
entorno/bin/rst2html.py DELETED
@@ -1,23 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2html.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing HTML.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline, default_description
18
-
19
-
20
- description = ('Generates (X)HTML documents from standalone reStructuredText '
21
- 'sources. ' + default_description)
22
-
23
- publish_cmdline(writer_name='html', description=description)
entorno/bin/rst2html4.py DELETED
@@ -1,26 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2html4.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing (X)HTML.
9
-
10
- The output conforms to XHTML 1.0 transitional
11
- and almost to HTML 4.01 transitional (except for closing empty tags).
12
- """
13
-
14
- try:
15
- import locale
16
- locale.setlocale(locale.LC_ALL, '')
17
- except Exception:
18
- pass
19
-
20
- from docutils.core import publish_cmdline, default_description
21
-
22
-
23
- description = ('Generates (X)HTML documents from standalone reStructuredText '
24
- 'sources. ' + default_description)
25
-
26
- publish_cmdline(writer_name='html4', description=description)
entorno/bin/rst2html5.py DELETED
@@ -1,33 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
- # :Copyright: © 2015 Günter Milde.
3
- # :License: Released under the terms of the `2-Clause BSD license`_, in short:
4
- #
5
- # Copying and distribution of this file, with or without modification,
6
- # are permitted in any medium without royalty provided the copyright
7
- # notice and this notice are preserved.
8
- # This file is offered as-is, without any warranty.
9
- #
10
- # .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause
11
- #
12
- # Revision: $Revision: 9021 $
13
- # Date: $Date: 2022-03-04 16:54:22 +0100 (Fr, 04. Mär 2022) $
14
-
15
- """
16
- A minimal front end to the Docutils Publisher, producing HTML 5 documents.
17
-
18
- The output is also valid XML.
19
- """
20
-
21
- try:
22
- import locale # module missing in Jython
23
- locale.setlocale(locale.LC_ALL, '')
24
- except locale.Error:
25
- pass
26
-
27
- from docutils.core import publish_cmdline, default_description
28
-
29
- description = ('Generates HTML5 documents from standalone '
30
- 'reStructuredText sources.\n'
31
- + default_description)
32
-
33
- publish_cmdline(writer_name='html5', description=description)
entorno/bin/rst2latex.py DELETED
@@ -1,26 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2latex.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing LaTeX.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline
18
-
19
- description = ('Generates LaTeX documents from standalone reStructuredText '
20
- 'sources. '
21
- 'Reads from <source> (default is stdin) and writes to '
22
- '<destination> (default is stdout). See '
23
- '<https://docutils.sourceforge.io/docs/user/latex.html> for '
24
- 'the full reference.')
25
-
26
- publish_cmdline(writer_name='latex', description=description)
entorno/bin/rst2man.py DELETED
@@ -1,27 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # Author:
4
- # Contact: grubert@users.sf.net
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- man.py
9
- ======
10
-
11
- This module provides a simple command line interface that uses the
12
- man page writer to output from ReStructuredText source.
13
- """
14
-
15
- import locale
16
- try:
17
- locale.setlocale(locale.LC_ALL, '')
18
- except Exception:
19
- pass
20
-
21
- from docutils.core import publish_cmdline, default_description
22
- from docutils.writers import manpage
23
-
24
- description = ("Generates plain unix manual documents. "
25
- + default_description)
26
-
27
- publish_cmdline(writer=manpage.Writer(), description=description)
entorno/bin/rst2odt.py DELETED
@@ -1,28 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2odt.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: Dave Kuhlman <dkuhlman@rexx.com>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A front end to the Docutils Publisher, producing OpenOffice documents.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline_to_binary, default_description
18
- from docutils.writers.odf_odt import Writer, Reader
19
-
20
-
21
- description = ('Generates OpenDocument/OpenOffice/ODF documents from '
22
- 'standalone reStructuredText sources. ' + default_description)
23
-
24
-
25
- writer = Writer()
26
- reader = Reader()
27
- output = publish_cmdline_to_binary(reader=reader, writer=writer,
28
- description=description)
@@ -1,20 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # Copyright: This module has been placed in the public domain.
4
-
5
- """
6
- Adapt a word-processor-generated styles.odt for odtwriter use:
7
-
8
- Drop page size specifications from styles.xml in STYLE_FILE.odt.
9
- See https://docutils.sourceforge.io/docs/user/odt.html#page-size
10
-
11
- Provisional backwards compatibility stub (to be removed in Docutils >= 0.21).
12
-
13
- The actual code moved to the "docutils" library package and can be started
14
- with ``python -m docutils.writers.odf_odt.prepstyles``.
15
- """
16
-
17
- from docutils.writers.odf_odt import prepstyles
18
-
19
- if __name__ == '__main__':
20
- prepstyles.main()
@@ -1,23 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2pseudoxml.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing pseudo-XML.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline, default_description
18
-
19
-
20
- description = ('Generates pseudo-XML from standalone reStructuredText '
21
- 'sources (for testing purposes). ' + default_description)
22
-
23
- publish_cmdline(description=description)
entorno/bin/rst2s5.py DELETED
@@ -1,24 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2s5.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: Chris Liechti <cliechti@gmx.net>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing HTML slides using
9
- the S5 template system.
10
- """
11
-
12
- try:
13
- import locale
14
- locale.setlocale(locale.LC_ALL, '')
15
- except Exception:
16
- pass
17
-
18
- from docutils.core import publish_cmdline, default_description
19
-
20
-
21
- description = ('Generates S5 (X)HTML slideshow documents from standalone '
22
- 'reStructuredText sources. ' + default_description)
23
-
24
- publish_cmdline(writer_name='s5', description=description)
entorno/bin/rst2xetex.py DELETED
@@ -1,27 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2xetex.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: Guenter Milde
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing Lua/XeLaTeX code.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline
18
-
19
- description = ('Generates LaTeX documents from standalone reStructuredText '
20
- 'sources for compilation with the Unicode-aware TeX variants '
21
- 'XeLaTeX or LuaLaTeX. '
22
- 'Reads from <source> (default is stdin) and writes to '
23
- '<destination> (default is stdout). See '
24
- '<https://docutils.sourceforge.io/docs/user/latex.html> for '
25
- 'the full reference.')
26
-
27
- publish_cmdline(writer_name='xetex', description=description)
entorno/bin/rst2xml.py DELETED
@@ -1,23 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rst2xml.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing Docutils XML.
9
- """
10
-
11
- try:
12
- import locale
13
- locale.setlocale(locale.LC_ALL, '')
14
- except Exception:
15
- pass
16
-
17
- from docutils.core import publish_cmdline, default_description
18
-
19
-
20
- description = ('Generates Docutils-native XML from standalone '
21
- 'reStructuredText sources. ' + default_description)
22
-
23
- publish_cmdline(writer_name='xml', description=description)
@@ -1,25 +0,0 @@
1
- #!/home/linux/Documentos/TFG/TSADmetrics/entorno/bin/python
2
-
3
- # $Id: rstpep2html.py 9115 2022-07-28 17:06:24Z milde $
4
- # Author: David Goodger <goodger@python.org>
5
- # Copyright: This module has been placed in the public domain.
6
-
7
- """
8
- A minimal front end to the Docutils Publisher, producing HTML from PEP
9
- (Python Enhancement Proposal) documents.
10
- """
11
-
12
- try:
13
- import locale
14
- locale.setlocale(locale.LC_ALL, '')
15
- except Exception:
16
- pass
17
-
18
- from docutils.core import publish_cmdline, default_description
19
-
20
-
21
- description = ('Generates (X)HTML from reStructuredText-format PEP files. '
22
- + default_description)
23
-
24
- publish_cmdline(reader_name='pep', writer_name='pep_html',
25
- description=description)