gpt4all/gpt4all-training/read.py

10 lines
221 B
Python
Raw Normal View History

2023-03-25 19:17:48 +03:00
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)