Hi folks,
On Spark 1.6.0, I submitted 2 lines of code via spark-shell in Yarn-client mode:
1) sc.parallelize(Array(1,2,3,3,3,3,4)).collect()
2) sc.parallelize(Array(1,2,3,3,3,3,4)).map( x => (x, 1)).collect()
1) works well whereas 2) raises the following exception:
Driver stacktrace:
Hi folks,
Does anyone know whether the Grid Search capability is enabled since the issue
spark-9011 of version 1.4.0 ? I'm getting the "rawPredictionCol column doesn't
exist" when trying to perform a grid search with Spark 1.4.0.
Cheers,
Ardo
--
>
> On Thu, Nov 26, 2015 at 12:53 PM, Ndjido Ardo Bar
> wrote:
>
>>
>> Hi folks,
>>
>> Does anyone know whether the Grid Search capability is enabled since the
>> issue spark-9011 of version 1.4.0 ? I'm getting the "rawPredictionCol
>>
Hi Benjamin,
Thanks, the documentation you sent is clear.
Is there any other way to perform a Grid Search with GBT?
Ndjido
On Tue, 1 Dec 2015 at 08:32, Benjamin Fradet
wrote:
> Hi Ndjido,
>
> This is because GBTClassifier doesn't yet have a rawPredictionCol like
> the. Rando
Thanks for the clarification. Gonna test that and give you feedbacks.
Ndjido
On Tue, 1 Dec 2015 at 19:29, Joseph Bradley wrote:
> You can do grid search if you set the evaluator to a
> MulticlassClassificationEvaluator, which expects a prediction column, not a
> rawPrediction column.