File size: 708 Bytes
696314f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from transformers import BertTokenizer, BertForSequenceClassification
import streamlit as st

# Dictionary to map model names to their paths
model_paths = {
    "cahya/bert-base-indonesian-522M": "Nakhwa/cahyabert",
    "indobenchmark/indobert-base-p2": "Nakhwa/indobenchmark",
    "indolem/indobert-base-uncased": "Nakhwa/indolem",
    "mdhugol/indonesia-bert-sentiment-classification": "Nakhwa/mdhugol"
}

# Function to load the selected model
@st.cache_resource
def load_model(model_name):
    path = model_paths[model_name]
    tokenizer = BertTokenizer.from_pretrained(path)
    model = BertForSequenceClassification.from_pretrained(path)
    model.eval()
    return tokenizer, model