Spaces:
Runtime error
Runtime error
File size: 495 Bytes
ff522d1 f2cdac9 ff522d1 661e23b ff522d1 0cdd4d6 ff522d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import numpy as np
from make_predictions import make_prediction
import gradio as gr
def predict(file):
print("=====================================")
ans = make_prediction(file.name)
print(ans)
print("=====================================")
return {ans[0] :ans[1]}
iface = gr.Interface(predict, "file", "label", title="ECG Classification", description="Upload an ECG file to classify it as Normal or Abnormal", examples=[["data/faizan_r8.txt"]], share=True)
iface.launch()
|