-
Notifications
You must be signed in to change notification settings - Fork 16
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
Fixed a doc mismatch and a scripts typo. #94
Conversation
WalkthroughThe recent modifications involve updating references from EFGPT to ESGPT within the data extraction and processing documentation for the MIMIC IV tutorial, indicating a shift to using the ESGPT repository for dataset pipeline configuration. Additionally, there is a renaming of a script in the setup process, specifically for launching a hyperparameter sweep with Weights & Biases, to better reflect its purpose in pretraining. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Actionable comments posted: 1
Actionable comments outside the diff hunks (1)
docs/MIMIC_IV_tutorial/data_extraction_processing.md (1)
Line range hint
36-36
: Replace "it's" with "its" to correct the possessive form.- it's value is set to the sentinel OmegaConf "MISSING" value, `???` + its value is set to the sentinel OmegaConf "MISSING" value, `???`This correction enhances the grammatical accuracy of the documentation.
Review Status
Configuration used: CodeRabbit UI
Files selected for processing (2)
- docs/MIMIC_IV_tutorial/data_extraction_processing.md (2 hunks)
- setup.py (1 hunks)
Additional comments not posted (2)
setup.py (1)
27-27
: The script renaming aligns well with the PR objectives and clarifies its purpose.Ensure to update any references or documentation that might be pointing to the old script name.
docs/MIMIC_IV_tutorial/data_extraction_processing.md (1)
24-32
: The update fromEFGPT
toESGPT
in the documentation is clear and aligns with the PR objectives.Ensure all instances of the old reference throughout the project documentation have been updated accordingly.
@@ -43,8 +43,8 @@ command: | |||
#### Hydra-specific parameters | |||
|
|||
The `defaults:` block at the top is a Hydra specific inclusion, and ensures the script knows to merge this | |||
configuration file. Similarly, the `hydra.searchpath=[$EFGPT_PATH/confgis]` command line argument also ensures | |||
Hydra knows to look for the base config in the EFGPT repository's configs path. | |||
configuration file. Similarly, the `hydra.searchpath=[$ESGPT_PATH/confgis]` command line argument also ensures |
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.
Fix the typo in the hydra.searchpath
configuration.
- hydra.searchpath=[$ESGPT_PATH/confgis]
+ hydra.searchpath=[$ESGPT_PATH/configs]
This correction ensures accuracy and prevents potential confusion.
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
configuration file. Similarly, the `hydra.searchpath=[$ESGPT_PATH/confgis]` command line argument also ensures | |
configuration file. Similarly, the `hydra.searchpath=[$ESGPT_PATH/configs]` command line argument also ensures |
Summary by CodeRabbit