Commit 17f0acad authored by evanfeinberg's avatar evanfeinberg
Browse files

removed print statements

parent d32d9990
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -59,11 +59,7 @@ class SklearnModel(Model):
      Xs.append(X)
      ys.append(y)
    X = np.concatenate(Xs)
    print("np.shape(X)")
    print(np.shape(X))
    y = np.concatenate(ys)
    print("np.shape(y)")
    print(np.shape(y))
    self.raw_model.fit(X, y)

  def predict_on_batch(self, X):