The definitive guide to artificial intelligence terminology for 2021.
Gather valuable business insights from images, video and text using computer vision and natural language processing.
Generate product and image metadata
Monitor user-generated content
Deliver deeper search results
Label documents based on content
Create secure experiences
Detect activity with full motion video
Prevent equipment faults and failures
Gain audience insights
Upgrade your customer experience
Build brand loyalty
Reduce operating costs
Improve the travel experience
Maximize subscription lifetime value
Deliver better outcomes
Create dynamic ways to collate, filter and retrieve assets
Detect people in image and video data.
Detect vehicles in image and video data.
Detect vehicles and people in image and video data.
Recognize over 11,000 different concepts including objects, themes, moods and more.
Analyze images and returns numerical vectors that represent each detected face in the image in a 1024-dimensional space computed by our General model.
Predict the age, gender or cultural appearances of faces.
Detect toxic, obscene, racist or threatening language, or train your own custom moderation models.
Assign tags or any custom concept to analyze text based on its contents. Build accurate models for topic and sentiment analysis and smart reply.
Detect the location of faces with bounding boxes.
Identify celebrities that closely resemble detected faces.
Detect items of clothing or fashion-related items
Analyze images and return numerical vectors that represent each detected face in the image in a 1024-dimensional space.
Recognize more than 1,000 food items in images down to the ingredient level.
Identify the dominant colors present in your images in hex or W3C form.
Recognize textures and patterns in a two-dimensional image e.g., feathers, woodgrain, petrified wood, glacial ice and overarching descriptive concepts (veined, metallic).
Identify different levels of nudity in your visual data. Ideal for moderating and filtering offensive content from your platform.
Recognize specific features of residential, hotel, and travel-related properties.
Recognize over 400 concepts related to weddings including bride, groom, flowers, and more.
Identify unwanted content such as gore, drugs, explicit nudity or suggestive nudity.
Create your own model and teach it with your own images and concepts.
Explore our pre-built, ready-to-use image recognition models to suit your specific needs.
Thinking about AI. Clarifai's Ultimate Artificial Intelligence Glossary is a must read. Our simplified, comprehensive glossary offers a framework as you explore AI and the use cases available to solve your biggest business challenges.
Get started with 1,000 free operations each month. Request a free API key and start building today.
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))
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);
}
}
);
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 -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
If you're encountering a technical or payment issue, the customer support team will be happy to assist you.
Contact support© 2021 Clarifai, Inc.
Terms of Use Content Takedown Privacy & Security Statement