Our reference for how to format annotation data is O_VLIELAND. There, we uploaded the data as follows:
tag-id,animal-id,timestamp,behaviour-classification
5346,5517525,2016-12-19T09:34:00Z,forage
5346,5517525,2016-12-19T09:38:00Z,forage
5346,5517525,2016-12-19T09:41:00Z,preen
5346,5517525,2016-12-19T09:45:00Z,preen
5346,5517525,2016-12-19T09:50:00Z,forage
5346,5517525,2016-12-19T09:54:00Z,preen
5346,5517525,2016-12-19T09:59:00Z,fly
5346,5517525,2016-12-19T10:04:00Z,preen
For our data, we will want to make a difference between human and machine annotations, so we'll add a column behavior-according-to. We can use the values human and machine. So, let's say timestamps 2016-12-19T09:34:00Z and 2016-12-19T09:50:00Z where also annotated by a machine, we would get:
tag-id,animal-id,timestamp,behaviour-classification,behavior-according-to
5346,5517525,2016-12-19T09:34:00Z,forage,human <--
5346,5517525,2016-12-19T09:34:00Z,forage,machine
5346,5517525,2016-12-19T09:38:00Z,forage,machine
5346,5517525,2016-12-19T09:41:00Z,preen,machine
5346,5517525,2016-12-19T09:45:00Z,preen,machine
5346,5517525,2016-12-19T09:50:00Z,forage,human <--
5346,5517525,2016-12-19T09:50:00Z,forage,machine
5346,5517525,2016-12-19T09:54:00Z,preen,machine
5346,5517525,2016-12-19T09:59:00Z,fly,machine
5346,5517525,2016-12-19T10:04:00Z,preen,machine
@sshinne can you inform Eldar of this?
Our reference for how to format annotation data is O_VLIELAND. There, we uploaded the data as follows:
For our data, we will want to make a difference between human and machine annotations, so we'll add a column behavior-according-to. We can use the values
humanandmachine. So, let's say timestamps2016-12-19T09:34:00Zand2016-12-19T09:50:00Zwhere also annotated by a machine, we would get:@sshinne can you inform Eldar of this?