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
classSciFilterClassfication(Enum):
NOT_CLASSIFIED="not_classified"""" For posts automatically classified as research (for example based on citoid item types)"""RESEARCH_AUTO="research_auto"""" For posts predicted to be related to research"""RESEARCH_PRED="research_pred"""" For posts predicted to be unrelated to research"""NOT_RESEARCH="not_research"
The rationale is
1- it can help with the filter evaluation - differentiating between easy (auto) and hard cases (pred)
2 - we might want to use the information in the app to further organize the queue/UX
We can present the data in a meaningful way, but not to evaluate it as a multi-label problem, as the True Labels are by def binary. What are the conditions for getting "research_auto"? I already have the types logged in the outcome dataset, I can simply use it to run an evaluation that includes aggregation of that data
For example, something like this
From the current form:
The rationale is
1- it can help with the filter evaluation - differentiating between easy (auto) and hard cases (pred)
2 - we might want to use the information in the app to further organize the queue/UX
What do you think @ShaRefOh ?
The text was updated successfully, but these errors were encountered: