-
Notifications
You must be signed in to change notification settings - Fork 45
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
Error in ta.scan #3
Comments
Hi! Thank you for your email and sorry about the inconveniences of this
problem :-(. Indeed, this error is due to the fact that the talos
version (but also keras and tensorflow) has changed a lot since we made the
guide. We are aware of this and we know that it needs an update. We will
update the guide as soon as possible, but in the meantime you could skip
the talos scan and use the keras tuner instead. Please, have a look
at this nice documentation
https://www.tensorflow.org/tutorials/keras/keras_tuner
You can also find further keras documentation here https://keras.io/
Best regards,
Laura
El lun, 30 ago 2021 a las 7:45, dooshra ***@***.***>)
escribió:
… Hi
I am trying to run the tutorial as implanted in PDL.ipynb. The
installations processes was not easy and I had to replace some versions due
to incompatibility. This is the final list of packages and versions that i
have:
keras 2.6.0
keras-applications 1.0.8
keras-preprocessing 1.1.2
kerasplotlib 0.1.6
matplotlib 2.2.3
numpy 1.16.4
numpydoc 1.1.0
pandas 0.24.2
scipy 1.2.0
seaborn 0.9.0
sklearn 0.0
talos 0.4.8
tensorflow 2.6.0
tensorflow-estimator 2.6.0
wrangle 0.6.7
I am running the following script:
t_Init = ta.Scan(x=X_train0, y=y_train0, x_val=X_val, y_val=y_val,
model=baby_model, params=p, grid_downsample=None, # grid search
dataset_name='baby_model', print_params=True)
I get this error report in the attached file
error_DL_pipeline.txt
<https://github.com/miguelperezenciso/DLpipeline/files/7074434/error_DL_pipeline.txt>
Additionally I had to change the code:
from keras.optimizers import adam,Nadam, sgd to
from tensorflow.keras.optimizers import Adam,Nadam, SGD
Thank you
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#3>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACRX2ZMAV422A45AXR2XPB3T7MLIDANCNFSM5DBEBRMQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
--
Laura Zingaretti
*"I grow old ... I grow old" T S E.*
*"It ain’t what you don’t know that gets you into trouble. It’s what you
know for sure that just ain’t so." Mark Twain*
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
I am trying to run the tutorial as implanted in PDL.ipynb. The installations processes was not easy and I had to replace some versions due to incompatibility. This is the final list of packages and versions that i have:
keras 2.6.0
keras-applications 1.0.8
keras-preprocessing 1.1.2
kerasplotlib 0.1.6
matplotlib 2.2.3
numpy 1.16.4
numpydoc 1.1.0
pandas 0.24.2
scipy 1.2.0
seaborn 0.9.0
sklearn 0.0
talos 0.4.8
tensorflow 2.6.0
tensorflow-estimator 2.6.0
wrangle 0.6.7
I am running the following script:
t_Init = ta.Scan(x=X_train0, y=y_train0, x_val=X_val, y_val=y_val, model=baby_model, params=p, grid_downsample=None, # grid search dataset_name='baby_model', print_params=True)
I get this error report in the attached file
error_DL_pipeline.txt
Additionally I had to change the code:
from keras.optimizers import adam,Nadam, sgd
tofrom tensorflow.keras.optimizers import Adam,Nadam, SGD
Thank you
The text was updated successfully, but these errors were encountered: