HumanSignal / label-studio-converter

Tools for converting Label Studio annotations into common dataset formats
https://labelstud.io/
255 stars 132 forks source link

fix [issue#64](https://github.com/heartexlabs/label-studio-converter/… #65

Closed loveychen closed 2 years ago

loveychen commented 2 years ago

fix https://github.com/heartexlabs/label-studio-converter/issues/64.

show unicode more user-friendly in exported csv files.

for example,

before this PR, a multiple choices with Chinese characters will show in exported csv file like this

{"choices": ["\u91cd\u7f6e\u6635\u79f0", "\u91cd\u7f6e\u5934\u50cf"]}

After this PR, it will be showed as below:

{ "choices":["重置昵称","重置头像"]}

which is more user friendly.