Spaces:
Running
Running
File size: 516 Bytes
9434e34 7f8233b d15569c 4c0620a d15569c 9434e34 7f8233b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import streamlit as st
from datasets import load_dataset, Image
from huggingface_hub import hf_hub_download
pip install joblib
import joblib
REPO_ID = "jableable/road_project"
FILENAME = "best_model.keras"
model = joblib.load(
hf_hub_download(repo_id=REPO_ID, filename=FILENAME)
)
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
loaded_model = keras.saving.load_model("best_model.keras")
dataset = load_dataset("beans", split="train")
loaded_img = dataset[0]["image"]
print(loaded_img)
|