beyondaccuracy-ml 0.1.0__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.
@@ -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,14 @@
1
+ # Beyond Accuracy
2
+
3
+ Beyond Accuracy is a framework for evaluating machine learning models
4
+ beyond traditional accuracy metrics.
5
+
6
+ ## Version 0.1.0
7
+ This is a minimal test release to validate packaging and distribution.
8
+
9
+ ## Example
10
+ ```python
11
+ from beyond_accuracy import evaluate
12
+
13
+ result = evaluate("hello world")
14
+ print(result)
@@ -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
@@ -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,15 @@
1
+ README.md
2
+ pyproject.toml
3
+ beyond_accuracy/__init__.py
4
+ beyond_accuracy/config.py
5
+ beyond_accuracy/evaluator.py
6
+ beyond_accuracy/report.py
7
+ beyond_accuracy/metrics/__init__.py
8
+ beyond_accuracy/metrics/bias.py
9
+ beyond_accuracy/metrics/dataset.py
10
+ beyond_accuracy/metrics/explainability.py
11
+ beyond_accuracy/metrics/robustness.py
12
+ beyondaccuracy_ml.egg-info/PKG-INFO
13
+ beyondaccuracy_ml.egg-info/SOURCES.txt
14
+ beyondaccuracy_ml.egg-info/dependency_links.txt
15
+ beyondaccuracy_ml.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ beyond_accuracy
@@ -0,0 +1,9 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "beyondaccuracy-ml"
7
+ version = "0.1.0"
8
+ description = "Beyond Accuracy test package"
9
+ requires-python = ">=3.9"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+