Skip to content

Commit 801ad71

Browse files
authored
[Cherry-Pick-Main][UI][SDL-5851][SDL-5848][SDL-5845][SDL-5846][SDL-5852] Bugs/bug fix prerelease (#51)
1 parent 169a023 commit 801ad71

File tree

12 files changed

+42
-44
lines changed

12 files changed

+42
-44
lines changed

src/ui/src/components/KnowledgepacksTable/KnowledgepacksTable.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const KnowledgepacksTable = ({
119119
loadKnowledgepacks(selectedProject);
120120
};
121121

122-
const handlseSelectInTable = (selectedUUIDs) => {
122+
const handleSelectInTable = (selectedUUIDs) => {
123123
setSelectedItems(selectedUUIDs);
124124
};
125125

@@ -178,7 +178,7 @@ const KnowledgepacksTable = ({
178178
return;
179179
}
180180
loadKnowledgepacks(selectedProject);
181-
openSnackBarWithMsg("success", "Successfuly renamed the Knowledgepack.");
181+
openSnackBarWithMsg("success", "Successfully renamed the Knowledgepack.");
182182
setSavingKnowledgepack(false);
183183
};
184184

@@ -407,7 +407,7 @@ const KnowledgepacksTable = ({
407407
isDarkHeader: true,
408408
selectionField: "uuid",
409409
isShowSelection: true,
410-
onSelectInTable: handlseSelectInTable,
410+
onSelectInTable: handleSelectInTable,
411411
};
412412
return (
413413
<>

src/ui/src/components/Layout/NavDrawer.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ const NavDrawer = ({
8484
return "";
8585
}, [selectedPipelineExecutionType]);
8686

87-
const showIfRunning = (parnetId, pathToCheck) => {
87+
const showIfRunning = (parentId, pathToCheck) => {
8888
if (
8989
RUNNING_STATUSES.RUNNING === pipelineRunningStatus &&
9090
!matchPath(pathToCheck, { path: activePipelinePath, sctrict: false }) &&
91-
MENU_ITEMS_INFO.BUILD_MODEL.id === parnetId
91+
MENU_ITEMS_INFO.BUILD_MODEL.id === parentId
9292
) {
9393
return false;
9494
}
@@ -182,7 +182,7 @@ const NavDrawer = ({
182182
<Collapse in={isSubmenuItemsOpened(menuItem.id)} timeout={0}>
183183
<Divider variant="middle" />
184184
<SubItemTitle id={menuItem.id} />
185-
<List key={`suitem_list_${menuItem.id}`} sx={{ pl: 2, pt: 0, pb: 0 }}>
185+
<List key={`subitem_list_${menuItem.id}`} sx={{ pl: 2, pt: 0, pb: 0 }}>
186186
{menuItem.subItems.map((subItem) => (
187187
<Box key={`subitem_nav_link_${subItem.id}`}>
188188
{showIfRunning(menuItem.id, subItem.getPath()) ? (

src/ui/src/components/PipelineBuilderV1/PipelineBuilder.jsx

+2-10
Original file line numberDiff line numberDiff line change
@@ -241,21 +241,13 @@ const PipelineBuilder = ({
241241
if (step?.options?.isSession && step?.type !== PIPELINE_STEP_TYPES.INPUT_DATA) {
242242
return true;
243243
}
244-
if (step?.options?.isOptimizedByAutoML && step?.type !== PIPELINE_STEP_TYPES.AUTOML_PARAMS) {
244+
if (step?.options?.isOptimizedByAutoML) {
245245
return true;
246246
}
247-
if (
248-
isAutoML &&
249-
[PIPELINE_STEP_TYPES.CLASSIFIER, PIPELINE_STEP_TYPES.TRAINING_ALGORITHM].includes(
250-
step?.name,
251-
)
252-
) {
253-
return !pipelineSettings.data?.disable_automl;
254-
}
255247

256248
return isOptimizationRunning;
257249
},
258-
[selectedSteps, isOptimizationRunning],
250+
[selectedSteps, pipelineSettings, isOptimizationRunning],
259251
);
260252

261253
const getAvailableNextSteps = (index, stepObj) => {

src/ui/src/containers/BuildModel/TheBuilderScreen/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ import {
4646
setSelectedPipelineName,
4747
} from "store/pipelines/actions";
4848

49+
import { clearModel } from "store/models/actions";
50+
4951
import {
5052
loadQueryCacheStatus,
5153
clearQueryCacheStatus,
@@ -102,6 +104,7 @@ const mapDispatchToProps = {
102104
clearPipelineStatus,
103105
clearPipeline,
104106
clearQueryCacheStatus,
107+
clearModel,
105108

106109
setPipelineStep,
107110
setPipelineDefaultSteps,

src/ui/src/containers/BuildModel/TheClassificationScreen/TheClassificationScreen.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ const TheClassificationScreen = ({
8888
clearPipelineResults,
8989
clearPipelineStatus,
9090
clearQueryCacheStatus,
91+
clearModel,
9192

9293
setPipelineStep,
9394
setPipelineDefaultSteps,
@@ -553,6 +554,7 @@ const TheClassificationScreen = ({
553554
autosenseMetrics={pipelineResultData}
554555
projectUUID={selectedProjectObj.uuid}
555556
pipelineUUID={selectedPipeline}
557+
onClearModel={clearModel}
556558
/>
557559
</>
558560
)}

src/ui/src/containers/BuildModel/components/PipelineBuilderClassification.jsx

+11-10
Original file line numberDiff line numberDiff line change
@@ -27,32 +27,27 @@ import {
2727

2828
import PipelineBuilderV1 from "components/PipelineBuilderV1";
2929

30-
const PipelineBuilderAutoML = (props) => {
30+
const PipelineBuilderAutoML = ({ isAutoML, pipelineSettings, ...props }) => {
3131
const { selectedSteps, pipelineData } = props;
3232

33-
const autoMLStep = useMemo(
34-
() => selectedSteps.find((step) => step?.type === PIPELINE_STEP_TYPES.AUTOML_PARAMS),
35-
[selectedSteps],
36-
);
37-
3833
const getCoveredSearchedStep = useCallback(() => {
3934
// AUTOML SEARCHED STEPS
4035

41-
if (autoMLStep?.data?.disable_automl) {
36+
if (!isAutoML) {
4237
return [];
4338
}
4439

4540
// find all steps from inputData AutoML form
4641
return AUTOML_SEARCHED_STEPS_TYPES_LOOKUP.reduce(
4742
(acc, el) => {
48-
if (autoMLStep?.data[el.paramName]) {
43+
if (pipelineSettings?.data[el.paramName]) {
4944
acc.push(el.stepType);
5045
}
5146
return acc;
5247
},
5348
[PIPELINE_STEP_TYPES.AUTOML_PARAMS],
5449
);
55-
}, [selectedSteps]);
50+
}, [pipelineSettings, isAutoML]);
5651

5752
const getFilteredSelectedSteps = useMemo(() => {
5853
const getOptimizedByAutoML = (type) => {
@@ -165,7 +160,13 @@ const PipelineBuilderAutoML = (props) => {
165160

166161
return (
167162
<>
168-
<PipelineBuilderV1 {...props} isModel={true} selectedSteps={getFilteredSelectedSteps} />
163+
<PipelineBuilderV1
164+
{...props}
165+
isAutoML={isAutoML}
166+
pipelineSettings={pipelineSettings}
167+
isModel={true}
168+
selectedSteps={getFilteredSelectedSteps}
169+
/>
169170
</>
170171
);
171172
};

src/ui/src/containers/BuildModel/components/TableAutoSenseMetrics.jsx

+16-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ License along with SensiML Piccolo AI. If not, see <https://www.gnu.org/licenses
2020
import React, { useState, useEffect } from "react";
2121
import { useTranslation } from "react-i18next";
2222

23-
import { generatePath, useHistory, Link } from "react-router-dom";
23+
import { generatePath, useHistory } from "react-router-dom";
2424

2525
import { Tooltip } from "@mui/material";
2626
import IconButton from "@mui/material/IconButton";
@@ -30,7 +30,7 @@ import { ROUTES } from "routers";
3030

3131
import StandardTable from "components/StandardTable";
3232

33-
const TableAutoSenseMetrics = ({ autosenseMetrics, projectUUID, pipelineUUID }) => {
33+
const TableAutoSenseMetrics = ({ autosenseMetrics, projectUUID, pipelineUUID, onClearModel }) => {
3434
const routersHistory = useHistory();
3535
const { t } = useTranslation("models");
3636

@@ -56,18 +56,26 @@ const TableAutoSenseMetrics = ({ autosenseMetrics, projectUUID, pipelineUUID })
5656
return !data ? "" : isNaN(data) ? data.toUpperCase() : Number(data).toFixed(0);
5757
};
5858

59+
const handleOpenModel = (modelUUID) => {
60+
onClearModel();
61+
routersHistory.push(getModelPagePath(modelUUID));
62+
};
63+
5964
const handleDoubleClick = (event, row) => {
60-
routersHistory.push(getModelPagePath(row.knowledgepack));
65+
handleOpenModel(row.knowledgepack);
6166
};
6267

6368
const openModelRender = (modelUUID) => {
6469
return (
6570
<Tooltip title="Explore Model..">
66-
<Link to={getModelPagePath(modelUUID)}>
67-
<IconButton variant="contained" color="primary" size="small">
68-
<ExploreIcon />
69-
</IconButton>
70-
</Link>
71+
<IconButton
72+
variant="contained"
73+
color="primary"
74+
size="small"
75+
onClick={() => handleOpenModel(modelUUID)}
76+
>
77+
<ExploreIcon />
78+
</IconButton>
7179
</Tooltip>
7280
);
7381
};

src/ui/src/store/containerBuildModel/actions/index.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,10 @@ export const loadDataAfterTraining =
253253
};
254254

255255
const getExecutionType = (executionType, isAutoML) => {
256-
let exType = "AUTOML";
256+
let exType = isAutoML ? "AUTOML" : "CUSTOM";
257257
if (executionType === "pipeline") {
258258
exType = "FEATURE_EXTRACTOR";
259259
}
260-
if (executionType === "auto" && isAutoML) {
261-
exType = "CUSTOM";
262-
}
263260
return exType;
264261
};
265262

src/ui/src/store/containerBuildModel/domain/PipelineStepsDataFactory/CommonStepDataTransfrorm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class CommonStepDataTransfrorm extends AbstractStepData {
7272
// only form element types
7373
if (Object.values(FORM_TYPES).includes(formFieldType)) {
7474
if (this.TYPES_WITH_OPTIONS.includes(formFieldType) && !options?.length) {
75-
// hide selectors withot options for keep empy elements as default
75+
// hide selectors without options for keep empy elements as default
7676
isFormHidden = true;
7777
}
7878

src/ui/src/store/containerBuildModel/domain/PipelineStepsDataFactory/inputContractAdditionalOptions.js

-3
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@ export default {
6262
delta: {
6363
defaultLookup: SAMPLE_RATE,
6464
},
65-
train_delta: {
66-
default_use_param: false,
67-
},
6865
// tranform
6966
input_data: {
7067
is_ignored: true,

src/ui/src/store/containerBuildModel/test/data/defaultDataAutoML.js

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export default [
6161
group_columns: ["segment_uuid", "Type", "Subject", "Punch"],
6262
window_size: 250,
6363
delta: 250,
64-
is_use_train_delta: false,
6564
train_delta: 0,
6665
return_segment_index: false,
6766
transform: "Windowing",

src/ui/src/store/containerBuildModel/test/data/defaultDataCustomClassifier.js

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export default [
6161
group_columns: ["segment_uuid", "Type", "Subject", "Punch"],
6262
window_size: 250,
6363
delta: 250,
64-
is_use_train_delta: false,
6564
train_delta: 0,
6665
return_segment_index: false,
6766
transform: "Windowing",

0 commit comments

Comments
 (0)