oscarvillafuerte's picture
Update app.py
eb1b8b7 verified
raw
history blame
427 Bytes
import streamlit as st
st.title("pagina de prueba")
import tensorflow as tf
from tensorflow.keras.models import load_model
from tensorflow.keras.preprocessing.image import img_to_array, load_img
from PIL import Image
import numpy as np
model = tf.keras.models.load_model("identificadordigitos.h5")
st.title("Clasificaci贸n de imagenes")
uploaded_file = st.file_uploader("Subir una imagen de un digito", type =["jpg", "png"])