feat: train and clean data

This commit is contained in:
Zach Nussbaum
2023-03-25 16:17:48 +00:00
parent 2568d94e50
commit 723a50bdf1
7 changed files with 481 additions and 0 deletions

10
read.py Normal file
View File

@@ -0,0 +1,10 @@
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)