File size: 282 Bytes
0009ef5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import os, sys
from os.path import dirname as up
sys.path.append(os.path.abspath(os.path.join(up(__file__), os.pardir)))
import json
MODEL_CONFIG_PATH = 'config/model_config.json'
with open(MODEL_CONFIG_PATH, 'r') as f:
model_config = json.load(f)
# print(model_config)
|