Artificial Intelligence and Machine Learning Blogs
Explore AI and ML blogs. Discover use cases, advancements, and the transformative potential of AI for businesses. Stay informed of trends and applications.
cancel
Showing results for 
Search instead for 
Did you mean: 
YatseaLi
Product and Topic Expert
Product and Topic Expert
This is the second part of my series blogs about retraining your own Customisable Similarity Search in SAP Leonard Machine Learning Foundation

In this part, we will learn how to retrain a Customisable Similarity Search with your own dataset.

Prepare for the retraining


Please follow the steps below for preparation before retraining.

  1. Get a Free Trial Account on SAP Cloud Platform

  2. Install the Cloud Foundry Command Line Interface (CLI)

  3. Install the Machine Learning foundation plugin for SAP Cloud Platform CLI

  4. Create a Machine Learning Foundation service instance on the Cloud Foundry environment

  5. Prepare your environment for retraining

  6. Prepare a text file of vectors one comma-separated vector per line. The vector could be face or image or document feature vector, which could be extracted from MLF face/image/document feature extraction services, or any vector set with the identical number of dimensions that you want to build the search index.For example, you have extracted a list of face feature vector from customer profile images, each line represents a face with 128-dimension feature vector with comma separator.
    folder structure as
    face_vectors          
    -face_vectors.txt​


  7. Upload the feature vector file to your MLF instance bucket ​
    command:
    cf sapml fs put <local_path> <remote_path>​
    #for example:
    cf sapml fs put face_vectors/ face_vectors/


  8. Get your OAuth Access Token using a REST Client


Retrain your own Customisable Similarity Search


Instead of submitting the retraining job with sapml cli, I would like to use the built-in Swagger UI of the Training Service for Customisable Similarity Search(certainly, you can do the same with any REST client tool, such as POSTMAN or programming. Here I just walk you through the retraining process with the built-in swagger UI, where you can find out the technical details about the service and try it out. And every functional service of mlf embeds its own swagger UI. Next time, if you would like to use a functional service in MLF, and find no much documentation, you can simply use its swagger tool).

Get started with the built-in Swagger UI of training service


Simply, found out the NN_SEARCH_RETRAIN_API_URL from the service key of your mlf instance in SCP CF.


For instance, my NN_SEARCH_RETRAIN_API_URL in my service key of mlf trial instance is https://mlftrial-retrain-ann-api.cfapps.eu10.hana.ondemand.com/api/v2/tabular/ann/indexing. Open this url with browser, its built-in swagger UI shows up as below about this training service.(This is the only public information I can find about this service at the point of writing this blog)


Submit a training job for Customisable Similarity Search


To submit a training job for Customisable Similarity Search, you can make a post to the /jobs endpoint.



Click the Model, you can find the description of parameters for the job. The following are critical parameters for the memory, lookup speed and accuracy.
-mode: exact or annoy
-pcaComponents: Please refer to this blog about Principal Component Analysis.
-annoy.nTree



Click Try it out



In my example, each face feature vector has 128 dimensions,  around 400 faces in total, therefore I use the following initial configuration for training. You may need to tune the parameters to find out the best fit of your requirement about lookup speed and accuracy.
{
"jobName": "job-training",
"dataset": "faces_vectors",
"modelName": "faces",
"mode": "annoy",
"pcaComponents": 10,
"annoy": {
"nTrees": 40
}
}

And copy the access token("Bearer *******") you have obtained from step 8 to the Authentication field. Then click execute button to submit the job.



As a result, if the retraining job is submitted successfully, the response will return the job id. For any non 202 response code, please refer to the error message for troubleshooting.

Checking the status and logs of the training job


With job id, now you can check the job status by make a GET http request the end point /Jobs/{id}. The training job may take some time to complete upon to the size of training dataset, in our case, it is the number of faces and the dimension number of each face feature vector.

Alternatively, you can monitor the job status with the command:
#checking the job status
cf sapml job status

#output the log of job the stdout
cf sapml job logs <job-id> -f

#list the folder structure of your s3 bucket, and find out your job folder
cf sapml fs list
#download the log file
cf sapml fs get /<Your_job_fodler>/log.txt <local_path>
#for example, download the log file of the job to my currect working directory
cf sapml fs get job-training-2019-10-17t0650z427525/log.txt ./


Outputs of the training job


Until the job status become successful, then the deployable artefact index.ann is generated in the job folder in your s3 bucket. Now the model is ready for deployment.

For example, the output of the training job.



 

Deploy your retrained Similarity Search model​


To deploy your retrained Similarity Search model​ to your MLF instance, you can make a POST http request to the /Deployments endpoint.

The request body requires the modelName and modeVersion, for example.
{
"modelName": "faces",
"modelVersion": "1"
}

 



If the deployment request has been submitted successfully, it will return the deployment id.

To monitor the status of deployment, make a GET http request to the /Deployments/{id} endpoint.


When the model deployment status becomes succeeded, then your customisable similarity search model is ready for inference.

In next blog(part 3), we will see how to inference the customisable similarity search.