File size: 312 Bytes
c57a856 db131d7 df11f29 c57a856 db131d7 c57a856 db131d7 c57a856 df11f29 9c286f8 df11f29 c57a856 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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)
|