File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
examples/src/main/scala/org/apache/spark/examples Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ object DecisionTreeExample {
112112 .text(s " input path to test dataset. If given, option fracTest is ignored. " +
113113 s " default: ${defaultParams.testInput}" )
114114 .action((x, c) => c.copy(testInput = x))
115- opt[String ](" < dataFormat> " )
115+ opt[String ](" dataFormat" )
116116 .text(" data format: libsvm (default), dense (deprecated in Spark v1.1)" )
117117 .action((x, c) => c.copy(dataFormat = x))
118118 arg[String ](" <input>" )
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ object GBTExample {
111111 .text(s " input path to test dataset. If given, option fracTest is ignored. " +
112112 s " default: ${defaultParams.testInput}" )
113113 .action((x, c) => c.copy(testInput = x))
114- opt[String ](" < dataFormat> " )
114+ opt[String ](" dataFormat" )
115115 .text(" data format: libsvm (default), dense (deprecated in Spark v1.1)" )
116116 .action((x, c) => c.copy(dataFormat = x))
117117 arg[String ](" <input>" )
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ object RandomForestExample {
117117 .text(s " input path to test dataset. If given, option fracTest is ignored. " +
118118 s " default: ${defaultParams.testInput}" )
119119 .action((x, c) => c.copy(testInput = x))
120- opt[String ](" < dataFormat> " )
120+ opt[String ](" dataFormat" )
121121 .text(" data format: libsvm (default), dense (deprecated in Spark v1.1)" )
122122 .action((x, c) => c.copy(dataFormat = x))
123123 arg[String ](" <input>" )
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ object DecisionTreeRunner {
126126 .text(s " input path to test dataset. If given, option fracTest is ignored. " +
127127 s " default: ${defaultParams.testInput}" )
128128 .action((x, c) => c.copy(testInput = x))
129- opt[String ](" < dataFormat> " )
129+ opt[String ](" dataFormat" )
130130 .text(" data format: libsvm (default), dense (deprecated in Spark v1.1)" )
131131 .action((x, c) => c.copy(dataFormat = x))
132132 arg[String ](" <input>" )
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ object GradientBoostedTreesRunner {
6969 .text(s " input path to test dataset. If given, option fracTest is ignored. " +
7070 s " default: ${defaultParams.testInput}" )
7171 .action((x, c) => c.copy(testInput = x))
72- opt[String ](" < dataFormat> " )
72+ opt[String ](" dataFormat" )
7373 .text(" data format: libsvm (default), dense (deprecated in Spark v1.1)" )
7474 .action((x, c) => c.copy(dataFormat = x))
7575 arg[String ](" <input>" )
You can’t perform that action at this time.
0 commit comments