Hi all!
I faced a problem trying to use deep learning algorithms from H2O
library in Zeppelin
The problem is following:
When I try to import class
import hex.deeplearning.DeepLearning
I get an error:
Unapplied methods are only converted to functions when a function type
is expected.
You can make this conversion explicit by writing `hex _` or `hex(_)`
instead of `hex`.
import hex.deeplearning.DeepLearning
As I see the error happens because the function "hex" already exists in
Zeppelin namespace, it comes implicitly from the package
"org.apache.spark.sql.functions",
Thus it conflicts with package name, so I have to "unimport" it, but I
don’t know how.
Any ideas?
Thanks in advance,
Andrew Yarovoy