File size: 612 Bytes
4398510
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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