Skip to content

Commit

Permalink
Update lime defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
stefsmeets committed May 23, 2023
1 parent 798c41b commit 0abe8ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion dianna/dashboard/_models_ts.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def run_model(ts_data):
method='LIME',
num_features=len(ts_data[0]),
num_slices=len(ts_data[0]),
distance_method='cosine',
num_samples=100,
distance_method='dtw',
**kwargs,
)

Expand Down
4 changes: 1 addition & 3 deletions dianna/dashboard/pages/3_Time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,12 @@

st.title('Time series explanation')

st.error('Time series explanation is still work in progress.')

st.sidebar.header('Input data')

load_example = st.sidebar.checkbox('Load example data', key='ts_example_check')

ts_file = st.sidebar.file_uploader('Select input data',
type=(),
type='npy',
disabled=load_example)

ts_model_file = st.sidebar.file_uploader('Select model',
Expand Down

0 comments on commit 0abe8ab

Please sign in to comment.