-
Notifications
You must be signed in to change notification settings - Fork 1
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
Week1 #3
Merged
Merged
Week1 #3
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
59b642b
added notebooks src project_config.yml data
javedhassans 5cb3447
added visualization feature plot importance code in utils.py
javedhassans 1fa18e5
added new build
javedhassans 830c17d
added new build for databricks
javedhassans 0aac699
added files in notebook named 02 & 03 from trainig. Also childHealth_…
javedhassans dae772a
fixed dbconnect and ran files till 03 with dbconnect
javedhassans 1476b30
deleted package to rebuild again
javedhassans 028c957
deleted package to rebuild again
javedhassans 31c3985
added ReadME.md gitignore to avoid parquet files added datadictionary…
javedhassans 6a0b5dc
restructured folder and created week1 directorty
javedhassans c0279f8
added tqdm in project.toml making 01.dataPreprocessing.py
javedhassans a38f48e
just making commit
javedhassans bb7494b
working on preprocessing parquet files
javedhassans 9de1dd6
added main codes in the 00.dataexploration.ipynb modified project.tom…
javedhassans 1f1a36a
added featue table code
javedhassans 6e1a9ed
modifed childHealth_model.py
javedhassans 335569a
deleted mlruns
javedhassans 3da76c3
made uv build
javedhassans 34c4ff5
rebuild the wheel
javedhassans dfc2359
rebuild the wheel
javedhassans d6ac83e
rebuild the wheel
javedhassans 0927a01
rebuild the wheel
javedhassans 3a5d926
rebuild the wheel
javedhassans 3dba4f0
added create feature table
javedhassans 00b1028
modififed create feature table code
javedhassans 22032b1
modififed create feature table code
javedhassans 6a42c65
updated feature table
javedhassans 0871415
updated feature table
javedhassans 695512c
finished week3
javedhassans 6ba90c6
finished week3
javedhassans 5811b46
finished week2
javedhassans 8c35306
fixing ci.yml for pr
javedhassans 92a82b1
fixed week 2 notebooks commented pip install line 1
javedhassans 2f38f32
fixed week 2 notebooks commented pip install line 1
javedhassans fd41ed9
fixed week1
javedhassans 6d3a178
fixed week1
javedhassans File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,3 +95,8 @@ dmypy.json | |
# VS code configuration | ||
.vscode | ||
.history | ||
|
||
.databricks | ||
|
||
# Ignore all .parquet files | ||
*.parquet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Use uv instead of pip for consistency
The workflow is using
uv
as the package manager, but this step usespip
. For consistency and to avoid potential dependency resolution issues, consider usinguv
here as well.📝 Committable suggestion