Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork118
Devops for v2.4.6#234
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
23 commits Select commitHold shift + click to select a range
1446c95 Edit README
c85d559 Remove deprecated setting metadata
3027838 Add GridSearch and SimpleImputer type
aa55d20 Edit popup component not to save to block as default
3879e37 Add GridSearch and Pipeline app
5ba7d24 Add icon for new app (GridSearch, Pipeline)
afafa8b Edit visualization and statistics theme color
0acaec1 Edit package manager
7030217 Add SimpleImputer to DataPrep
28ffb20 Implement GridSearch app
9125d1d Edit File app excel options
3f02742 Add Pipeline app
205f943 Fix Seaborn bug on x,yticks label
5390100 Rebase ModelEditor based on FitPredict and ModelInfo app
623560f Edit generator to use on Pipeline app
135d6df Add style var
f1757d2 Fix ttest bug on group list
0c87e71 Fix FactorAnalysis not to install its package by default
722b2db Edit code and comment on evaluation app
d79f48c Edit not to add condition if its target and operator is not selected
3a53a4e Edit countplot to show its x label rotated
78eb2a6 Add docs link to PandasOption app
85cb9ea Edit code on Regression
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
29 changes: 26 additions & 3 deletionsREADME.md
This file contains hidden or 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
9 changes: 9 additions & 0 deletionsvisualpython/css/component/packageManager.css
This file contains hidden or 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
74 changes: 62 additions & 12 deletionsvisualpython/css/component/popupComponent.css
This file contains hidden or 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
82 changes: 82 additions & 0 deletionsvisualpython/css/m_ml/gridSearch.css
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| .vp-inner-param-list-box { | ||
| width: 245px; | ||
| height: 140px; | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| overflow-y: auto; | ||
| overflow-x: hidden; | ||
| margin: 5px 0; | ||
| } | ||
| .vp-inner-param-list-item { | ||
| width: 100%; | ||
| height: 30px; | ||
| line-height: 30px; | ||
| padding: 0px 10px; | ||
| border-bottom: 0.25px solid var(--vp-border-gray-color); | ||
| background-color: var(--vp-background-color); | ||
| text-overflow: ellipsis; | ||
| overflow: hidden; | ||
| white-space: nowrap; | ||
| } | ||
| .vp-inner-param-list-item:hover { | ||
| cursor: pointer; | ||
| background-color: var(--vp-background-hover-color); | ||
| } | ||
| .vp-inner-param-list-item.selected { | ||
| color: var(--vp-font-highlight); | ||
| background-color: var(--vp-light-gray-color); | ||
| } | ||
| .vp-param-grid-title { | ||
| line-height: 30px; | ||
| } | ||
| .vp-param-grid-box { | ||
| margin-bottom: 10px; | ||
| } | ||
| .vp-param-set { | ||
| } | ||
| .vp-param-set-del { | ||
| cursor: pointer; | ||
| float: right; | ||
| } | ||
| .vp-param-set-add { | ||
| cursor: pointer; | ||
| } | ||
| .vp-param-item > label { | ||
| align-self: center; | ||
| } | ||
| .vp-param-item-del { | ||
| cursor: pointer; | ||
| height: 42px; | ||
| } | ||
| .vp-param-result-input-box { | ||
| width: 100%; | ||
| border: 0.25px solid var(--vp-border-gray-color); | ||
| padding: 5px; | ||
| display: flex; | ||
| gap: 5px; | ||
| } | ||
| .vp-param-result-box { | ||
| display: inline-flex; | ||
| gap: 5px; | ||
| } | ||
| .vp-param-result-item { | ||
| border: 0.25px solid var(--vp-light-gray-color); | ||
| background: var(--vp-light-gray-color); | ||
| border-radius: 10px; | ||
| padding: 5px 7px; | ||
| display: flex; | ||
| gap: 5px; | ||
| align-items: center; | ||
| } | ||
| .vp-param-result-item:hover { | ||
| border: 0.25px solid var(--vp-font-highlight); | ||
| color: var(--vp-font-highlight); | ||
| } | ||
| .vp-param-result-item-del { | ||
| width: 15px; | ||
| display: inline-block; | ||
| } | ||
| input.vp-param-val { | ||
| border: 0px !important; | ||
| width: 100% !important; | ||
| } |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
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.