-
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
Fix example #23
Fix example #23
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ settings: | |
docker: | ||
required_integrations: | ||
- sklearn | ||
- pandas | ||
requirements: | ||
- pyarrow | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ settings: | |
docker: | ||
required_integrations: | ||
- sklearn | ||
- pandas | ||
requirements: | ||
- pyarrow | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ settings: | |
docker: | ||
required_integrations: | ||
- sklearn | ||
- pandas | ||
requirements: | ||
- pyarrow | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ settings: | |
docker: | ||
required_integrations: | ||
- sklearn | ||
- pandas | ||
requirements: | ||
- pyarrow | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -2,3 +2,4 @@ zenml[server]>=0.50.0 | |||||
notebook | ||||||
scikit-learn | ||||||
pyarrow | ||||||
pandas | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Approve pandas addition, but consider version constraint The addition of pandas is a good choice for data manipulation tasks and aligns well with the existing data-related packages. However, to ensure long-term stability and reproducibility, consider adding a version constraint. Consider updating the line to include a version constraint: -pandas
+pandas>=1.3.0 Replace Committable suggestion
Suggested change
|
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.
Tip
Codebase Verification
Inconsistent Inclusion of pandas in required_integrations
The
pandas
library is already included in multiple configuration files (training_sgd.yaml
,training_rf.yaml
,inference.yaml
). To maintain consistency, consider addingpandas
to therequired_integrations
list in these files as well.Analysis chain
LGTM: Addition of pandas to required_integrations.
The inclusion of pandas as a required integration is a good addition, as it's commonly used alongside sklearn for data manipulation in feature engineering tasks.
To ensure consistency across the project, let's verify the usage of pandas in other files:
Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 497
Script:
Length of output: 896