neural_collaborative_filtering icon indicating copy to clipboard operation
neural_collaborative_filtering copied to clipboard

version

Open jinfire opened this issue 8 years ago • 4 comments

what is the version of keras and python????

jinfire avatar Jul 10 '17 03:07 jinfire

keras: '1.0.7' theano: '0.8.0' python: 2.7

On Mon, Jul 10, 2017 at 11:37 AM, fireonthehead [email protected] wrote:

what is the version of keras and python????

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/hexiangnan/neural_collaborative_filtering/issues/3, or mute the thread https://github.com/notifications/unsubscribe-auth/ABGxjomg_ghUSoxVUpFDjkIwbNtylTT_ks5sMZx5gaJpZM4OSUgg .

-- Best Regards, Xiangnan He

hexiangnan avatar Jul 13 '17 11:07 hexiangnan

what is the version of the tensor flow? Thanks

rotunba avatar Aug 16 '17 20:08 rotunba

I used Theano as the backend for the project. The theano version is : '0.8.0' and keras version is : '1.0.7'

On Thu, Aug 17, 2017 at 4:43 AM, rotunba [email protected] wrote:

what is the version of the tensor flow? Thanks

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/hexiangnan/neural_collaborative_filtering/issues/3#issuecomment-322893401, or mute the thread https://github.com/notifications/unsubscribe-auth/ABGxjixliVSTzksqyLMmRWPY3Y10hBk5ks5sY1R_gaJpZM4OSUgg .

-- Best Regards, Xiangnan He

hexiangnan avatar Aug 17 '17 02:08 hexiangnan

I try to use TensorFlow 0.12.0 and other environments are same as the author mentioned. In order to avoid AttributeError: 'module' object has no attribute 'control_flow_ops' problem, I add

 tf.python.control_flow_ops = tf
model = keras.models.Sequential()

at the beginning of the file

HugoZou avatar Dec 14 '17 01:12 HugoZou