|
|
|
import streamlit as st |
|
import pandas as pd |
|
import numpy as np |
|
|
|
|
|
|
|
st.set_page_config(page_title="Dataset", page_icon="π ") |
|
|
|
|
|
st.sidebar.markdown("## π About" |
|
"\nThis is a simple web app to classify the aspect of reviews from an e-commerce dataset." |
|
"\n\nThe dataset used is a multilabel dataset, which means a review can have multiple labels." |
|
"\n\nThe labels are:" |
|
"\n- π¦ **Product**" |
|
"\n- π©βπΌ **Customer Service**" |
|
"\n- π **Shipping/Delivery**") |
|
|
|
|
|
st.sidebar.markdown("## π¨βπ» Created by" |
|
"\n[Fahrendra Khoirul Ihtada](https://www.linkedin.com/in/fahrendra-khoirul-ihtada/) " |
|
"and [Rizha Alfianita](https://www.linkedin.com/in/rizha-alfianita/)" |
|
"\n Using Streamlit and Hugging Face's [IndoBERT](https://huggingface.co/indobenchmark/indobert-base-p1) model.") |
|
|
|
|
|
st.sidebar.markdown("## π€ Hugging Face" |
|
"\n- [Fahrendra Khoirul Ihtada](https://huggingface.co/fahrendrakhoirul)") |
|
|
|
|
|
st.title("πDataset Overview") |
|
|
|
|
|
st.write(""" |
|
This dataset is full of customer reviews that give us a great idea of what it's like to buy things online. The reviews talk about everything from how good the product is to how fast it got here and how helpful the seller was""") |
|
|
|
|
|
st.markdown("[Access the Dataset](https://huggingface.co/datasets/fahrendrakhoirul/ecommerce-reviews-multilabel-dataset)") |
|
|
|
|
|
df = pd.read_json("Product Reviews Ecommerce Multilabel Dataset.json", lines=True) |
|
st.write(df) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|