Skip to content

Commit

Permalink
cleanups in LogisticRegression after rebasing after multinomial PR
Browse files Browse the repository at this point in the history
  • Loading branch information
jkbradley committed Feb 3, 2015
1 parent d1e5882 commit 79675d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ package org.apache.spark.mllib.classification

import org.apache.spark.SparkContext
import org.apache.spark.annotation.Experimental
import org.apache.spark.mllib.classification.impl.GLMClassificationModel
import org.apache.spark.mllib.linalg.BLAS.dot
import org.apache.spark.mllib.linalg.{DenseVector, Vector}
import org.apache.spark.mllib.classification.impl.GLMClassificationModel
import org.apache.spark.mllib.optimization._
import org.apache.spark.mllib.regression._
import org.apache.spark.mllib.util.{DataValidators, Exportable, Importable, MLUtils}
import org.apache.spark.mllib.util.{DataValidators, Exportable, Importable}
import org.apache.spark.rdd.RDD


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@

package org.apache.spark.mllib.classification

import scala.util.control.Breaks._
import org.apache.spark.util.Utils

import scala.util.Random
import scala.collection.JavaConversions._
import scala.util.Random
import scala.util.control.Breaks._

import org.scalatest.FunSuite
import org.scalatest.Matchers
Expand All @@ -32,6 +30,7 @@ import org.apache.spark.mllib.util.{LocalClusterSparkContext, MLlibTestSparkCont
import org.apache.spark.mllib.util.TestingUtils._
import org.apache.spark.util.Utils


object LogisticRegressionSuite {

def generateLogisticInputAsList(
Expand Down

0 comments on commit 79675d5

Please sign in to comment.