The Taskframe Class - Taskframe/taskframe-python GitHub Wiki
The library and platform are built around a central class called Taskframe
. a Taskframe
is simply a group of annotation tasks with the same parameters, by analogy with Dataframes commonly used in data-science and libraries such as Pandas. The most important parameters of a Taskframe
are:
-
data_type
: the type of data to be annotated: includingimage
,text
,audio
,html
,iframe
, etc. -
task_type
: the type of annotation to perform, includingclassification
,bounding_box
, etc.
The Taskframe
class exposes higher-order methods and tools to make it super easy to perform common operations such as previewing, loading data, configuring the team, etc.
If you want to dig deeper, the library also exposes lower-level classes (such as Task
or TeamMember
) for finer control.