Automatic vs. Manual flag to distinguish between automatically extracted features and annotations #453
Replies: 3 comments
-
This starts to feel pretty jams-y - since the long term goal is for the annotation data structures to use jams under the hood, I think it's better to put it there. What's the reasoning for wanting to have this information there in the code now? It's implicitly in the documentation already, right? |
Beta Was this translation helpful? Give feedback.
-
In some datasets we have features extracted automatically are labeled as annotations and we are afraid that people may treat this as ground truth. In these cases we want to make it more explicit that these features are automatic, semi-automatic, manually computed. |
Beta Was this translation helpful? Give feedback.
-
What about introducing optional arguments to the |
Beta Was this translation helpful? Give feedback.
-
Many datasets we're adding have both manually annotated and automatically extracted annotations. Right now, such datasets use the same attributes (e.g.
F0
) indistinctly. One idea is to add a flag somewhere indicating if the data was manually or automatically extracted. That could be done at theDataset
level:Or maybe in the annotation's class in #336 (though this would leave metadata out)
Beta Was this translation helpful? Give feedback.
All reactions