|
import gradio as gr |
|
from joblib import load |
|
import numpy as np |
|
|
|
|
|
model = load("ML_Model_CallCorr.joblib") |
|
|
|
def predict_corrected_calcium(total_calcium, total_protein, albumin): |
|
|
|
atr = albumin / total_protein |
|
|
|
|
|
predicted_value = model.predict([[total_calcium, atr]])[0] |
|
|
|
|
|
return f"The Actual Calcium value with Correction is {predicted_value:.2f}. The model is a RDF Regression Model with a MSE of 0.06 and R-squared of 0.931." |
|
|
|
|
|
interface = gr.Interface(fn=predict_corrected_calcium, |
|
inputs=[gr.inputs.Number(label="Total Calcium in mg/dL"), |
|
gr.inputs.Number(label="Total Protein in g/dL"), |
|
gr.inputs.Number(label="Albumin in g/dL")], |
|
outputs=gr.outputs.Textbox()) |
|
|
|
interface.launch() |