Question 1easymultiple choice
Read the full Machine Learning and Deep Learning explanation →AI0-001 Machine Learning and Deep Learning • Complete Question Bank
Complete AI0-001 Machine Learning and Deep Learning question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit. ``` Epoch 1/10 - loss: 2.3026 - accuracy: 0.1000 - val_loss: 2.3026 - val_accuracy: 0.1000 Epoch 2/10 - loss: 2.3026 - accuracy: 0.1000 - val_loss: 2.3026 - val_accuracy: 0.1000 ```
Refer to the exhibit. ``` Model: "sequential" _________________________________________________________________ Layer (type) Output Shape Param # ================================================================= dense (Dense) (None, 128) 100352 _________________________________________________________________ dense_1 (Dense) (None, 64) 8256 _________________________________________________________________ dense_2 (Dense) (None, 10) 650 ================================================================= Total params: 109,258 Trainable params: 109,258 Non-trainable params: 0 _________________________________________________________________ ```
Refer to the exhibit. ``` Epoch 1/10 - loss: 0.6932 - acc: 0.5123 - val_loss: 0.6981 - val_acc: 0.5012 Epoch 2/10 - loss: 0.4521 - acc: 0.7845 - val_loss: 0.6890 - val_acc: 0.5123 Epoch 3/10 - loss: 0.2312 - acc: 0.9234 - val_loss: 0.7123 - val_acc: 0.4987 Epoch 4/10 - loss: 0.1023 - acc: 0.9789 - val_loss: 0.8567 - val_acc: 0.4856 Epoch 5/10 - loss: 0.0456 - acc: 0.9923 - val_loss: 1.0234 - val_acc: 0.4765 ```
Training Log: Epoch 1/50 - loss: 5.234 - acc: 0.120 Epoch 2/50 - loss: 8.910 - acc: 0.110 Epoch 3/50 - loss: 15.678 - acc: 0.095 Epoch 4/50 - loss: 25.432 - acc: 0.080
Model Evaluation Report: Accuracy: 0.85 Precision: 0.90 Recall: 0.70 F1-score: 0.79 Confusion Matrix: [[850, 100], [150, 350]]
Architecture Diagram: Input (28x28 grayscale image) -> Conv2D(32 filters, 3x3, ReLU) -> MaxPooling2D(2x2) -> Conv2D(64 filters, 3x3, ReLU) -> MaxPooling2D(2x2) -> Flatten -> Dense(128, ReLU) -> Dropout(0.5) -> Dense(10, Softmax)
{
"train_loss": [0.8, 0.6, 0.5, 0.45, 0.42],
"val_loss": [0.9, 0.85, 0.88, 0.92, 0.95],
"train_acc": [0.7, 0.75, 0.8, 0.82, 0.83],
"val_acc": [0.65, 0.68, 0.67, 0.66, 0.65]
}model:
type: sequential
layers:
- type: dense
units: 128
activation: relu
input_shape: [784]
- type: dropout
rate: 0.5
- type: dense
units: 10
activation: softmax
optimizer:
type: adam
learning_rate: 0.001Epoch 1/50 - loss: 2.3004 - acc: 0.5123 - val_loss: 2.5001 - val_acc: 0.4950 Epoch 10/50 - loss: 0.4567 - acc: 0.8712 - val_loss: 0.8903 - val_acc: 0.7520 Epoch 20/50 - loss: 0.1234 - acc: 0.9601 - val_loss: 0.9502 - val_acc: 0.7800 Epoch 30/50 - loss: 0.0456 - acc: 0.9905 - val_loss: 1.2004 - val_acc: 0.7705
{
"model": "fraud_detection_v2",
"version": "2.0.1",
"deployment": {
"endpoint": "/predict",
"instance_type": "ml.m5.xlarge",
"scaling": {"min": 1, "max": 5, "target_latency": 100}
},
"monitoring": {
"drift_detection": true,
"alert_email": "admin@company.com",
"retrain_threshold": {"accuracy_drop": 0.05}
},
"compliance": {
"data_retention": "90 days",
"explainability": "required"
}
}Predicted Negative Predicted Positive Actual Negative 9000 100 Actual Positive 500 400
Refer to the exhibit. Training log: Epoch 1/20 loss: 1.2 - acc: 0.45 - val_loss: 1.3 - val_acc: 0.42 Epoch 5/20 loss: 0.4 - acc: 0.85 - val_loss: 1.1 - val_acc: 0.68 Epoch 10/20 loss: 0.1 - acc: 0.98 - val_loss: 2.1 - val_acc: 0.60
Refer to the exhibit.
JSON config:
{
"layers": [
{"type": "Dense", "units": 128, "activation": "relu"},
{"type": "Dense", "units": 64, "activation": "relu"},
{"type": "Dense", "units": 10, "activation": "softmax"}
],
"optimizer": "adam",
"loss": "mean_squared_error",
"metrics": ["accuracy"]
}Refer to the exhibit. Evaluation report: Precision: 0.95 Recall: 0.60 F1-score: 0.73
Refer to the exhibit. Training log from a binary classification neural network: Epoch 1/10 - loss: 1.2345, accuracy: 0.6543, val_loss: 1.4567, val_accuracy: 0.6123 Epoch 2/10 - loss: 0.9876, accuracy: 0.7123, val_loss: 1.2345, val_accuracy: 0.6543 Epoch 3/10 - loss: 0.6543, accuracy: 0.8123, val_loss: 1.0123, val_accuracy: 0.7123 Epoch 4/10 - loss: 0.4567, accuracy: 0.8765, val_loss: 0.9876, val_accuracy: 0.7345 Epoch 5/10 - loss: 0.3456, accuracy: 0.9123, val_loss: 0.9567, val_accuracy: 0.7567 Epoch 6/10 - loss: 0.2345, accuracy: 0.9456, val_loss: 0.9345, val_accuracy: 0.7789 Epoch 7/10 - loss: 0.1234, accuracy: 0.9678, val_loss: 0.9123, val_accuracy: 0.7890 Epoch 8/10 - loss: 0.0987, accuracy: 0.9789, val_loss: 0.9012, val_accuracy: 0.7912 Epoch 9/10 - loss: 0.0765, accuracy: 0.9876, val_loss: 0.8956, val_accuracy: 0.7900 Epoch 10/10 - loss: 0.0543, accuracy: 0.9932, val_loss: 0.8876, val_accuracy: 0.7890