road_project / app.py
jableable's picture
Update app.py
5d5a58a verified
raw
history blame
No virus
1.09 kB
import streamlit as st
from transformers import pipeline
#from datasets import load_dataset, Image
from huggingface_hub import from_pretrained_keras
import keras
import numpy as np
loaded_model = keras.saving.load_model("best_model.keras")
uploaded_img = st.file_uploader("Upload your file here...",type=['png', 'jpeg', 'jpg'])
if uploaded_img is not None:
st.image(uploaded_img)
array = np.array(uploaded_img)
result = loaded_model.predict(array)
st.write(f"Your prediction is: {result}")
#model = from_pretrained_keras("jableable/road_model")
#pipe = pipeline('sentiment-analysis')
#text = st.text_area('enter some text!')
#if text:
#out = pipe(text)
#st.json(out)
#loaded_model = keras.saving.load_model("jableable/road_model")
#model = from_pretrained_keras("keras-io/ocr-for-captcha")
#model.summary()
#prediction = model.predict(image)
#prediction = tf.squeeze(tf.round(prediction))
#print(f'The image is a {classes[(np.argmax(prediction))]}!')
#dataset = load_dataset("beans", split="train")
#loaded_img = dataset[0]["image"]
#print(loaded_img)