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.
- beyondaccuracy_ml-0.1.0/PKG-INFO +5 -0
- beyondaccuracy_ml-0.1.0/README.md +14 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/__init__.py +3 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/config.py +6 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/evaluator.py +9 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/metrics/__init__.py +0 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/metrics/bias.py +0 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/metrics/dataset.py +0 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/metrics/explainability.py +0 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/metrics/robustness.py +0 -0
- beyondaccuracy_ml-0.1.0/beyond_accuracy/report.py +0 -0
- beyondaccuracy_ml-0.1.0/beyondaccuracy_ml.egg-info/PKG-INFO +5 -0
- beyondaccuracy_ml-0.1.0/beyondaccuracy_ml.egg-info/SOURCES.txt +15 -0
- beyondaccuracy_ml-0.1.0/beyondaccuracy_ml.egg-info/dependency_links.txt +1 -0
- beyondaccuracy_ml-0.1.0/beyondaccuracy_ml.egg-info/top_level.txt +1 -0
- beyondaccuracy_ml-0.1.0/pyproject.toml +9 -0
- beyondaccuracy_ml-0.1.0/setup.cfg +4 -0
|
@@ -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)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
beyond_accuracy
|