Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# 🧠 Brain CT Classification with Keras (InceptionResNetV2)
|
| 2 |
|
| 3 |
This repository contains a fine-tuned **TensorFlow/Keras** image classification model for classifying Brain CT scans into three categories:
|
|
@@ -82,4 +87,4 @@ pred = model.predict(img_array)
|
|
| 82 |
class_idx = np.argmax(pred)
|
| 83 |
class_names = ["Aneurysm", "Cancer", "Tumor"]
|
| 84 |
|
| 85 |
-
print("Predicted class:", class_names[class_idx])
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- medical
|
| 5 |
+
---
|
| 6 |
# 🧠 Brain CT Classification with Keras (InceptionResNetV2)
|
| 7 |
|
| 8 |
This repository contains a fine-tuned **TensorFlow/Keras** image classification model for classifying Brain CT scans into three categories:
|
|
|
|
| 87 |
class_idx = np.argmax(pred)
|
| 88 |
class_names = ["Aneurysm", "Cancer", "Tumor"]
|
| 89 |
|
| 90 |
+
print("Predicted class:", class_names[class_idx])
|