Python SyntaxError: invalid syntax - Correcting Code for Loading Datasets
There are a few issues with the syntax of this line of code. Here's how it should be corrected:
X_train_orig, Y_train_orig, X_test_orig, Y_test_orig, classes = kt_utils.load_dataset()
The changes made include:
- Adding a period between 'kt_utils' and 'load_dataset()' to indicate that 'load_dataset()' is a method of the 'kt_utils' module.
- Adding parentheses after 'kt_utils.load_dataset()' to indicate that it is a function call.
- Removing the space between 'load_dateset()' to match the corrected function name.
原文地址: https://www.cveoy.top/t/topic/mMO0 著作权归作者所有。请勿转载和采集!