const task = () => {
this.logger("called the task");
this.fetchPipelines();
- this.fetchExperiments();
+ // this.fetchExperiments();
this.fetchFeatureGroups();
if(this.state.plName !== ""){
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,
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,
}
- <Form.Group controlId="expName">
+ {/* <Form.Group controlId="expName">
<Form.Label>Experiment Name*</Form.Label>
<Form.Control as="select"
required
this.state.expList.map(data => <option key={data} value={data}>{data}</option>)
}
</Form.Control>
- </Form.Group>
+ </Form.Group> */}
<Form.Group controlId="datalakeSource">
<Form.Label>Datalake Source*</Form.Label>