-
Notifications
You must be signed in to change notification settings - Fork 20
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
how long it takes for main_lstM_etallica.py #7
Comments
For how many epoches? That seems too long. |
I just run python main_lstM_etallica.py now it is still print: 23188/23188 [==============================] - 681s - loss: 0.0028 |
You set a while loop with a boolean value in front of it batch_size_not_decided: True
while batch_size_not_decided:
result = model.fit(X, y, batch_size=batch_size, nb_epoch=nb_epoch, callbacks=[checker, early_stop])
loss_history = loss_history + result.history['loss'] |
I completely forgot about the lines and they seem strange ;) |
What is supposed to go there (if anything at all)? |
Well, there should be a way to break the loop. I really don't understand why there isn't. |
@lovejasmine running the code on a 1080 with a while loop not exiting was like leaving the lights on with no one in the room for 3 days ; ) - I've been there, fortunately not today. |
@keunwoochoi Do you have a branch or commit from when you ran it (correctly). Because right now |
@unsalted I removed the lines. Turned out that I made a mistake while cleaning the code, the code is definitely unnecessary. Thanks for pointing out. |
Sure thing, thanks for the fix! |
In my gtx1080, it takes 3 days and still going to
The text was updated successfully, but these errors were encountered: