Skip to content

Commit

Permalink
fixed path in github examples
Browse files Browse the repository at this point in the history
  • Loading branch information
rabah-khalek committed Sep 8, 2023
1 parent 718f40a commit 40e349a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/github/train.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import giskard
import yaml

with open("cicd_config.yaml") as yaml_f:
path_to_config = __file__.split("train.py")[0]+"cicd_config.yaml"
with open(path_to_config) as yaml_f:
cicd_config = yaml.load(yaml_f, Loader=yaml.Loader)

# Replace this with your own data & model creation.
Expand Down

0 comments on commit 40e349a

Please sign in to comment.