You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At present, we have a project labeled by multiple people at the same time, and then we export this labeled data from the website. Then we created a new project, and wanted to import the exported data into this new project, and then each sentence in it had the original annotation of each person, but we found that we couldn't do it.
Currently, it seems that when exporting, the labeling results of all people can be exported at the same time, but when importing, either a new empty project or each sentence has a unique label through preprocessing (by giving the “labels” field a unique value). I think import and export should work together seamlessly?
This may provide users with support for merging and batch deletion of labeled data? Users can export the data to do some processing with the code, and then import it back to the annotation system again.
The text was updated successfully, but these errors were encountered:
I started working on this feature and implemented a solution that works for CSV import and export and has been tested with document classification only so far. It is also backwards compatible and allows for importing only "text,label"-files just like previously.
One problem I stumbled upon though is "meta stacking" as I like to call it. It happens probably in the way the meta data is exported. On reimporting the same document the meta data becomes longer and longer as you can see on the example
The first two lines were exported and reimported and the meta data did not handle this very well.
Feature description
At present, we have a project labeled by multiple people at the same time, and then we export this labeled data from the website. Then we created a new project, and wanted to import the exported data into this new project, and then each sentence in it had the original annotation of each person, but we found that we couldn't do it.
Currently, it seems that when exporting, the labeling results of all people can be exported at the same time, but when importing, either a new empty project or each sentence has a unique label through preprocessing (by giving the “labels” field a unique value). I think import and export should work together seamlessly?
This may provide users with support for merging and batch deletion of labeled data? Users can export the data to do some processing with the code, and then import it back to the annotation system again.
The text was updated successfully, but these errors were encountered: