Skip to content

Commit

Permalink
fix names in featurestore jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
sdgilley committed May 22, 2024
1 parent 85c5b68 commit 367a49c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

print("=======Test CLI Notebook 1============")
with open(
"notebooks/sdk_and_cli/1. Develop a feature set and register with managed feature store.py"
"notebooks/sdk_and_cli/1.Develop-feature-set-and-register.ipynb"
) as f:
exec(f.read())

Expand All @@ -22,12 +22,12 @@

print("=======Test CLI Notebook 2============")
with open(
"notebooks/sdk_and_cli/2. Experiment and train models using features.py"
"notebooks/sdk_and_cli/2.Experiment-train-models-using-features.ipynb"
) as f:
exec(f.read())

print("=======Test CLI Notebook 3============")
with open(
"notebooks/sdk_and_cli/3. Enable recurrent materialization and run batch inference.py"
"notebooks/sdk_and_cli/3.Enable-recurrent-materialization-run-batch-inference.ipynb"
) as f:
exec(f.read())
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,30 @@

print("=======Test Notebook 1============")
with open(
"notebooks/sdk_only/1. Develop a feature set and register with managed feature store.py"
"notebooks/sdk_only/1.Develop-feature-set-and-register.ipynb"
) as f:
exec(f.read())

print("=======Test Notebook 2============")
with open("notebooks/sdk_only/2. Experiment and train models using features.py") as f:
with open("notebooks/sdk_only/2.Experiment-train-models-using-features.ipynb") as f:
exec(f.read())

print("=======Test Notebook 3============")
with open(
"notebooks/sdk_only/3. Enable recurrent materialization and run batch inference.py"
"notebooks/sdk_only/3.Enable-recurrent-materialization-run-batch-inference.ipynb"
) as f:
exec(f.read())

print("=======Test Notebook 4============")
with open("notebooks/sdk_only/4. Enable online store and run online inference.py") as f:
with open("notebooks/sdk_only/4.Enable-online-store-run-inference.ipynb") as f:
exec(f.read())

print("=======Test Notebook 5============")
with open("notebooks/sdk_only/5. Develop a feature set with custom source.py") as f:
with open("notebooks/sdk_only/5.Develop-feature-set-custom-source.ipynb") as f:
exec(f.read())

print("=======Test Notebook 7============")
with open("notebooks/sdk_only/7.Develop-feature-set-domain-specific-language-dsl.ipynb") as f:
exec(f.read())

print("=======Clean up==========")
Expand Down

0 comments on commit 367a49c

Please sign in to comment.