vlbthambawita
commited on
Commit
•
b8a864b
1
Parent(s):
a2c89cd
removed input argument
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from PIL import Image
|
|
7 |
#pipeline = pipeline(task="image-classification", model="julien-c/hotdog-not-hotdog")
|
8 |
model = AutoModel.from_pretrained("deepsynthbody/deepfake_ecg", trust_remote_code=True)
|
9 |
|
10 |
-
def predict(
|
11 |
prediction = (model(1)[0].t()/1000) # to micro volte
|
12 |
|
13 |
|
|
|
7 |
#pipeline = pipeline(task="image-classification", model="julien-c/hotdog-not-hotdog")
|
8 |
model = AutoModel.from_pretrained("deepsynthbody/deepfake_ecg", trust_remote_code=True)
|
9 |
|
10 |
+
def predict():
|
11 |
prediction = (model(1)[0].t()/1000) # to micro volte
|
12 |
|
13 |
|