Update README.md
Browse files
README.md
CHANGED
@@ -1,18 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Description
|
2 |
This model is a convolutional neural network built with transfer learning using the pre-trained model 'VGG16.' The 'block5_conv1' layer is retrained, and a final dense layer with 128 neurons is added.
|
3 |
|
4 |
The model will be used as a preliminary step in solving Sudokus through linear programming. Model It is responsible for classifying the content of each sudoku cell:
|
5 |
|
6 |
-
class_0: empty cell
|
7 |
-
class_1: cell contains the number 1
|
8 |
-
class_2: cell contains the number 2
|
9 |
-
class_3: cell contains the number 3
|
10 |
-
class_4: cell contains the number 4
|
11 |
-
class_5: cell contains the number 5
|
12 |
-
class_6: cell contains the number 6
|
13 |
-
class_7: cell contains the number 7
|
14 |
-
class_8: cell contains the number 8
|
15 |
-
class_9: cell contains the number 9
|
16 |
|
17 |
The dataset is constructed with balanced classes using images from the famous "MNIST digits classification" dataset, as well as images of numbers written digitally.
|
18 |
|
@@ -35,6 +45,4 @@ An initial validation is performed. It remains pending to increase the size of t
|
|
35 |
The results of the inference are as follows:
|
36 |
<div style="text-align: center;">
|
37 |
<img src="https://i.imgur.com/U2MJzH6.jpg" width="500">
|
38 |
-
</div>
|
39 |
-
|
40 |
-
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- mnist
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
metrics:
|
8 |
+
- accuracy
|
9 |
+
library_name: keras
|
10 |
+
---
|
11 |
# Description
|
12 |
This model is a convolutional neural network built with transfer learning using the pre-trained model 'VGG16.' The 'block5_conv1' layer is retrained, and a final dense layer with 128 neurons is added.
|
13 |
|
14 |
The model will be used as a preliminary step in solving Sudokus through linear programming. Model It is responsible for classifying the content of each sudoku cell:
|
15 |
|
16 |
+
- class_0: empty cell
|
17 |
+
- class_1: cell contains the number 1
|
18 |
+
- class_2: cell contains the number 2
|
19 |
+
- class_3: cell contains the number 3
|
20 |
+
- class_4: cell contains the number 4
|
21 |
+
- class_5: cell contains the number 5
|
22 |
+
- class_6: cell contains the number 6
|
23 |
+
- class_7: cell contains the number 7
|
24 |
+
- class_8: cell contains the number 8
|
25 |
+
- class_9: cell contains the number 9
|
26 |
|
27 |
The dataset is constructed with balanced classes using images from the famous "MNIST digits classification" dataset, as well as images of numbers written digitally.
|
28 |
|
|
|
45 |
The results of the inference are as follows:
|
46 |
<div style="text-align: center;">
|
47 |
<img src="https://i.imgur.com/U2MJzH6.jpg" width="500">
|
48 |
+
</div>
|
|
|
|