You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
364 B
10 lines
364 B
from config.config import Config
|
|
from pprint import pprint
|
|
|
|
|
|
config = Config.load_json('/workspace/ext_data/projects/model-v/config/templates/train/ModelV_BCE_MSE_Loss_AdamW_CosineAnnealing.json')
|
|
pprint(config, indent=4)
|
|
|
|
print('\n\n')
|
|
config = Config.load_json('/workspace/ext_data/projects/model-v/config/templates/predict/ModelV.json')
|
|
pprint(config, indent=4) |