-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: show matplotlib dataset pngs (#887)
* displaying the pngs in the metadata panel Signed-off-by: Tynan DeBold <[email protected]> * renaming of files, etc; expand matplotlib img Signed-off-by: Tynan DeBold <[email protected]> * fix comment in type Signed-off-by: Tynan DeBold <[email protected]> * format fix Signed-off-by: Tynan DeBold <[email protected]> * fix import Signed-off-by: Tynan DeBold <[email protected]> * another format fix Signed-off-by: Tynan DeBold <[email protected]> * added matplotlib to reqs * Added tests * fix height issue; add matplotlib node to demo project Signed-off-by: Tynan DeBold <[email protected]> * update release.md Signed-off-by: Tynan DeBold <[email protected]> * Change requirements setup Signed-off-by: Antony Milne <[email protected]> * pr-review fixes Signed-off-by: Tynan DeBold <[email protected]> * Fix tests Signed-off-by: Antony Milne <[email protected]> * Fix tests Signed-off-by: Antony Milne <[email protected]> * cleanup Signed-off-by: Tynan DeBold <[email protected]> * update release notes Signed-off-by: Tynan DeBold <[email protected]> Co-authored-by: Rashida Kanchwala <[email protected]> Co-authored-by: Antony Milne <[email protected]> Signed-off-by: Cvetanka <[email protected]>
- Loading branch information
1 parent
a62791e
commit a86fe00
Showing
39 changed files
with
252 additions
and
66 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
demo-project/data/09_tracking/linear_params.json/2022-06-06T18.02.47.732Z/linear_params.json
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"model_type": "LinearRegression", | ||
"fit_intercept": true, | ||
"copy_X": true, | ||
"positive": false | ||
} |
3 changes: 3 additions & 0 deletions
3
demo-project/data/09_tracking/linear_score.json/2022-06-06T18.02.47.732Z/linear_score.json
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"r2_score": 0.40296896595214116 | ||
} |
15 changes: 15 additions & 0 deletions
15
demo-project/data/09_tracking/rf_params.json/2022-06-06T18.02.47.732Z/rf_params.json
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"model_type": "RandomForestRegressor", | ||
"n_estimators": 100, | ||
"criterion": "squared_error", | ||
"min_samples_split": 2, | ||
"min_samples_leaf": 1, | ||
"min_weight_fraction_leaf": 0, | ||
"max_features": "auto", | ||
"min_impurity_decrease": 0, | ||
"bootstrap": true, | ||
"oob_score": false, | ||
"verbose": 0, | ||
"warm_start": false, | ||
"ccp_alpha": 0 | ||
} |
3 changes: 3 additions & 0 deletions
3
demo-project/data/09_tracking/rf_score.json/2022-06-06T18.02.47.732Z/rf_score.json
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"r2_score": 0.42034590382281145 | ||
} |
Binary file not shown.
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
3 changes: 1 addition & 2 deletions
3
demo-project/src/demo_project/pipelines/reporting/requirements.txt
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
kedro[plotly.PlotlyDataSet, plotly.JSONDataSet]==0.18.1 | ||
matplotlib==3.5.0 | ||
kedro[plotly.PlotlyDataSet, plotly.JSONDataSet, matplotlib.MatplotlibWriter]==0.18.1 | ||
pillow==9.0.1 |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
kedro[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet, plotly.PlotlyDataSet]==0.18.1 | ||
kedro[pandas.CSVDataSet,pandas.ExcelDataSet, pandas.ParquetDataSet, plotly.PlotlyDataSet, matplotlib.MatplotlibWriter]==0.18.1 | ||
scikit-learn~=1.0 | ||
pillow~=9.0 | ||
matplotlib==3.5.0 |
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
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
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
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
Oops, something went wrong.