Skip to content

v0.8.1

Compare
Choose a tag to compare
@lukehsiao lukehsiao released this 13 Apr 21:27
· 191 commits to master since this release

0.8.1 - 2020-04-13

A summary of the changes of this release are below. Check the Changelog for more details.

Fonduer has a new mode argument to support switching between different learning modes (e.g., STL or MLT).

Click to see example usage
# Create task for each relation.
tasks = create_task(
    task_names = TASK_NAMES,
    n_arities = N_ARITIES,
    n_features = N_FEATURES,
    n_classes = N_CLASSES,
    emb_layer = EMB_LAYER,
    model="LogisticRegression",
    mode = MODE,
)

Added

  • @senwu: Add mode argument in create_task to support STL and MTL.