beyondaccuracy-ml 0.1.0__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.
@@ -0,0 +1,3 @@
1
+ from .evaluator import evaluate
2
+
3
+ __all__ = ["evaluate"]
@@ -0,0 +1,6 @@
1
+ from beyond_accuracy import evaluator
2
+
3
+ print("Starting evaluation...")
4
+ k=evaluator.evaluate("Test")
5
+ print(k)
6
+ print("Evaluation complete.")
@@ -0,0 +1,9 @@
1
+ def evaluate(message: str):
2
+ """
3
+ Minimal test evaluator for v0.1.0
4
+ """
5
+ return {
6
+ "input": message,
7
+ "output": f"Beyond Accuracy received: {message}",
8
+ "version": "0.1.0"
9
+ }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,5 @@
1
+ Metadata-Version: 2.4
2
+ Name: beyondaccuracy-ml
3
+ Version: 0.1.0
4
+ Summary: Beyond Accuracy test package
5
+ Requires-Python: >=3.9
@@ -0,0 +1,13 @@
1
+ beyond_accuracy/__init__.py,sha256=OS3gyqwIDmoVmE93qOANimMSYsEL1fdnykkOlUWzRPo,57
2
+ beyond_accuracy/config.py,sha256=L-IJ3DRAKCR-xDVRUQ0zewmAUIt_XR19VnxWTtfRkAY,143
3
+ beyond_accuracy/evaluator.py,sha256=1OQCSvxegxXHJsRiw7BTcjF-xyI9lsKMiIATwg0GF60,221
4
+ beyond_accuracy/report.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ beyond_accuracy/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ beyond_accuracy/metrics/bias.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ beyond_accuracy/metrics/dataset.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ beyond_accuracy/metrics/explainability.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ beyond_accuracy/metrics/robustness.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ beyondaccuracy_ml-0.1.0.dist-info/METADATA,sha256=XBZLCmIksWsuylw8pAn79Mos-lEN2sBFEIZOUYK3Y-g,127
11
+ beyondaccuracy_ml-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ beyondaccuracy_ml-0.1.0.dist-info/top_level.txt,sha256=nwmbcYksltfAslN9-OOCpC8DXH6vJ9kVfFuNhGNTd6k,16
13
+ beyondaccuracy_ml-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ beyond_accuracy