Back to home page

OSCL-LXR

 
 

    


0001 #
0002 # Licensed to the Apache Software Foundation (ASF) under one or more
0003 # contributor license agreements.  See the NOTICE file distributed with
0004 # this work for additional information regarding copyright ownership.
0005 # The ASF licenses this file to You under the Apache License, Version 2.0
0006 # (the "License"); you may not use this file except in compliance with
0007 # the License.  You may obtain a copy of the License at
0008 #
0009 #    http://www.apache.org/licenses/LICENSE-2.0
0010 #
0011 # Unless required by applicable law or agreed to in writing, software
0012 # distributed under the License is distributed on an "AS IS" BASIS,
0013 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0014 # See the License for the specific language governing permissions and
0015 # limitations under the License.
0016 #
0017 
0018 """
0019 Random Forest Classifier Example.
0020 """
0021 from __future__ import print_function
0022 
0023 # $example on$
0024 from pyspark.ml import Pipeline
0025 from pyspark.ml.classification import RandomForestClassifier
0026 from pyspark.ml.feature import IndexToString, StringIndexer, VectorIndexer
0027 from pyspark.ml.evaluation import MulticlassClassificationEvaluator
0028 # $example off$
0029 from pyspark.sql import SparkSession
0030 
0031 if __name__ == "__main__":
0032     spark = SparkSession\
0033         .builder\
0034         .appName("RandomForestClassifierExample")\
0035         .getOrCreate()
0036 
0037     # $example on$
0038     # Load and parse the data file, converting it to a DataFrame.
0039     data = spark.read.format("libsvm").load("data/mllib/sample_libsvm_data.txt")
0040 
0041     # Index labels, adding metadata to the label column.
0042     # Fit on whole dataset to include all labels in index.
0043     labelIndexer = StringIndexer(inputCol="label", outputCol="indexedLabel").fit(data)
0044 
0045     # Automatically identify categorical features, and index them.
0046     # Set maxCategories so features with > 4 distinct values are treated as continuous.
0047     featureIndexer =\
0048         VectorIndexer(inputCol="features", outputCol="indexedFeatures", maxCategories=4).fit(data)
0049 
0050     # Split the data into training and test sets (30% held out for testing)
0051     (trainingData, testData) = data.randomSplit([0.7, 0.3])
0052 
0053     # Train a RandomForest model.
0054     rf = RandomForestClassifier(labelCol="indexedLabel", featuresCol="indexedFeatures", numTrees=10)
0055 
0056     # Convert indexed labels back to original labels.
0057     labelConverter = IndexToString(inputCol="prediction", outputCol="predictedLabel",
0058                                    labels=labelIndexer.labels)
0059 
0060     # Chain indexers and forest in a Pipeline
0061     pipeline = Pipeline(stages=[labelIndexer, featureIndexer, rf, labelConverter])
0062 
0063     # Train model.  This also runs the indexers.
0064     model = pipeline.fit(trainingData)
0065 
0066     # Make predictions.
0067     predictions = model.transform(testData)
0068 
0069     # Select example rows to display.
0070     predictions.select("predictedLabel", "label", "features").show(5)
0071 
0072     # Select (prediction, true label) and compute test error
0073     evaluator = MulticlassClassificationEvaluator(
0074         labelCol="indexedLabel", predictionCol="prediction", metricName="accuracy")
0075     accuracy = evaluator.evaluate(predictions)
0076     print("Test Error = %g" % (1.0 - accuracy))
0077 
0078     rfModel = model.stages[2]
0079     print(rfModel)  # summary only
0080     # $example off$
0081 
0082     spark.stop()