aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/python
diff options
context:
space:
mode:
authorXin Ren <iamshrek@126.com>2016-03-24 14:25:10 -0700
committerXiangrui Meng <meng@databricks.com>2016-03-24 14:25:10 -0700
commitd283223a5a75c53970e72a1016e0b237856b5ea1 (patch)
treea9e657985580ab63c900abfbe757602de7a59584 /examples/src/main/python
parent342079dc45425309798d6082cccef86858f08a77 (diff)
downloadspark-d283223a5a75c53970e72a1016e0b237856b5ea1.tar.gz
spark-d283223a5a75c53970e72a1016e0b237856b5ea1.tar.bz2
spark-d283223a5a75c53970e72a1016e0b237856b5ea1.zip
[SPARK-13017][DOCS] Replace example code in mllib-feature-extraction.md using include_example
Replace example code in mllib-feature-extraction.md using include_example https://issues.apache.org/jira/browse/SPARK-13017 The example code in the user guide is embedded in the markdown and hence it is not easy to test. It would be nice to automatically test them. This JIRA is to discuss options to automate example code testing and see what we can do in Spark 1.6. Goal is to move actual example code to spark/examples and test compilation in Jenkins builds. Then in the markdown, we can reference part of the code to show in the user guide. This requires adding a Jekyll tag that is similar to https://github.com/jekyll/jekyll/blob/master/lib/jekyll/tags/include.rb, e.g., called include_example. `{% include_example scala/org/apache/spark/examples/mllib/TFIDFExample.scala %}` Jekyll will find `examples/src/main/scala/org/apache/spark/examples/mllib/TFIDFExample.scala` and pick code blocks marked "example" and replace code block in `{% highlight %}` in the markdown. See more sub-tasks in parent ticket: https://issues.apache.org/jira/browse/SPARK-11337 Author: Xin Ren <iamshrek@126.com> Closes #11142 from keypointt/SPARK-13017.
Diffstat (limited to 'examples/src/main/python')
-rw-r--r--examples/src/main/python/mllib/elementwise_product_example.py51
-rw-r--r--examples/src/main/python/mllib/normalizer_example.py52
-rw-r--r--examples/src/main/python/mllib/standard_scaler_example.py55
-rw-r--r--examples/src/main/python/mllib/tf_idf_example.py57
-rw-r--r--examples/src/main/python/mllib/word2vec_example.py40
5 files changed, 255 insertions, 0 deletions
diff --git a/examples/src/main/python/mllib/elementwise_product_example.py b/examples/src/main/python/mllib/elementwise_product_example.py
new file mode 100644
index 0000000000..6d8bf6d42e
--- /dev/null
+++ b/examples/src/main/python/mllib/elementwise_product_example.py
@@ -0,0 +1,51 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+from __future__ import print_function
+
+from pyspark import SparkContext
+# $example on$
+from pyspark.mllib.feature import ElementwiseProduct
+from pyspark.mllib.linalg import Vectors
+# $example off$
+
+if __name__ == "__main__":
+ sc = SparkContext(appName="ElementwiseProductExample") # SparkContext
+
+ # $example on$
+ data = sc.textFile("data/mllib/kmeans_data.txt")
+ parsedData = data.map(lambda x: [float(t) for t in x.split(" ")])
+
+ # Create weight vector.
+ transformingVector = Vectors.dense([0.0, 1.0, 2.0])
+ transformer = ElementwiseProduct(transformingVector)
+
+ # Batch transform
+ transformedData = transformer.transform(parsedData)
+ # Single-row transform
+ transformedData2 = transformer.transform(parsedData.first())
+ # $example off$
+
+ print("transformedData:")
+ for each in transformedData.collect():
+ print(each)
+
+ print("transformedData2:")
+ for each in transformedData2.collect():
+ print(each)
+
+ sc.stop()
diff --git a/examples/src/main/python/mllib/normalizer_example.py b/examples/src/main/python/mllib/normalizer_example.py
new file mode 100644
index 0000000000..a4e028ca9a
--- /dev/null
+++ b/examples/src/main/python/mllib/normalizer_example.py
@@ -0,0 +1,52 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+from __future__ import print_function
+
+from pyspark import SparkContext
+# $example on$
+from pyspark.mllib.feature import Normalizer
+from pyspark.mllib.util import MLUtils
+# $example off$
+
+if __name__ == "__main__":
+ sc = SparkContext(appName="NormalizerExample") # SparkContext
+
+ # $example on$
+ data = MLUtils.loadLibSVMFile(sc, "data/mllib/sample_libsvm_data.txt")
+ labels = data.map(lambda x: x.label)
+ features = data.map(lambda x: x.features)
+
+ normalizer1 = Normalizer()
+ normalizer2 = Normalizer(p=float("inf"))
+
+ # Each sample in data1 will be normalized using $L^2$ norm.
+ data1 = labels.zip(normalizer1.transform(features))
+
+ # Each sample in data2 will be normalized using $L^\infty$ norm.
+ data2 = labels.zip(normalizer2.transform(features))
+ # $example off$
+
+ print("data1:")
+ for each in data1.collect():
+ print(each)
+
+ print("data2:")
+ for each in data2.collect():
+ print(each)
+
+ sc.stop()
diff --git a/examples/src/main/python/mllib/standard_scaler_example.py b/examples/src/main/python/mllib/standard_scaler_example.py
new file mode 100644
index 0000000000..20a77a4708
--- /dev/null
+++ b/examples/src/main/python/mllib/standard_scaler_example.py
@@ -0,0 +1,55 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+from __future__ import print_function
+
+from pyspark import SparkContext
+# $example on$
+from pyspark.mllib.feature import StandardScaler, StandardScalerModel
+from pyspark.mllib.linalg import Vectors
+from pyspark.mllib.util import MLUtils
+# $example off$
+
+if __name__ == "__main__":
+ sc = SparkContext(appName="StandardScalerExample") # SparkContext
+
+ # $example on$
+ data = MLUtils.loadLibSVMFile(sc, "data/mllib/sample_libsvm_data.txt")
+ label = data.map(lambda x: x.label)
+ features = data.map(lambda x: x.features)
+
+ scaler1 = StandardScaler().fit(features)
+ scaler2 = StandardScaler(withMean=True, withStd=True).fit(features)
+
+ # data1 will be unit variance.
+ data1 = label.zip(scaler1.transform(features))
+
+ # Without converting the features into dense vectors, transformation with zero mean will raise
+ # exception on sparse vector.
+ # data2 will be unit variance and zero mean.
+ data2 = label.zip(scaler2.transform(features.map(lambda x: Vectors.dense(x.toArray()))))
+ # $example off$
+
+ print("data1:")
+ for each in data1.collect():
+ print(each)
+
+ print("data2:")
+ for each in data2.collect():
+ print(each)
+
+ sc.stop()
diff --git a/examples/src/main/python/mllib/tf_idf_example.py b/examples/src/main/python/mllib/tf_idf_example.py
new file mode 100644
index 0000000000..c4d53333a9
--- /dev/null
+++ b/examples/src/main/python/mllib/tf_idf_example.py
@@ -0,0 +1,57 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+from __future__ import print_function
+
+from pyspark import SparkContext
+# $example on$
+from pyspark.mllib.feature import HashingTF, IDF
+# $example off$
+
+if __name__ == "__main__":
+ sc = SparkContext(appName="TFIDFExample") # SparkContext
+
+ # $example on$
+ # Load documents (one per line).
+ documents = sc.textFile("data/mllib/kmeans_data.txt").map(lambda line: line.split(" "))
+
+ hashingTF = HashingTF()
+ tf = hashingTF.transform(documents)
+
+ # While applying HashingTF only needs a single pass to the data, applying IDF needs two passes:
+ # First to compute the IDF vector and second to scale the term frequencies by IDF.
+ tf.cache()
+ idf = IDF().fit(tf)
+ tfidf = idf.transform(tf)
+
+ # spark.mllib's IDF implementation provides an option for ignoring terms
+ # which occur in less than a minimum number of documents.
+ # In such cases, the IDF for these terms is set to 0.
+ # This feature can be used by passing the minDocFreq value to the IDF constructor.
+ idfIgnore = IDF(minDocFreq=2).fit(tf)
+ tfidfIgnore = idf.transform(tf)
+ # $example off$
+
+ print("tfidf:")
+ for each in tfidf.collect():
+ print(each)
+
+ print("tfidfIgnore:")
+ for each in tfidfIgnore.collect():
+ print(each)
+
+ sc.stop()
diff --git a/examples/src/main/python/mllib/word2vec_example.py b/examples/src/main/python/mllib/word2vec_example.py
new file mode 100644
index 0000000000..ad1090c77e
--- /dev/null
+++ b/examples/src/main/python/mllib/word2vec_example.py
@@ -0,0 +1,40 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+from __future__ import print_function
+
+from pyspark import SparkContext
+# $example on$
+from pyspark.mllib.feature import Word2Vec
+# $example off$
+
+if __name__ == "__main__":
+ sc = SparkContext(appName="Word2VecExample") # SparkContext
+
+ # $example on$
+ inp = sc.textFile("data/mllib/sample_lda_data.txt").map(lambda row: row.split(" "))
+
+ word2vec = Word2Vec()
+ model = word2vec.fit(inp)
+
+ synonyms = model.findSynonyms('1', 5)
+
+ for word, cosine_distance in synonyms:
+ print("{}: {}".format(word, cosine_distance))
+ # $example off$
+
+ sc.stop()