v0.8.1
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 supportSTL
andMTL
.