MulaiMulai sekarang secara gratis

Implementing an active learning pipeline

In this exercise, you'll set up an active learner using a logistic regression model and an uncertainty sampling strategy.

The dataset has been loaded with X_labeled for labeled training data, X_unlabeled for unlabeled training data, and y_labeled for labels.

The required libraries have been imported: ActiveLearner from modAL.models, uncertainty_sampling from modAL.uncertainty and LogisticRegression from sklearn.linear_model.

Latihan ini adalah bagian dari kursus

Reinforcement Learning from Human Feedback (RLHF)

Lihat Kursus

Petunjuk latihan

  • Initialize an ActiveLearner object.
  • Use LogisticRegression as the estimator.
  • Use uncertainty sampling as the query strategy.
  • Initialize the learner with labeled training data.

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Create the active learner object
learner = ____(
    # Set the estimator 
    ____,
    # Set the query strategy
    ____,
    # Pass the labeled data
    X_training=____, y_training=____
)
Edit dan Jalankan Kode