We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am using Pytorch 2.2.2 as the backend. I define the variable callback as follows:
model.compile("L-BFGS", external_trainable_variables=cv) variable = dde.callbacks.VariableValue(cv, period=1000, filename="cv.txt") losshistory, train_state = model.train(callbacks=[variable])
However, after 4000 iterations, only the initial and final values are wirrten out. How could I get the ones during iterations?
The text was updated successfully, but these errors were encountered:
Use another optimizer.
Sorry, something went wrong.
No branches or pull requests
I am using Pytorch 2.2.2 as the backend. I define the variable callback as follows:
model.compile("L-BFGS", external_trainable_variables=cv)
variable = dde.callbacks.VariableValue(cv, period=1000, filename="cv.txt")
losshistory, train_state = model.train(callbacks=[variable])
However, after 4000 iterations, only the initial and final values are wirrten out. How could I get the ones during iterations?
The text was updated successfully, but these errors were encountered: