iTAG provides a video classification labeling template. Learn about its use cases and input and output data structures.
Video classification
Video classification assigns one or more predefined classification labels to a video based on its content. This template supports both single-label and multi-label classification.
-
Use cases
Common use cases include video surveillance, live streaming recommendations, and short video recommendations.
-
Data structure
-
Input data
Each line in the manifest file represents a single data item and must include the source field.
{"data":{"source":"oss://tongxin-lly.oss-cn-hangzhou.aliyuncs.com/iTAG/video/video1.mp4"}} ... -
Output data
Each line in the output manifest file combines the original data item with its labeling result. The JSON structure for each line is as follows.
{ "data": { "source": "oss://itag.oss-cn-hangzhou.aliyuncs.com/tongxin_video/video3.mp4" }, "label-1433000711494508544": { "results": [ { "questionId": "2", "data": [ "Label 2", "Label 1" ], "markTitle": "multiple-choice", "type": "survey/multivalue" } ] } }
-