Initializing...
Select Batches
Configure Parameters
Synchronize Data
Model Training
MedHELM LLM-Jury Evaluation
Model Ready
Select datasets and batches from batch review to use for model training. Data will be synchronized with Teraq.
Medical Information Mart for Intensive Care III
Medical Information Mart for Intensive Care IV
Loading available batches...
No batches selected. Go to Data Selection tab to select batches.
Phase 1 - Causal Language Modeling (CLM)
Loading active processes...
Real-time training metrics, loss curves, and performance visualization
Overview of all trained models with metadata from database.
Loading stored models...
Monitor training jobs synchronized with Teraq platform.
| Job ID | Model Name | Status | Progress | Started | Duration | Actions |
|---|---|---|---|---|---|---|
|
Loading training jobs... |
||||||
Evaluate trained models using MedHELM LLM-jury evaluation protocol. Based on MedHELM: Holistic Evaluation of Large Language Models for Medical Tasks (Bedi et al., 2025).
Based on MedHELM (Bedi et al., 2025) - arXiv:2505.23802. Uses LLM-jury evaluation with three criteria. Final score is the mean of all three metrics (equal weighting).
Factual correctness and adherence to medical guidelines
Thoroughness in addressing all aspects of the query
Organization, readability, and easy to understand language
Extract medical facts from clinical notes using enhanced rule-based extraction with optional AWS Comprehend Medical and John Snow Labs integration. Supports 500+ medications, enhanced negation detection, and multi-source extraction.
Generate FactEHR-style datasets from PhysioNet clinical notes. Select a dataset source and extraction method.
Comprehensive drug dictionary covering all major medication categories
20+ negation patterns to filter out negated conditions and medications
Optional AWS Comprehend Medical for cloud-based high-quality extraction
Optional state-of-the-art medical NLP with 95% precision
View metrics and performance of trained models.
Select a completed training job to view results.
Complete API documentation for external parties to integrate with Summit Health ML Training API, including billing and cost allocation.
Complete HTML documentation with all endpoints, examples, and billing information
API Key or OAuth 2.0 required for all requests
Automatic cost allocation to user_id and billing_account
Base URL: https://your-backend-server.com
API Version: v1
Content-Type: application/json
/api/training/start
Start a new training job with billing allocation
Parameters: instance_type, datasets, user_id, billing_account
/api/training/process-status
Check training job status and progress
Parameters: job_id
/api/training/cost-tracking/user-costs
Get cost breakdown for user or billing account
Parameters: user_id, billing_account, start_date, end_date
import requests
API_BASE_URL = "https://your-backend-server.com"
API_KEY = "YOUR_API_KEY"
# Start training with billing allocation
response = requests.post(
f"{API_BASE_URL}/api/training/start",
params={
"instance_type": "48vcpu",
"datasets": "MIMICIII,MIMIC4"
},
headers={
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json"
},
json={
"user_id": "external_user_123",
"billing_account": "account_abc"
}
)
result = response.json()
job_id = result["job_id"]
print(f"Training started: {job_id}")
💡 Note: All costs are automatically tracked and allocated to the provided user_id and billing_account.
You can query costs at any time using the billing endpoints.
For API access, billing questions, or technical support:
Advanced quantum-enhanced machine learning solutions for clinical data analysis and survival prediction.