MODEL IDvit-age-classifier
live

ViT Age Classifier

ViT Age Classifier is an image classification model that predicts the age category of a person based on a facial image. It uses a Vision Transformer architecture fine-tuned for age estimation to analyze facial features and output structured age predictions.

ViT Age Classifier
caption

Documentary Casting Age Cohort Check

{
  "taskType": "imageCaption",
  "taskUUID": "138713ee-4605-4ed3-ba89-da1df2ff1a73",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "50-59",
    "confidence": 0.5337
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/b66f0c56-41d0-4240-ad5f-a8a5b0adf604.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/b66f0c56-41d0-4240-ad5f-a8a5b0adf604.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "138713ee-4605-4ed3-ba89-da1df2ff1a73",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/b66f0c56-41d0-4240-ad5f-a8a5b0adf604.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/b66f0c56-41d0-4240-ad5f-a8a5b0adf604.jpg
{
  "taskType": "caption",
  "taskUUID": "138713ee-4605-4ed3-ba89-da1df2ff1a73",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/b66f0c56-41d0-4240-ad5f-a8a5b0adf604.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "138713ee-4605-4ed3-ba89-da1df2ff1a73",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "50-59",
    "confidence": 0.5337
  }
}
caption

Oral History Age Cohort Tag

{
  "taskType": "imageCaption",
  "taskUUID": "b4b675b8-a2c4-4b98-acdf-9d323beee101",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "60-69",
    "confidence": 0.6245
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/93389581-decc-4991-beb9-6f75fee36e0a.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/93389581-decc-4991-beb9-6f75fee36e0a.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "b4b675b8-a2c4-4b98-acdf-9d323beee101",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/93389581-decc-4991-beb9-6f75fee36e0a.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/93389581-decc-4991-beb9-6f75fee36e0a.jpg
{
  "taskType": "caption",
  "taskUUID": "b4b675b8-a2c4-4b98-acdf-9d323beee101",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/93389581-decc-4991-beb9-6f75fee36e0a.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "b4b675b8-a2c4-4b98-acdf-9d323beee101",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "60-69",
    "confidence": 0.6245
  }
}
caption

Stock Portrait Age Metadata Tag

{
  "taskType": "imageCaption",
  "taskUUID": "b0d77c3c-6b8d-4381-bd98-a69c283c71cb",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "60-69",
    "confidence": 0.6069
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/fc0e4ac4-e0ba-49b8-93a3-0a5a3fc14b5b.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/fc0e4ac4-e0ba-49b8-93a3-0a5a3fc14b5b.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "b0d77c3c-6b8d-4381-bd98-a69c283c71cb",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/fc0e4ac4-e0ba-49b8-93a3-0a5a3fc14b5b.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/fc0e4ac4-e0ba-49b8-93a3-0a5a3fc14b5b.jpg
{
  "taskType": "caption",
  "taskUUID": "b0d77c3c-6b8d-4381-bd98-a69c283c71cb",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/fc0e4ac4-e0ba-49b8-93a3-0a5a3fc14b5b.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "b0d77c3c-6b8d-4381-bd98-a69c283c71cb",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "60-69",
    "confidence": 0.6069
  }
}
caption

Museum Visitor Age-Segment Audit

{
  "taskType": "imageCaption",
  "taskUUID": "c2a86bf1-0ef1-416a-8b69-ac4c96242da9",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "60-69",
    "confidence": 0.561
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/95238017-bcd7-4c3a-9188-bc5e10e4a1ef.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/95238017-bcd7-4c3a-9188-bc5e10e4a1ef.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "c2a86bf1-0ef1-416a-8b69-ac4c96242da9",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/95238017-bcd7-4c3a-9188-bc5e10e4a1ef.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/95238017-bcd7-4c3a-9188-bc5e10e4a1ef.jpg
{
  "taskType": "caption",
  "taskUUID": "c2a86bf1-0ef1-416a-8b69-ac4c96242da9",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/95238017-bcd7-4c3a-9188-bc5e10e4a1ef.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "c2a86bf1-0ef1-416a-8b69-ac4c96242da9",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "60-69",
    "confidence": 0.561
  }
}
Age Classification

