This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
"""This script stands for showing the retreived parameters
"""
importyaml
importpprint
withopen("params.yaml",'r')asfd:
params=yaml.safe_load(fd)
epoch=params['train']['epoch']
learning_rate=params['train']['learning_rate']
batch_size=params['train']['batch_size']
threshold=params['process']['threshold']
#... do some deep learning stuff with these parameters
#here we just print the parameters in an outpout in a file, that's all