Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Classification Between 6 Types
|
2 |
+
|
3 |
+
This is a Convolutional Neural Network (CNN) model trained to classify images into six categories.
|
4 |
+
|
5 |
+
## Model Details
|
6 |
+
- Framework: TensorFlow/Keras
|
7 |
+
- Model Format: `.keras`
|
8 |
+
- Input Image Size: `150x150`
|
9 |
+
- Classes: [buildings,forest,glacier,mountain,sea,street]
|
10 |
+
|
11 |
+
### Load the Model
|
12 |
+
```python
|
13 |
+
from tensorflow.keras.models import load_model
|
14 |
+
|
15 |
+
model = load_model("https://huggingface.co/suvmkr/classification_between_6_types/resolve/main/yes.keras")
|