Re: Tensorflow not working in Zeppelin 0.7.0

2017-03-14 Thread Felix Cheung
I realize there is a discussion on be Tensorflow issue, aside from the thought of initializing the variables, I think they should broaden their detection of interactive shell to include Zeppelin, Jupyter, etc. From: Sriram Narayanamoorthy Sent: Tuesday, March

Re: Tensorflow not working in Zeppelin 0.7.0

2017-03-14 Thread Sriram Narayanamoorthy
Python 3.5 and Tensorflow 1.0 On Tue, Mar 14, 2017 at 4:21 PM, Jianfeng (Jeff) Zhang < jzh...@hortonworks.com> wrote: > Which version of tensorflow and python do you use ? I believe I use it > before and works for me. > > > Best Regard, > Jeff Zhang > > > From: Sriram Narayanamoorthy > Reply-To

Re: Tensorflow not working in Zeppelin 0.7.0

2017-03-14 Thread Jianfeng (Jeff) Zhang
Which version of tensorflow and python do you use ? I believe I use it before and works for me. Best Regard, Jeff Zhang From: Sriram Narayanamoorthy mailto:nsrira...@gmail.com>> Reply-To: "users@zeppelin.apache.org" mailto:users@zeppelin.apache.org>> Date: W

Re: Subject: Re: Zeppelin %dev Interpreter

2017-03-14 Thread moon soo Lee
Each application define what kind of resource the application requires [1] (e.g. 'Clock' example requires java.util.Date [2]). Once interpreter pushes required resource into ResourcePool, then Zeppelin display buttons for available application in paragraph. SparkInterpreter automatically pushes l

Re: Tensorflow not working in Zeppelin 0.7.0

2017-03-14 Thread Sriram Narayanamoorthy
Thanks. I have submitted a Jira ticket: https://issues.apache.org/jira/browse/ZEPPELIN-2259 Also, opened an issue on tensorflow: https://github.com/tensorflow/tensorflow/issues/8401 On Tue, Mar 14, 2017 at 8:38 AM, Felix Cheung wrote: > This sounds like more an issue with Tensorflow when worki

Re: Tensorflow not working in Zeppelin 0.7.0

2017-03-14 Thread Felix Cheung
This sounds like more an issue with Tensorflow when working in notebook environment in general. Would you please open a JIRA. Also feel free to open an issue on Tensorflow as well. From: Sriram Narayanamoorthy Sent: Tuesday, March 14, 2017 7:28:12 AM To: users

zeppelin-web module build failure with latest 0.8.0-SNAPSHOT

2017-03-14 Thread Chaoran Yu
I’m trying to build the latest repo i.e. version 0.8.0-SNAPSHOT, but got the following error message: [INFO] --- maven-war-plugin:2.5:war (default-war) @ zeppelin-web --- [INFO] Downloading: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/2.1.3/plexus-io-2.1.3.pom Mar 12, 2017

Tensorflow not working in Zeppelin 0.7.0

2017-03-14 Thread Sriram Narayanamoorthy
Hi all, There seems to be some issue using Tensorflow in Zeppelin 0.7.0 and it throws this error: NameError: name '_interactive' is not defined Another user reported the same issue on SO. The fix suggested there s

Re: Release on 0.7.1 and 0.7.2

2017-03-14 Thread Jianfeng (Jeff) Zhang
+1 Best Regard, Jeff Zhang From: Jun Kim mailto:i2r@gmail.com>> Reply-To: "users@zeppelin.apache.org" mailto:users@zeppelin.apache.org>> Date: Tuesday, March 14, 2017 at 11:38 AM To: "users@zeppelin.apache.org" mailto:use

Re: how to bring second column value under first column

2017-03-14 Thread Daniel Haviv
explode(split(accountID, ',')) On Tue, 14 Mar 2017 at 11:53 Suresh Ayyavoo wrote: > finalval.selectExpr("split(accountID, ',')[0] as accountID","split(accountID, > ',')[1] as accountID") > > > +--+--+ > > | accountID| accountID| > > +--+--+ > > |119152|119000

how to bring second column value under first column

2017-03-14 Thread Suresh Ayyavoo
finalval.selectExpr("split(accountID, ',')[0] as accountID","split(accountID, ',')[1] as accountID") +--+--+ | accountID| accountID| +--+--+ |119152|119279| +--+--+ how to bring second column value under first column?