vlbthambawita's picture
updated app
3c8cf6c
raw
history blame
462 Bytes
import gradio as gr
from transformers import pipeline
from transformers import AutoModel
#pipeline = pipeline(task="image-classification", model="julien-c/hotdog-not-hotdog")
model = AutoModel.from_pretrained("deepsynthbody/deepfake_ecg", trust_remote_code=True)
def predict(num_ecgs):
predictions = model(num_ecgs)
return {"ecgs": predictions}
gr.Interface(
predict,
inputs="text",
outputs="text",
title="Generating ECGs",
).launch()