TestFE / app.py
akarora93's picture
Create app.py
819d38d verified
raw
history blame contribute delete
331 Bytes
import streamlit as st
import pandas as pd
import requests
# Allow users to upload a CSV file for batch prediction
uploaded_file = st.file_uploader("Upload CSV file for batch prediction", type=["csv"])
# Make batch prediction when the "Predict Batch" button is clicked
if uploaded_file is not None:
st.button("Predict Batch")