-
Notifications
You must be signed in to change notification settings - Fork 32
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
Unable to run the code #15
Comments
Hi. I would downgrade to Keras 2.1.3 and Tensorflow 1.12 . TF2 brought a lot of changes that would require a bit of code rework. @jstremme , any chance you have a version that works with TF2? |
Downgrading the libraries resulted in some other errors
Author of the Retain paper also recommended your implementation of the paper. I am highly interested in using this for my research. What should I do next? |
This looks like a data issue. Can you verify that generator has non 0 length (and data too?) |
Also disable multiprocessing and set workers to 1 in the .fit method . This way it should be clearer where the error us happening (right now it is masked by the multiprocessing wrapper) |
The data has non-zero length. What do you mean by generator? I checked SquenceBuilder and it is assigning values generally. I also changed the multiprocessing options, but I still get the same error. The code runs for only 1 epoch and then ends with a error. The complete log is below: D:\Anaconda2\deeplearn) D:\MIMIC\reproduce_attempt\retain-keras-master>python retain_train.py --num_codes=4895 The above exception was the direct cause of the following exception: Traceback (most recent call last): The above exception was the direct cause of the following exception: Traceback (most recent call last): |
@tRosenflanz, we have an internal version of this code that works with TF2. I or someone from my team at Optum will plan to add that code to this repo in the upcoming weeks. |
Thank you @jstremme |
Hi Retain Team, |
Hi sarwart, Hope this works for you! |
Hi lucasliu0928, Thanks for the suggestion. I did try these changes but it didn't resolve the problem. Can you please tell me which versions of the Keras, Tensorflow and Python are you using? |
Hi. @sarwart this issue is hard to debug without a data sample. The error suggests that VALIDATION generator has issues (the error happens in predict function in on_epoch_end) |
@lucasliu0928 it would be best if you created another issue to not mix 2 conversations together but first column on print is normally the index of a row- it is fairly meaningless in this context |
The constraint issue seems to widely reported with tf 1.15 or 2. I turned it off here by not specifying an embedding constraint (ref: original code) and it runs fine for me in tf 1.15 and python 3.7. |
I am using: |
Thanks for the friendly suggestion. This is my first time commenting on GitHub. I was not sure where to post my questions. I will create a separate issue. |
Code works with TF2 as of PR #21 |
Hi!
I tried running the code but I received the following error
I am currently using Keras 2.4.3 ,Tensorflow 2.3.0 and Python 3.6.2. on my system.
Also , "keras_exp" does not exist in the current version. Can you please guide how to remove these errors? Or any specific version for which this code will work?
The text was updated successfully, but these errors were encountered: