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
If the input is given as model = Model([input, label], output) and a generator object is used to call model.fit like model.fit(input_generator, ....)
model = Model([input, label], output)
model.fit
model.fit(input_generator, ....)
How will the labels be passed to the fit function?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the input is given as
model = Model([input, label], output)
and a generator object is used to call
model.fit
likemodel.fit(input_generator, ....)
How will the labels be passed to the fit function?
The text was updated successfully, but these errors were encountered: