Skip to content

Commit

Permalink
fix conn to github per udacity knowledge base
Browse files Browse the repository at this point in the history
  • Loading branch information
lewi0332 committed Dec 18, 2022
1 parent 505a8a2 commit a3f84d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
main:
components_repository: "https://github.com/udacity/build-ml-pipeline-for-short-term-rental-prices/tree/main/components"
components_repository: "https://github.com/udacity/build-ml-pipeline-for-short-term-rental-prices#components"
# All the intermediate files will be copied to this directory at the end of the run.
# Set this to null if you are running in prod
project_name: nyc_airbnb
experiment_name: development
steps: all
etl:
sample: "sample1.csv"
min_price: 10 # dollars
max_price: 350 # dollars
min_price: 10 # dollars
max_price: 350 # dollars
data_check:
kl_threshold: 0.2
modeling:
Expand All @@ -35,4 +35,4 @@ modeling:
criterion: mae
max_features: 0.5
# DO not change the following
oob_score: true
oob_score: true
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def go(config: DictConfig):
_ = mlflow.run(
f"{config['main']['components_repository']}/get_data",
"main",
version='main',
parameters={
"sample": config["etl"]["sample"],
"artifact_name": "sample.csv",
Expand Down

0 comments on commit a3f84d3

Please sign in to comment.