valor-lite 0.33.9__tar.gz → 0.33.10__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.

Potentially problematic release.


This version of valor-lite might be problematic. Click here for more details.

Files changed (81) hide show
  1. {valor_lite-0.33.9 → valor_lite-0.33.10}/PKG-INFO +1 -1
  2. {valor_lite-0.33.9 → valor_lite-0.33.10}/benchmarks/benchmark_classification.py +1 -1
  3. {valor_lite-0.33.9 → valor_lite-0.33.10}/benchmarks/benchmark_objdet.py +1 -1
  4. valor_lite-0.33.10/examples/object-detection.ipynb +3019 -0
  5. valor_lite-0.33.10/tests/object_detection/test_pr_curve.py +233 -0
  6. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/object_detection/computation.py +33 -9
  7. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/object_detection/manager.py +6 -1
  8. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/object_detection/metric.py +9 -3
  9. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite.egg-info/PKG-INFO +1 -1
  10. valor_lite-0.33.9/examples/object-detection.ipynb +0 -2989
  11. valor_lite-0.33.9/tests/object_detection/test_pr_curve.py +0 -176
  12. {valor_lite-0.33.9 → valor_lite-0.33.10}/LICENSE +0 -0
  13. {valor_lite-0.33.9 → valor_lite-0.33.10}/README.md +0 -0
  14. {valor_lite-0.33.9 → valor_lite-0.33.10}/benchmarks/.gitignore +0 -0
  15. {valor_lite-0.33.9 → valor_lite-0.33.10}/examples/.gitignore +0 -0
  16. {valor_lite-0.33.9 → valor_lite-0.33.10}/examples/tabular_classification.ipynb +0 -0
  17. {valor_lite-0.33.9 → valor_lite-0.33.10}/pyproject.toml +0 -0
  18. {valor_lite-0.33.9 → valor_lite-0.33.10}/setup.cfg +0 -0
  19. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/__init__.py +0 -0
  20. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/__init__.py +0 -0
  21. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/conftest.py +0 -0
  22. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_accuracy.py +0 -0
  23. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_confusion_matrix.py +0 -0
  24. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_counts.py +0 -0
  25. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_dataloader.py +0 -0
  26. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_evaluator.py +0 -0
  27. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_f1.py +0 -0
  28. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_filtering.py +0 -0
  29. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_precision.py +0 -0
  30. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_recall.py +0 -0
  31. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_rocauc.py +0 -0
  32. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_schemas.py +0 -0
  33. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/classification/test_stability.py +0 -0
  34. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/__init__.py +0 -0
  35. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/conftest.py +0 -0
  36. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_average_precision.py +0 -0
  37. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_average_recall.py +0 -0
  38. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_confusion_matrix.py +0 -0
  39. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_counts.py +0 -0
  40. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_dataloader.py +0 -0
  41. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_evaluator.py +0 -0
  42. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_filtering.py +0 -0
  43. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_iou.py +0 -0
  44. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_precision.py +0 -0
  45. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_recall.py +0 -0
  46. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_schemas.py +0 -0
  47. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/object_detection/test_stability.py +0 -0
  48. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/__init__.py +0 -0
  49. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/conftest.py +0 -0
  50. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_accuracy.py +0 -0
  51. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_annotation.py +0 -0
  52. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_confusion_matrix.py +0 -0
  53. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_dataloader.py +0 -0
  54. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_evaluator.py +0 -0
  55. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_f1.py +0 -0
  56. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_filtering.py +0 -0
  57. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_iou.py +0 -0
  58. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_precision.py +0 -0
  59. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_recall.py +0 -0
  60. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/semantic_segmentation/test_stability.py +0 -0
  61. {valor_lite-0.33.9 → valor_lite-0.33.10}/tests/text_generation/__init__.py +0 -0
  62. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/LICENSE +0 -0
  63. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/__init__.py +0 -0
  64. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/classification/__init__.py +0 -0
  65. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/classification/annotation.py +0 -0
  66. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/classification/computation.py +0 -0
  67. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/classification/manager.py +0 -0
  68. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/classification/metric.py +0 -0
  69. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/object_detection/__init__.py +0 -0
  70. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/object_detection/annotation.py +0 -0
  71. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/schemas.py +0 -0
  72. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/semantic_segmentation/__init__.py +0 -0
  73. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/semantic_segmentation/annotation.py +0 -0
  74. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/semantic_segmentation/computation.py +0 -0
  75. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/semantic_segmentation/manager.py +0 -0
  76. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/semantic_segmentation/metric.py +0 -0
  77. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite/text_generation/__init__.py +0 -0
  78. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite.egg-info/SOURCES.txt +0 -0
  79. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite.egg-info/dependency_links.txt +0 -0
  80. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite.egg-info/requires.txt +0 -0
  81. {valor_lite-0.33.9 → valor_lite-0.33.10}/valor_lite.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: valor-lite
3
- Version: 0.33.9
3
+ Version: 0.33.10
4
4
  Summary: Compute valor metrics locally.
5
5
  License: MIT License
6
6
 
@@ -211,7 +211,7 @@ def run_benchmarking_analysis(
211
211
  )
212
212
 
213
213
  # evaluate
214
- eval_time, _ = time_it(evaluator.evaluate)()
214
+ eval_time, _ = time_it(evaluator.compute_precision_recall)()
215
215
  if eval_time > evaluation_timeout and evaluation_timeout != -1:
216
216
  raise TimeoutError(
217
217
  f"Base evaluation timed out with {evaluator.n_datums} datums."
@@ -322,7 +322,7 @@ def run_benchmarking_analysis(
322
322
  )
323
323
 
324
324
  # evaluate - base metrics only
325
- eval_time, metrics = time_it(evaluator.evaluate)()
325
+ eval_time, metrics = time_it(evaluator.compute_precision_recall)()
326
326
  if eval_time > evaluation_timeout and evaluation_timeout != -1:
327
327
  raise TimeoutError(
328
328
  f"Base evaluation timed out with {evaluator.n_datums} datums."