Spaces:
Runtime error
Runtime error
File size: 433 Bytes
41de683 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import os
os.environ["TF_CPP_MIN_LOG_LEVEL"] = "3"
from parse.parse_decode import parse_args
from models import Models_functions
from utils import Utils_functions
if __name__ == "__main__":
# parse args
args = parse_args()
# initialize networks
M = Models_functions(args)
M.download_networks()
models_ls = M.get_networks()
# encode samples
U = Utils_functions(args)
U.decode_path(models_ls)
|