From 1d3827c2a04369e4ff992deb596aee265290efa3 Mon Sep 17 00:00:00 2001 From: rajdeep11 Date: Fri, 27 Oct 2023 12:09:58 +0530 Subject: [PATCH] commenting the experiment name Issue-Id: AIMLFW-58 Change-Id: I0dba2439c6dc56f0dc0eedbad60192d7b4f66bc8 Signed-off-by: rajdeep11 --- src/components/home/form/CreateOrEditTrainingJobForm.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/home/form/CreateOrEditTrainingJobForm.js b/src/components/home/form/CreateOrEditTrainingJobForm.js index 7468cae..27d2b24 100644 --- a/src/components/home/form/CreateOrEditTrainingJobForm.js +++ b/src/components/home/form/CreateOrEditTrainingJobForm.js @@ -65,7 +65,7 @@ class CreateTrainingJob extends React.Component { const task = () => { this.logger("called the task"); this.fetchPipelines(); - this.fetchExperiments(); + // this.fetchExperiments(); this.fetchFeatureGroups(); if(this.state.plName !== ""){ @@ -370,7 +370,8 @@ class CreateTrainingJob extends React.Component { axios.post(this.state.UCMgr_baseUrl + '/trainingjobs/' + this.state.ucName,{ "trainingjob_name" : this.state.ucName, "pipeline_name" : this.state.plName, - "experiment_name" : this.state.expName, + // "experiment_name" : this.state.expName, + "experiment_name" : "Default", "featureGroup_name": this.state.featureGroupName, "query_filter": this.state.featureFilters, "arguments" : hyperParamsDict, @@ -401,7 +402,8 @@ class CreateTrainingJob extends React.Component { axios.put(this.state.UCMgr_baseUrl + '/trainingjobs/' + this.state.ucName,{ "trainingjob_name" : this.state.ucName, "pipeline_name" : this.state.plName, - "experiment_name" : this.state.expName, + // "experiment_name" : this.state.expName, + "experiment_name" : "Default", "featureGroup_name": this.state.featureGroupName, "query_filter": this.state.featureFilters, "arguments" : hyperParamsDict, @@ -774,7 +776,7 @@ class CreateTrainingJob extends React.Component { } - + {/* Experiment Name* ) } - + */} Datalake Source* -- 2.16.6