clineval-dataengine
Clinical AI Data Evaluation and Processing Engine for FHIR records.
Features
- FHIR Patient Resource Validation: Validates JSON payloads against HL7 FHIR R4 Patient specifications.
- Clinical AI Readiness Scoring: Calculates a score from 0-100 evaluating data completeness across core demographics, contact details, provider context, and metadata enrichment needed for machine learning models.
Installation
pip install clineval-dataengine
Quickstart
from clineval_dataengine import FHIRPatientParser
parser = FHIRPatientParser()
patient_data = {
"resourceType": "Patient",
"id": "pat-1001",
"name": [{"family": "Smith", "given": ["Jane"]}],
"gender": "female",
"birthDate": "1985-04-12"
}
# Parse and validate
parsed = parser.parse_json(patient_data)
# Calculate Clinical AI Readiness Score
score_result = parser.calculate_ai_readiness_score(parsed)
print("Readiness Score:", score_result["score"])
print("Category:", score_result["readiness_category"])
License
MIT License
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 clineval_dataengine-0.1.0.tar.gz.
File metadata
- Download URL: clineval_dataengine-0.1.0.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f2bd7aa974eaf6818f0adf2bb31603b734ae378e7df8b58c8a0afdd2d22cffd
|
|
| MD5 |
fc6fa927ca9458fbf4e96d378a1e4bfe
|
|
| BLAKE2b-256 |
624ce093c5fd165ab873c49f3a16e2e1f833d888f215598ede732e8d59b74b0b
|
File details
Details for the file clineval_dataengine-0.1.0-py3-none-any.whl.
File metadata
- Download URL: clineval_dataengine-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec00343027c9a5d5b3c377bee8bb1dbe295f59cac20bfd2197269f5f5e6293cd
|
|
| MD5 |
273775a687ee3403fefd05140f286115
|
|
| BLAKE2b-256 |
046a722fa0017d2a2bbc4a85a34114ce4c07d23a4da29782d5eddc96c3a7bfda
|