Backstage Ballet Student Headshot

{
  "taskType": "imageCaption",
  "taskUUID": "1e8930eb-0f03-4205-b345-1f194242cddb",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "10-19",
    "confidence": 0.81
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/5759d499-3d14-4e60-93aa-a1039995496f.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/5759d499-3d14-4e60-93aa-a1039995496f.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "1e8930eb-0f03-4205-b345-1f194242cddb",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/5759d499-3d14-4e60-93aa-a1039995496f.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/5759d499-3d14-4e60-93aa-a1039995496f.jpg
{
  "taskType": "caption",
  "taskUUID": "1e8930eb-0f03-4205-b345-1f194242cddb",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/5759d499-3d14-4e60-93aa-a1039995496f.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "1e8930eb-0f03-4205-b345-1f194242cddb",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "10-19",
    "confidence": 0.81
  }
}
Age Classification

Rainy Bus Window Selfie

{
  "taskType": "imageCaption",
  "taskUUID": "b0c06684-5e48-46d5-abbd-40ad492e33e3",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "10-19",
    "confidence": 0.78
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/d48bc287-6ce4-4160-8cb0-32f1dcc6d78a.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/d48bc287-6ce4-4160-8cb0-32f1dcc6d78a.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "b0c06684-5e48-46d5-abbd-40ad492e33e3",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/d48bc287-6ce4-4160-8cb0-32f1dcc6d78a.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/d48bc287-6ce4-4160-8cb0-32f1dcc6d78a.jpg
{
  "taskType": "caption",
  "taskUUID": "b0c06684-5e48-46d5-abbd-40ad492e33e3",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/d48bc287-6ce4-4160-8cb0-32f1dcc6d78a.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "b0c06684-5e48-46d5-abbd-40ad492e33e3",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "10-19",
    "confidence": 0.78
  }
}
Age Classification

Sunlit Science Fair Teen

{
  "taskType": "imageCaption",
  "taskUUID": "33da3334-3e1b-4363-a8bd-164519b30e13",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "10-19",
    "confidence": 0.79
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/7de553c4-26e7-47c2-82e0-88ccea343dec.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/7de553c4-26e7-47c2-82e0-88ccea343dec.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "33da3334-3e1b-4363-a8bd-164519b30e13",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/7de553c4-26e7-47c2-82e0-88ccea343dec.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/7de553c4-26e7-47c2-82e0-88ccea343dec.jpg
{
  "taskType": "caption",
  "taskUUID": "33da3334-3e1b-4363-a8bd-164519b30e13",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/7de553c4-26e7-47c2-82e0-88ccea343dec.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "33da3334-3e1b-4363-a8bd-164519b30e13",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "10-19",
    "confidence": 0.79
  }
}
Age Classification

Freckled Child Portrait Closeup

{
  "taskType": "imageCaption",
  "taskUUID": "43c5d541-ad7c-45e6-a304-4d07c8d65387",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "3-9",
    "confidence": 0.72
  }
}
import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:153@1',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/d00f1dfe-b3b1-4c93-ad41-2d07f8b7f924.jpg'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:153@1",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/d00f1dfe-b3b1-4c93-ad41-2d07f8b7f924.jpg"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "caption",
      "taskUUID": "43c5d541-ad7c-45e6-a304-4d07c8d65387",
      "model": "runware:153@1",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/d00f1dfe-b3b1-4c93-ad41-2d07f8b7f924.jpg"
      }
    }
  ]'
runware run runware:153@1 \
  inputs.image=https://assets.runware.ai/assets/inputs/d00f1dfe-b3b1-4c93-ad41-2d07f8b7f924.jpg
{
  "taskType": "caption",
  "taskUUID": "43c5d541-ad7c-45e6-a304-4d07c8d65387",
  "model": "runware:153@1",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/d00f1dfe-b3b1-4c93-ad41-2d07f8b7f924.jpg"
  }
}
Response
{
  "taskType": "imageCaption",
  "taskUUID": "43c5d541-ad7c-45e6-a304-4d07c8d65387",
  "cost": 0.0006,
  "structuredData": {
    "ageGroup": "3-9",
    "confidence": 0.72
  }
}