Search Java Code Snippets


  Help us in improving the repository. Add new snippets through 'Submit Code Snippet ' link.





Java - Code Samples

 Sample 1. Code Sample / Example / Snippet of org.apache.spark.ml.classification.LogisticRegressionModel

  public static void main(String[] args) {

SparkConf conf = new SparkConf().setAppName("JavaLogisticRegressionWithElasticNetExample");

JavaSparkContext jsc = new JavaSparkContext(conf);

SQLContext sqlContext = new SQLContext(jsc);



DataFrame training = sqlContext.read().format("libsvm")

.load("data/mllib/sample_libsvm_data.txt");



LogisticRegression lr = new LogisticRegression()

.setMaxIter(10)

.setRegParam(0.3)

.setElasticNetParam(0.8);



LogisticRegressionModel lrModel = lr.fit(training);



System.out.println("Coefficients: "

+ lrModel.coefficients() + " Intercept: " + lrModel.intercept());



jsc.stop();

}


   Like      Feedback      org.apache.spark.ml.classification.LogisticRegressionModel



Subscribe to Java News and Posts. Get latest updates and posts on Java from Buggybread.com
Enter your email address:
Delivered by FeedBurner