dieineb commited on
Commit
8764804
·
verified ·
1 Parent(s): d63147b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -18
README.md CHANGED
@@ -7,36 +7,56 @@ metrics:
7
  - accuracy
8
  pipeline_tag: image-classification
9
  ---
10
- # Model Description
 
 
11
 
12
  The digit-classifier model is used to recognize manuscript digits from 0 to 9.
13
 
14
- The model was trained with the [MNIST digits classification dataset](https://keras.io/api/datasets/mnist/).
15
 
16
- ## Details
17
- - Size: 1,256,080 parameters
18
- - Dataset: [tf.keras.datasets.mnist](https://storage.googleapis.com/tensorflow/tf-keras-datasets/mnist.npz)
19
- - Language: English
20
- - Number of Epochs: 10
21
- - Batch size: 32
22
- - Optimizer: Adam (tf.keras.optimizers.Adam(learning_rate=0.001)
23
- - Hardware: Tesla T4
24
- - This repository has the source [code used](https://github.com/Nkluge-correa/teeny-tiny_castle/blob/master/ML%20Intro%20Course/19_quick_AI_app.ipynb) to train this model.
25
 
26
- # Cite as 🤗
 
 
 
27
 
 
 
 
28
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  @misc{teenytinycastle,
30
  doi = {10.5281/zenodo.7112065},
31
- url = {https://huggingface.co/AiresPucrs/digit-classifier},
32
  author = {Nicholas Kluge Corr{\^e}a},
33
  title = {Teeny-Tiny Castle},
34
- year = {2023},
35
- publisher = {HuggingFace},
36
- journal = {HuggingFace repository},
37
  }
38
  ```
39
-
40
  ## License
41
 
42
- The digit-classifier is licensed under the Apache License, Version 2.0. See the LICENSE file for more details.
 
 
7
  - accuracy
8
  pipeline_tag: image-classification
9
  ---
10
+ # Digit-classifier
11
+
12
+ ## Model Overview
13
 
14
  The digit-classifier model is used to recognize manuscript digits from 0 to 9.
15
 
16
+ ### Details
17
 
18
+ - **Size:** 1,256,080 parameters
19
+ - **Model type:** Convolutional neural network
20
+ - **Optimizer**: tf.keras.optimizers.Adam(learning_rate=0.001)
21
+ - **Number of Epochs:** 10
22
+ - **Batch size:** 256
23
+ - **Hardware:** Tesla V4
24
+ - **Emissions:** Not measured
25
+ - **Total Energy Consumption:** Not measured
 
26
 
27
+ ### How to Use
28
+
29
+ ```python
30
+ from huggingface_hub import from_pretrained_keras
31
 
32
+ model = from_pretrained_keras("AiresPucrs/digit-classifier")
33
+
34
+ classes = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine']
35
  ```
36
+
37
+ ## Intended Use
38
+
39
+ This model was created for research purposes only. Specifically, it was designed to recognize manuscript digits from 0 to 9. We do not recommend any application of this model outside this scope.
40
+
41
+
42
+ ## Training Data
43
+
44
+ The model was trained with the [MNIST digits classification dataset](https://keras.io/api/datasets/mnist/).
45
+
46
+
47
+ # Cite as 🤗
48
+ ```latex
49
  @misc{teenytinycastle,
50
  doi = {10.5281/zenodo.7112065},
51
+ url = {https://github.com/Nkluge-correa/teeny-tiny_castle},
52
  author = {Nicholas Kluge Corr{\^e}a},
53
  title = {Teeny-Tiny Castle},
54
+ year = {2024},
55
+ publisher = {GitHub},
56
+ journal = {GitHub repository},
57
  }
58
  ```
 
59
  ## License
60
 
61
+
62
+ This model is licensed under the Apache License, Version 2.0. See the [LICENSE](LICENSE) file for more details.