lowannann's picture
2022_1013
4398510
raw
history blame contribute delete
612 Bytes
import streamlit as st
from pathlib import Path
from configs import download_cwn_models, cwn_model_path
def download_cwn_drivers(upgrade):
cwn_drivers = [
cwn_model_path / "cwn-graph-v.2022.08.01.pyobj",
cwn_model_path / "manifest.json",
cwn_model_path / "cwn-wsd-model",
cwn_model_path / "tagmodel",
]
while not all(list(map(lambda path: Path(path).exists(), cwn_drivers))):
with st.spinner("Downloading CWN models ..."):
download_cwn_models(upgrade)
if all(list(map(lambda path: Path(path).exists(), cwn_drivers))):
break