Spaces:
Sleeping
Sleeping
File size: 557 Bytes
e820fa6 cb21112 e820fa6 |
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 27 28 29 30 |
import awesome_streamlit as ast
import streamlit as st
import requests
import time
from transformers import pipeline
import os
import models.hsd_tr
import models.hsd_ar
st.set_page_config(
page_title="Hate Speech Detection",
page_icon="",
layout='wide'
)
PAGES = {
"HSD in Turkish": models.hsd_tr,
"HSD in Arabic": models.hsd_ar
}
st.sidebar.title("Models")
selection = st.sidebar.radio("Pages", list(PAGES.keys()))
page = PAGES[selection]
ast.shared.components.write_page(page)
#st.sidebar.header("Info") |