Skip to content Skip to sidebar Skip to footer

How Do I Implement The Tensorframes Spark Package On Data Science Experience?

I've been able to import the package: import pixiedust pixiedust.installPackage('databricks:tensorframes:0') But when I try a simple example: import tensorflow as tf import tensor

Solution 1:

Charles from IBM support helped me find which jars to include:

pixiedust.installPackage("http://central.maven.org/maven2/com/typesafe/scala-logging/scala-logging-slf4j_2.10/2.1.2/scala-logging-slf4j_2.10-2.1.2.jar") pixiedust.installPackage("http://central.maven.org/maven2/com/typesafe/scala-logging/scala-logging-api_2.10/2.1.2/scala-logging-api_2.10-2.1.2.jar")

This technically solves the first error, however TesnsorFrames still aren't working. I'll post another question that is more specific.

Post a Comment for "How Do I Implement The Tensorframes Spark Package On Data Science Experience?"