Classifier

Algorithm
Use Cases

Prerequisites

Before you start using our Recommender algorithm, ensure you’ve:
  1. Created a schema
  1. Integrated code to process your data and installed Begin’s iOS SDK
  1. Created a project with the objective “Classifier”
Learning usually takes about 30 minutes. Once complete, your machine learning algorithm is ready to be used on your mobile device, browser, connected vehicles, or server applications.

Procedure

In order to begin classifying objects, follow the initialization step:
import Begin let beginWorker = BeginWorker.init(appId: "APP_ID", licenseKey: "LICENSE_KEY")
 
To use your trained algorithm, input the following code:
BeginWorker.shared().classify(projectId: "project_id", id: "30", success: { [self] (result) in print("Begin API Response: \(result)") }) { (message) in print("Begin API Response \(message)") }
This will return the classification labels for the provided object/user along with the confidence score
 
If you performed the initial processing in Python, you can still use the algorithm with other SDKs like Android or iOS SDKs.