-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QST] #1211
Comments
@fahadullahshah261 how do you installl merlin-models? we recommend to use |
@rnyak, I was using Merlin to train my recommender model and it worked initially when I installed it as follows: But, recently I had an issue while importing it as mentioned above. Moreover, it is cumbersome to deal with docker in Google Colab. So, what do I need to do to be able to use Merlin in Colab as I used earlier? Thanks. |
@fahadullahshah261 you can follow these steps here to run it on colab: https://medium.com/nvidia-merlin/how-to-run-merlin-on-google-colab-83b5805c63e0 note that you need other Merlin libraries to be installed as well to be able to use merlin-models. Besides, you need to install tensorflow-gpu. you can use TF 2.19 or TF 2.10 |
Thanks, @rnyak! I tried it and it worked. |
@rnyak, can you help me figuring out what am I doing wrong with my docker image?
but when I try to run my Python file with this image, I'm always seeing this error message.
I searched on Google and this error is occurring when the graphic driver is outdated / not updated. Should I install / add steps to dockerfile separately? |
❓ Questions & Help
I had an issue while importing merlin.models.tf.
Details
I run the following:
pip install merlin-models
But, when I run the following:
import merlin.models.tf as mm
I got the following error message:
19 import numpy as np
20 import tensorflow as tf
---> 21 from keras.utils.tf_inspect import getfullargspec
22 from packaging import version
23 from tensorflow.python import to_dlpack
ModuleNotFoundError: No module named 'keras.utils.tf_inspect'
The text was updated successfully, but these errors were encountered: