Skip to content
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

[To be discarded] [KED-953] - Visualise Plots in Experiment Tracking #958

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ build:

PROJECT_PATH ?= demo-project

install: build
cd package && python setup.py install

run:
PYTHONPATH=$(shell pwd)/package python3 package/kedro_viz/server.py $(PROJECT_PATH)

Expand Down
3 changes: 3 additions & 0 deletions demo-project/conf/base/catalog_08_reporting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ reporting.cancellation_policy_breakdown:
type: plotly.PlotlyDataSet # Constructed via plotly_args below
filepath: ${base_location}/08_reporting/cancellation_breakdown.json
layer: reporting
versioned: true
plotly_args:
type: bar
fig:
Expand All @@ -16,6 +17,7 @@ reporting.price_histogram:
type: plotly.JSONDataSet # Constructed via Python API
filepath: ${base_location}/08_reporting/price_histogram.json
layer: reporting
versioned: true

reporting.cancellation_policy_grid:
type: demo_project.extras.datasets.image_dataset.ImageDataSet
Expand All @@ -24,3 +26,4 @@ reporting.cancellation_policy_grid:
reporting.matplotlib_image:
type: matplotlib.MatplotlibWriter
filepath: ${base_location}/08_reporting/matplot_lib_single_plot.png
versioned: true
4 changes: 2 additions & 2 deletions demo-project/conf/base/parameters/modelling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ train_evaluation:
kwargs:
n_estimators: 100
criterion: 'squared_error'
min_samples_split: 2
min_samples_leaf: 1
min_samples_split: 3
min_samples_leaf: 4
min_weight_fraction_leaf: 0
max_features: 'auto'
min_impurity_decrease: 0
Expand Down

This file was deleted.

Loading