diff --git a/labworks/LW4/Report.md b/labworks/LW4/Report.md
index a9c86d2..eb74ac6 100644
--- a/labworks/LW4/Report.md
+++ b/labworks/LW4/Report.md
@@ -209,7 +209,7 @@ X train:
[ 0 0 0 ... 2 27 375]
[ 0 0 0 ... 11 111 531]
[ 0 0 0 ... 152 1833 12]]
-X train:
+X test:
[[ 0 0 0 ... 2 126 3849]
[ 0 0 0 ... 25 1833 12]
[ 0 0 0 ... 129 249 4262]
@@ -276,8 +276,10 @@ model.fit(X_train, y_train, batch_size=batch_size, epochs=epochs, validation_spl
```python
test_loss, test_acc = model.evaluate(X_test, y_test)
print(f"\nTest accuracy: {test_acc}")
+print(f"\nTest loss: {test_loss}")
```
-Test accuracy: 0.8670799732208252
+Test accuracy: 0.8670799732208252
+Test loss: 0.3307616412639618
---
### 9. Оценить качество обучения на тестовых данных.