Skip to content

Active learning docs update #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion docs/docs/dev/active_learning.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,29 @@ Label Sleuth guides the users through the labeling process by suggesting a ranke

Label Sleuth currently supports the following active learning strategies:

::::{tab-set}
:::{tab-item} Binary mode

The employed active learning strategy can be configured by setting the value of the `binary_flow.active_learning_strategy` parameter in the system's [configuration file](configuration.md).

| Active learning strategy | Description |
|---|---|
| `RANDOM` | Randomly sample from unlabeled data (active learning baseline) |
| `HARD_MINING` <br /><defvalue>default</defvalue> | Uncertainty sampling/least confidence ([Lewis and Gale 1994](https://arxiv.org/abs/cmp-lg/9407020)) |
| `RETROSPECTIVE` | Select top scored instances by the model ([Ein-Dor et al. 2019](https://arxiv.org/abs/1911.10763)) |
| `COMBINED_RETROSPECTIVE_HM` | a combination between the previous two strategies |

:::
:::{tab-item} Multiclass mode

The employed active learning strategy can be configured by setting the value of the `multiclass_flow.active_learning_strategy` parameter in the system's [configuration file](configuration.md).

| Active learning strategy | Description |
|---|---|
| `MULTICLASS_ENTROPY` <br /><defvalue>default</defvalue> | Uncertainty sampling/least confidence ([Lewis and Gale 1994](https://arxiv.org/abs/cmp-lg/9407020)) |

The employed active learning strategy can be configured by setting the value of the `active_learning_strategy` parameter in the system's [configuration file](configuration.md).
:::
::::

## Implement a new active learning strategy

Expand Down