|
import streamlit as st |
|
from transformers import AutoTokenizer, AutoModelForSequenceClassification |
|
from home import render_home |
|
from scipy.special import softmax |
|
|
|
|
|
model_path = "petermutwiri/Tiny_Bert_Cupstone" |
|
model = AutoModelForSequenceClassification.from_pretrained(model_path) |
|
tokenizer = AutoTokenizer.from_pretrained(model_path) |
|
|
|
|
|
st.sidebar.title("Navigation and review examples") |
|
|
|
|
|
page = st.sidebar.radio("Go to", ["Home"]) |
|
|
|
if page == "Home": |
|
render_home(model, tokenizer) |
|
|
|
|
|
st.sidebar.markdown("π **Positive Review Example:**") |
|
st.sidebar.markdown("> I absolutely loved this movie! It was so thrilling and captivating. The acting was superb, and the plot was fantastic.") |
|
|
|
|
|
st.sidebar.markdown("π **Negative Review Example:**") |
|
st.sidebar.markdown("> This movie was a complete disappointment. The story was boring, and the acting was terrible. I wouldn't recommend it to anyone.") |
|
|