Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,41 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
datasets:
|
4 |
+
- cifar10
|
5 |
+
library_name: keras
|
6 |
+
pipeline_tag: image-classification
|
7 |
---
|
8 |
+
### Model Name: `jsotiro-cnn-cifar`
|
9 |
+
|
10 |
+
**Description:**
|
11 |
+
|
12 |
+
Introducing `jsotiro-cnn-cifar`, a state-of-the-art Convolutional Neural Network (CNN) trained on the CIFAR dataset. With an impressive accuracy of 89%, this model sets a new benchmark in image classification tasks. What sets it apart?
|
13 |
+
|
14 |
+
- **High Performance**: Achieves an accuracy rate of 89%, surpassing standard benchmarks.
|
15 |
+
|
16 |
+
- **Fast Inference**: Optimized for speed, this model ensures quick predictions without compromising on accuracy.
|
17 |
+
|
18 |
+
- **Compact Size**: Its small footprint makes it ideal for edge deployments and integration into existing systems.
|
19 |
+
|
20 |
+
- **Transfer Learning Ready**: The model's architecture and pre-trained weights make it an excellent candidate for fine-tuning and further development in various applications.
|
21 |
+
|
22 |
+
**Usage Examples:**
|
23 |
+
|
24 |
+
```python
|
25 |
+
from keras.models import load_model
|
26 |
+
|
27 |
+
# Load the model
|
28 |
+
model = load_model('path/to/jsotiro-cnn-cifar.h5')
|
29 |
+
|
30 |
+
# Perform inference
|
31 |
+
result = model.predict(input_data)
|
32 |
+
```
|
33 |
+
|
34 |
+
**Dependencies:**
|
35 |
+
|
36 |
+
- Keras >= 2.4.0
|
37 |
+
- TensorFlow >= 2.5.0
|
38 |
+
|
39 |
+
**Citation:**
|
40 |
+
Ogundokun, Roseline Oluwaseun, et al. "Improved CNN based on batch normalization and adam optimizer." International Conference on Computational Science and Its Applications. Cham: Springer International Publishing, 2022.
|
41 |
+
If you find this model useful, please cite our work.
|