Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Вказати правильну групуоператорів зміни формату ознак даних при використанні попередньо навченоїнейронної мережі VGG16
Вказати правильну групу
операторів зміни формату ознак даних при використанні попередньо навченої
train_features = np.reshape(train_features, (2000, 4 * 4 * 512))
validation_features = np.reshape(validation_features, (1000, 4 * 4 * 512))
test_features = np.reshape(test_features, (1000, 4 * 4 * 512))
train_features = np.reshape(train_features, (2000, 4 , 4 , 512))
validation_features = np.reshape(validation_features, (1000, 4 , 4 , 512))
test_features = np.reshape(test_features, (1000, 4 , 4 , 512))
train_features = np.reshape(train_features, (2000, 512))
validation_features = np.reshape(validation_features, (1000, 512))
test_features = np.reshape(test_features, (1000, 512))
train_features = reshape(train_features, (2000, 4 * 4 * 512))
validation_features = reshape(validation_features, (1000, 4 * 4 * 512))
test_features = reshape(test_features, (1000, 4 * 4 * 512))
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!