import streamlit as st | |
import tl_calamancy_lg | |
import os | |
# Get the absolute path of the script directory | |
cwd = os.getcwd() | |
# Read the CSV file | |
csv_path = os.path.join(cwd, "dataset_v2.json") | |
st.title("TagaCare") | |
nlp = tl_calamancy_lg.load() | |
doc1 = nlp("Pano gamutin ang sakit sa ngipin") | |
st.success(doc1) | |