Custom AI Model Building Services

Build cutting edge AI products faster with our all-inclusive model building and maintenance services.

1,000 free operations per month.

Need custom AI models? We're here to partner with you.

We can help you build custom models to solve your business problems, no matter how complex. We offer a world-leading team of scientists and engineers, plus years of experience building practical AI solutions in the real world. Our team is armed with our powerful, end-to-end AI platform so that POCs can be immediately passed to production and transitioned to you. Enlight AI model building services extends your team and helps you deploy solutions quickly.

Why Clarifai

Grow your business with Enlight

Clarifai is one of the longest-standing AI companies in the world. We offer unmatched practical experience building AI models for businesses just like yours. Our data scientists offer unique insights into cutting edge machine learning research, and advanced expertise in the use of the Clarifai platform. Our data sourcing and preparation tools, training architecture and model deployment technology will get you up and running fast, and push the performance of your models to the limit.

On-demand access to machine learning experts

Leverage a data strategy and engineering team with over 170k+ citations in published academic papers.

Tailored services to your business use case

We'll help you define what you need for your use case to accelerate the AI model building process.

Prototype to production-ready models

We'll help you accelerate your time-to-value by getting your models into production faster.

Built for developers from the ground up

Get started with 1,000 free operations each month. Request a free API key and start building AI models today.

Start for free

Sample Code in Various Languages

Python

response = stub.PostModelOutputs(
    service_pb2.PostModelOutputsRequest(
        model_id="{THE_MODEL_ID}",
        inputs=[
            resources_pb2.Input(
                data=resources_pb2.Data(
                    image=resources_pb2.Image(
                        url="https://samples.clarifai.com/metro-north.jpg"
                    )
                )
            )
        ]
    ),
    metadata=metadata
)
print("Predicted concepts:")
for concept in response.outputs[0].data.concepts:
    print(concept.name + " " + str(concept.value))

JavaScript

stub.PostModelOutputs(
    {
        model_id: "{THE_MODEL_ID}",
        inputs: [
            {data: {image: {url: "https://samples.clarifai.com/metro-north.jpg"}}}
        ]
    },
    metadata,
    (err, response) => {
        console.log("Predicted concepts:");
        for (const concept of response.outputs[0].data.concepts) {
            console.log(concept.name + " " + concept.value);
        }
    }
);

Java

MultiOutputResponse response = stub.postModelOutputs(
    PostModelOutputsRequest.newBuilder()
        .setModelId("{THE_MODEL_ID}")
        .addInputs(
            Input.newBuilder().setData(
                Data.newBuilder().setImage(
                    Image.newBuilder().setUrl("https://samples.clarifai.com/metro-north.jpg")
                )
            )
        )
        .build()
);
System.out.println("Predicted concepts:");
for (Concept concept : response.getOutputs(0).getData().getConceptsList()) {
    System.out.printf("%s %.2f%n", concept.getName(), concept.getValue());
}

Curl

curl -X POST
    -H 'Authorization: Key {YOUR_API_KEY}'
    -H "Content-Type: application/json"
    -d '
    {
      "inputs": [
        {
          "data": {
            "image": {
              "url": "https://samples.clarifai.com/metro-north.jpg"
            }
          }
        }
      ]
    }'
    https://api.clarifai.com/v2/models/{THE_MODEL_ID}/outputs

Pricing

Pricing that scales as your models do.

Clarifai’s team of experts are here to help you every step of the way as you integrate Computer Vision and AI into your technology stack.
Please contact us below for a detailed Statement of Work and level of effort.


Ready to get started?

Whether you're a start-up or a Fortune 500, we'd like to discuss a personalized plan that fits your business use cases.