Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from PIL import Image
|
| 3 |
import keras
|
|
@@ -5,7 +7,7 @@ import os
|
|
| 5 |
|
| 6 |
os.environ["KERAS_BACKEND"] = "tensorflow"
|
| 7 |
|
| 8 |
-
model = keras.saving.load_model("
|
| 9 |
|
| 10 |
|
| 11 |
st.title("Fake Detection")
|
|
|
|
| 1 |
+
import tensorflow as tf
|
| 2 |
+
import numpy as np
|
| 3 |
import streamlit as st
|
| 4 |
from PIL import Image
|
| 5 |
import keras
|
|
|
|
| 7 |
|
| 8 |
os.environ["KERAS_BACKEND"] = "tensorflow"
|
| 9 |
|
| 10 |
+
model = tf.keras.saving.load_model("ElBeh/ma_basemodel")
|
| 11 |
|
| 12 |
|
| 13 |
st.title("Fake Detection")
|