changing Pipeline to Training Function 59/10759/1
authorrajdeep11 <rajdeep.sin@samsung.com>
Wed, 22 Mar 2023 08:07:31 +0000 (13:37 +0530)
committerrajdeep11 <rajdeep.sin@samsung.com>
Wed, 22 Mar 2023 08:27:34 +0000 (13:57 +0530)
Issue-Id: AIMLFW-38

Signed-off-by: rajdeep11 <rajdeep.sin@samsung.com>
Change-Id: I55c52b7af4d419a735bdc7764296cbf4d16395a5

src/components/home/create/CreateTrainingJob.js
src/components/home/form/CreateOrEditTrainingJobForm.js
src/components/home/pipelines/UploadPipeline.js
src/components/home/status/TrainingJobInfo.js

index 9f21439..5fe3390 100644 (file)
@@ -38,9 +38,9 @@ class CreateTrainingJob extends React.Component {
          It must be between 3 and 63 characters long <br></br>
         It can only consist of lowercase Letters and numbers
          <br></br> 
-        <strong>Pipeline Name</strong>
+        <strong>Training Function Name</strong>
         <br></br>
-        Select an existing pipeline name corresponding to a ML model
+        Select an existing training function name corresponding to a ML model
         <br></br>
         <strong>Experiment Name</strong>
         <br></br>
index e8beec8..13cadbb 100644 (file)
@@ -685,13 +685,13 @@ invokePutTrainingJob = event =>{
         </Form.Group>
 
         <Form.Group controlId="plName">
-          <Form.Label>Pipeline Name*</Form.Label>
+          <Form.Label>Training Function*</Form.Label>
           <Form.Control as="select"
             required
             value={this.state.plName}
             onChange={this.handlePLNameChange}>
           
-            <option key="" value="" disabled> --- Select Pipeline --- </option>
+            <option key="" value="" disabled> --- Select Training Function --- </option>
             {
                 this.state.plList.map(data => <option key={data} value={data}>{data}</option>)
             }
@@ -703,13 +703,13 @@ invokePutTrainingJob = event =>{
           && 
           <div>
             <Form.Group controlId="plVesName">
-              <Form.Label>Pipeline Version Name*</Form.Label>
+              <Form.Label>Training Function Version Name*</Form.Label>
               <Form.Control as="select"
                 required
                 value={this.state.plVerName}
                 onChange={this.handlePipelineVersionChange}>
             
-                <option key="" value="" disabled> --- Select Pipeline Version--- </option>
+                <option key="" value="" disabled> --- Select Training Function Version--- </option>
                 {
                     this.state.plVerList.map(data => {
                       if(data === this.state.plName){
index 8a58ead..2d55259 100644 (file)
@@ -39,9 +39,9 @@ class UploadPipelineForm extends React.Component {
     <Popover id="popover-basic">
       <Popover.Title as="h3">Field descriptions</Popover.Title>
       <Popover.Content>
-        <strong>Training Job Name</strong> 
+        <strong> Training Function Name</strong> 
         <br></br>
-         Name of the Training Job. <br></br>
+         Name of the Training Function. <br></br>
          should only contain lower or upper case alphanumerical characters and underscore <br></br>
          <br></br> 
       </Popover.Content>
@@ -118,12 +118,12 @@ class UploadPipelineForm extends React.Component {
     </OverlayTrigger>
     <div className="upload-pl-form" >
     <Button variant="success" size="sm"  onClick={e => this.handleCreatePipeline(e)} >
-        Create Pipeline
+        Create Training Function
     </Button>{' '}
 
       <Form  onSubmit={this.handleSubmit}>
         <Form.Group controlId="plName">
-          <Form.Label>Pipeline Name*</Form.Label>
+          <Form.Label>Training Function Name*</Form.Label>
           <Form.Control type="input"
             value={this.state.plName}
             onChange={this.handlePlNameChange}
index 2b81a5c..528e27f 100644 (file)
@@ -91,7 +91,7 @@ const TrainingJobInfo = (props) => {
                     <Form.Control type="text" value={featureNames} readOnly />
                 </Form.Group>
                 <Form.Group controlId="pipelineName">
-                    <Form.Label>Pipeline Name</Form.Label>
+                    <Form.Label>Training Function Name</Form.Label>
                     <Form.Control type="text" value={pipeLineName} readOnly />
                 </Form.Group>
                 <Form.Group controlId="experimentName">
@@ -115,7 +115,7 @@ const TrainingJobInfo = (props) => {
                     checked={enableVersioning} readOnly/>
                 </Form.Group>
                 <Form.Group controlId="pipelineVersion">
-                    <Form.Label>Pipeline Version</Form.Label>
+                    <Form.Label>Training Function Version</Form.Label>
                     <Form.Control type="text" value={pipelineVersion} readOnly />
                 </Form.Group>
                 <Form.Group controlId="datalakeSource">