A CRO platform for clinical-grade AI Train. Validate. Secure clearance. Gesund.ai orchestrates the AI as-a-Medical Device lifecycle, providing privacy-centered access to diverse yet standardized medical data sources, and a unique analytical toolbox that fosters clinical validation, regulatory clearance and effective marketing
Project description
Validation Metrics Library
This library provides tools for calculating validation metrics for predictions and annotations in machine learning workflows. It includes a command-line tool for computing and displaying validation metrics.
- Documentation: https://gesund-ai.github.io
- Source code: https://github.com/gesund-ai/gesund
- Bug reports: https://github.com/gesund-ai/gesund/issues
- Examples : https://github.com/gesund-ai/gesund/tree/main/gesund/examples
Installation
To use this library, ensure you have the necessary dependencies installed in your environment. You can install them via pip:
pip install gesund==latest_version
pip install pycocotools@git+https://github.com/HammadK44/cocoapi.git@Dev#subdirectory=PythonAPI/
Basic Usage
# import the library
from gesund import Validation
from gesund.validation._result import ValidationResult
from gesund.core._managers.metric_manager import metric_manager
from gesund.core._managers.plot_manager import plot_manager
# Call the default configuration from utils
from utils import callable_plot_config
# Select your problem type {"classification", "object_detection", "semantic_segmentation"}
# example usage for problem type
problem_type = "classification"
plot_configuration = callable_plot_config(problem_type)
metric_name = "lift_chart"
cohort_id = None
data_dir = f"./tests/_data/{problem_type}"
# create a class instance
validator = Validation(
annotations_path=f"{data_dir}/gesund_custom_format/annotation.json",
predictions_path=f"{data_dir}/gesund_custom_format/prediction.json",
class_mapping=f"{data_dir}/test_class_mappings.json",
problem_type=problem_type,
data_format="json",
json_structure_type="gesund",
plot_config=plot_configuration,
cohort_args={"selection_criteria": "random"},
metric_args={"threshold": [0.25, 0.5, 0.75]},
)
# run the validation workflow
validation_results = validator.run()
# save the results
validation_results.save(metric_name)
# plot the results
validation_results.plot(metric_name="auc", save_plot=False, cohort_id=cohort_id)
Code of Conduct
We are committed to fostering a welcoming and inclusive community. Please adhere to the following guidelines when contributing to this project:
- Respect: Treat everyone with respect and consideration. Harassment or discrimination of any kind is not tolerated.
- Collaboration: Be open to collaboration and constructive criticism. Offer feedback gracefully and accept feedback in the same manner.
- Inclusivity: Use inclusive language and be mindful of different perspectives and experiences.
- Professionalism: Maintain a professional attitude in all project interactions.
By participating in this project, you agree to abide by this Code of Conduct. If you witness or experience any behavior that violates these guidelines, please contact the project maintainers.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gesund-0.2.1.tar.gz.
File metadata
- Download URL: gesund-0.2.1.tar.gz
- Upload date:
- Size: 61.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
764ef6ef79ba8f4a9a647648fbbe771be1618e680641d12a4086bebd730a6086
|
|
| MD5 |
32b5711c14de99e0c33f9477ae965de3
|
|
| BLAKE2b-256 |
66801d11666983eb8543528d7c03967c0101aacecf339d62f90b9d2f974a84fd
|
File details
Details for the file gesund-0.2.1-py3-none-any.whl.
File metadata
- Download URL: gesund-0.2.1-py3-none-any.whl
- Upload date:
- Size: 95.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea5719d67b75d159e45a261256091264dacb9245cdc9293e9b0188e622c3779c
|
|
| MD5 |
15e44d4669b4383af7534c137366c546
|
|
| BLAKE2b-256 |
954afa212c1d662ae692f201c63291a9d31ac5858ba82f5d1ae594d7ec7fd243
|