gpt4all/gpt4all-training/read.py
2023-05-01 15:45:23 -04:00

10 lines
221 B
Python

import yaml
def read_config(path):
# read yaml and return contents
with open(path, 'r') as file:
try:
return yaml.safe_load(file)
except yaml.YAMLError as exc:
print(exc)