Commit 916212c9 authored by leswing's avatar leswing
Browse files

Make multitask classifying even easier

parent eb49b33d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ def eval_tic_tac_toe(value_weight,

def main():
  value_weight = 6.0
  score = eval_tic_tac_toe(value_weight, num_epoch_rounds=1)
  score = eval_tic_tac_toe(value_weight, num_epoch_rounds=3)
  print(score)


+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ class TestGeneratorEvaluator(TestCase):

  def test_compute_model_performance_multitask_classifier(self):
    n_data_points = 20
    n_features = 2
    n_features = 1

    X = np.ones(shape=(n_data_points // 2, n_features)) * -1
    X1 = np.ones(shape=(n_data_points // 2, n_features))