6.33.0
October 12, 2023
What's new 💡
Enhanced sorting functionality in both the project and archived tables for a more intuitive experience.
Enhanced the empty state in label set preview with a more intuitive design.
Enhanced the box component in every page with a more intuitive design.
Now Predict Labels will not replace existing user answers and we now facilitate Undo/Redo action for Predicted Labels
Refined the "Mark as Complete" copy for clearer understanding.
You can now view the IAA calculation from two algorithms: Krippendorff’s Alpha and Cohen’s Kappa.
Bug fixes 🐞
Fix inconsistent Provider Setting in Datasaur Dinamic
Fixed an issue when unselect answer and consensus answer in reviewer mode.
Fixed an issue when changing the slider question type's value via the slider thumb.
Fixed an issue when creating a duplicate label set in Project Creation Wizard.
API changes 💡
Analytics
Deprecate
getPaginatedChartData
, we will remove the support for paginated data charts in the future.Deprecate
getLabelAccuracyChart
, nowgetCharts
includes Label Accuracy chart.Deprecate
getLabelAccuracyData
, now we can usegetChartData
with chartId=ACCURACY_PER_LABEL to get Label Accuracy chart data.Deprecate
exportLabelAccuracyChart
, now we can useexportChart
with id=ACCURACY_PER_LABEL to export Label Accuracy chart data.BREAKING ChartSet
, now Chart type containsArray of ChartSet
ChartSet.BOTH
is removed.ChartSet.ELASTIC
is introduced.If a Chart included in two set, for example NEW and ELASTIC, the
Chart.set
property will be[NEW, ELASTIC]
.
Inter-Annotator Agreement (IAA)
Deprecate calculateAgreementTables. Calculate agreement tables is a step in IAA calculation methods. It should be one with calculate IAA.
How to adjust: Please use calculateIAA instead.
Deprecate calculatePairKappas. Pair kappa is a specific term to one of the IAA calculation methods. Now, Datasaur has two IAA methods.
How to adjust: Please use calculateIAA instead.
Deprecate getIAALastUpdatedAt. It is IAA’s last updated time. So, it cannot be separated with IAA information.
How to adjust: Please use getIAAInformation instead.
Deprecate getPairKappas. Pair kappa is a specific term to one of the IAA calculation methods. Now, Datasaur has two IAA methods.
How to adjust: Please use getIAAInformation instead.
Add calculateIAA. It is added to calculate the IAA using all of the available calculation methods.
Add getIAAInformation. It is added to improve the IAA information retrieval from multiple calculation methods.
Last updated