uncensored-com
/
video-llava-7b-hf
Input a video, ask anything about it. Deployed by uncensored.com
- Public
- 21 runs
- Weights
Run uncensored-com/video-llava-7b-hf with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
video |
string
|
Input video file - upload a file or provide a URL (remote or bytes) via API
|
|
prompt |
string
|
What is happening in this video?
|
None
|
num_frames |
integer
|
10
|
None
|
max_new_tokens |
integer
|
500
|
None
|
temperature |
number
|
0.1
|
None
|
top_p |
number
|
0.9
|
None
|
{
"type": "object",
"title": "Input",
"required": [
"video"
],
"properties": {
"top_p": {
"type": "number",
"title": "Top P",
"default": 0.9,
"x-order": 5
},
"video": {
"type": "string",
"title": "Video",
"format": "uri",
"x-order": 0,
"description": "Input video file - upload a file or provide a URL (remote or bytes) via API"
},
"prompt": {
"type": "string",
"title": "Prompt",
"default": "What is happening in this video?",
"x-order": 1
},
"num_frames": {
"type": "integer",
"title": "Num Frames",
"default": 10,
"x-order": 2
},
"temperature": {
"type": "number",
"title": "Temperature",
"default": 0.1,
"x-order": 4
},
"max_new_tokens": {
"type": "integer",
"title": "Max New Tokens",
"default": 500,
"x-order": 3
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output"
}