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
So in the "Data Processing and Learning.ipynb"
Same pictures training/testing
model, history = train.training(model, X_train, X_test, y_train, y_test, data_augmentation=True)#, callback=True, six_conv=True) ## Training in the notebook X_train, X_test, y_train, y_test = train.get_dataset() model, opt = train.create_model_four_conv(X_train.shape[1:]) model.compile(loss='categorical_crossentropy', optimizer=opt, metrics=['accuracy']) model, history = train.training(model, X_train, X_test, y_train, y_test, data_augmentation=True, callback=True, six_conv=True)
the train.training code from line 183 on "train.py"
def training(model, X_train, X_test, y_train, y_test, data_augmentation=True):
these don't match,...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So in the "Data Processing and Learning.ipynb"
Same pictures training/testing
the train.training code from line 183 on "train.py"
def training(model, X_train, X_test, y_train, y_test, data_augmentation=True):
these don't match,...
The text was updated successfully, but these errors were encountered: