Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test run 6 #33

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a4a0514
Working pipeline
LesterFreamon Mar 31, 2023
ec05db0
Working pipeline
LesterFreamon Mar 31, 2023
2cf32d2
Merge pull request #1 from LesterFreamon/ml_pipeline_1
LesterFreamon Mar 31, 2023
3da3b9d
Final Pipeline
LesterFreamon Mar 31, 2023
9b14f15
Merge pull request #2 from LesterFreamon/ml_pipeline_2
LesterFreamon Mar 31, 2023
559bfb6
Confining latitude and longtitude
LesterFreamon Mar 31, 2023
5aaa382
Merge pull request #3 from LesterFreamon/ml_pipeline_3
LesterFreamon Mar 31, 2023
4ce04b9
Fixed the main.py file to accept longitude and latitude
LesterFreamon Mar 31, 2023
91acabf
Merge pull request #4 from LesterFreamon/ml_pipeline_4
LesterFreamon Mar 31, 2023
4ef313b
Fixed the MLproject file in basic cleaning
LesterFreamon Mar 31, 2023
f986aa9
Merge pull request #5 from LesterFreamon/test_run
LesterFreamon Mar 31, 2023
d026a31
Fixed the MLproject file in basic cleaning
LesterFreamon Mar 31, 2023
2e00589
Merge pull request #6 from LesterFreamon/test_run_2
LesterFreamon Mar 31, 2023
a828431
Fixed the run.py file ofr basic_cleaning
LesterFreamon Mar 31, 2023
0a3a223
Merge pull request #7 from LesterFreamon/test_run_3
LesterFreamon Mar 31, 2023
ae92cba
Fixed the run.py file in the split component
LesterFreamon Mar 31, 2023
b92ba1a
Merge pull request #8 from LesterFreamon/test_run_4
LesterFreamon Mar 31, 2023
f9c044f
Fixed split component
LesterFreamon Mar 31, 2023
f292efc
Merge pull request #9 from LesterFreamon/test_run_5
LesterFreamon Mar 31, 2023
036c098
Fixed split component
LesterFreamon Apr 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -64,6 +64,10 @@ def go(config: DictConfig):
"artifact_description": "Data with outliers and null values removed",
"min_price": config["etl"]["min_price"],
"max_price": config["etl"]["max_price"],
"min_longitude": config["etl"]["min_longitude"],
"max_longitude": config["etl"]["max_longitude"],
"min_latitude": config["etl"]["min_latitude"],
"max_latitude": config["etl"]["max_latitude"]
},
)