File size: 427 Bytes
b199164 84b0bdc eb1b8b7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"])
|